:root {
  --ink: #191a18;
  --charcoal: #242522;
  --muted: #66665f;
  --ivory: #f7f3eb;
  --cream: #eee7db;
  --paper: #fffdf9;
  --gold: #b58c52;
  --gold-dark: #896636;
  --line: rgba(25, 26, 24, 0.15);
  --shadow: 0 24px 70px rgba(20, 18, 14, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 110px 0; }
.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: 12px; top: -60px; z-index: 9999; background: white; padding: 12px 18px; box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: 78px; color: white; transition: background 220ms ease, box-shadow 220ms ease; }
.site-header.is-scrolled { background: rgba(24, 25, 23, 0.96); box-shadow: 0 9px 30px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: max-content; }
.brand-mark { width: 42px; height: 38px; border: 1px solid var(--gold); display: grid; place-items: center; font-family: var(--serif); font-size: 20px; letter-spacing: -.06em; color: #d2b17e; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--serif); text-transform: uppercase; letter-spacing: .14em; font-size: 13px; font-weight: 500; }
.brand-copy small { margin-top: 6px; color: #d2b17e; font-size: 8px; text-transform: uppercase; letter-spacing: .25em; }
.primary-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.primary-nav a { text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: .02em; opacity: .9; transition: opacity 160ms ease, color 160ms ease; }
.primary-nav a:hover, .primary-nav a:focus-visible { opacity: 1; color: #e0c296; }
.nav-estimate { padding: 10px 14px; border: 1px solid rgba(255,255,255,.4); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.language-switcher { display: flex; gap: 7px; font-size: 10px; letter-spacing: .08em; }
.language-switcher a { text-decoration: none; opacity: .55; }
.language-switcher a.is-active { opacity: 1; color: #e0c296; }
.icon-action { padding-left: 15px; border-left: 1px solid rgba(255,255,255,.25); text-decoration: none; font-size: 13px; font-weight: 700; }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 1px; margin: 5px 0; background: currentColor; transition: transform 180ms ease; }

.hero { min-height: 780px; height: 95vh; max-height: 980px; position: relative; display: grid; align-items: center; overflow: hidden; color: white; background: #26241f; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(19,20,18,.88) 0%, rgba(23,23,20,.64) 36%, rgba(23,23,20,.12) 65%, rgba(23,23,20,.05) 100%), linear-gradient(0deg, rgba(0,0,0,.25), transparent 45%); }
.hero-content { position: relative; z-index: 2; padding-top: 50px; }
.hero-copy { max-width: 650px; }
.eyebrow { margin: 0 0 18px; color: var(--gold-dark); font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.light { color: #d8b77f; }
.hero .eyebrow { color: #d8b77f; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; }
h1 { margin: 0; font-size: clamp(54px, 6.6vw, 95px); letter-spacing: -.045em; }
h2 { margin: 0; font-size: clamp(40px, 4.7vw, 68px); letter-spacing: -.035em; }
h3 { font-size: 28px; }
.hero-lede { max-width: 570px; margin: 26px 0 32px; color: rgba(255,255,255,.82); font-size: 18px; }
.hero-buttons { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 21px; border: 1px solid transparent; border-radius: 0; background: none; text-decoration: none; text-transform: uppercase; letter-spacing: .1em; font-size: 11px; font-weight: 800; cursor: pointer; transition: transform 160ms ease, background 160ms ease, color 160ms ease, border 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: #171612; }
.button-primary:hover { background: #c7a16b; }
.button-ghost { border-color: rgba(255,255,255,.6); color: white; }
.button-ghost:hover { background: white; color: var(--ink); }
.button-dark { background: var(--charcoal); color: white; }
.button-muted { border-color: var(--line); background: #f3efe8; }
.button-gold { background: var(--gold); color: #171612; }
.text-link { display: inline-flex; align-items: center; padding: 10px 4px; color: #ead0a7; text-underline-offset: 5px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.text-link.dark { color: var(--gold-dark); }
.response-note { margin-top: 20px; color: rgba(255,255,255,.62); font-size: 12px; }
.scroll-cue { position: absolute; z-index: 3; bottom: 28px; left: 50%; width: 32px; height: 47px; border: 1px solid rgba(255,255,255,.45); border-radius: 20px; }
.scroll-cue span { position: absolute; top: 9px; left: 50%; width: 3px; height: 7px; border-radius: 4px; background: white; transform: translateX(-50%); animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 16px); } }

.trust-strip { position: relative; z-index: 5; margin-top: -1px; background: var(--ink); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { min-height: 125px; display: flex; flex-direction: column; justify-content: center; padding: 20px 35px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-grid div:last-child { border: 0; }
.trust-grid strong { font-family: var(--serif); color: #d8b77f; font-size: 34px; font-weight: 400; line-height: 1; }
.trust-grid span { margin-top: 10px; color: rgba(255,255,255,.65); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }

.section-heading { max-width: 780px; margin-bottom: 54px; }
.section-heading p:last-child { max-width: 620px; margin-top: 22px; color: var(--muted); font-size: 17px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.heading-row > div { max-width: 720px; }
.heading-row > p { max-width: 320px !important; }

.services { background: var(--ivory); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 390px; position: relative; padding: 48px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.4); }
.service-card-featured { background: #fffdfa; }
.service-card.dark-card { background: var(--charcoal); color: white; }
.service-number { color: var(--gold); font-size: 11px; letter-spacing: .15em; }
.service-card h3 { margin: 60px 0 17px; font-size: 36px; }
.service-card p { max-width: 490px; color: var(--muted); }
.dark-card p { color: rgba(255,255,255,.66); }
.service-card ul { display: grid; gap: 8px; padding: 0; margin: 25px 0 0; list-style: none; font-size: 13px; }
.service-card li::before { content: "—"; margin-right: 10px; color: var(--gold); }

.work { background: #fff; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gallery-card { position: relative; min-height: 345px; padding: 0; border: 0; overflow: hidden; cursor: zoom-in; background: var(--ink); color: white; text-align: left; }
.gallery-wide { grid-column: 1 / -1; min-height: 340px; }
.gallery-wide img { object-fit: contain; background: #e9e3d9; }
.gallery-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 650ms ease, opacity 300ms ease; }
.gallery-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.76)); }
.gallery-card:hover img { transform: scale(1.035); opacity: .88; }
.gallery-card span { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 25px; display: flex; align-items: end; justify-content: space-between; gap: 15px; }
.gallery-card strong { font-family: var(--serif); font-size: 23px; font-weight: 400; }
.gallery-card small { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; opacity: .8; }
.portfolio-note { text-align: center; margin-top: 24px; color: var(--muted); font-size: 12px; }

.process { background: #eee9df; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 65px 0 0; list-style: none; counter-reset: none; }
.process-grid li { position: relative; min-height: 250px; padding: 35px 30px; border-top: 1px solid var(--gold); border-right: 1px solid rgba(25,26,24,.12); }
.process-grid li:last-child { border-right: 0; }
.process-grid li > span { color: var(--gold-dark); font-size: 11px; letter-spacing: .13em; }
.process-grid h3 { margin: 48px 0 14px; font-size: 27px; }
.process-grid p { color: var(--muted); font-size: 14px; }

.workshop { background: white; }
.split-layout { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.workshop-media { position: relative; }
.workshop-media img { width: 100%; height: 660px; object-fit: cover; object-position: 63% center; }
.experience-badge { position: absolute; right: -45px; bottom: 45px; width: 150px; height: 150px; display: grid; align-content: center; justify-items: center; border-radius: 50%; background: var(--ink); color: white; box-shadow: var(--shadow); }
.experience-badge strong { font-family: var(--serif); font-size: 46px; line-height: 1; color: #d8b77f; font-weight: 400; }
.experience-badge span { font-size: 9px; text-transform: uppercase; letter-spacing: .14em; opacity: .7; }
.workshop-copy > p { color: var(--muted); font-size: 16px; }
.workshop-copy h2 { margin-bottom: 30px; }
.material-note { display: flex; gap: 18px; align-items: flex-start; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.material-icon { color: var(--gold); font-size: 24px; }
.material-note p { margin: 0; color: var(--muted); }
.material-note strong { color: var(--ink); }

.commercial { padding: 90px 0; color: white; background: var(--ink); }
.commercial-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; align-items: end; }
.commercial h2 { max-width: 720px; }
.commercial-inner > div:last-child p { margin: 0 0 28px; color: rgba(255,255,255,.66); }

.service-area { background: var(--ivory); }
.area-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.area-grid h2 { margin-bottom: 26px; }
.area-grid > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.area-lists { border-top: 1px solid var(--line); }
.area-lists details { border-bottom: 1px solid var(--line); }
.area-lists summary { display: flex; justify-content: space-between; align-items: center; padding: 24px 2px; cursor: pointer; font-family: var(--serif); font-size: 24px; list-style: none; }
.area-lists summary::after { content: "+"; color: var(--gold-dark); }
.area-lists details[open] summary::after { content: "−"; }
.area-lists p { margin: 0; padding: 0 0 28px; color: var(--muted); font-size: 13px; line-height: 2; }

.estimate-section { background: #22231f; color: white; }
.estimate-intro { max-width: 730px; margin: 0 auto 50px; text-align: center; }
.estimate-intro > p:last-child { color: rgba(255,255,255,.62); }
.estimate-form { max-width: 980px; margin: auto; padding: 50px; background: var(--paper); color: var(--ink); box-shadow: 0 40px 100px rgba(0,0,0,.2); }
.form-progress { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; margin-bottom: 55px; }
.form-progress > i { height: 1px; background: var(--line); }
.progress-step { display: grid; justify-items: center; gap: 7px; border: 0; background: none; padding: 0 5px; cursor: default; }
.progress-step span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 11px; background: var(--paper); }
.progress-step small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.progress-step.is-active span, .progress-step.is-complete span { border-color: var(--gold); background: var(--gold); color: #15140f; }
.form-step { display: none; }
.form-step.is-active { display: block; animation: reveal 250ms ease; }
@keyframes reveal { from { opacity: 0; transform: translateY(5px); } }
.form-heading { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 35px; }
.form-heading > span { color: var(--gold-dark); font-size: 10px; letter-spacing: .15em; }
.form-heading h3 { margin: 0 0 8px; font-size: 32px; }
.form-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.choice-fieldset { margin: 0 0 30px; padding: 0; border: 0; }
.choice-fieldset legend { margin-bottom: 13px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.choice-grid.compact { grid-template-columns: repeat(3, 1fr); }
.choice-grid label { position: relative; cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; }
.choice-grid label span { min-height: 57px; display: flex; align-items: center; justify-content: center; padding: 10px; border: 1px solid var(--line); color: var(--muted); text-align: center; font-size: 11px; font-weight: 700; transition: border 160ms ease, background 160ms ease, color 160ms ease; }
.choice-grid input:checked + span { border-color: var(--gold-dark); background: #f1e9dc; color: var(--ink); }
.choice-grid input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.field-grid { display: grid; gap: 18px; }
.field-grid.two { grid-template-columns: repeat(2, 1fr); }
.field-grid label, .full-field { display: grid; gap: 8px; }
.field-grid label > span, .full-field > span, .item-field > span { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: white; color: var(--ink); padding: 13px 14px; min-height: 48px; }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(181,140,82,.35); border-color: var(--gold-dark); }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #a33636; }
.full-field { margin-top: 22px; }
.items-container { display: grid; gap: 18px; }
.item-card { position: relative; padding: 28px; border: 1px solid var(--line); background: #fbf8f2; }
.item-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.item-card-head h4 { margin: 0; font-family: var(--serif); font-size: 22px; font-weight: 400; }
.remove-item { border: 0; background: none; color: #8c4d48; font-size: 11px; text-decoration: underline; cursor: pointer; }
.item-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.item-field { display: grid; gap: 8px; }
.item-field.full { grid-column: 1 / -1; }
.service-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.service-checks label { display: flex; gap: 8px; align-items: center; padding: 9px; border: 1px solid var(--line); background: white; font-size: 11px; }
.service-checks input { width: auto; min-height: auto; }
.photo-drop { padding: 18px; border: 1px dashed #b8aa94; text-align: center; background: white; }
.photo-drop input { padding: 0; border: 0; min-height: auto; font-size: 11px; }
.photo-help { margin: 8px 0 0; color: var(--muted); font-size: 10px; }
.photo-previews { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.photo-previews img { width: 62px; height: 62px; object-fit: cover; border: 1px solid var(--line); }
.add-item { width: 100%; margin-top: 15px; padding: 15px; border: 1px dashed var(--gold-dark); background: transparent; color: var(--gold-dark); cursor: pointer; text-transform: uppercase; letter-spacing: .07em; font-size: 11px; font-weight: 800; }
.add-item > span:first-child { font-size: 18px; vertical-align: middle; }
.consent { display: flex; gap: 12px; margin-top: 25px; align-items: flex-start; color: var(--muted); font-size: 12px; }
.consent input { width: 18px; min-height: 18px; }
.privacy-note { padding-left: 30px; color: var(--muted); font-size: 11px; }
.honeypot { position: absolute !important; left: -10000px !important; }
.review-panel { display: grid; gap: 14px; }
.review-block { padding: 18px; border: 1px solid var(--line); }
.review-block h4 { margin: 0 0 8px; font-family: var(--serif); font-size: 20px; }
.review-block p { margin: 3px 0; color: var(--muted); font-size: 12px; }
.form-errors { min-height: 24px; margin-top: 18px; color: #9c302d; font-size: 12px; }
.form-navigation { display: flex; justify-content: flex-end; gap: 10px; margin-top: 25px; padding-top: 25px; border-top: 1px solid var(--line); }
.submit-button { display: none; }
.form-success { max-width: 780px; margin: auto; padding: 70px 35px; background: var(--paper); color: var(--ink); text-align: center; box-shadow: var(--shadow); }
.success-mark { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 50%; background: var(--gold); font-size: 25px; }
.form-success h3 { font-size: 38px; }
.form-success > div { display: flex; justify-content: center; gap: 20px; margin-top: 28px; }

.faq { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 18px; padding: 23px 2px; list-style: none; cursor: pointer; font-family: var(--serif); font-size: 21px; }
.faq-list summary::after { content: "+"; color: var(--gold-dark); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 32px 25px 0; color: var(--muted); font-size: 14px; }

.final-cta { padding: 120px 0; background: linear-gradient(90deg, rgba(25,26,24,.94), rgba(25,26,24,.72)), url('../images/order-hotel.webp') center 48% / cover; color: white; text-align: center; }
.final-cta h2 { max-width: 850px; margin: 0 auto 35px; }
.final-cta > .shell > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.site-footer { padding: 75px 0 25px; background: #171816; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.55fr .8fr .8fr .8fr; gap: 55px; }
.footer-grid > div:first-child > p { max-width: 350px; color: rgba(255,255,255,.5); font-size: 13px; }
.footer-grid h3 { margin: 0 0 18px; color: #d2b17e; font-family: var(--sans); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.footer-grid a, .footer-grid p { display: block; margin: 8px 0; color: rgba(255,255,255,.65); text-decoration: none; font-size: 12px; }
.footer-grid a:hover { color: white; }
.footer-brand { margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: 10px; }
.footer-bottom button { border: 0; background: none; color: inherit; cursor: pointer; }

.mobile-actions { display: none; }
.lightbox { width: min(1280px, 94vw); max-height: 92vh; padding: 0; border: 0; background: #111; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.lightbox::backdrop, .privacy-dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(6px); }
.lightbox img { max-height: 92vh; width: 100%; object-fit: contain; }
.lightbox-close, .dialog-close { position: absolute; z-index: 2; right: 12px; top: 10px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(0,0,0,.68); color: white; font-size: 27px; cursor: pointer; }
.privacy-dialog { width: min(680px, 92vw); padding: 45px; border: 0; color: var(--ink); }
.privacy-dialog h2 { font-size: 40px; }
.privacy-dialog p { color: var(--muted); }

@media (max-width: 1050px) {
  .primary-nav { gap: 15px; }
  .primary-nav a { font-size: 11px; }
  .header-inner { gap: 20px; }
  .hero { min-height: 700px; }
  .split-layout { gap: 55px; }
  .experience-badge { right: -25px; }
  .commercial-inner, .area-grid, .faq-layout { gap: 55px; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 30px, 720px); }
  .section { padding: 82px 0; }
  .site-header { height: 68px; background: rgba(24,25,23,.94); }
  .brand-copy strong { font-size: 11px; }
  .menu-toggle { display: block; margin-left: auto; }
  .primary-nav { position: fixed; inset: 68px 0 0 0; display: grid; align-content: start; gap: 0; padding: 40px 25px; background: #1b1c19; transform: translateX(100%); transition: transform 220ms ease; }
  body.menu-open .primary-nav { transform: translateX(0); }
  .primary-nav a { padding: 16px; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--serif); font-size: 24px; font-weight: 400; }
  .header-actions .icon-action { display: none; }
  .hero { height: auto; min-height: 760px; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(19,20,18,.91), rgba(19,20,18,.58) 70%, rgba(19,20,18,.25)); }
  .hero-copy { max-width: 550px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .service-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-wide { grid-column: 1 / -1; min-height: 300px; }
  .gallery-card { min-height: 300px; }
  .split-layout, .commercial-inner, .area-grid, .faq-layout { grid-template-columns: 1fr; }
  .workshop-media img { height: 520px; }
  .experience-badge { right: 25px; }
  .commercial-inner { gap: 30px; }
  .estimate-form { padding: 38px 28px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 26px); }
  html { scroll-padding-top: 64px; }
  body { padding-bottom: 58px; }
  .site-header { height: 64px; }
  .header-inner { gap: 10px; }
  .brand-mark { width: 35px; height: 33px; font-size: 17px; }
  .brand-copy strong { font-size: 9px; letter-spacing: .1em; }
  .brand-copy small { font-size: 6.5px; letter-spacing: .14em; }
  .language-switcher { gap: 5px; }
  .primary-nav { inset: 64px 0 58px 0; }
  .hero { min-height: 730px; }
  .hero-image { object-position: 69% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(19,20,18,.93), rgba(19,20,18,.7) 70%, rgba(19,20,18,.42)); }
  .hero-content { padding-top: 35px; }
  h1 { font-size: clamp(48px, 15vw, 67px); }
  h2 { font-size: clamp(37px, 11.5vw, 53px); }
  .hero-lede { font-size: 16px; }
  .hero-buttons { align-items: stretch; }
  .hero-buttons .button { width: calc(50% - 7px); padding-inline: 10px; }
  .hero-buttons .button-primary { width: 100%; }
  .hero-buttons .text-link { margin-inline: auto; }
  .scroll-cue { display: none; }
  .trust-grid div { min-height: 105px; padding: 18px; }
  .trust-grid strong { font-size: 29px; }
  .trust-grid span { font-size: 9px; }
  .section-heading { margin-bottom: 38px; }
  .heading-row { display: block; }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 35px 27px; }
  .service-card h3 { margin-top: 35px; }
  .process-grid li { min-height: 210px; border-right: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { min-height: 230px; }
  .gallery-card { min-height: 330px; }
  .gallery-card span { left: 20px; right: 20px; }
  .workshop-media img { height: 440px; }
  .experience-badge { width: 120px; height: 120px; right: 12px; bottom: 20px; }
  .experience-badge strong { font-size: 38px; }
  .commercial { padding: 72px 0; }
  .estimate-form { width: calc(100% + 10px); margin-left: -5px; padding: 28px 18px; }
  .form-progress { margin-bottom: 38px; }
  .progress-step small { display: none; }
  .field-grid.two, .item-fields, .service-checks, .choice-grid, .choice-grid.compact { grid-template-columns: 1fr; }
  .client-types { grid-template-columns: 1fr 1fr; }
  .item-card { padding: 22px 15px; }
  .form-heading h3 { font-size: 27px; }
  .form-navigation { display: grid; grid-template-columns: 1fr 1fr; }
  .form-navigation .button { width: 100%; }
  .submit-button { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { gap: 20px; }
  .mobile-actions { position: fixed; z-index: 99; bottom: 0; left: 0; right: 0; height: 58px; display: grid; grid-template-columns: 1fr 1fr 1.35fr; background: var(--ink); box-shadow: 0 -10px 30px rgba(0,0,0,.14); }
  .mobile-actions a { display: grid; place-items: center; border-right: 1px solid rgba(255,255,255,.12); color: white; text-decoration: none; text-transform: uppercase; letter-spacing: .09em; font-size: 10px; font-weight: 800; }
  .mobile-actions a:last-child { background: var(--gold); color: #171612; }
  .privacy-dialog { padding: 35px 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
