/* =====================================================================
   JPM Built — Landing Page
   Desktop-first, matched to Figma "Desktop - 7" (1440 × 11204)
   ===================================================================== */

:root {
  /* ---- Color tokens ---- */
  --color-espresso: #392020;
  --color-footer: #302523;
  --color-mahogany: #5b3230;
  --color-cocoa: #462b2b;
  --color-wood: #e9ae6b;
  --color-wood-deep: #c49763;
  --color-cream: #fff8ef;
  --color-cream-2: #fff8f0;
  --color-cream-bg: #fbebd9;       /* Vector12 cream backdrop */
  --color-peach: #fbf1e4;          /* rgba(251,235,217,.61) over white */
  --color-card: #fff2e3;
  --color-text-light: #f4f4f4;
  --color-text-soft: #e6cfcf;
  --color-body-muted: #91746d;
  --color-heirloom-body: #583b3b;
  --color-form-text: #525162;
  --color-error: #d93f3a;

  /* ---- Shadows / radii ---- */
  --shadow-card: 0 0 24.9px rgba(0, 0, 0, 0.06);
  --radius-button: 3px;
  --radius-small: 5px;
  --radius-image: 6px;
  --radius-card: 8px;
  --radius-9: 9px;
  --radius-panel: 17px;

  /* ---- Overlays ---- */
  --overlay-hero: linear-gradient(110.706deg, rgba(27, 13, 13, 0.7) 23.899%, rgba(0, 0, 0, 0) 92.523%);
  --overlay-gold-image: linear-gradient(164.032deg, rgba(233, 174, 107, 0) 33.439%, rgba(167, 125, 83, 0.92) 90.183%);
  --overlay-brown-image: linear-gradient(163.491deg, rgba(233, 174, 107, 0) 33.439%, rgba(57, 32, 32, 0.43) 90.183%);
  --overlay-builthand: linear-gradient(26.49deg, rgba(140, 98, 51, 0.66) 2.68%, rgba(81, 64, 45, 0.66) 97.32%);
  --overlay-cabinetry: linear-gradient(174.737deg, rgba(91, 74, 61, 0.09) 7.08%, rgba(38, 31, 31, 0.582) 92.92%);
  --overlay-process: linear-gradient(90deg, rgba(36,31,32,0.73), rgba(36,31,32,0.73)), linear-gradient(90deg, rgba(57,32,32,0.41), rgba(57,32,32,0.41)), linear-gradient(83.2deg, rgba(0,0,0,0) 42.48%, rgba(0,0,0,0.7) 97.69%);
  --overlay-faq: linear-gradient(90deg, rgba(57,32,32,0.81), rgba(57,32,32,0.81)), linear-gradient(81.87deg, rgba(0,0,0,0) 42.48%, rgba(0,0,0,0.7) 97.69%);

  /* ---- Fonts ---- */
  --font-primary: "Archivo", Arial, sans-serif;
  --font-cta: "Archivo", Arial, sans-serif;       /* Ronzino fallback */
  --font-form: "Be Vietnam Pro", "Archivo", Arial, sans-serif;
  --font-quote: "Do Hyeon", Georgia, serif;

  --page: 1440px;
  --pad: 52px;
}

/* ---------------------------- Reset ---------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  background: #fff;
  color: var(--color-espresso);
  min-width: var(--page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
section { position: relative; }

/* ---------------------------- Primitives ---------------------------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  min-width: 229px;
  padding: 0 34px;
  background: var(--color-wood);
  color: var(--color-espresso);
  border: 0;
  border-radius: var(--radius-button);
  font-family: var(--font-cta);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: filter 0.18s ease, transform 0.18s ease;
}
.btn-gold:hover { filter: brightness(1.06); transform: translateY(-1px); }

.eyebrow {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.73;
  letter-spacing: 0.48px;
  color: var(--color-wood-deep);
  text-transform: uppercase;
}
.eyebrow--upper { letter-spacing: 0.8px; }

.section-title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 45px;
  line-height: 1.2;
}
.section-title--light { color: #fff; }
.section-title--mahogany { color: var(--color-mahogany); }

/* Generic centered inner wrapper */
.hero__content,
.intro__inner, .pillars__inner, .furniture__inner, .cabinetry__inner,
.heirloom__inner, .builthand__inner, .process__inner, .testimonial__inner,
.faq__inner, .designer__inner, .contact__inner, .footer__inner, .footer__bottom,
.nav__inner {
  width: var(--page);
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--pad);
  position: relative;
}

/* =====================================================================
   NAV + HERO
   ===================================================================== */
.hero {
  height: 826px;
  overflow: hidden;
  background: #1b0d0d;
  z-index: 1;
}
@media (min-width: 1600px) {
  .hero { height: min(100vh, 940px); }
  .hero__bg { background-position: center 62%; }
}
.hero__bg {
  position: absolute; inset: 0;
  background: url("../assets/hero-craftsman.png") center top / cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(110.706deg, rgba(27,13,13,0.82) 18%, rgba(27,13,13,0.28) 68%, rgba(0,0,0,0) 95%),
    linear-gradient(0deg, rgba(27,13,13,0.35) 0%, rgba(27,13,13,0) 40%);
}

.nav { position: absolute; top: 15px; left: 0; right: 0; z-index: 1000; transition: top 0.25s ease; }
.nav__inner {
  display: flex;
  align-items: center;
  height: 106px;
  width: 1387px;
  padding: 0 30px 0 28px;
  background:
    linear-gradient(rgba(57, 32, 32, 0.30), rgba(57, 32, 32, 0.30)),
    url("../assets/nav-wood.png") center / cover no-repeat;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  transition: height 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}
.nav__logo img { height: 74px; width: auto; object-fit: contain; transition: height 0.25s ease; }

/* Sticky, shorter nav once scrolled past the hero top */
.nav--stuck { position: fixed; top: 0; }
.nav--stuck .nav__inner {
  height: 74px;
  background:
    linear-gradient(rgba(57, 32, 32, 0.18), rgba(57, 32, 32, 0.18)),
    url("../assets/nav-wood.png") center / cover no-repeat;
  border-radius: 0 0 8px 8px;
}
.nav--stuck .nav__logo img { height: 50px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 57px;
  margin-left: auto;
  margin-right: 52px;
}
.nav__links a {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.73;
  letter-spacing: 0.6px;
  color: var(--color-text-light);
  transition: color 0.18s ease;
}
.nav__links a:hover { color: var(--color-wood); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 49px;
  border: 1px solid var(--color-wood);
  border-radius: var(--radius-small);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.6px;
  color: var(--color-text-light);
  transition: background 0.18s ease, color 0.18s ease;
}
.nav__cta:hover { background: var(--color-wood); color: var(--color-espresso); }

.hero__content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.hero__title {
  font-weight: 500;
  font-size: 66px;
  line-height: 66px;
  color: var(--color-cream);
  max-width: 689px;
}
.hero__lead {
  margin-top: 26px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.71;
  color: var(--color-text-light);
  max-width: 587px;
}
.hero__btn { margin-top: 34px; }

/* =====================================================================
   INTRO BAND
   ===================================================================== */
.intro {
  background: var(--color-cream-bg);
  position: relative;
  z-index: 2;
  margin-top: -94px;
  clip-path: polygon(0 0, 50% 94px, 100% 0, 100% 100%, 0 100%);
}
.intro__inner {
  padding-top: 150px;
  padding-bottom: 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.intro__title {
  font-weight: 500;
  font-size: 45px;
  line-height: 1.2;
  color: var(--color-mahogany);
}
.intro__copy {
  max-width: 357px;
  margin-top: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.73;
  color: var(--color-espresso);
  text-align: right;
}

/* =====================================================================
   BRAND PILLARS
   ===================================================================== */
.pillars { background: var(--color-cream-bg); }
.pillars__inner {
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 515px 1fr;
  column-gap: 27px;
  align-items: stretch;
}
.pillars__feature {
  position: relative;
  width: 515px;
  min-height: 680px;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: url("../assets/pillars-feature.png") center 30% / cover no-repeat;
}
.pillars__feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(167,125,83,0) 42%, rgba(167,125,83,0.92) 100%);
}
.pillars__feature-text {
  position: absolute;
  left: 35px; right: 35px; bottom: 34px;
  color: #fff;
}
.pillars__feature-text h3 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.pillars__feature-text p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  max-width: 404px;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 23px;
}
.pcard {
  background: var(--color-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  min-height: 329px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pcard__icon { margin-bottom: 26px; }
.pcard h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-cocoa);
  margin-bottom: 14px;
}
.pcard p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.73;
  color: var(--color-body-muted);
  max-width: 313px;
}

/* =====================================================================
   CUSTOM FURNITURE
   ===================================================================== */
.furniture { background: var(--color-espresso); overflow: hidden; }
.furniture__bg {
  position: absolute; inset: 0;
  background: url("../assets/figma-all/img156344623840216030Fps3.jpg") center / cover no-repeat;
  opacity: 0.08;
}
.furniture__inner {
  z-index: 1;
  padding-top: 128px;
  padding-bottom: 128px;
  display: grid;
  grid-template-columns: 1fr 495px;
  column-gap: 60px;
  align-items: start;
}
.furniture__lead {
  margin-top: 22px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.71;
  color: var(--color-text-light);
  max-width: 564px;
}
.furniture__image {
  position: relative;
  width: 495px;
  height: 677px;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: url("../assets/furniture.png") center / cover no-repeat;
}
.furniture__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(163.491deg, rgba(57,32,32,0.14) 20%, rgba(57,32,32,0.62) 92%);
}

/* =====================================================================
   ACCORDION (shared: furniture + faq)
   ===================================================================== */
.accordion { width: 100%; }
.acc-row { border-top: 1px solid rgba(233, 174, 107, 0.19); }
.accordion .acc-row:last-child { border-bottom: 1px solid rgba(233, 174, 107, 0.19); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: #fff;
  transition: color 0.25s ease;
}
.acc-head:hover,
.acc-row--open > .acc-head { color: var(--color-wood); }
.acc-ico {
  position: relative;
  flex: none;
  width: 24px; height: 24px;
}
.acc-ico::before, .acc-ico::after {
  content: ""; position: absolute; background: var(--color-wood);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.acc-ico::before { left: 0; right: 0; top: 50%; height: 2px; transform: translateY(-50%); }
.acc-ico::after  { top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); }
.acc-row--open .acc-ico::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.acc-row--open .acc-body { max-height: 320px; }

/* furniture variant */
.accordion--furniture .acc-head { padding: 26px 0; font-weight: 600; font-size: 24px; line-height: 1.49; }
.accordion--furniture { margin-top: 40px; }
.accordion--furniture .acc-body p {
  padding-bottom: 26px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.71;
  color: var(--color-text-light);
  max-width: 578px;
}

/* faq variant */
.accordion--faq .acc-row { border-top-color: rgba(233, 174, 107, 0.16); }
.accordion--faq .acc-row:last-child { border-bottom-color: rgba(233, 174, 107, 0.16); }
.accordion--faq .acc-head { padding: 30px 0; font-weight: 500; font-size: 20px; }
.accordion--faq .acc-ico { width: 22px; height: 22px; }
.accordion--faq .acc-body p {
  padding-bottom: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.73;
  color: var(--color-text-soft);
  max-width: 1137px;
}

/* =====================================================================
   CUSTOM CABINETRY
   ===================================================================== */
.cabinetry { overflow: hidden; background: #2a211d; }
.cabinetry__bg {
  position: absolute; inset: 0;
  background: url("../assets/cabinetry-bg.png") center / cover no-repeat;
}
.cabinetry__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(35,24,20,0.80) 0%, rgba(35,24,20,0.30) 32%, rgba(35,24,20,0) 62%),
    linear-gradient(0deg, rgba(35,24,20,0.28) 0%, rgba(35,24,20,0) 32%);
}
.cabinetry__inner {
  z-index: 1;
  padding-top: 205px;
  padding-bottom: 150px;
}
.cabinetry__lead {
  margin-top: 18px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.73;
  color: #fff;
  max-width: 484px;
}
.cabinetry__cards {
  margin-top: 56px;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cabinetry__cards::-webkit-scrollbar { display: none; }
.ccard {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  background: rgba(57, 32, 32, 0.65);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  border-radius: var(--radius-9);
  min-height: 212px;
  padding: 38px 36px;
}
.ccard h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.49;
  color: #fff;
  margin-bottom: 14px;
}
.ccard p {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.73;
  color: var(--color-text-light);
  max-width: 360px;
}
.cabinetry__nav {
  position: absolute;
  right: 52px; bottom: 30px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cab-arrow {
  width: 34px; height: 34px;
  position: relative;
  display: inline-block;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.cab-arrow::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 12px;
  border-top: 2px solid var(--color-wood);
  border-right: 2px solid var(--color-wood);
  transition: border-color 0.2s ease;
}
.cab-arrow--prev::before {
  border-color: rgba(255, 255, 255, 0.55);
  transform: translate(-40%, -50%) rotate(-135deg);
}
.cab-arrow--next::before { transform: translate(-60%, -50%) rotate(45deg); }
.cab-arrow:hover::before { border-color: var(--color-wood); }
.cab-arrow:disabled { cursor: default; opacity: 0.35; }

/* =====================================================================
   HEIRLOOM FURNITURE
   ===================================================================== */
.heirloom { background: var(--color-cream-bg); }
.heirloom__inner { padding-top: 98px; padding-bottom: 70px; }
.heirloom .eyebrow { letter-spacing: 0.48px; }
.heirloom__frame {
  position: relative;
  margin-top: 34px;
}
/* Crafted crossing corners: horizontal + vertical rules overshoot past each
   other at every corner, forming little crosshairs. */
.heirloom__frame::before {
  /* top & bottom rules, overshooting left & right */
  content: "";
  position: absolute;
  left: -16px; right: -16px;
  top: 0; bottom: 0;
  border-top: 1px solid rgba(196, 151, 99, 0.55);
  border-bottom: 1px solid rgba(196, 151, 99, 0.55);
  pointer-events: none;
}
.heirloom__frame::after {
  /* left & right rules, overshooting top & bottom */
  content: "";
  position: absolute;
  top: -16px; bottom: -16px;
  left: 0; right: 0;
  border-left: 1px solid rgba(196, 151, 99, 0.55);
  border-right: 1px solid rgba(196, 151, 99, 0.55);
  pointer-events: none;
}
.heirloom__grid {
  display: grid;
  grid-template-columns: 516px 1fr;
  gap: 54px;
  align-items: center;
  padding: 56px 48px;
}
.heirloom__image {
  position: relative;
  width: 516px; height: 608px;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: url("../assets/heirloom.png") center / cover no-repeat;
}
.heirloom__image-overlay { position: absolute; inset: 0; background: var(--overlay-brown-image); }
.heirloom__text .section-title { margin-bottom: 24px; }
.heirloom__text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.77;
  color: var(--color-heirloom-body);
  max-width: 615px;
  margin-bottom: 32px;
}

/* =====================================================================
   BUILT BY HAND
   ===================================================================== */
.builthand { overflow: hidden; background: #5b4127; }
.builthand__bg {
  position: absolute; inset: 0;
  background: url("../assets/builthand-bg.png") center / cover no-repeat;
}
.builthand__overlay { position: absolute; inset: 0; background: var(--overlay-builthand); }
.builthand__inner {
  z-index: 1;
  padding-top: 148px;
  padding-bottom: 96px;
  text-align: center;
}
.builthand__title {
  font-weight: 400;
  font-size: 50.634px;
  line-height: 1.2;
  color: #fff;
  text-transform: capitalize;
  max-width: 900px;
  margin: 0 auto;
}
.builthand__body {
  max-width: 819px;
  margin: 26px auto 0;
}
.builthand__body p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.73;
  color: #fff;
}
.builthand__body p + p { margin-top: 18px; }
.builthand__cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
  margin-top: 64px;
}
.bhcard {
  position: relative;
  flex: 1 1 0;
  height: 420px;
  border: 1px solid var(--color-wood);
  border-radius: 10px;
}
/* the centre piece is wider, but every card is the SAME height
   so all three images line up */
.bhcard--wide {
  flex: 1.22 1 0;
}
/* Off-cut frame: image is WIDER than the frame (overflows L/R) and SHORTER
   (frame overshoots top/bottom) — the crafted, off-register look. */
.bhcard img {
  position: absolute;
  top: 20px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% - 40px);
  object-fit: cover;
  border-radius: 4px;
}

/* =====================================================================
   PROCESS
   ===================================================================== */
.process { overflow: hidden; background: #241f20; }
.process__bg {
  position: absolute; inset: 0;
  background: url("../assets/figma-all/imgPexelsMarkDAiuto2082017948041.jpg") center / cover no-repeat;
}
.process__overlay { position: absolute; inset: 0; background: var(--overlay-process); }
.process__inner {
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 130px;
}
.process__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 70px;
}
.process__title {
  font-weight: 400;
  font-size: 50.634px;
  line-height: 1.2;
  color: #fff;
  text-transform: capitalize;
  max-width: 1048px;
}
.process__intro {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.73;
  color: #fff;
  text-align: right;
  max-width: 545px;
  flex: none;
  width: 545px;
}
.process__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(233, 174, 107, 0.55);
  border-left: 1px solid rgba(233, 174, 107, 0.55);
}
/* Crafted joint ornaments at the frame corners + where dividers meet the edges */
.proc-joint {
  position: absolute;
  width: 22px;
  height: 10px;
  background: url("../assets/joint.svg") center / contain no-repeat;
  pointer-events: none;
  z-index: 2;
}
.proc-joint--tl { top: 0; left: 0; transform: translate(-50%, -50%); }
.proc-joint--tc { top: 0; left: 50%; transform: translate(-50%, -50%); }
.proc-joint--tr { top: 0; right: 0; transform: translate(50%, -50%); }
.proc-joint--bl { bottom: 0; left: 0; transform: translate(-50%, 50%); }
.proc-joint--bc { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.proc-joint--br { bottom: 0; right: 0; transform: translate(50%, 50%); }
.proc-joint--lc { top: 50%; left: 0; transform: translate(-50%, -50%) rotate(90deg); }
.proc-joint--rc { top: 50%; right: 0; transform: translate(50%, -50%) rotate(90deg); }
.prcard {
  position: relative;
  background: linear-gradient(257deg, rgba(40, 22, 22, 0.42) 3.4%, rgba(36, 31, 32, 0.42) 96.5%);
  border-right: 1px solid rgba(233, 174, 107, 0.55);
  border-bottom: 1px solid rgba(233, 174, 107, 0.55);
  min-height: 352px;
  padding: 56px 48px;
}
.prcard__num {
  position: absolute;
  top: 22px; left: 48px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-wood);
}
.prcard__icon { margin: 18px 0 22px; }
.prcard h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.49;
  color: #fff;
  margin-bottom: 12px;
}
.prcard p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.73;
  color: #fff;
  max-width: 460px;
}

/* =====================================================================
   TESTIMONIAL
   ===================================================================== */
.testimonial { background: var(--color-peach); }
.testimonial__inner { padding-top: 62px; padding-bottom: 90px; }
.testimonial .eyebrow {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196, 151, 99, 0.5);
}
.testimonial__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 506px 1fr;
  gap: 21px;
  align-items: start;
}
.testimonial__image {
  width: 506px; height: 608px;
  border-radius: var(--radius-image);
  background: url("../assets/figma-all/img5806656Uhd2160384025Fps4.jpg") center 20% / cover no-repeat;
}
.testimonial__card {
  position: relative;
  background: var(--color-cream-2);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 44px rgba(57, 32, 32, 0.10);
  min-height: 602px;
  padding: 64px 60px;
}
.testimonial__quote-mark {
  position: absolute;
  top: 24px; right: 56px;
  font-family: var(--font-quote);
  font-size: 168px;
  line-height: 0.7;
  color: var(--color-wood);
  pointer-events: none;
}
.testimonial__card .section-title { max-width: 475px; line-height: 1.16; }
.testimonial__quote {
  margin-top: 28px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.77;
  color: rgba(88, 59, 59, 0.56);
  max-width: 606px;
}
.testimonial__name {
  margin-top: 38px;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  color: #543434;
}
.testimonial__role {
  margin-top: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.73;
  letter-spacing: 0.96px;
  color: #d1a16a;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { overflow: hidden; background: var(--color-espresso); }
.faq__bg {
  position: absolute; inset: 0;
  background: url("../assets/figma-all/imgRectangle43755.jpg") center / cover no-repeat;
}
.faq__overlay { position: absolute; inset: 0; background: var(--overlay-faq); }
.faq__inner { z-index: 1; padding-top: 110px; padding-bottom: 120px; }
.faq__title { margin-bottom: 40px; }

/* =====================================================================
   INTERIOR DESIGNER CTA
   ===================================================================== */
.designer { overflow: hidden; background: #2b1509; }
.designer__bg {
  position: absolute; inset: 0;
  background: url("../assets/figma-all/img6568699Uhd4096216025Fps2.jpg") center / cover no-repeat;
  opacity: 0.30;
}
.designer__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,10,6,0.58) 0%, rgba(20,10,6,0.18) 60%, rgba(20,10,6,0.4) 100%);
}
.designer__inner {
  z-index: 1;
  min-height: 875px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 215px;
}
.designer__title {
  font-weight: 400;
  font-size: 50.634px;
  line-height: 1.2;
  color: #fff;
  text-transform: capitalize;
  max-width: 868px;
}
.designer__body {
  margin-top: 28px;
  margin-bottom: 36px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.73;
  color: #fff;
  max-width: 631px;
}

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact { background: var(--color-peach); }
.contact__inner {
  padding-top: 80px;
  padding-bottom: 100px;
  text-align: center;
}
.contact__title {
  line-height: 1.16;
  max-width: 871px;
  margin: 0 auto;
}
.contact__sub {
  margin: 18px auto 0;
  max-width: 588px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.73;
  color: rgba(57, 32, 32, 0.66);
}
.contact__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 565px 740px;
  gap: 28px;
  justify-content: center;
  text-align: left;
}
.contact__image {
  position: relative;
  width: 565px;
  height: auto;            /* stretch to match the form's height — balanced sides */
  align-self: stretch;
  min-height: 640px;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: url("../assets/figma-all/img5806656Uhd2160384025Fps5.jpg") center 25% / cover no-repeat;
}
.contact__image-overlay { position: absolute; inset: 0; background: var(--overlay-brown-image); }
.contact__image-caption {
  position: absolute;
  left: 55px; right: 40px; bottom: 40px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.73;
  color: var(--color-text-light);
}
.contact__form {
  background: var(--color-cream-2);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 44px rgba(57, 32, 32, 0.10);
  padding: 60px 56px;
}
.contact__form-title {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: var(--color-espresso);
  text-transform: capitalize;
  margin-bottom: 40px;
}
.field { margin-bottom: 30px; }
.field label {
  display: block;
  font-family: var(--font-form);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.02;
  color: var(--color-form-text);
  margin-bottom: 16px;
}
.field .req { color: var(--color-error); }
.field input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c9c4cf;
  background: transparent;
  padding: 6px 0;
  font-family: var(--font-form);
  font-size: 15px;
  color: var(--color-form-text);
  outline: none;
}
.field input:focus { border-bottom-color: var(--color-wood); }
/* give the message field a roomier, textarea-like space */
.field--message input { padding-bottom: 70px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.contact__submit { margin-top: 12px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--color-footer); overflow: hidden; }
.footer__bg {
  position: absolute; inset: 0;
  background: url("../assets/footer-bg.png") center / cover no-repeat;
}
.footer__inner {
  z-index: 1;
  padding-top: 56px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 470px 280px 1fr;
  gap: 0;
}
.footer__brand { padding-right: 60px; }
.footer__logo { height: 50px; width: auto; object-fit: contain; margin-bottom: 24px; }
.footer__brand p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.73;
  color: rgba(255, 255, 255, 0.56);
  max-width: 408px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.footer__nav a {
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
  transition: color 0.18s ease;
}
.footer__nav a:hover { color: var(--color-wood); }
.footer__news { padding-left: 60px; border-left: 1px solid rgba(255, 255, 255, 0.14); }
.footer__news-title {
  font-weight: 600;
  font-size: 17px;
  line-height: 1.69;
  color: rgba(255, 255, 255, 0.56);
  max-width: 351px;
  margin-bottom: 22px;
}
.footer__news-form {
  position: relative;
  width: 394px;
  height: 51px;
  margin-bottom: 26px;
}
.footer__news-form input {
  width: 100%; height: 100%;
  border: 0.5px solid var(--color-wood);
  border-radius: 79px;
  background: transparent;
  padding: 0 60px 0 24px;
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  color: #fff;
  outline: none;
}
.footer__news-form input::placeholder { color: rgba(255, 255, 255, 0.7); }
.footer__news-form button {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--color-wood);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.footer__social { display: flex; gap: 20px; align-items: center; }
.footer__social a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.18s ease;
}
.footer__social a:hover { color: var(--color-wood); }
.footer__social svg { fill: currentColor; }

.footer__bottom {
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__bottom p {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.93;
  color: rgba(255, 255, 255, 0.56);
}

/* =====================================================================
   RESPONSIVE — tablet & mobile
   Layers: <=1439 fluid unlock · <=1024 tablet+hamburger · <=640 mobile
   ===================================================================== */

/* Hamburger + overlay menu are hidden on desktop; revealed at <=1024 */
.nav__burger { display: none; }
.nav__menu { display: none; }

/* ---------------------------------------------------------------------
   Fluid layer — unlock the 1440 floor so 1025–1439 never overflows
   --------------------------------------------------------------------- */
@media (max-width: 1439px) {
  :root { --pad: 40px; }
  body { min-width: 0; }
  .hero__content,
  .intro__inner, .pillars__inner, .furniture__inner, .cabinetry__inner,
  .heirloom__inner, .builthand__inner, .process__inner, .testimonial__inner,
  .faq__inner, .designer__inner, .contact__inner, .footer__inner, .footer__bottom,
  .nav__inner {
    width: 100%;
    max-width: var(--page);
  }
  .nav__inner { width: 100%; }
  .cabinetry__nav { right: 40px; }
  .contact__image-caption { left: 40px; right: 32px; }
  /* contact grid is a rigid 565px+740px that only fits at >=1440 — make it fluid */
  .contact__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.31fr); }
  .contact__image { width: 100%; }
}

/* ---------------------------------------------------------------------
   Tablet (<=1024px) — stacked layouts + hamburger menu
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --pad: 32px; }

  /* ---- shared type scale ---- */
  .section-title { font-size: 34px; }
  .hero__title { font-size: 46px; line-height: 1.08; }
  .builthand__title, .process__title, .designer__title { font-size: 38px; }
  .contact__form-title { font-size: 28px; }
  .eyebrow { font-size: 15px; }

  /* ---- NAV: fluid bar, hide desktop links/cta, show burger ---- */
  .nav { top: 0; }
  .nav--stuck { top: 0; }
  .nav__inner { padding: 0 20px; height: 84px; }
  .nav--stuck .nav__inner { height: 64px; }
  .nav__logo img { height: 56px; }
  .nav--stuck .nav__logo img { height: 44px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    width: 48px; height: 48px;
    padding: 0;
    background: none; border: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .nav__burger span {
    display: block;
    width: 28px; height: 2px;
    background: var(--color-text-light);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  /* ---- fullscreen overlay menu ---- */
  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 96px 32px 48px;
    background:
      linear-gradient(rgba(57, 32, 32, 0.86), rgba(57, 32, 32, 0.92)),
      url("../assets/nav-wood.png") center / cover no-repeat;
    background-color: var(--color-espresso);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    overflow-y: auto;
  }
  body.is-menu-open .nav__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
  }
  body.is-menu-open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.is-menu-open .nav__burger span:nth-child(2) { opacity: 0; }
  body.is-menu-open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav__menu-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    display: grid; place-items: center;
    background: none; border: 0;
    cursor: pointer;
    font-size: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .nav__menu-close::before, .nav__menu-close::after {
    content: ""; position: absolute;
    width: 26px; height: 2px;
    background: var(--color-wood);
    border-radius: 2px;
  }
  .nav__menu-close::before { transform: rotate(45deg); }
  .nav__menu-close::after  { transform: rotate(-45deg); }
  .nav__menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-bottom: 44px;
  }
  .nav__menu-links a {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.6px;
    color: var(--color-text-light);
    transition: color 0.18s ease;
  }
  .nav__menu-links a:hover { color: var(--color-wood); }
  .nav__menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 54px;
    padding: 0 32px;
    border: 1px solid var(--color-wood);
    border-radius: var(--radius-small);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.6px;
    color: var(--color-text-light);
    transition: background 0.18s ease, color 0.18s ease;
  }
  .nav__menu-cta:hover { background: var(--color-wood); color: var(--color-espresso); }

  /* ---- HERO ---- */
  .hero { height: auto; min-height: 640px; }
  .hero__content {
    position: relative;
    top: auto; left: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 640px;
    padding-top: 140px;
    padding-bottom: 80px;
  }
  .hero__title { font-size: 48px; line-height: 1.08; max-width: 560px; }
  .hero__lead { font-size: 18px; max-width: 480px; }

  /* ---- INTRO ---- */
  .intro {
    margin-top: -60px;
    clip-path: polygon(0 0, 50% 60px, 100% 0, 100% 100%, 0 100%);
  }
  .intro__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 96px;
    padding-bottom: 40px;
  }
  .intro__title { font-size: 36px; }
  .intro__copy { max-width: 560px; margin-top: 0; text-align: left; }

  /* ---- PILLARS ---- */
  .pillars__inner {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 36px;
    padding-bottom: 72px;
  }
  .pillars__feature { width: 100%; min-height: 0; aspect-ratio: 515 / 520; }
  .pillars__feature-text { left: 32px; right: 32px; bottom: 32px; }
  .pillars__feature-text h3 { font-size: 34px; }
  .pillars__feature-text p { font-size: 17px; max-width: 460px; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pcard { min-height: 0; padding: 34px 28px; }
  .pcard h4 { font-size: 22px; }

  /* ---- FURNITURE ---- */
  .furniture__inner {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 48px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .furniture__lead { font-size: 18px; max-width: 100%; }
  .furniture__image { width: 100%; height: auto; aspect-ratio: 495 / 560; }
  .accordion--furniture { margin-top: 32px; }
  .accordion--furniture .acc-head { padding: 22px 0; font-size: 21px; }
  .accordion--furniture .acc-body p { font-size: 17px; max-width: 100%; }

  /* ---- CABINETRY ---- */
  .cabinetry__inner { padding-top: 80px; padding-bottom: 88px; }
  .cabinetry__lead { max-width: 100%; }
  .cabinetry__cards { margin-top: 40px; }
  .ccard { flex: 0 0 calc((100% - 18px) / 2); padding: 32px 30px; min-height: 0; }
  .ccard p { max-width: none; }
  .cabinetry__nav { right: 32px; bottom: 24px; }

  /* ---- HEIRLOOM ---- */
  .heirloom__inner { padding-top: 64px; padding-bottom: 56px; }
  .heirloom__grid { grid-template-columns: 1fr; gap: 36px; padding: 32px 28px; }
  .heirloom__image { width: 100%; height: auto; aspect-ratio: 516 / 608; }
  .heirloom__text p { max-width: none; }

  /* ---- BUILT BY HAND ---- */
  .builthand__inner { padding-top: 80px; padding-bottom: 72px; }
  .builthand__title { max-width: 100%; }
  .builthand__body { max-width: 100%; }
  .builthand__cards { gap: 20px; margin-top: 48px; flex-wrap: wrap; justify-content: center; }
  .bhcard, .bhcard--wide {
    flex: 0 0 calc((100% - 40px) / 3);
    aspect-ratio: 352 / 470;
  }
  /* drop the off-cut on smaller screens so neighbours don't collide */
  .bhcard img { top: 6px; left: 6px; width: calc(100% - 12px); height: calc(100% - 12px); }

  /* ---- PROCESS ---- */
  .process__inner { padding-top: 72px; padding-bottom: 72px; }
  .process__head { flex-direction: column; gap: 24px; margin-bottom: 48px; }
  .process__title { max-width: none; }
  .process__intro { width: auto; max-width: 100%; flex: 1 1 auto; text-align: left; }
  .process__grid { grid-template-columns: 1fr; }
  .prcard { min-height: 0; padding: 40px 36px; }
  .prcard__num { left: 36px; }
  .prcard p { max-width: none; }

  /* ---- TESTIMONIAL ---- */
  .testimonial__inner { padding-top: 56px; padding-bottom: 64px; }
  .testimonial__grid { grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
  .testimonial__image { width: 100%; height: auto; aspect-ratio: 506 / 440; background-size: cover; }
  .testimonial__card { min-height: 0; padding: 56px 48px; }
  .testimonial__quote-mark { font-size: 120px; top: 20px; right: 40px; }
  .testimonial__card .section-title { max-width: none; }
  .testimonial__quote { max-width: none; }

  /* ---- FAQ ---- */
  .faq__inner { padding-top: 72px; padding-bottom: 72px; }
  .faq__title { margin-bottom: 32px; }
  .accordion--faq .acc-head { padding: 26px 0; font-size: 19px; }
  .accordion--faq .acc-body p { max-width: none; }

  /* ---- DESIGNER ---- */
  .designer__inner { min-height: 560px; padding-top: 96px; padding-bottom: 96px; }
  .designer__title { max-width: 100%; }
  .designer__body { max-width: 100%; }

  /* ---- CONTACT ---- */
  .contact__inner { padding-top: 72px; padding-bottom: 80px; }
  .contact__title { max-width: 100%; }
  .contact__grid {
    margin-top: 44px;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
    margin-inline: auto;
  }
  .contact__image { width: 100%; height: auto; aspect-ratio: 565 / 700; min-height: 320px; }
  .contact__form { padding: 48px 40px; }
  .field-row { gap: 32px; }

  /* ---- FOOTER ---- */
  .footer__inner {
    padding-top: 48px;
    padding-bottom: 36px;
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
  }
  .footer__brand { grid-column: 1 / -1; padding-right: 0; }
  .footer__nav { padding-left: 0; border-left: 0; }
  .footer__news { padding-left: 40px; border-left: 1px solid rgba(255, 255, 255, 0.14); }
  .footer__news-form { width: 100%; max-width: 394px; }
}

/* ---------------------------------------------------------------------
   Mobile (<=640px) — single column, refined type
   --------------------------------------------------------------------- */
@media (max-width: 640px) {
  :root { --pad: 20px; }

  /* ---- shared type scale ---- */
  .section-title { font-size: 28px; }
  .hero__title { font-size: 34px; line-height: 1.1; max-width: 100%; }
  .builthand__title, .process__title, .designer__title { font-size: 30px; }
  .contact__form-title { font-size: 26px; }
  .eyebrow { font-size: 14px; }

  /* ---- NAV ---- */
  .nav { top: 0; }
  .nav--stuck { top: 0; }
  .nav__inner { height: 72px; padding: 0 14px; border-radius: 6px; }
  .nav--stuck .nav__inner { height: 60px; border-radius: 0 0 6px 6px; }
  .nav__logo img { height: 46px; }
  .nav--stuck .nav__logo img { height: 40px; }
  .nav__burger { width: 44px; height: 44px; }
  .nav__burger span { width: 26px; }
  .nav__menu { padding: 88px 24px 40px; }
  .nav__menu-close { top: 18px; right: 18px; }
  .nav__menu-links { gap: 24px; margin-bottom: 36px; }
  .nav__menu-links a { font-size: 24px; }
  .nav__menu-cta { min-width: 180px; height: 50px; font-size: 16px; }

  /* ---- HERO ---- */
  .hero { min-height: 680px; height: 680px; }
  .hero__bg { background-position: 74% 26%; }
  .hero__content { min-height: 680px; padding-top: 104px; padding-bottom: 56px; }
  .hero__lead { margin-top: 18px; font-size: 16px; line-height: 1.6; }
  .hero__btn { margin-top: 28px; }
  .btn-gold { min-width: 0; width: 100%; max-width: 320px; }

  /* ---- INTRO ---- */
  .intro {
    margin-top: -40px;
    clip-path: polygon(0 0, 50% 38px, 100% 0, 100% 100%, 0 100%);
  }
  .intro__inner { gap: 16px; padding-top: 72px; padding-bottom: 32px; }
  .intro__title { font-size: 28px; }
  .intro__copy { max-width: 100%; font-size: 15px; }

  /* ---- PILLARS ---- */
  .pillars__inner { row-gap: 28px; padding-bottom: 52px; }
  .pillars__feature { aspect-ratio: 515 / 560; border-radius: 6px; }
  .pillars__feature-text { left: 22px; right: 22px; bottom: 24px; }
  .pillars__feature-text h3 { font-size: 28px; margin-bottom: 12px; }
  .pillars__feature-text p { font-size: 16px; max-width: 100%; }
  .pillars__grid { grid-template-columns: 1fr; gap: 16px; }
  .pcard { padding: 30px 24px; }
  .pcard h4 { font-size: 21px; }
  .pcard p { max-width: 100%; }

  /* ---- FURNITURE ---- */
  .furniture__inner { row-gap: 36px; padding-top: 56px; padding-bottom: 56px; }
  .furniture__lead { font-size: 16px; margin-top: 16px; }
  .furniture__image { aspect-ratio: 4 / 5; }
  .accordion--furniture { margin-top: 28px; }
  .accordion--furniture .acc-head { padding: 20px 0; font-size: 19px; gap: 16px; }
  .accordion--furniture .acc-body p { font-size: 16px; padding-bottom: 22px; }

  /* ---- CABINETRY ---- */
  .cabinetry__inner { padding-top: 52px; padding-bottom: 64px; }
  .cabinetry__cards { margin-top: 32px; }
  .ccard { flex: 0 0 88%; padding: 28px 24px; }
  .cabinetry__nav { right: 20px; bottom: 18px; }

  /* ---- HEIRLOOM ---- */
  .heirloom__inner { padding-top: 48px; padding-bottom: 48px; }
  .heirloom__frame { margin-top: 14px; }
  .heirloom__grid { gap: 28px; padding: 20px 18px; }
  .heirloom__image { aspect-ratio: 516 / 560; }
  .heirloom__text .section-title { margin-bottom: 18px; }
  .heirloom__text p { font-size: 16px; margin-bottom: 26px; }

  /* ---- BUILT BY HAND ---- */
  .builthand__inner { padding-top: 52px; padding-bottom: 52px; }
  .builthand__body { margin-top: 20px; }
  .builthand__body p { font-size: 16px; }
  /* fade slideshow on mobile */
  .builthand__cards { position: relative; margin-top: 36px; width: 100%; max-width: 360px; margin-left: auto; margin-right: auto; aspect-ratio: 352 / 440; }
  .bhcard, .bhcard--wide { position: absolute; inset: 0; width: 100%; max-width: 100%; aspect-ratio: 352 / 440; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; flex: none; border-radius: 10px; }
  .bhcard.bh-active { opacity: 1; pointer-events: auto; }

  /* ---- PROCESS ---- */
  .process__inner { padding-top: 52px; padding-bottom: 52px; }
  .process__head { gap: 18px; margin-bottom: 36px; }
  .process__intro { font-size: 15px; }
  .prcard { padding: 48px 24px 32px; }
  .prcard__num { left: 24px; top: 20px; }
  .prcard h3 { font-size: 22px; }
  .prcard p { font-size: 16px; }

  /* ---- TESTIMONIAL ---- */
  .testimonial__inner { padding-top: 44px; padding-bottom: 52px; }
  .testimonial__grid { gap: 20px; margin-top: 28px; }
  .testimonial__image { aspect-ratio: 4 / 3; }
  .testimonial__card { padding: 40px 24px; }
  .testimonial__quote-mark { font-size: 72px; top: 12px; right: 22px; }
  .testimonial__card .section-title { font-size: 28px; }
  .testimonial__quote { font-size: 16px; margin-top: 20px; }
  .testimonial__name { font-size: 21px; margin-top: 28px; }

  /* ---- FAQ ---- */
  .faq__inner { padding-top: 52px; padding-bottom: 52px; }
  .faq__title { margin-bottom: 26px; }
  .accordion--faq .acc-head { padding: 22px 0; font-size: 17px; gap: 16px; }
  .accordion--faq .acc-body p { font-size: 15px; padding-bottom: 26px; }

  /* ---- DESIGNER ---- */
  .designer__inner { min-height: 460px; padding-top: 64px; padding-bottom: 56px; }
  .designer__body { margin-top: 20px; margin-bottom: 28px; font-size: 16px; }

  /* ---- CONTACT ---- */
  .contact__inner { padding-top: 56px; padding-bottom: 56px; }
  .contact__sub { font-size: 16px; }
  .contact__grid { margin-top: 36px; gap: 20px; max-width: 100%; }
  .contact__image { aspect-ratio: 4 / 5; min-height: 280px; }
  .contact__form { padding: 36px 22px; }
  .contact__form-title { margin-bottom: 32px; }
  .field { margin-bottom: 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  /* ---- FOOTER ---- */
  .footer__inner { padding-top: 44px; padding-bottom: 32px; grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { grid-column: auto; padding-right: 0; }
  .footer__brand p { max-width: 100%; }
  .footer__nav { padding-left: 0; border-left: 0; }
  .footer__news { padding-left: 0; border-left: 0; }
  .footer__news-title { max-width: 100%; }
  .footer__news-form { width: 100%; max-width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }
}
