/* ===============================================================
   Alifa Sofa and Chairs — light editorial theme
   =============================================================== */

:root {
  --paper: #ffffff;
  --paper-2: #f6f2ec;
  --paper-3: #efe8dd;
  --ink: #221d17;
  --ink-soft: #5d544a;
  --line: rgba(34, 29, 23, 0.18);
  --brass: #a5772f;
  --brass-dk: #855e22;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:
    "Manrope", "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --rule: var(--line);
  --muted: var(--ink-soft);
  --eb: var(--brass);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--brass);
  color: #fff;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* keep intrinsic image/iframe widths from blowing out grid tracks on small screens */
.hero__grid > *,
.split__body > *,
.why > *,
.why__imgs > *,
.svc-feature > *,
.contact-grid > *,
.foot__grid > *,
.foot__cta > *,
.stack,
.stats > *,
.foot__col {
  min-width: 0;
}

/* ---------- Section framing ---------- */
.sec {
  padding: clamp(56px, 7vw, 100px) 0;
}
.sec--ink {
  background: var(--paper);
}
.sec--paper {
  background: var(--paper-2);
}

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.005em;
  font-size: clamp(2.2rem, 5.6vw, 4.1rem);
  color: var(--ink);
}

.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
}

h2.display {
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
}
h3.display {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--eb);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  color: var(--muted);
}
p + p {
  margin-top: 1.05em;
}

/* ---------- Links / buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.btn:hover {
  background: var(--ink);
  color: #fff;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-dk);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--brass);
  transition:
    gap 0.25s ease,
    color 0.25s ease;
}
.link-arrow::after {
  content: "\2192";
  font-size: 15px;
}
.link-arrow:hover {
  gap: 16px;
  color: var(--brass);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  color: var(--ink);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-color: var(--line);
}

.site-header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}
.brand img {
  width: 121px;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
}
.nav a {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  color: var(--ink);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s ease;
}
.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}
.nav a[aria-current="page"] {
  color: var(--brass);
}

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--ink);
  padding: 10px 18px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.nav-cta:hover {
  background: var(--ink);
  color: #fff;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  color: var(--ink);
}
.burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.burger span:nth-child(1) {
  top: 15px;
}
.burger span:nth-child(2) {
  bottom: 15px;
}
body.nav-open .burger span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
body.nav-open .burger span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* ---------- Mobile nav overlay ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 100px var(--gutter) 60px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}
body.nav-open .nav-overlay {
  transform: translateY(0);
}
.nav-overlay a {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 8vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  padding: 12px 0;
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.nav-overlay a span {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--brass);
}
.nav-overlay__foot {
  margin-top: 40px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ---------- Hero ---------- */
.hero {
  background: var(--paper);
  padding-top: 118px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
  padding-bottom: clamp(40px, 6vw, 78px);
}
.hero__copy {
  padding-bottom: 18px;
}
.hero__copy .display {
  margin: 24px 0 26px;
}
.hero__copy .lead {
  max-width: 32ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}
.hero__media {
  position: relative;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}
.hero__media figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--brass);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 16px;
}

/* ---------- Stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.stat {
  padding: 32px clamp(14px, 2vw, 28px) 32px 0;
  border-right: 1px solid var(--line);
}
.stat:last-child {
  border-right: 0;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
}
.stat > span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee span::after {
  content: "\2022";
  color: var(--brass);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Split (about) ---------- */
.split {
  display: block;
}
.split__head {
  margin-bottom: clamp(34px, 5vw, 56px);
}
.split__head .display {
  margin-top: 18px;
  max-width: 24ch;
}
.split__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(40px, 6vw, 84px);
  align-items: start;
}
.split__body > p {
  grid-column: 1;
  margin: 0 0 1.05em;
}
.split__body > .link-arrow {
  grid-column: 1;
  margin-top: 12px;
}
.split__body > .stack {
  grid-column: 2;
  grid-row: 1 / span 20;
  margin-top: 4px;
}

.stack {
  position: relative;
}
.stack img {
  height: auto;
  object-fit: cover;
  display: block;
}
img.stack__a {
  width: 82%;
  aspect-ratio: 4 / 3;
}
img.stack__b {
  width: 52%;
  aspect-ratio: 4 / 3;
  margin-top: -22%;
  margin-left: auto;
  border: 8px solid var(--paper);
  position: relative;
  box-shadow: 0 24px 50px rgba(34, 29, 23, 0.14);
}
.sec--paper img.stack__b {
  border-color: var(--paper-2);
}
.badge {
  position: absolute;
  left: 0;
  bottom: 6%;
  background: var(--brass);
  color: #fff;
  padding: 18px 22px;
  min-width: 140px;
  text-align: center;
}
.badge b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 6px;
}
.badge > span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ---------- Section heading block ---------- */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: clamp(38px, 6vw, 68px);
}
.sec-head .display {
  max-width: 16ch;
}
.sec-head p {
  max-width: 40ch;
  color: var(--muted);
}

/* ---------- Services list (home) ---------- */
.svc-list {
  border-top: 1px solid var(--line);
}
.svc-row {
  display: grid;
  grid-template-columns: 78px 1fr minmax(180px, 34%) 30px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.35s ease,
    background 0.35s ease;
}
.svc-row:hover {
  padding-inline: 22px;
  background: var(--paper-2);
}
.sec--paper .svc-row:hover {
  background: var(--paper-3);
}
.svc-row__num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brass);
}
.svc-row__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  font-weight: 500;
}
.svc-row__desc {
  font-size: 14.5px;
  color: var(--muted);
}
.svc-row__arrow {
  text-align: right;
  color: var(--brass);
  transition: transform 0.3s ease;
}
.svc-row:hover .svc-row__arrow {
  transform: translateX(6px);
}

/* ---------- Services editorial (services page) ---------- */
.svc-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
}
.svc-feature:first-child {
  border-top: 0;
  padding-top: 0;
}
.svc-feature:last-child {
  border-bottom: 1px solid var(--line);
}
.svc-feature:nth-child(even) .svc-feature__media {
  order: -1;
}
.svc-feature__media {
  overflow: hidden;
  background: #fff;
}
.svc-feature__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.svc-feature:hover .svc-feature__media img {
  transform: scale(1.05);
}
.svc-feature__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  color: var(--brass);
  line-height: 1;
}
.svc-feature h3 {
  margin: 10px 0 14px;
}
.svc-feature p {
  color: var(--muted);
  max-width: 44ch;
}

/* ---------- Timeline (how we work) ---------- */
.timeline {
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.step__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 0.9;
  color: var(--brass);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin-bottom: 8px;
}
.step p {
  color: var(--muted);
  max-width: 60ch;
}

/* ---------- Why choose us ---------- */
.why {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.why blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.44;
  color: var(--ink);
}
.why .why__text {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15.5px;
}
.why-points {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 11px;
}
.why-points li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  font-size: 15px;
}
.why-points li::before {
  content: "\2014";
  color: var(--brass);
}
.why__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.why__imgs figure {
  overflow: hidden;
}
.why__imgs figure:nth-child(1) {
  grid-row: 1 / 3;
  aspect-ratio: 3 / 4;
}
.why__imgs figure:nth-child(2),
.why__imgs figure:nth-child(3) {
  aspect-ratio: 4 / 3;
}
.why__imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Product gallery ---------- */
.strip-block {
  margin-top: clamp(38px, 6vw, 60px);
}
.strip-block:first-child {
  margin-top: 0;
}
.strip-block__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.strip-block__head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
}
.strip-block__head .count {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.strip-block__head .strip-nav {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-self: center;
}
.strip-nav button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}
.strip-nav button:hover {
  background: var(--ink, #1a1a1a);
  color: #fff;
}
.strip-nav button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.strip-nav button[disabled] {
  opacity: 0.3;
  cursor: default;
}
.strip-nav button[disabled]:hover {
  background: transparent;
  color: inherit;
}

.strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.strip::-webkit-scrollbar {
  display: none;
}
.strip img {
  flex: 0 0 clamp(190px, 22%, 240px);
  width: auto;
  height: clamp(190px, 22vw, 240px);
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
  scroll-snap-align: start;
}

/* ---------- CTA band ---------- */
.cta {
  text-align: center;
}
.cta .display {
  margin: 18px auto 32px;
  max-width: 18ch;
}
.cta__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

/* ---------- Page intro ---------- */
.page-intro {
  background: var(--paper);
  padding: 150px 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
}
.page-intro .crumb {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.page-intro .crumb a:hover {
  color: var(--brass);
}
.page-intro .display {
  max-width: 20ch;
}
.page-intro p {
  margin-top: 20px;
  max-width: 52ch;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contact-photo {
  margin-top: 26px;
  overflow: hidden;
}
.contact-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.dl {
  border-top: 1px solid var(--line);
  margin-top: 26px;
}
.dl__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.dl__row dt {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.dl__row dd {
  font-size: 15.5px;
}
.dl__row dd a:hover {
  color: var(--brass);
}

.form {
  display: grid;
  gap: 4px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.field {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  padding: 15px 0;
}
.field::placeholder {
  color: var(--muted);
  opacity: 1;
}
.field:focus {
  outline: 0;
  border-color: var(--brass);
}
textarea.field {
  resize: vertical;
  min-height: 120px;
}
.form .btn {
  margin-top: 22px;
  justify-self: start;
}
.form__note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--brass-dk);
  min-height: 1.2em;
}

.map {
  margin-top: clamp(40px, 6vw, 64px);
}
.map iframe {
  width: 100%;
  height: clamp(300px, 38vw, 380px);
  border: 0;
  filter: grayscale(1) contrast(1.02);
  transition: filter 0.5s ease;
}
.map:hover iframe {
  filter: grayscale(0);
}

/* ---------- Footer ---------- */
.foot {
  position: relative;
  overflow: hidden;
  background: #1c1712;
  color: #e9e0d1;
  --f-muted: rgba(233, 224, 209, 0.55);
  --f-rule: rgba(233, 224, 209, 0.14);
  --f-brass: #ca9f68;
  padding: clamp(50px, 7vw, 84px) 0 30px;
}
.foot .wrap {
  position: relative;
  z-index: 2;
}

/* faint watermark */
.foot::after {
  content: "Alifa";
  position: absolute;
  right: 2%;
  bottom: -0.28em;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(9rem, 24vw, 22rem);
  line-height: 1;
  color: rgba(233, 224, 209, 0.035);
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

/* CTA row */
.foot__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: clamp(34px, 5vw, 52px);
  border-bottom: 1px solid var(--f-rule);
}
.foot__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--f-brass);
  margin-bottom: 14px;
}
.foot__statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.005em;
  color: #f4ecdd;
  max-width: 16ch;
}
.foot__statement em {
  font-style: italic;
  color: var(--f-brass);
}
.foot__cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  border: 1px solid var(--f-rule);
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #f4ecdd;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    gap 0.3s ease;
}
.foot__cta-btn span {
  color: var(--f-brass);
  transition: color 0.3s ease;
}
.foot__cta-btn:hover {
  background: var(--f-brass);
  border-color: var(--f-brass);
  color: #1c1712;
  gap: 20px;
}
.foot__cta-btn:hover span {
  color: #1c1712;
}

/* main grid */
.foot__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.5fr 1.5fr;
  gap: clamp(30px, 4vw, 56px);
  padding: clamp(40px, 5vw, 60px) 0;
}
.foot__logo {
  width: 120px;
  margin-bottom: 20px;
}
.foot__col {
  min-width: 0;
}
.foot__col--brand p {
  font-size: 14px;
  color: var(--f-muted);
  line-height: 1.75;
  max-width: 34ch;
}
.foot__col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--f-brass);
  margin-bottom: 18px;
  font-weight: 600;
}

.foot__links {
  list-style: none;
  display: grid;
  gap: 11px;
}
.foot__links a {
  font-size: 14px;
  color: var(--f-muted);
  position: relative;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}
.foot__links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--f-brass);
  transition: width 0.25s ease;
  transform: translateY(-50%);
}
.foot__links a:hover {
  color: #f4ecdd;
  padding-left: 20px;
}
.foot__links a:hover::before {
  width: 12px;
}

.foot__contact {
  list-style: none;
  display: grid;
  gap: 15px;
}
.foot__contact li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}
.foot__contact svg {
  width: 15px;
  height: 15px;
  margin-top: 4px;
  fill: var(--f-brass);
  flex-shrink: 0;
}
.foot__contact a,
.foot__contact span {
  font-size: 14px;
  color: var(--f-muted);
  line-height: 1.6;
  overflow-wrap: break-word;
}
.foot__contact a:hover {
  color: #f4ecdd;
}

.foot__map {
  border: 1px solid var(--f-rule);
  padding: 6px;
}
.foot__map iframe {
  display: block;
  width: 100%;
  height: 168px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.85) brightness(0.95);
  transition: filter 0.5s ease;
}
.foot__map:hover iframe {
  filter: grayscale(0.2);
}

/* bottom bar */
.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--f-rule);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--f-muted);
}
.foot__bottom p {
  text-transform: uppercase;
}
.foot__top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #f4ecdd;
  transition: color 0.25s ease;
}
.foot__top-link:hover {
  color: var(--f-brass);
}

/* ---------- Scroll to top button ---------- */
.to-top {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease,
    background 0.25s ease;
  box-shadow: 0 12px 28px rgba(34, 29, 23, 0.28);
  z-index: 900;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover {
  background: var(--f-brass, #8a6d3b);
}
.to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__grid,
  .why,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .split__body {
    grid-template-columns: 1fr;
  }
  .split__body > p,
  .split__body > .link-arrow,
  .split__body > .stack {
    grid-column: 1;
  }
  .split__body > .stack {
    grid-row: auto;
    margin-top: 30px;
  }
  .svc-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .svc-feature:nth-child(even) .svc-feature__media {
    order: 0;
  }
  img.stack__b {
    width: 55%;
    margin-top: -26%;
  }
  .strip img {
    flex-basis: clamp(170px, 40%, 210px);
    height: clamp(170px, 40vw, 210px);
  }
  .foot__grid {
    grid-template-columns: 1fr 1fr;
  }
  .foot__col--brand,
  .foot__col--map {
    grid-column: 1 / -1;
  }
  .foot__map iframe {
    height: 200px;
  }
}

@media (max-width: 760px) {
  .nav,
  .nav-cta {
    display: none;
  }
  .burger {
    display: block;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
  }
  .stat:last-child {
    border-bottom: 0;
  }
  .svc-row {
    grid-template-columns: 48px 1fr 26px;
  }
  .svc-row__desc {
    display: none;
  }
  .strip img {
    flex-basis: 62%;
    height: 62vw;
    max-height: 260px;
  }
  .step {
    grid-template-columns: 66px 1fr;
  }
  .form__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .sec-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .foot__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .foot__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .foot__cta-btn {
    width: 100%;
    justify-content: center;
  }
  .foot::after {
    display: none;
  }
  .dl__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
