/* ────────────────────────────────────────────────────────────────────────────
   vleminckxdesausmeester.nl · design system "De Sausmeester"
   Palette from the shop itself: bordeaux sign red, cream awning, fries gold,
   gingham cone red. Display: Playfair Display (self-hosted). Body: system.
   ──────────────────────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --red: #8b1f1f;
  --red-deep: #6e1717;
  --red-bright: #a32a24;
  --gingham: #cf3f30;
  --cream: #f6efe1;
  --paper: #fbf7ec;
  --card: #fffdf6;
  --ink: #2a211c;
  --ink-soft: #5c4f45;
  --gold: #e9b949;
  --gold-deep: #7d5605;
  --night: #201713;
  --line: #e3d7bf;
  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ── wordmark ── */
.wm { display: inline-flex; flex-direction: column; align-items: center; text-align: center;
      color: var(--red); text-decoration: none; line-height: 1.05; }
.wm-anno { font-family: var(--body); font-size: .58em; letter-spacing: .34em; text-transform: uppercase;
           display: flex; align-items: center; gap: .7em; white-space: nowrap; }
.wm-anno::before, .wm-anno::after { content: ''; height: 1px; width: 2.2em; background: currentColor; opacity: .65; }
.wm-name { font-family: var(--display); font-weight: 700; font-size: 2.1em; letter-spacing: .06em;
           text-transform: uppercase; }
.wm-sub { font-family: var(--body); font-size: .62em; letter-spacing: .52em; text-transform: uppercase;
          border-top: 1px solid currentColor; padding-top: .45em; margin-top: .25em; white-space: nowrap;
          text-indent: .52em; }
.wm-small { font-size: .8rem; }
/* hero wordmark scales with the CARD, not the viewport: VLEMINCKX at 2.1em
   spans ~13.5x the base font, so 7cqi of the panel's content box always fits
   with ~5% slack. The vw clamp is only the no-container-query fallback. */
.wm-hero { font-size: clamp(1.25rem, 3.6vw, 2.1rem); max-width: 100%; }
@supports (container-type: inline-size) {
  .wm-hero { font-size: clamp(1rem, 7cqi, 2.1rem); }
}
.wm-foot { font-size: .75rem; color: var(--cream); }

/* ── header ── */
.site-header {
  display: flex; align-items: center; gap: .6rem 1rem; flex-wrap: wrap;
  padding: .8rem clamp(1rem, 2.5vw, 2.5rem);
  background: var(--paper);
  border-bottom: 3px solid var(--red);
  position: relative;
}
.header-brand { text-decoration: none; }
/* the nav itself may drop to its own row, but the buttons NEVER wrap:
   one line of menu items at every viewport (no hamburger, we sell fries) */
.site-nav { display: flex; gap: clamp(.7rem, 1.4vw, 1.1rem); flex-wrap: nowrap; margin-left: auto; }
.site-nav a { color: var(--ink); text-decoration: none; font-size: .92rem; font-weight: 600;
              letter-spacing: .02em; border-bottom: 2px solid transparent; padding-bottom: 2px;
              white-space: nowrap; }
.site-nav a:hover { color: var(--red); border-bottom-color: var(--gold); }
.header-side { display: flex; align-items: center; gap: .8rem; }
.lang-switch { font-weight: 700; font-size: .85rem; text-decoration: none; color: var(--red);
               border: 1.5px solid var(--red); border-radius: 3px; padding: .15rem .55rem; }
.lang-switch:hover { background: var(--red); color: var(--paper); }
.open-chip { font-size: .78rem; font-weight: 700; letter-spacing: .02em; padding: .2rem .6rem;
             border-radius: 99px; white-space: nowrap; }
.open-chip.is-open { background: #e8f3e4; color: #1d6b2f; }
.open-chip.is-open::before { content: '● '; }
.open-chip.is-closed { background: #f4e4e0; color: #8b2a1f; }
.open-chip.is-closed::before { content: '● '; }

@media (max-width: 720px) {
  .site-header { justify-content: space-between; gap: .45rem .7rem; }
  .header-brand .wm-small { font-size: .66rem; }
  .open-chip { font-size: .7rem; padding: .16rem .5rem; }
  .lang-switch { font-size: .78rem; padding: .12rem .45rem; }
  .site-nav { order: 3; width: 100%; justify-content: space-between; gap: .7rem;
              padding-top: .35rem; overflow-x: auto; scrollbar-width: none; }
  .site-nav a { font-size: .82rem; }
}

/* ── hero ── */
.hero { position: relative; min-height: 74vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
            object-position: 40% 38%; }
.hero::after { content: ''; position: absolute; inset: 0;
               background: linear-gradient(180deg, rgba(32,23,19,0) 30%, rgba(32,23,19,.55) 100%); }
.hero-panel {
  position: relative; z-index: 2; margin: clamp(1rem, 4vw, 3rem);
  background: var(--paper); border: 2px solid var(--red);
  padding: 1.6rem clamp(1.2rem, 3.5vw, 2.4rem) 1.4rem;
  width: min(34rem, calc(100% - 2 * clamp(1rem, 4vw, 3rem)));
  container-type: inline-size;
  box-shadow: 0 12px 40px rgba(32,23,19,.35);
}
.hero-gingham { position: absolute; top: 0; left: 0; right: 0; height: 9px;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Crect width='28' height='28' fill='%23fdfaf2'/%3E%3Crect width='14' height='28' fill='%23cf3f30' opacity='.55'/%3E%3Crect width='28' height='14' fill='%23cf3f30' opacity='.55'/%3E%3C/svg%3E");
                background-size: 14px 14px; }
/* ── the 70-years counter (owner's mockup: poster digits, sparks, gold ribbon) ── */
.years { display: flex; flex-direction: column; align-items: center; margin-top: .7rem; }
.years-line { display: flex; align-items: center; gap: .16em; color: var(--red);
              font-family: var(--display); font-weight: 700; text-transform: uppercase;
              line-height: 1; white-space: nowrap;
              font-size: clamp(2rem, 7.2vw, 3.4rem); }
@supports (container-type: inline-size) {
  .years-line { font-size: clamp(1.8rem, 12.5cqi, 3.4rem); }
}
.years-num { letter-spacing: .02em; min-width: 2.1ch; text-align: center;
             font-variant-numeric: tabular-nums;
             text-shadow: 0 .05em 0 var(--gold-deep), 0 .11em .16em rgba(32, 23, 19, .22); }
.years-word { font-size: .82em; letter-spacing: .05em; margin-left: .08em;
              text-shadow: 0 .05em 0 var(--gold-deep), 0 .11em .16em rgba(32, 23, 19, .22); }
.years-burst { width: .62em; height: 1.1em; color: #c98f1f; flex: none; }
.years-burst-r { transform: scaleX(-1); }
.years-ribbon { position: relative; margin-top: .6rem; background: var(--gold); color: var(--night);
                font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
                font-size: clamp(.7rem, 3.2cqi, .92rem); line-height: 1;
                padding: .5em 1.2em .48em; display: inline-flex; align-items: center; gap: .9em;
                box-shadow: 0 2px 0 var(--gold-deep); }
.years-ribbon::before, .years-ribbon::after {
  content: ''; position: absolute; top: .38em; width: 1.15em; height: 100%;
  background: var(--gold-deep); z-index: -1; }
.years-ribbon::before { left: -0.72em; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 38% 50%); }
.years-ribbon::after { right: -0.72em; clip-path: polygon(0 0, 100% 0, 62% 50%, 100% 100%, 0 100%); }
.ribbon-star { font-size: .78em; transform: translateY(-.06em); }

.hero-tagline { margin: .9rem 0 .6rem; font-size: 1.02rem; color: var(--ink-soft); }
.hero-rating { font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; }
.stars { color: var(--gold-deep); letter-spacing: .1em; }
.hero-ctas { display: flex; gap: .7rem; flex-wrap: wrap; }
@media (min-width: 900px) { .hero-panel { margin-left: auto; } }

/* phones: compact the card so the photo stays visible (the loket really
   exists); CTAs share one line, the counter tightens up */
@media (max-width: 600px) {
  .hero-panel { padding: 1.15rem 1rem 1rem; }
  .hero-panel .years { margin-top: .45rem; }
  .hero-panel .years-line { font-size: clamp(1.6rem, 6.2vw, 2.4rem); }
  @supports (container-type: inline-size) {
    .hero-panel .years-line { font-size: clamp(1.5rem, 10.5cqi, 2.4rem); }
  }
  .hero-panel .years-ribbon { margin-top: .45rem; font-size: .68rem; letter-spacing: .16em;
                              padding: .45em 1em .42em; gap: .7em; }
  .hero-tagline { margin: .7rem 0 .5rem; font-size: .95rem; }
  .hero-rating { font-size: .8rem; margin-bottom: .8rem; }
  .hero-ctas { flex-wrap: nowrap; gap: .55rem; }
  .hero-ctas .btn { flex: 1 1 0; text-align: center; white-space: nowrap;
                    font-size: .84rem; padding: .5rem .4rem; }
}

.btn { display: inline-block; text-decoration: none; font-weight: 700; font-size: .95rem;
       padding: .62rem 1.25rem; border-radius: 4px; border: 2px solid transparent;
       transition: transform .12s ease, box-shadow .12s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--night); border-color: var(--gold-deep);
            box-shadow: 0 3px 0 var(--gold-deep); }
.btn-red { background: var(--red); color: var(--paper); box-shadow: 0 3px 0 var(--red-deep); }
.btn-ghost { background: transparent; color: var(--red); border-color: var(--red); }
.btn-ghost:hover { background: var(--red); color: var(--paper); }
.text-link { font-weight: 700; }

/* ── sections ── */
main section { padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1rem, 5vw, 3rem); }
.section-head { max-width: 46rem; margin: 0 auto 2.2rem; text-align: center; }
.section-head h2 { font-family: var(--display); font-weight: 700; color: var(--red);
                   font-size: clamp(1.6rem, 3.6vw, 2.3rem); line-height: 1.15; margin-bottom: .5rem; }
.section-head p { color: var(--ink-soft); }
.section-head-light h2 { color: var(--cream); }
.section-head-light p { color: #e8d9c4; }
.kicker { font-size: .8rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
          color: var(--gold-deep); margin-bottom: .4rem; }

/* press strip */
.press { background: var(--paper); border-bottom: 1px solid var(--line); padding-top: 2rem; padding-bottom: 2rem; }
.press-row { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
             max-width: 68rem; margin: 0 auto; }
.press-item blockquote { font-family: var(--display); font-weight: 600; font-size: 1.02rem;
                         line-height: 1.35; color: var(--ink); }
.press-item figcaption { margin-top: .45rem; font-size: .74rem; font-weight: 700;
                         letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }

.fries-divider { line-height: 0; background: var(--cream); text-align: center; }
.fries-divider svg { height: 18px; width: min(420px, 60vw); }

/* sauces */
.sauces { background: var(--cream); }
.sauce-walls { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
               max-width: 62rem; margin: 0 auto; }
.sauce-board { background: var(--card); border: 2px solid var(--red); border-radius: 6px;
               padding: 1.4rem 1.5rem 1.6rem; box-shadow: 0 6px 22px rgba(139,31,31,.08); }
.sauce-board h3 { font-family: var(--display); color: var(--red); font-size: 1.25rem;
                  text-align: center; border-bottom: 2px solid var(--gold); padding-bottom: .55rem;
                  margin-bottom: .9rem; }
.sauce-board ul { list-style: none; }
.sauce { display: grid; grid-template-columns: 2rem 1fr; gap: .1rem .65rem; align-items: baseline;
         padding: .32rem 0; border-bottom: 1px dashed var(--line); }
.sauce:last-child { border-bottom: none; }
.sauce-num { font-family: var(--display); font-weight: 700; color: var(--paper); background: var(--red);
             border-radius: 50%; width: 1.55rem; height: 1.55rem; font-size: .8rem;
             display: inline-flex; align-items: center; justify-content: center; align-self: center; }
.sauce-name { font-weight: 600; }
.sauce-note { grid-column: 2; font-size: .82rem; color: var(--ink-soft); }
.sauce-fav { color: var(--gold-deep); margin-left: .4rem; }
.sauce-pop .sauce-num { background: var(--gold-deep); }
.sizes-line { text-align: center; margin-top: 1.6rem; font-weight: 600; color: var(--ink-soft); }

/* how it works */
.how { background: var(--paper); }
.how-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            max-width: 64rem; margin: 0 auto; }
.how-card { background: var(--card); border: 1px solid var(--line); border-radius: 6px;
            overflow: hidden; position: relative; padding-bottom: 1.4rem;
            box-shadow: 0 4px 18px rgba(42,33,28,.06); }
.how-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.how-img img { width: 100%; height: 100%; object-fit: cover; }
.how-num { position: absolute; top: .8rem; left: .8rem; background: var(--red); color: var(--paper);
           font-family: var(--display); font-weight: 700; width: 2.1rem; height: 2.1rem; border-radius: 50%;
           display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
           box-shadow: 0 2px 8px rgba(32,23,19,.4); }
.how-card h3 { font-family: var(--display); color: var(--red); font-size: 1.2rem;
               margin: 1rem 1.2rem .3rem; }
.how-card p { margin: 0 1.2rem; font-size: .95rem; color: var(--ink-soft); }
.how-cta { text-align: center; margin-top: 1.8rem; }

/* reviews */
.reviews { background: var(--red); color: var(--cream);
           background-image: linear-gradient(180deg, var(--red-deep), var(--red)); }
.review-carousel { position: relative; max-width: 46rem; margin: 0 auto; min-height: 13rem; }
.review-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease;
                display: flex; flex-direction: column; justify-content: center; text-align: center;
                padding: 0 1rem; }
.review-slide.is-active { opacity: 1; position: relative; }
.review-slide blockquote { font-family: var(--display); font-weight: 600;
                           font-size: clamp(1.15rem, 2.6vw, 1.55rem); line-height: 1.4; }
.review-slide blockquote::before { content: '“'; display: block; font-size: 3rem; line-height: .6;
                                   color: var(--gold); margin-bottom: .6rem; }
.review-slide figcaption { margin-top: 1rem; font-size: .8rem; font-weight: 700;
                           letter-spacing: .16em; text-transform: uppercase; color: #ecd9b8; }
.review-dots { display: flex; gap: .45rem; justify-content: center; margin-top: 1.4rem; }
.dot { width: .62rem; height: .62rem; border-radius: 50%; border: 1.5px solid var(--cream);
       background: transparent; cursor: pointer; padding: 0; }
.dot.is-active { background: var(--gold); border-color: var(--gold); }
.review-strip { text-align: center; margin-top: 1.6rem; font-size: .88rem; font-weight: 600; color: #ecd9b8; }
.review-strip a { color: var(--cream); }

/* story */
.story { background: var(--cream); display: grid; gap: 2.2rem;
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         align-items: center; max-width: 66rem; margin: 0 auto; }
.story-media img { border: 8px solid var(--card); box-shadow: 0 10px 30px rgba(42,33,28,.18);
                   border-radius: 3px; max-height: 460px; object-fit: cover; width: 100%; }
.story-text h2 { font-family: var(--display); color: var(--red); font-size: clamp(1.6rem, 3.4vw, 2.2rem);
                 margin-bottom: .7rem; }
.story-text p { margin-bottom: 1rem; color: var(--ink-soft); }

/* guides */
.guides { background: var(--paper); }
.guides-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
               max-width: 66rem; margin: 0 auto; }
.guide-card { background: var(--card); border: 1px solid var(--line); border-top: 4px solid var(--red);
              border-radius: 6px; padding: 1.2rem 1.3rem 1.1rem; text-decoration: none; color: var(--ink);
              display: flex; flex-direction: column; gap: .5rem;
              transition: transform .12s ease, box-shadow .12s ease; }
.guide-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(139,31,31,.14);
                    border-top-color: var(--gold-deep); }
.guide-card h3 { font-family: var(--display); color: var(--red); font-size: 1.12rem; line-height: 1.3; }
.guide-card p { font-size: .88rem; color: var(--ink-soft); flex: 1; }
.guide-more { font-size: .82rem; font-weight: 700; color: var(--gold-deep);
              letter-spacing: .06em; text-transform: uppercase; }

/* family */
.family { background: var(--cream); }
.family-grid { display: grid; gap: 2rem; grid-template-columns: minmax(260px, 380px) 1fr;
               max-width: 66rem; margin: 0 auto; align-items: start; }
.family-map { background: var(--card); border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
              box-shadow: 0 6px 22px rgba(42,33,28,.08); }
.mini-map { width: 100%; height: auto; display: block; }
.mm-street, .mm-label, .mm-water { font-family: var(--body); font-size: 11px; fill: #8d7c6a;
                                   letter-spacing: .06em; }
.mm-label { font-weight: 700; fill: #5c4f45; }
.mm-water { fill: #7fa3b3; font-style: italic; }
.mm-pin text { fill: #fff; font-size: 10px; font-weight: 700; text-anchor: middle; font-family: var(--body); }
.mm-pin-main text { font-size: 12px; }
.family-cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.family-card { background: var(--card); border: 1px solid var(--line); border-radius: 6px;
               padding: 1.1rem 1.2rem; text-decoration: none; color: var(--ink); position: relative;
               transition: transform .12s ease, box-shadow .12s ease; }
a.family-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(139,31,31,.14); }
.family-card h3 { font-family: var(--display); font-size: 1.05rem; color: var(--red); margin-bottom: .15rem; }
.family-addr { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
               color: var(--gold-deep); margin-bottom: .4rem; }
.family-card p:last-child { font-size: .88rem; color: var(--ink-soft); }
.family-card-main { border: 2px solid var(--red); }
.family-here { position: absolute; top: -0.7rem; right: .8rem; background: var(--red); color: var(--paper);
               font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
               padding: .18rem .6rem; border-radius: 99px; }
@media (max-width: 860px) { .family-grid { grid-template-columns: 1fr; } }

/* visit */
.visit { background: var(--paper); }
.visit-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
              max-width: 64rem; margin: 0 auto; align-items: start; }
.visit-block h3 { font-family: var(--display); color: var(--red); font-size: 1.25rem; margin-bottom: .7rem; }
.visit-addr { margin-bottom: 1.2rem; line-height: 1.8; }
.hours-table { border-collapse: collapse; width: 100%; max-width: 20rem; }
.hours-table th { text-align: left; font-weight: 600; padding: .28rem 1rem .28rem 0; }
.hours-table td { text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-table tr { border-bottom: 1px dashed var(--line); }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--red); font-weight: 700; }
.visit-photo img { border-radius: 6px; border: 1px solid var(--line);
                   box-shadow: 0 6px 22px rgba(42,33,28,.1); }

/* faq */
.faq { background: var(--cream); }
.faq-list { max-width: 46rem; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 6px;
            margin-bottom: .6rem; padding: 0; overflow: hidden; }
.faq-item summary { cursor: pointer; font-weight: 700; padding: .85rem 1.2rem; list-style: none;
                    position: relative; padding-right: 2.6rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 1.1rem; top: 50%;
                           transform: translateY(-50%); font-family: var(--display); font-size: 1.3rem;
                           color: var(--gold-deep); }
.faq-item[open] summary::after { content: '·'; }
.faq-item[open] summary { color: var(--red); }
.faq-item p { padding: 0 1.2rem 1rem; color: var(--ink-soft); }

/* guide pages */
.guide-page { max-width: 72rem; margin: 0 auto; padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 5vw, 3rem);
              display: grid; gap: 3rem; grid-template-columns: minmax(0, 46rem) minmax(200px, 16rem); }
.breadcrumb { grid-column: 1 / -1; font-size: .85rem; color: var(--ink-soft); }
.breadcrumb span { opacity: .5; margin: 0 .3rem; }
.guide-page h1 { font-family: var(--display); color: var(--red); font-size: clamp(1.8rem, 4.5vw, 2.6rem);
                 line-height: 1.15; margin-bottom: 1rem; }
.guide-intro { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.guide-page .fries-divider { background: transparent; text-align: left; margin-bottom: 1.4rem; }
.guide-body h2 { font-family: var(--display); color: var(--red); font-size: 1.45rem;
                 margin: 1.8rem 0 .6rem; }
.guide-body p { margin-bottom: 1rem; }
.guide-related { border-left: 2px solid var(--line); padding-left: 1.6rem; align-self: start;
                 position: sticky; top: 1.5rem; }
.guide-related h2 { font-family: var(--display); color: var(--red); font-size: 1.15rem; margin-bottom: .7rem; }
.guide-related ul { list-style: none; margin-bottom: 1.2rem; }
.guide-related li { margin-bottom: .55rem; }
.guide-related a { font-size: .95rem; }
@media (max-width: 900px) {
  .guide-page { grid-template-columns: 1fr; gap: 1.5rem; }
  .guide-related { border-left: none; padding-left: 0; position: static;
                   border-top: 2px solid var(--line); padding-top: 1.5rem; }
}

/* footer */
.site-footer { background: var(--night); color: var(--cream); padding: 2.8rem clamp(1rem, 5vw, 3rem) 1.4rem;
               border-top: 6px solid var(--red); }
.footer-inner { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                max-width: 64rem; margin: 0 auto 2rem; }
.footer-brand p { font-size: .85rem; color: #b7a893; margin-top: .8rem; }
.footer-col h3 { font-family: var(--display); font-size: 1rem; color: var(--gold); margin-bottom: .7rem; }
.footer-col a { display: block; color: var(--cream); text-decoration: none; font-size: .92rem;
                margin-bottom: .45rem; opacity: .9; }
.footer-col a:hover { color: var(--gold); }
.footer-legal { max-width: 64rem; margin: 0 auto; border-top: 1px solid #3a2c24; padding-top: 1.1rem;
                display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
                font-size: .8rem; color: #b7a893; }
.credit a { color: var(--cream); }
