:root {
  --olive-900: #3f432c;
  --olive-800: #505437;
  --olive-700: #5f6240;
  --olive-600: #717650;
  --olive-100: #ececdf;
  --cream: #f7f4ed;
  --sand: #e7ded0;
  --white: #ffffff;
  --ink: #252720;
  --muted: #66685f;
  --line: rgba(63, 67, 44, 0.16);
  --shadow: 0 18px 50px rgba(54, 48, 36, 0.12);
  --shadow-soft: 0 10px 30px rgba(54, 48, 36, 0.08);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }

.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 20px; top: 12px; z-index: 9999; padding: 10px 16px;
  background: var(--ink); color: var(--white); border-radius: 8px; transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.topbar { background: var(--olive-900); color: var(--white); font-size: 13px; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar__items { display: flex; align-items: center; gap: 24px; }
.topbar span, .topbar__link { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; fill: currentColor; }
.topbar__link { font-weight: 700; }
.topbar__link:hover { opacity: 0.8; }

.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px rgba(30,31,24,.06); }
.site-header__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; color: var(--olive-900); }
.brand__name { font-family: var(--serif); font-size: clamp(29px, 3vw, 38px); letter-spacing: -1.4px; }
.brand__sub { margin-top: 7px; font-size: 10px; font-weight: 800; letter-spacing: 5px; padding-left: 3px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav > a:not(.button) { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; position: relative; }
.nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--olive-700); transition: right .2s ease; }
.nav > a:not(.button):hover::after, .nav > a:not(.button):focus-visible::after { right: 0; }
.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.button {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid var(--olive-700); background: var(--olive-700); color: var(--white);
  border-radius: 7px; padding: 13px 22px; font-size: 13px; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; cursor: pointer; box-shadow: 0 8px 22px rgba(95,98,64,.2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--olive-800); box-shadow: 0 12px 28px rgba(95,98,64,.25); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(113,118,80,.35); outline-offset: 3px; }
.button--small { min-height: 42px; padding: 10px 18px; font-size: 12px; }
.button--outline { background: transparent; color: var(--olive-800); box-shadow: none; }
.button--outline:hover { color: var(--white); }
.button--full { width: 100%; }
.button svg { width: 20px; height: 20px; fill: currentColor; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--olive-800); font-weight: 800; font-size: 14px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--dark { color: var(--ink); }

.hero { position: relative; overflow: hidden; padding: 68px 0 80px; background: linear-gradient(115deg, var(--cream), #fff 68%); }
.hero::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: rgba(231,222,208,.55); top: -180px; left: -180px; filter: blur(4px); }
.hero__grid { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: 64px; align-items: center; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .17em; color: var(--olive-700); font-weight: 900; font-size: 12px; }
.hero h1, .section-heading h2, .craft-copy h2, .measure-copy h2, .faq-intro h2, .quote-copy h2 {
  margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -0.035em; line-height: 1.06;
}
.hero h1 { font-size: clamp(48px, 6vw, 78px); }
.hero h1 em { font-weight: 400; color: var(--olive-700); }
.hero__lead { max-width: 570px; margin: 26px 0 28px; color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.hero__trust { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-wrap: wrap; gap: 16px 24px; color: var(--muted); font-size: 14px; }
.hero__trust li::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 8px; border-radius: 50%; background: var(--olive-100); color: var(--olive-800); font-size: 12px; font-weight: 900; }
.hero__visual { position: relative; min-width: 0; }
.hero__image-wrap { border-radius: 180px 22px 22px 22px; overflow: hidden; box-shadow: var(--shadow); background: var(--sand); aspect-ratio: 1.19; }
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__badge { position: absolute; left: -34px; bottom: -26px; display: flex; align-items: center; gap: 12px; min-width: 205px; padding: 16px 18px; color: var(--white); background: var(--olive-800); border: 6px solid var(--white); border-radius: 16px; box-shadow: var(--shadow-soft); }
.hero__badge svg { width: 38px; height: 38px; fill: currentColor; }
.hero__badge span { display: flex; flex-direction: column; line-height: 1.15; }
.hero__badge strong { font-family: var(--serif); font-size: 18px; font-weight: 500; }
.hero__badge small { margin-top: 4px; opacity: .8; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.benefits { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefit { display: grid; grid-template-columns: 56px 1fr; gap: 15px; padding: 30px 22px; position: relative; }
.benefit + .benefit::before { content: ""; position: absolute; left: 0; top: 28px; bottom: 28px; width: 1px; background: var(--line); }
.icon-wrap { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--olive-700); background: var(--cream); }
.icon-wrap svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.benefit h2 { margin: 2px 0 4px; font-family: var(--serif); font-size: 18px; font-weight: 600; }
.benefit p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.section { padding: 100px 0; }
.section--warm { background: var(--cream); }
.section--olive { background: var(--olive-800); color: var(--white); position: relative; overflow: hidden; }
.section--olive::before, .section--olive::after { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.section--olive::before { left: -130px; top: -160px; }
.section--olive::after { right: -140px; bottom: -190px; }
.section-heading { max-width: 700px; margin-bottom: 46px; }
.section-heading--center { text-align: center; margin-inline: auto; }
.section-heading--center p:last-child { margin-inline: auto; }
.section-heading--light .eyebrow, .section-heading--light p { color: rgba(255,255,255,.72); }
.section-heading--light h2 { color: var(--white); }
.section-heading--split { max-width: none; display: grid; grid-template-columns: 1fr .75fr; gap: 80px; align-items: end; }
.section-heading h2, .craft-copy h2, .measure-copy h2, .faq-intro h2, .quote-copy h2 { font-size: clamp(38px, 5vw, 58px); }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); margin: 18px 0 0; }

.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.option-card { display: grid; grid-template-columns: .93fr 1.07fr; min-height: 390px; background: var(--white); border: 1px solid rgba(63,67,44,.1); border-radius: var(--radius); overflow: hidden; box-shadow: 0 15px 45px rgba(57,50,37,.07); }
.option-card__image { overflow: hidden; min-height: 100%; background: var(--sand); }
.option-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.option-card:hover .option-card__image img { transform: scale(1.045); }
.option-card__body { padding: 34px 30px; display: flex; flex-direction: column; }
.option-card__number { color: var(--olive-600); font-size: 11px; letter-spacing: .18em; font-weight: 900; }
.option-card h3 { margin: 10px 0 12px; font-family: var(--serif); font-size: 27px; line-height: 1.15; }
.option-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.option-card ul { margin: auto 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.option-card li { position: relative; padding: 8px 0 0 17px; font-size: 13px; color: #505249; }
.option-card li:first-child { margin-top: 8px; }
.option-card li::before { content: ""; position: absolute; left: 0; top: 17px; width: 6px; height: 6px; border-radius: 50%; background: var(--olive-600); }

.craft-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 78px; align-items: center; }
.craft-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; margin: 22px 0 28px; }
.detail-list { margin: 0 0 32px; border-top: 1px solid var(--line); }
.detail-list > div { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.detail-list span { color: var(--olive-600); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.detail-list p { margin: 0; color: var(--muted); font-size: 14px; }
.detail-list strong { color: var(--ink); }
.craft-gallery { display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: repeat(2, 240px); gap: 16px; }
.craft-gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--sand); box-shadow: var(--shadow-soft); }
.craft-gallery__large { grid-row: 1 / span 2; }
.craft-gallery img { width: 100%; height: 100%; object-fit: cover; }

.process-grid { position: relative; z-index: 1; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: process; }
.process-card { min-height: 255px; padding: 28px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); border-radius: var(--radius); }
.process-card > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--white); color: var(--olive-800); font-family: var(--serif); font-weight: 700; }
.process-card h3 { margin: 26px 0 10px; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.process-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }

.inspiration-grid { display: grid; grid-template-columns: 1.15fr .85fr 1fr; grid-template-rows: 270px 270px; gap: 16px; }
.gallery-item { position: relative; border: 0; padding: 0; overflow: hidden; border-radius: var(--radius); background: var(--sand); cursor: zoom-in; text-align: left; }
.gallery-item--wide { grid-row: 1 / span 2; }
.gallery-item--tall { grid-row: 1 / span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(.92); }
.gallery-item span { position: absolute; left: 16px; right: 16px; bottom: 16px; width: max-content; max-width: calc(100% - 32px); padding: 9px 12px; color: var(--white); background: rgba(47,50,32,.84); border-radius: 8px; font-size: 12px; font-weight: 800; letter-spacing: .03em; }
.image-note { margin: 16px 0 0; text-align: right; color: var(--muted); font-size: 12px; }

.measure-section { padding-top: 35px; }
.measure-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; padding: 58px; border-radius: var(--radius-lg); background: var(--olive-100); overflow: hidden; }
.measure-visual { min-height: 350px; display: grid; place-items: center; }
.measure-shape { width: min(430px, 90%); aspect-ratio: 1.55; position: relative; border-radius: 20px 20px 28px 28px; background: linear-gradient(145deg,#fff,#e7dece); border: 2px solid rgba(63,67,44,.16); box-shadow: 12px 18px 30px rgba(74,65,47,.15), inset -8px -10px 24px rgba(114,102,75,.12); transform: perspective(900px) rotateX(58deg) rotateZ(-8deg); }
.measure-shape::before { content: ""; position: absolute; inset: 16px; border: 1px dashed rgba(63,67,44,.22); border-radius: 12px; }
.measure-line { position: absolute; color: var(--olive-900); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; transform: perspective(900px) rotateX(-58deg) rotateZ(8deg); }
.measure-line::before, .measure-line::after { content: ""; position: absolute; background: currentColor; }
.measure-line--width { left: 25%; right: 25%; top: -54px; text-align: center; }
.measure-line--width::before { height: 1px; left: -60%; right: -60%; top: 26px; }
.measure-line--depth { right: -76px; top: 42%; }
.measure-line--depth::before { height: 1px; width: 90px; right: 12px; top: -12px; transform: rotate(-44deg); transform-origin: right; }
.measure-line--height { left: -82px; bottom: 8%; }
.measure-line--height::before { width: 1px; height: 85px; right: -16px; bottom: 4px; }
.measure-copy > p:not(.eyebrow) { color: var(--muted); }
.measure-tip { margin: 22px 0; padding: 18px; background: rgba(255,255,255,.68); border-left: 4px solid var(--olive-700); border-radius: 0 10px 10px 0; font-size: 14px; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 125px; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); margin: 22px 0 30px; }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item button { width: 100%; padding: 23px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; background: none; border: 0; cursor: pointer; font-family: var(--serif); font-size: 20px; }
.accordion__item button span:last-child { font-family: var(--sans); font-size: 28px; font-weight: 300; color: var(--olive-600); transition: transform .25s; }
.accordion__item button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.accordion__panel { padding: 0 44px 22px 0; }
.accordion__panel p { margin: 0; color: var(--muted); }

.quote-section { padding: 100px 0; color: var(--white); background: linear-gradient(125deg, var(--olive-900), var(--olive-700)); }
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: start; }
.quote-copy .eyebrow { color: rgba(255,255,255,.7); }
.quote-copy > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.75); margin: 22px 0 32px; }
.contact-cards { display: grid; gap: 10px; }
.contact-cards > * { display: flex; flex-direction: column; padding: 15px 17px; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; background: rgba(255,255,255,.06); transition: background .2s; }
.contact-cards a:hover { background: rgba(255,255,255,.12); }
.contact-cards span { font-size: 10px; text-transform: uppercase; letter-spacing: .13em; opacity: .65; }
.contact-cards strong { font-size: 15px; }
.quote-form { background: var(--white); color: var(--ink); padding: 34px; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(30,30,20,.26); }
.quote-form label { display: grid; gap: 7px; margin-bottom: 17px; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #d7d5ca; border-radius: 9px; background: #fbfaf7; padding: 13px 14px; color: var(--ink); font-size: 15px; font-weight: 400; letter-spacing: 0; text-transform: none; }
.quote-form textarea { resize: vertical; min-height: 130px; }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #9a9a90; }
.checkbox { grid-template-columns: 18px 1fr !important; align-items: start; gap: 10px !important; text-transform: none !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.45; color: var(--muted); }
.checkbox input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--olive-700); }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

.footer { background: #f4f1e9; }
.footer__grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr .9fr; gap: 58px; padding: 68px 0 48px; }
.brand--footer .brand__name { font-size: 34px; }
.footer__brand p { color: var(--muted); max-width: 290px; font-size: 14px; }
.footer__main-site { display: inline-flex; gap: 6px; color: var(--olive-800); font-size: 13px; font-weight: 800; }
.footer h2 { margin: 5px 0 17px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; gap: 8px; }
.footer__grid > div:not(.footer__brand) a, .footer__grid > div:not(.footer__brand) span { color: var(--muted); font-size: 13px; }
.footer__grid a:hover { color: var(--olive-700); }
.footer__bottom { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 950; display: flex; align-items: center; gap: 9px; padding: 12px 16px; color: var(--white); background: #267b4d; border: 4px solid var(--white); border-radius: 999px; box-shadow: 0 12px 30px rgba(31,83,53,.28); font-size: 13px; font-weight: 800; }
.floating-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }
.floating-whatsapp:hover { transform: translateY(-2px); }

.lightbox { max-width: min(94vw, 1000px); max-height: 92vh; border: 0; padding: 0; border-radius: 18px; overflow: visible; background: transparent; }
.lightbox::backdrop { background: rgba(20,21,17,.84); backdrop-filter: blur(6px); }
.lightbox img { max-width: 94vw; max-height: 88vh; object-fit: contain; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.lightbox__close { position: absolute; right: -12px; top: -12px; z-index: 2; width: 42px; height: 42px; border: 3px solid var(--white); border-radius: 50%; background: var(--olive-900); color: var(--white); font-size: 28px; line-height: 1; cursor: pointer; }
.noscript { margin: 0; padding: 12px; background: #fff2bf; color: #4f4320; text-align: center; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-sm { transition-delay: .08s; }
.reveal--delay, .reveal--delay-md { transition-delay: .16s; }
.reveal--delay-lg { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .nav { gap: 19px; }
  .hero__grid { gap: 42px; }
  .benefit { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(3)::before { display: none; }
  .benefit:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .option-card { grid-template-columns: 1fr; }
  .option-card__image { min-height: 260px; }
  .craft-grid { gap: 48px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .inspiration-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 330px 260px; }
  .gallery-item--wide { grid-row: auto; }
  .gallery-item--tall { grid-row: 1 / span 2; }
  .measure-grid { gap: 42px; padding: 44px; }
  .quote-grid { gap: 45px; }
  .footer__grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 34px; }
}

@media (max-width: 820px) {
  .topbar__optional { display: none !important; }
  .site-header__inner { min-height: 72px; }
  .brand__name { font-size: 31px; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .nav { position: fixed; inset: 0; z-index: 1001; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; padding: 90px 28px 40px; background: rgba(247,244,237,.98); transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility .3s; }
  .nav.is-open { transform: translateX(0); visibility: visible; }
  .nav > a:not(.button) { padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 25px; text-transform: none; letter-spacing: 0; }
  .nav > a:not(.button)::after { display: none; }
  .nav .button { margin-top: 22px; }
  .hero { padding-top: 50px; }
  .hero__grid, .craft-grid, .measure-grid, .faq-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero__grid { gap: 52px; }
  .hero__copy { max-width: 680px; }
  .hero__visual { margin-left: 30px; }
  .hero__badge { left: -30px; }
  .section { padding: 78px 0; }
  .section-heading--split { grid-template-columns: 1fr; gap: 15px; }
  .option-grid { grid-template-columns: 1fr; }
  .option-card { grid-template-columns: .85fr 1.15fr; }
  .craft-copy { max-width: 650px; }
  .craft-gallery { grid-template-rows: repeat(2, 300px); }
  .measure-grid { padding: 48px 36px; }
  .measure-visual { min-height: 320px; }
  .faq-intro { position: static; }
  .quote-copy { max-width: 650px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__grid > div:last-child { grid-column: 2 / span 2; }
}

@media (max-width: 620px) {
  :root { --container: min(100% - 28px, 1180px); }
  .topbar__inner { min-height: 36px; }
  .topbar__items { font-size: 11px; }
  .topbar__link { font-size: 0; }
  .topbar__link svg { width: 18px; height: 18px; }
  .hero { padding: 42px 0 70px; }
  .hero h1 { font-size: 46px; }
  .hero__lead { font-size: 17px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero__visual { margin-left: 0; }
  .hero__image-wrap { border-radius: 100px 18px 18px 18px; aspect-ratio: 1.05; }
  .hero__badge { left: 10px; bottom: -34px; min-width: 185px; }
  .hero__trust { display: grid; gap: 10px; }
  .benefits__grid { grid-template-columns: 1fr; }
  .benefit { grid-template-columns: 52px 1fr; padding: 22px 4px; }
  .benefit + .benefit::before { display: none; }
  .benefit:not(:last-child) { border-bottom: 1px solid var(--line); }
  .section { padding: 66px 0; }
  .section-heading h2, .craft-copy h2, .measure-copy h2, .faq-intro h2, .quote-copy h2 { font-size: 38px; }
  .option-card { grid-template-columns: 1fr; min-height: 0; }
  .option-card__image { min-height: 260px; }
  .option-card__body { padding: 28px 24px; }
  .craft-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 310px 180px; gap: 10px; }
  .craft-gallery__large { grid-column: 1 / span 2; grid-row: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 0; }
  .inspiration-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 230px 230px 230px; }
  .gallery-item--wide { grid-column: 1 / span 2; }
  .gallery-item--tall { grid-row: auto; }
  .image-note { text-align: left; }
  .measure-grid { padding: 36px 22px; }
  .measure-visual { min-height: 260px; }
  .measure-shape { width: 82%; }
  .measure-line--depth { right: -60px; }
  .measure-line--height { left: -68px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 24px 18px; }
  .footer__grid { grid-template-columns: 1fr 1fr; padding-top: 52px; }
  .footer__brand { grid-column: 1 / span 2; }
  .footer__grid > div:last-child { grid-column: auto; }
  .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 16px 0; }
  .footer__bottom p { margin: 0; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 58px; height: 58px; padding: 0; justify-content: center; border-radius: 50%; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 41px; }
  .hero__badge { transform: scale(.9); transform-origin: left bottom; }
  .inspiration-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 260px); }
  .gallery-item--wide { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

.membership { color: var(--olive-700) !important; font-size: 12px !important; font-weight: 800; }


/* Requested July 2026 refinements */
.brand--logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.site-logo {
  display: block;
  width: clamp(190px, 21vw, 245px);
  height: auto;
}

.site-header__inner {
  min-height: 94px;
}

.hero__badge {
  min-width: auto;
  gap: 0;
  padding-inline: 22px;
}

.quote-grid {
  display: block;
  max-width: 1020px;
}

.quote-copy {
  text-align: center;
}

.quote-copy > p:not(.eyebrow) {
  max-width: 740px;
  margin: 22px auto 30px;
}

.quote-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 0 36px;
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--olive-900);
  box-shadow: 0 10px 28px rgba(30, 31, 24, .20);
}

.button--light:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--olive-900);
}

.quote-phone-link {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}

@media (max-width: 980px) {
  .site-logo {
    width: 205px;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 78px;
  }

  .site-logo {
    width: 175px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .site-logo {
    width: 155px;
  }

  .hero__badge {
    padding-inline: 18px;
  }
}


/* Footer image logo */
.footer-logo-link {
  display: inline-flex;
  width: min(245px, 100%);
  margin-bottom: 12px;
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 520px) {
  .footer-logo-link {
    width: 210px;
  }
}


/* Furniture Bargaining Council membership badge */
.membership-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 16px;
}

.membership-badge p {
  margin: 0;
}

.membership-logo {
  width: 82px;
  height: auto;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

@media (max-width: 560px) {
  .membership-badge {
    align-items: flex-start;
  }

  .membership-logo {
    width: 70px;
  }
}
