/* Welaka Eats — single site stylesheet.
   ALL styling lives here (no inline styles ever). Design tokens first.
   One breakpoint (1200px) collapses the nav; keep it in sync with main.js. */

/* ---------- FONTS (self-hosted woff2 latin subsets, never Google Fonts) ---- */
@font-face {
  font-family: 'Google Sans Flex';
  src: url('/fonts/google-sans-flex-var-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
/* ---------- TOKENS ---------- */
:root {
  /* Palette sampled directly from the logo artwork (see _brand/).
     Golds: #94692C darkest → #B58842 mean → #F3C979 highlight.
     Logo black measures #060606; lifted slightly for comfortable reading. */
  --color-cream: #FBF7EF;
  --color-cream-2: #F4EDE0;
  --color-cream-3: #E9DEC9;
  --color-ink: #0D0D0D;
  --color-ink-2: #1A1A1A;
  --color-ink-soft: #4A443C;
  --color-gold: #B58842;        /* decorative: rules, hairlines, borders */
  --color-gold-dp: #936E2F;     /* text + button gold — 4.65:1 on white   */
  --color-gold-deep: #7C5D27;   /* button hover                            */
  --color-gold-lt: #F3C979;     /* highlight gold, for use on ink          */
  --color-line: rgba(13, 13, 13, .12);
  --color-shadow: 0 18px 50px -22px rgba(13, 13, 13, .45);

  /* One family everywhere. Weight, size and tracking do all the separating —
     there is no second face to fall back on, so hierarchy has to be earned. */
  --font-body: 'Google Sans Flex', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-heading: var(--font-body);
  --font-script: var(--font-body);
  --font-logo: var(--font-body);

  --radius: 4px;
  --container: 1180px;
  --space-section: clamp(84px, 9.5vw, 152px);
  /* ACCESSIBILITY FLOOR: this audience skews older. No text on this site may
     compute below 15px. .95rem = 15.2px at the 16px root. Do not go under. */
  --min-type: .95rem;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-heading); line-height: 1.08; font-weight: 700; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

/* ---------- HELPERS ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
/* These lines used to be cursive. With a single family they earn their
   difference through light weight and open tracking instead. */
.script {
  font-family: var(--font-script); font-weight: 300;
  letter-spacing: -.005em;
}
.eyebrow {
  font-size: var(--min-type); letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; color: var(--color-gold-dp); margin: 0 0 1rem;
}
.rule {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--color-gold); margin: 0 auto 1.6rem; max-width: 260px;
}
.rule::before, .rule::after { content: ""; flex: 1; height: 1px; background: currentColor; opacity: .5; }
.rule--sm { max-width: 120px; margin: 22px auto; }
.heart { color: var(--color-gold); font-size: .9em; }
.center { text-align: center; }
.section { padding: var(--space-section) 0; }
@media (max-width: 760px) { .section { padding: clamp(64px, 13vw, 84px) 0; } }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 15px 30px; border-radius: 2px; border: 1px solid transparent;
  font-size: var(--min-type); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transition: .25s ease; white-space: nowrap;
}
.btn-gold { background: var(--color-gold-dp); color: #fff; box-shadow: 0 10px 24px -12px rgba(124, 93, 39, .9); }
.btn-gold:hover { background: var(--color-gold-deep); transform: translateY(-2px); }
.btn-ink { background: var(--color-ink); color: var(--color-cream); }
.btn-ink:hover { background: var(--color-ink-2); transform: translateY(-2px); }
.btn-ghost { border-color: var(--color-ink); color: var(--color-ink); background: transparent; }
.btn-ghost:hover { background: var(--color-ink); color: var(--color-cream); }
.btn-ghost-lt { border-color: var(--color-gold); color: var(--color-gold-lt); background: transparent; }
.btn-ghost-lt:hover { background: var(--color-gold); color: #fff; }

/* ---------- LOGO ---------- */
/* flex: none — the logo must never be squeezed by the nav row. */
.logo { display: block; line-height: 0; text-decoration: none; flex: none; }
/* Intrinsic 510x170 (3:1); rendered at 200px wide, so height follows. */
.logo-img { width: 200px; height: auto; }
.logo-word { font-family: var(--font-logo); font-size: 2.1rem; letter-spacing: .01em; }
.logo-sub {
  font-size: .56rem; letter-spacing: .34em; text-transform: uppercase;
  font-weight: 600; color: var(--color-gold-dp); margin-top: 2px; padding-left: 3px;
  white-space: nowrap;
}
.logo-hat { width: 18px; height: 18px; vertical-align: top; margin-left: -4px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 247, 239, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 82px; }
.site-nav { display: flex; gap: 20px; align-items: center; }
.site-nav a {
  text-decoration: none; font-size: var(--min-type); font-weight: 600; white-space: nowrap;
  letter-spacing: .06em; text-transform: uppercase; color: var(--color-ink-soft);
  position: relative; padding: 6px 0; transition: color .2s;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--color-gold); transition: width .25s;
}
.site-nav a:hover { color: var(--color-ink); }
.site-nav a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--color-ink); }
.nav-toggle svg { width: 26px; height: 26px; }
/* Between the burger breakpoint and full desktop, tighten spacing only —
   never the type. Nothing here may drop below --min-type. */
@media (min-width: 1201px) and (max-width: 1400px) {
  .site-nav { gap: 14px; }
  .site-nav a { letter-spacing: .02em; }
  .nav-cta .btn { padding: 13px 16px; letter-spacing: .06em; }
  .logo-img { width: 172px; }
}

@media (max-width: 1200px) {
  .site-nav {
    display: none; position: absolute; top: 82px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--color-cream); border-bottom: 1px solid var(--color-line);
    box-shadow: var(--color-shadow); padding: 8px 0;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 24px; }
  .logo-img { width: 164px; }
  .site-nav a::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
}

/* ---------- HERO ---------- */
.hero { position: relative; background: var(--color-cream); }
.hero-grid {
  display: grid; grid-template-columns: 1.32fr .68fr; gap: 0; align-items: stretch;
  /* Deliberately full-bleed — NO max-width. Capping and centring the grid
     offsets it from the viewport edge, while .hero-copy's left padding is
     measured FROM that edge; the two offsets stack and the headline drifts
     right of the logo on any screen wider than the cap. Full-bleed keeps the
     padding math honest at every width, and the photo runs to the edge. */
}
/* Left padding lands on the SAME gutter as .container's content edge — i.e.
   the logo and every section below — not on the container's outer edge.
   Right padding reserves the gutter the badge sits in. */
.hero-copy {
  position: relative;
  padding: 96px 112px 96px max(24px, calc((100vw - var(--container)) / 2 + 24px));
}
.hero-media { position: relative; }
.hero-photo {
  height: 100%; min-height: 600px; width: 100%; border: 0;
  object-fit: cover; display: block;
}
/* Feather the photo's left edge into the cream so the seam reads as
   deliberate rather than as two panels butted together. */
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, var(--color-cream) 0%, rgba(251, 247, 239, 0) 13%);
}
/* Headline scale is tuned to the current copy: 'You Came to the River'
   must hold one line in the hero column before the forced break. */
.hero h1 { font-size: clamp(2.5rem, 5.1vw, 4.3rem); letter-spacing: -.028em; line-height: 1.04; text-wrap: balance; }
.hero h1 .line2 { display: block; }
.hero h1 .swash {
  /* Was cursive; with one family it recedes by weight and size instead,
     so it reads as an accent rather than a second headline. */
  display: block; font-family: var(--font-script); font-weight: 300;
  color: var(--color-gold-dp); font-size: .66em; line-height: 1.3;
  letter-spacing: -.005em; margin-top: .3em;
}
.hero-lede { font-size: 1.08rem; color: var(--color-ink-soft); max-width: 54ch; margin-top: 1.7rem; }
.arrive {
  font-family: var(--font-body); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .16em; text-transform: uppercase; margin: 1.4rem 0 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.badge {
  position: absolute; top: 50%; right: -93px; transform: translateY(-50%); z-index: 5;
  width: 234px; height: 234px; border-radius: 50%;
  background: var(--color-ink); color: var(--color-cream);
  border: 1px solid var(--color-gold); outline: 1px solid var(--color-gold); outline-offset: 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 30px; box-shadow: var(--color-shadow);
}
.badge span { font-size: var(--min-type); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; line-height: 1.45; }
.badge .heart { margin-top: 8px; color: var(--color-gold-lt); }
@media (max-width: 1080px) {
  .badge {
    position: static; transform: none; margin: 0 0 28px;
    width: 214px; height: 214px; padding: 26px;
  }
  .badge span { font-size: var(--min-type); }
}
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 56px 24px 48px; }
  .hero-photo { min-height: 320px; max-height: 62vh; border-left: 0; border-top: 1px solid rgba(147, 110, 47, .28); }
}

/* ---------- BRUSH BAND ---------- */
.band { background: var(--color-ink); color: var(--color-cream); padding: 40px 0; text-align: center; }
.band .script { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--color-gold-lt); line-height: 1.25; display: block; }
.band .sub {
  font-size: var(--min-type); letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; margin: .7rem 0 0; color: rgba(251, 247, 239, .88);
}

/* ---------- SERVICES ---------- */
.services { background: var(--color-cream); }
.sec-head { max-width: 640px; margin: 0 auto 76px; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 3.7vw, 3rem); letter-spacing: -.025em; }
.sec-head p { color: var(--color-ink-soft); margin-top: 1rem; }
/* No cards. Four columns of open cream divided by gold hairlines — the
   boxed-and-shadowed version read like a SaaS pricing table. */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, 1fr); row-gap: 56px; } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; row-gap: 0; } }
.svc {
  position: relative; background: none; border: 0; box-shadow: none;
  padding: 0 clamp(20px, 2.4vw, 38px);
  display: flex; flex-direction: column;
}
.svc:first-child { padding-left: 0; }
.svc:last-child { padding-right: 0; }
/* the dividing hairline lives in the gutter, not on the element */
.svc::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px;
  background: linear-gradient(180deg,
    rgba(147, 110, 47, 0) 0%,
    rgba(147, 110, 47, .38) 12%,
    rgba(147, 110, 47, .38) 88%,
    rgba(147, 110, 47, 0) 100%);
}
.svc:nth-child(4n + 1)::before { display: none; }
@media (max-width: 1000px) {
  .svc { padding-left: clamp(0px, 2vw, 28px); padding-right: clamp(0px, 2vw, 28px); }
  .svc:nth-child(odd) { padding-left: 0; }
  .svc:nth-child(even) { padding-right: 0; }
  .svc:nth-child(4n + 1)::before { display: block; }
  .svc:nth-child(odd)::before { display: none; }
}
@media (max-width: 620px) {
  .svc { padding: 0; }
  .svc::before { display: none; }
  .svc + .svc {
    margin-top: 44px; padding-top: 44px;
    border-top: 1px solid rgba(147, 110, 47, .28);
  }
}
.svc-icon { color: var(--color-gold-dp); margin-bottom: 22px; }
.svc-icon svg { width: 46px; height: 46px; }
.svc h3 {
  font-family: var(--font-body); font-size: .95rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px;
}
.svc p { font-size: 1.02rem; color: var(--color-ink-soft); margin-bottom: 1.4em; }
.svc-list { margin: 0 0 28px; font-size: .97rem; color: var(--color-ink-soft); }
.svc-list li { position: relative; padding-left: 22px; margin-bottom: 10px; line-height: 1.58; }
.svc-list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px;
  border: 1px solid var(--color-gold); transform: rotate(45deg);
}
/* Quiet. A big bold numeral competed with the section headings. */
/* Two deliberate lines in every column. At the larger type size a single
   line fits some columns and wraps others, which reads as an accident. */
.price { margin-top: auto; padding-top: 22px; }
.price small { display: block; margin-bottom: 6px; }
.price em { margin-left: .4em; }
.price small {
  font-size: var(--min-type); letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--color-gold-dp);
}
.price strong {
  font-family: var(--font-body); font-size: 1.4rem; font-weight: 700;
  line-height: 1; letter-spacing: -.015em; color: var(--color-ink);
}
.price em { font-style: normal; font-size: var(--min-type); letter-spacing: .1em; text-transform: uppercase; color: var(--color-ink-soft); }
.custom-note { text-align: center; margin-top: 72px; }
.custom-note .script { font-size: 1.9rem; color: var(--color-gold-dp); }
.custom-note p { font-size: 1rem; color: var(--color-ink-soft); margin-top: .5rem; }

/* ---------- HOW IT WORKS ---------- */
.how { background: var(--color-cream-2); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 26px; } }
.step { text-align: center; padding: 0 12px; }
.step-num {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
  border: 1px solid var(--color-gold); color: var(--color-gold-dp);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 1.35rem; font-weight: 600;
  background: rgba(255, 255, 255, .6);
}
.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p { font-size: 1.02rem; color: var(--color-ink-soft); }

/* ---------- PERFECT FOR ---------- */
.perfect { background: var(--color-ink); color: var(--color-cream); }
.perfect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .perfect-grid { grid-template-columns: 1fr; gap: 40px; } }
.perfect h2 { color: var(--color-cream); font-size: clamp(2rem, 3.6vw, 2.8rem); }
.perfect .script { font-size: clamp(2.2rem, 4vw, 3rem); color: var(--color-gold-lt); display: block; margin-bottom: .4rem; }
.perfect-list { margin-top: 28px; display: grid; gap: 2px; }
.perfect-list li {
  display: flex; align-items: center; gap: 16px; padding: 14px 4px;
  border-bottom: 1px solid rgba(243, 201, 121, .20); font-size: 1.02rem;
}
.perfect-list svg { width: 24px; height: 24px; color: var(--color-gold-lt); flex: none; }
.perfect-cta { border: 1px solid var(--color-gold); padding: 36px 32px; text-align: center; background: rgba(243, 201, 121, .06); }
.perfect-cta p {
  font-size: 1.15rem; letter-spacing: .06em; text-transform: uppercase;
  font-weight: 600; line-height: 1.6; color: var(--color-gold-lt);
}

/* ---------- GALLERY ---------- */
/* Full-bleed food gallery. Square tiles, no gaps to speak of — the grid
   itself is the composition. Every tile is lazy-loaded and srcset-sized. */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; background: var(--color-cream); }
@media (max-width: 1000px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }
.gallery-photo {
  width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover;
  display: block; background: var(--color-cream-2);
}

/* ---------- ABOUT ---------- */
.about { background: var(--color-cream); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about .photo { min-height: 400px; }
.about-portrait {
  width: 100%; height: auto; display: block;
  border: 1px solid rgba(147, 110, 47, .30);
  box-shadow: var(--color-shadow);
}
.about h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 1.2rem; }
.about p { color: var(--color-ink-soft); }
.about .sig { font-family: var(--font-logo); font-size: 2rem; color: var(--color-gold-dp); margin-top: .6rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--color-cream-2); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--color-line); padding: 4px 0; }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative;
  font-family: var(--font-body); font-size: 1.12rem; font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-weight: 300; font-size: 1.7rem;
  color: var(--color-gold-dp); transition: transform .2s;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 44px 22px 0; color: var(--color-ink-soft); font-size: 1.02rem; margin: 0; }

/* ---------- CONTACT / FORM ---------- */
.contact { background: var(--color-cream); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-aside h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
.contact-aside .script { font-size: 2.3rem; color: var(--color-gold-dp); display: block; line-height: 1.2; }
.contact-aside p { color: var(--color-ink-soft); }
.contact-intro { margin-top: 1rem; }
.contact-lines { margin-top: 28px; display: grid; gap: 14px; }
.contact-lines a {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  padding: 17px 20px; border: 1px solid var(--color-line); background: #fff;
  font-weight: 600; font-size: 1.02rem; transition: .2s;
}
.contact-lines a:hover { border-color: var(--color-gold); transform: translateX(3px); }
.contact-lines svg { width: 22px; height: 22px; color: var(--color-gold-dp); flex: none; }

.contact-form { background: #fff; border: 1px solid var(--color-line); padding: 38px 34px; box-shadow: var(--color-shadow); }
@media (max-width: 520px) { .contact-form { padding: 26px 20px; } }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .f-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.contact-form label {
  display: block; font-size: var(--min-type); letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--color-ink-soft); margin-bottom: 9px;
}
/* Checkbox group is a fieldset for accessible grouping; strip the browser's
   default box so its legend reads as one more micro-label. */
.contact-form fieldset { border: 0; padding: 0; margin: 0 0 18px; min-width: 0; }
.contact-form legend {
  display: block; padding: 0; float: left; width: 100%;
  font-size: var(--min-type); letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--color-ink-soft); margin-bottom: 9px;
}
.contact-form fieldset > .checks { clear: both; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--color-line); border-radius: 2px;
  background: var(--color-cream); font: inherit; font-size: .94rem; color: var(--color-ink);
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--color-gold); box-shadow: 0 0 0 3px rgba(181, 136, 66, .22);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
@media (max-width: 620px) { .checks { grid-template-columns: 1fr; } }
.contact-form .check {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; margin-bottom: 0;
  border: 1px solid var(--color-line); background: var(--color-cream); cursor: pointer;
  font-size: var(--min-type); font-weight: 500; transition: .2s;
  text-transform: none; letter-spacing: normal; color: var(--color-ink);
}
.contact-form .check:hover { border-color: var(--color-gold); }
.contact-form .check input { width: auto; margin: 0; accent-color: var(--color-gold-dp); }
.contact-form .check:has(input:checked) { border-color: var(--color-gold); background: rgba(181, 136, 66, .12); }
.contact-form .btn { width: 100%; margin-top: 10px; padding: 17px; }
.form-fine { font-size: var(--min-type); color: var(--color-ink-soft); text-align: center; margin: 14px 0 0; line-height: 1.5; }
.form-fine a { color: var(--color-gold-dp); font-weight: 700; }
/* Turnstile bot check — 65px is the widget's rendered height, reserved
   up front so the late-loading iframe can't shift layout (CLS 0 bar). */
.cf-turnstile { min-height: 65px; margin-bottom: 4px; }
.form-status { margin: 16px 0 0; padding: 14px 16px; font-size: var(--min-type); border: 1px solid var(--color-line); }
.form-status[hidden] { display: none; }
.form-status--ok { border-color: var(--color-gold); background: rgba(198, 155, 78, .1); color: var(--color-ink); }
.form-status--err { border-color: #B3261E; background: rgba(179, 38, 30, .07); color: #8C1D18; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--color-ink); color: var(--color-cream); padding: 66px 0 30px; }
.foot-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 48px; align-items: center;
  padding-bottom: 44px; border-bottom: 1px solid rgba(243, 201, 121, .22);
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr; gap: 34px; text-align: center; justify-items: center; }
}
.foot-script .script { font-size: 1.9rem; color: var(--color-gold-lt); display: block; line-height: 1.4; }
.foot-mid { text-align: center; }
.foot-mid h3 { font-size: 1.5rem; color: var(--color-cream); margin-bottom: .4rem; }
.foot-mid .script { font-size: 2rem; color: var(--color-gold-lt); display: block; margin-bottom: 1.2rem; }
.foot-contact { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.foot-contact a {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  border: 1px solid var(--color-gold); padding: 13px 22px; font-size: var(--min-type); font-weight: 600;
  color: var(--color-gold-lt); transition: .2s;
}
.foot-contact a:hover { background: var(--color-gold); color: #fff; }
.foot-contact svg { width: 18px; height: 18px; }
.foot-seal { justify-self: end; }
@media (max-width: 880px) { .foot-seal { justify-self: center; } }
/* White disc so the logo's black "Welaka" stays legible on the ink footer,
   with the double gold ring the badge uses. */
.seal {
  width: 188px; height: 188px; border-radius: 50%; background: #fff;
  border: 1px solid var(--color-gold);
  outline: 1px solid var(--color-gold); outline-offset: 7px;
  display: flex; align-items: center; justify-content: center;
  /* the artwork is cropped to its own bounds, so this padding is the only
     breathing room between mark and ring — tune it here, not in the image */
  padding: 26px;
}
.seal-logo { width: 100%; height: auto; display: block; }
.foot-bottom {
  padding-top: 26px; text-align: center; font-size: var(--min-type); letter-spacing: .06em;
  color: rgba(251, 247, 239, .58);
}
.foot-bottom a { color: var(--color-gold-lt); text-decoration: none; }
.foot-credit {
  margin: 12px 0 0; text-align: center; font-size: var(--min-type); letter-spacing: .05em;
  color: rgba(251, 247, 239, .45);
}
.foot-credit a { color: rgba(251, 247, 239, .7); text-decoration: none; border-bottom: 1px solid rgba(243, 201, 121, .45); }
.foot-credit a:hover { color: var(--color-gold-lt); border-bottom-color: var(--color-gold-lt); }

/* ---------- STICKY MOBILE CALL BAR ---------- */
.callbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--color-ink); border-top: 1px solid var(--color-gold);
  padding: 10px 14px; gap: 10px;
}
.callbar a { flex: 1; padding: 14px 8px; font-size: var(--min-type); letter-spacing: .06em; }
@media (max-width: 1200px) {
  .callbar { display: flex; }
  body { padding-bottom: 70px; }
}

/* GTM noscript iframe must not affect layout */
.gtm-ns { display: none; visibility: hidden; }
