/* ==========================================================================
   lahn-dill-goldankauf.de — Design System
   Warm-editorial: Pergament-Papier · Espresso-Ink · echtes Gold · Lahn-Petrol.
   Display: Fraunces · Body: Hanken Grotesk · Mono: JetBrains Mono
   ========================================================================== */
@layer tokens, reset, base, layout, type, components, sections, forms, footer, motion, responsive;

@layer tokens {
  :root {
    /* Papier-Achse (hell) */
    --paper:        #F4ECDB;
    --paper-2:      #EFE5D0;
    --paper-3:      #E7DABF;
    --card:         #FBF6EA;
    --ink:          #1C150C;
    --ink-2:        #4A3E2D;
    --ink-3:        #6B5C45;

    /* Dunkle Achse */
    --espresso:     #15110A;
    --espresso-2:   #221A10;
    --night:        #0E0B06;

    /* Gold & Akzent */
    --gold:         #B7892F;   /* Gold auf hell, AA-tauglich */
    --gold-deep:    #946C1E;
    --gold-bright:  #D8B25A;   /* Gold auf dunkel */
    --champagne:    #EAD7A6;
    --petrol:       #123A34;   /* Lahn-Petrol, sekundär */
    --petrol-2:     #0C2A26;

    /* Linien */
    --line:         rgba(28,21,12,0.14);
    --line-strong:  rgba(28,21,12,0.26);
    --line-light:   rgba(244,236,219,0.18);
    --line-gold:    rgba(183,137,47,0.42);

    /* Typo-Skala */
    --fs-cinem:  clamp(46px, 7vw, 116px);
    --fs-disp:   clamp(38px, 5.2vw, 82px);
    --fs-h1:     clamp(32px, 4.2vw, 60px);
    --fs-h2:     clamp(27px, 3.1vw, 46px);
    --fs-h3:     clamp(20px, 1.9vw, 28px);
    --fs-h4:     clamp(17px, 1.3vw, 20px);
    --fs-lead:   clamp(18px, 1.55vw, 23px);
    --fs-body:   17px;
    --fs-sm:     15px;
    --fs-cap:    13px;
    --fs-eye:    12.5px;
    --fs-mono:   14px;

    --lh-disp: 0.96;
    --lh-head: 1.08;
    --lh-body: 1.62;
    --ls-eye:  0.22em;
    --ls-disp: -0.018em;

    --ff-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --ff-sans:  'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --ff-mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    --sp-1:4px; --sp-2:8px; --sp-3:16px; --sp-4:24px; --sp-5:32px;
    --sp-6:48px; --sp-7:64px; --sp-8:96px; --sp-9:128px; --sp-10:176px;
    --section-y:       clamp(72px, 9vw, 148px);
    --section-y-tight: clamp(48px, 6vw, 96px);

    --maxw:        1200px;
    --maxw-narrow: 920px;
    --maxw-text:   680px;
    --maxw-prose:  64ch;
    --gutter:      clamp(20px, 4vw, 48px);

    --r-2:2px; --r-3:6px; --r-4:10px; --r-5:16px; --r-6:22px; --r-pill:999px;

    --shadow-card: 0 1px 2px rgba(28,21,12,.05), 0 14px 40px -22px rgba(28,21,12,.34);
    --shadow-soft: 0 1px 2px rgba(28,21,12,.05), 0 8px 24px -16px rgba(28,21,12,.3);
    --shadow-lift: 0 22px 60px -28px rgba(28,21,12,.5);

    --ease:      cubic-bezier(.2,.7,.2,1);
    --ease-out:  cubic-bezier(.16,1,.3,1);
    --dur:       .42s;
    --dur-q:     .22s;

    --header-h: 76px;
  }
}

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  body, h1,h2,h3,h4,h5,h6, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
  ul, ol { list-style: none; }
  img, picture, svg, video { display: block; max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
  input, textarea, select { font: inherit; color: inherit; }
  table { border-collapse: collapse; }
  ::selection { background: var(--petrol); color: var(--paper); }
}

@layer base {
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--ff-sans);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  h1,h2,h3,h4 { font-family: var(--ff-serif); font-weight: 500; line-height: var(--lh-head); letter-spacing: var(--ls-disp); color: var(--ink); }
  h1 { font-size: var(--fs-h1); }
  h2 { font-size: var(--fs-h2); }
  h3 { font-size: var(--fs-h3); }
  p { max-width: var(--maxw-prose); }
  strong { font-weight: 600; }
  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--r-2); }
  .skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--paper); padding: 12px 18px; z-index: 200; }
  .skip:focus { left: 12px; top: 12px; }
}

@layer layout {
  .container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
  .container--narrow { max-width: var(--maxw-narrow); }
  .container--text { max-width: var(--maxw-text); }
  .section { padding-block: var(--section-y); }
  .section--tight { padding-block: var(--section-y-tight); }
  .section--paper2 { background: var(--paper-2); }
  .section--dark { background: var(--espresso); color: var(--paper); }
  .section--petrol { background: var(--petrol); color: var(--paper); }
  /* Überschriften erben auf dunklen Flächen sonst ink-on-espresso (unsichtbar) */
  .section--dark :is(h1,h2,h3,h4), .section--petrol :is(h1,h2,h3,h4),
  .hero :is(h1,h2,h3,h4), .ctaband :is(h1,h2,h3,h4) { color: var(--paper); }
  .grid { display: grid; gap: var(--sp-4); }
}

@layer type {
  .eyebrow { font-family: var(--ff-mono); font-size: var(--fs-eye); letter-spacing: var(--ls-eye); text-transform: uppercase; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 10px; }
  .eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--line-gold); display: inline-block; }
  .section--dark .eyebrow, .section--petrol .eyebrow { color: var(--gold-bright); }
  .section--dark .eyebrow::before, .section--petrol .eyebrow::before { background: rgba(216,178,90,.5); }
  .display { font-size: var(--fs-disp); }
  .lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-2); max-width: 56ch; }
  .section--dark .lead, .section--petrol .lead { color: rgba(244,236,219,.82); }
  .mono { font-family: var(--ff-mono); font-size: var(--fs-mono); letter-spacing: .04em; }
  .italic-accent { font-style: italic; color: var(--gold-deep); }
  .section-head { max-width: 760px; margin-bottom: var(--sp-6); }
  .section-head .lead { margin-top: var(--sp-3); }
  .section-head--center { margin-inline: auto; text-align: center; }
  .section-head--center .eyebrow { justify-content: center; }
  .section-head--center .lead { margin-inline: auto; }
}

/* ============================ COMPONENTS ============================ */
@layer components {
  /* Brand */
  .brand { display: inline-flex; align-items: center; gap: 12px; }
  .brand__mark { color: var(--gold); display: grid; place-items: center; flex: none; }
  .brand__txt { display: flex; flex-direction: column; line-height: 1; }
  .brand__name { font-family: var(--ff-serif); font-weight: 600; font-size: 21px; letter-spacing: -.01em; color: var(--ink); }
  .brand__sub { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; }

  /* Buttons — gold fill via gradient (force-dark immun, FEHLER-009) */
  .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--ff-sans); font-weight: 600; font-size: 16px; letter-spacing: .005em; padding: 15px 28px; border-radius: var(--r-pill); transition: transform var(--dur-q) var(--ease), box-shadow var(--dur-q), background var(--dur-q), color var(--dur-q); white-space: nowrap; }
  .btn svg { width: 18px; height: 18px; }
  .btn--gold { background-image: linear-gradient(var(--gold), var(--gold-deep)); color: #211807; forced-color-adjust: none; box-shadow: 0 12px 30px -14px rgba(148,108,30,.7); }
  .btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -14px rgba(148,108,30,.8); }
  .btn--dark { background-image: linear-gradient(var(--ink), #2b2113); color: var(--paper); forced-color-adjust: none; }
  .btn--dark:hover { transform: translateY(-2px); }
  .btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-strong); }
  .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }
  .section--dark .btn--ghost, .section--petrol .btn--ghost, .ctaband .btn--ghost { color: var(--paper); box-shadow: inset 0 0 0 1.5px rgba(244,236,219,.45); }
  .section--dark .btn--ghost:hover, .section--petrol .btn--ghost:hover, .ctaband .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--paper); background: rgba(244,236,219,.08); }
  .btn--lg { padding: 17px 34px; font-size: 17px; }
  .btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

  .textlink { color: var(--gold-deep); font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
  .textlink::after { content: "→"; transition: transform var(--dur-q) var(--ease); }
  .textlink:hover::after { transform: translateX(5px); }
  .section--dark .textlink, .section--petrol .textlink { color: var(--gold-bright); }

  /* Header */
  .site-header { position: sticky; top: 0; z-index: 100; background: rgba(244,236,219,.86); backdrop-filter: blur(14px) saturate(1.1); -webkit-backdrop-filter: blur(14px) saturate(1.1); border-bottom: 1px solid transparent; transition: border-color var(--dur-q), background var(--dur-q), box-shadow var(--dur-q); }
  .site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 8px 30px -24px rgba(28,21,12,.7); }
  .header-row { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: var(--sp-4); }
  .mainnav { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 28px); }
  .mainnav > a { font-size: 15.5px; font-weight: 500; color: var(--ink-2); position: relative; padding: 6px 0; transition: color var(--dur-q); }
  .mainnav > a:hover, .mainnav > a.is-active { color: var(--ink); }
  .mainnav > a:not(.mainnav__cta)::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--gold); transition: width var(--dur) var(--ease); }
  .mainnav > a:not(.mainnav__cta):hover::after, .mainnav > a.is-active::after { width: 100%; }
  .mainnav__cta { font-family: var(--ff-mono); font-size: 14px !important; letter-spacing: .03em; color: var(--ink) !important; font-weight: 600; padding: 10px 18px !important; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1.5px var(--line-gold); }
  .mainnav__cta:hover { background: var(--gold); color: #211807 !important; box-shadow: none; }
  .hamburger { display: none; width: 46px; height: 46px; border-radius: var(--r-3); flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
  .hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--dur-q) var(--ease), opacity var(--dur-q); }
  .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero { position: relative; background: var(--night); color: var(--paper); overflow: hidden; }
  .hero__media { position: absolute; inset: 0; background-size: cover; background-position: 78% center; }
  .hero__veil { position: absolute; inset: 0; background:
      linear-gradient(100deg, var(--night) 18%, rgba(14,11,6,.86) 42%, rgba(14,11,6,.25) 66%, rgba(14,11,6,0) 86%); }
  .hero__inner { position: relative; z-index: 2; padding-block: clamp(96px, 16vw, 188px); }
  .hero__col { max-width: 640px; }
  .hero h1 { font-size: var(--fs-cinem); font-weight: 400; color: var(--paper); line-height: var(--lh-disp); margin-top: var(--sp-4); }
  .hero h1 { text-shadow: 0 2px 36px rgba(14,11,6,.55); }
  .hero h1 em { font-style: italic; color: var(--gold-bright); }
  .hero .lead { color: rgba(244,236,219,.84); margin-top: var(--sp-4); }
  .hero .btn-row { margin-top: var(--sp-6); }
  .hero__meta { margin-top: var(--sp-6); display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); font-family: var(--ff-mono); font-size: 13px; letter-spacing: .04em; color: rgba(234,215,166,.9); }
  .hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
  .hero__meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-bright); }

  /* Trust strip */
  .trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--r-5); overflow: hidden; box-shadow: var(--shadow-soft); }
  .trust__item { background: var(--card); padding: var(--sp-5) var(--sp-4); min-width: 0; }
  .trust__item h3 { font-family: var(--ff-sans); font-weight: 700; font-size: 16px; letter-spacing: 0; display: flex; align-items: center; gap: 10px; }
  .trust__item h3::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background-image: linear-gradient(var(--gold), var(--gold-deep)); flex: none; }
  .trust__item p { font-size: var(--fs-sm); color: var(--ink-2); margin-top: 10px; max-width: none; }

  /* Service / material grid */
  .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
  .svc-card { position: relative; display: flex; flex-direction: column; background: var(--card); border-radius: var(--r-5); overflow: hidden; box-shadow: var(--shadow-card); min-width: 0; transition: transform var(--dur) var(--ease), box-shadow var(--dur); }
  .svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
  .svc-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--espresso); }
  .svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
  .svc-card:hover .svc-card__media img { transform: scale(1.06); }
  .svc-card__body { padding: var(--sp-4) var(--sp-4) var(--sp-5); display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .svc-card__eye { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }
  .svc-card__body h3 { font-size: 23px; }
  .svc-card__body p { font-size: var(--fs-sm); color: var(--ink-2); max-width: none; }
  .svc-card__more { margin-top: auto; padding-top: var(--sp-3); color: var(--gold-deep); font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 7px; }
  .svc-card__more::after { content: "→"; transition: transform var(--dur-q) var(--ease); }
  .svc-card:hover .svc-card__more::after { transform: translateX(5px); }

  /* Steps */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); counter-reset: step; }
  .step { min-width: 0; }
  .step__n { font-family: var(--ff-serif); font-size: 44px; color: var(--gold); line-height: 1; }
  .section--dark .step__n, .section--petrol .step__n { color: var(--gold-bright); }
  .step__bar { height: 2px; background: var(--line-gold); margin: var(--sp-3) 0; position: relative; }
  .section--dark .step__bar, .section--petrol .step__bar { background: rgba(216,178,90,.35); }
  .step h3 { font-size: 20px; }
  .step p { font-size: var(--fs-sm); color: var(--ink-2); margin-top: 8px; max-width: none; }
  .section--dark .step p, .section--petrol .step p { color: rgba(244,236,219,.78); }

  /* Split — image + text */
  .split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
  .split--rev .split__media { order: 2; }
  .split__media { border-radius: var(--r-6); overflow: hidden; box-shadow: var(--shadow-card); }
  .split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
  .split__body > * + * { margin-top: var(--sp-3); }
  .split__body .btn-row { margin-top: var(--sp-5); }

  /* Checklist */
  .checklist { display: grid; gap: 12px; margin-top: var(--sp-4); }
  .checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: var(--fs-sm); color: var(--ink-2); }
  .checklist svg { width: 21px; height: 21px; flex: none; color: var(--gold-deep); margin-top: 1px; }
  .section--dark .checklist li, .section--petrol .checklist li { color: rgba(244,236,219,.85); }
  .section--dark .checklist svg, .section--petrol .checklist svg { color: var(--gold-bright); }

  /* FAQ */
  .faq { max-width: 820px; margin-inline: auto; }
  .faq__item { border-bottom: 1px solid var(--line); }
  .faq__item:first-child { border-top: 1px solid var(--line); }
  .faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: var(--sp-4) 0; font-family: var(--ff-serif); font-size: var(--fs-h4); font-weight: 500; color: var(--ink); }
  .faq__q .ico { flex: none; width: 26px; height: 26px; position: relative; }
  .faq__q .ico::before, .faq__q .ico::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--gold-deep); }
  .faq__q .ico::before { width: 15px; height: 2px; }
  .faq__q .ico::after { width: 2px; height: 15px; transition: transform var(--dur) var(--ease); }
  .faq__item.is-open .faq__q .ico::after { transform: translate(-50%,-50%) scaleY(0); }
  .faq__a { overflow: hidden; max-height: 0; transition: max-height var(--dur) var(--ease); }
  .faq__a p { padding-bottom: var(--sp-4); color: var(--ink-2); max-width: none; }

  /* CTA band */
  .ctaband { position: relative; background: var(--petrol); color: var(--paper); border-radius: var(--r-6); padding: clamp(40px, 6vw, 80px); overflow: hidden; }
  .ctaband::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(216,178,90,.22), transparent 70%); }
  .ctaband__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--sp-6); align-items: center; }
  .ctaband h2 { color: var(--paper); }
  .ctaband .lead { color: rgba(244,236,219,.85); margin-top: var(--sp-3); }
  .ctaband__contact { display: grid; gap: 12px; }
  .ctaband__phone { font-family: var(--ff-serif); font-size: clamp(26px, 3vw, 38px); color: var(--gold-bright); }
  .ctaband__hours { font-family: var(--ff-mono); font-size: 13px; letter-spacing: .03em; color: rgba(244,236,219,.7); }

  /* Info cards */
  .infocards { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-4); }
  .infocards--two { grid-template-columns: repeat(2,1fr); }
  .infocard { background: var(--card); border-radius: var(--r-5); padding: var(--sp-5); box-shadow: var(--shadow-soft); border: 1px solid var(--line); min-width: 0; }
  .infocard h3 { font-size: 21px; }
  .infocard p { font-size: var(--fs-sm); color: var(--ink-2); margin-top: 10px; max-width: none; }

  /* Tag chips */
  .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--sp-4); }
  .chip { font-size: 14px; padding: 9px 16px; border-radius: var(--r-pill); background: var(--paper-2); border: 1px solid var(--line); color: var(--ink-2); }

  /* Sticky mobile CTA */
  .sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-strong); border-top: 1px solid var(--line-strong); }
  .sc-action { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 15px; font-weight: 600; font-size: 15px; }
  .sc-route { background: var(--card); color: var(--ink); }
  .sc-call { background-image: linear-gradient(var(--gold), var(--gold-deep)); color: #211807; forced-color-adjust: none; }

  .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; }

  /* Breadcrumb */
  .crumb { font-family: var(--ff-mono); font-size: 12.5px; letter-spacing: .03em; color: var(--ink-3); display: flex; gap: 8px; flex-wrap: wrap; }
  .crumb a:hover { color: var(--gold-deep); }
}

/* ============================ SECTION HELPERS ============================ */
@layer sections {
  .prose { max-width: var(--maxw-prose); }
  .prose > * + * { margin-top: var(--sp-4); }
  .prose h2 { font-size: var(--fs-h3); margin-top: var(--sp-6); }
  .prose p { color: var(--ink-2); }
  .prose ul { display: grid; gap: 10px; }
  .prose ul li { display: flex; gap: 12px; color: var(--ink-2); }
  .prose ul li::before { content: ""; width: 7px; height: 7px; margin-top: 11px; border-radius: 50%; background: var(--gold); flex: none; }

  .karat-table { width: 100%; margin-top: var(--sp-4); border: 1px solid var(--line); border-radius: var(--r-4); overflow: hidden; font-size: var(--fs-sm); }
  .karat-table th, .karat-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); }
  .karat-table th { background: var(--paper-2); font-family: var(--ff-mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); }
  .karat-table tr:last-child td { border-bottom: 0; }
  .karat-table td:first-child { font-family: var(--ff-mono); color: var(--gold-deep); font-weight: 500; }
}

/* ============================ FORMS ============================ */
@layer forms {
  .form { display: grid; gap: var(--sp-4); }
  .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .field { display: grid; gap: 7px; }
  .field label { font-size: 14px; font-weight: 600; color: var(--ink); }
  .field input, .field textarea { background: #fff; border: 1.5px solid rgba(28,21,12,.34); border-radius: var(--r-4); padding: 14px 16px; box-shadow: inset 0 1px 2px rgba(28,21,12,.05); transition: border-color var(--dur-q), box-shadow var(--dur-q); width: 100%; }
  .field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(183,137,47,.14); }
  .field textarea { min-height: 130px; resize: vertical; }
  .field--hp { position: absolute; left: -9999px; }
  .form__file input[type=file] { background: var(--paper-2); border: 1.5px dashed rgba(28,21,12,.34); border-radius: var(--r-4); padding: 16px; cursor: pointer; box-shadow: none; }
  .form__file input[type=file]::file-selector-button { font: inherit; font-weight: 600; font-size: 14px; margin-right: 14px; padding: 9px 16px; border-radius: var(--r-pill); border: 0; cursor: pointer; background-image: linear-gradient(var(--ink), #2b2113); color: var(--paper); }
  .form__note { font-size: 13px; color: var(--ink-3); }
  .form__success { background: var(--petrol); color: var(--paper); border-radius: var(--r-5); padding: var(--sp-4) var(--sp-5); display: flex; gap: 14px; align-items: flex-start; }
  .form__success svg { color: var(--gold-bright); width: 24px; height: 24px; flex: none; }

  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: start; }
  .info-list { display: grid; gap: var(--sp-4); }
  .info-list__item { display: flex; gap: 16px; align-items: flex-start; }
  .info-list__item .ic { width: 44px; height: 44px; border-radius: var(--r-4); background: var(--paper-2); display: grid; place-items: center; color: var(--gold-deep); flex: none; }
  .info-list__item .ic svg { width: 21px; height: 21px; }
  .info-list__item h3 { font-family: var(--ff-sans); font-size: 16px; font-weight: 700; letter-spacing: 0; }
  .info-list__item p, .info-list__item address { font-size: var(--fs-sm); color: var(--ink-2); font-style: normal; margin-top: 3px; }
  .map-embed { position: relative; border-radius: var(--r-5); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); aspect-ratio: 16/10; background: var(--paper-2); }
  .map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.92) contrast(1.02); }
}

/* ============================ FOOTER ============================ */
@layer footer {
  .site-footer { background: var(--espresso); color: rgba(244,236,219,.78); padding-top: var(--sp-8); }
  .site-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: var(--sp-6) var(--sp-5); padding-bottom: var(--sp-7); }
  .brand--footer .brand__name { color: var(--paper); }
  .site-footer__claim { font-size: var(--fs-sm); color: rgba(244,236,219,.62); margin-top: var(--sp-4); max-width: 36ch; }
  .site-footer h4 { font-family: var(--ff-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: var(--sp-3); font-weight: 500; }
  .site-footer ul { display: grid; gap: 11px; }
  .site-footer ul a { font-size: var(--fs-sm); color: rgba(244,236,219,.74); transition: color var(--dur-q); }
  .site-footer ul a:hover { color: var(--paper); }
  .site-footer__contact address { font-style: normal; font-size: var(--fs-sm); color: rgba(244,236,219,.74); line-height: 1.8; }
  .site-footer__contact a:hover { color: var(--gold-bright); }
  .site-footer__hours { font-family: var(--ff-mono); font-size: 12.5px; color: rgba(244,236,219,.6); margin-top: var(--sp-3); line-height: 1.9; }
  .site-footer__hours span { color: var(--gold-bright); display: inline-block; width: 42px; }
  .site-footer__bottom { display: flex; justify-content: space-between; gap: var(--sp-3); flex-wrap: wrap; padding-block: var(--sp-4); border-top: 1px solid rgba(244,236,219,.12); font-size: 13px; color: rgba(244,236,219,.55); }
  .site-footer__bottom a:hover { color: var(--paper); }
}

/* ============================ MOTION ============================ */
@layer motion {
  [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
  [data-reveal].is-in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    [data-reveal] { opacity: 1; transform: none; }
  }
}

/* ============================ RESPONSIVE ============================ */
@layer responsive {
  @media (max-width: 1080px) {
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .ctaband__inner { grid-template-columns: 1fr; gap: var(--sp-5); }
  }
  @media (max-width: 900px) {
    .trust { grid-template-columns: repeat(2, 1fr); }
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
    .infocards { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; }
    .split--rev .split__media { order: 0; }
    .contact-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 760px) {
    .hamburger { display: flex; }
    .mainnav { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: var(--sp-3) var(--gutter) var(--sp-5); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity var(--dur-q), transform var(--dur-q); max-height: calc(100dvh - var(--header-h)); overflow: auto; }
    .mainnav.is-open { opacity: 1; transform: none; pointer-events: auto; }
    .mainnav > a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
    .mainnav > a::after { display: none; }
    .mainnav__cta { margin-top: var(--sp-3); justify-content: center; text-align: center; box-shadow: none; background-image: linear-gradient(var(--gold), var(--gold-deep)); color: #211807 !important; padding: 15px !important; }
    .sticky-cta { display: grid; }
    body { padding-bottom: 56px; }
    .site-footer { padding-bottom: 56px; }
    .form__row { grid-template-columns: 1fr; }
    .hero__veil { background: linear-gradient(180deg, rgba(14,11,6,.55) 0%, rgba(14,11,6,.78) 55%, var(--night) 100%); }
    .hero__media { background-position: 70% 30%; }
  }
  @media (max-width: 560px) {
    .trust { grid-template-columns: 1fr; }
    .svc-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; }
  }
}
