/* ==========================================================================
   Farm 2 Family Butchers Ltd
   Site stylesheet
   Palette taken from the shop logo: black, aged gold, bone cream.
   ========================================================================== */

:root {
  --black:        #0a0a0a;
  --black-soft:   #111110;
  --charcoal:     #171614;
  --charcoal-2:   #1f1d1a;
  --line:         #2e2a24;

  --gold:         #c9a227;
  --gold-bright:  #e0bd57;
  --gold-deep:    #8f7018;

  --cream:        #f3ede2;
  --cream-dim:    #cdc4b6;
  --muted:        #9b9285;

  --red:          #8c1c13;

  --font-display: 'Oswald', 'Arial Narrow', Impact, sans-serif;
  --font-script:  'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --wrap:         1180px;
  --wrap-narrow:  820px;
  --radius:       4px;
  --shadow:       0 18px 40px rgba(0, 0, 0, .55);
  --ease:         cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------- reset --- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--cream); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.12;
  margin: 0 0 .6em;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 6.5vw, 4.15rem); letter-spacing: .02em; }
h2 { font-size: clamp(1.65rem, 3.9vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); }
h4 { font-size: 1.02rem; letter-spacing: .11em; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0 0 1.15em; padding-left: 1.15em; }
li { margin-bottom: .4em; }

strong { color: var(--cream); font-weight: 600; }

::selection { background: var(--gold); color: var(--black); }

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--gold);
  color: var(--black);
  padding: .8rem 1.4rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------- layout --- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding: clamp(3.75rem, 8.5vw, 7rem) 0; position: relative; }
.section--alt { background: var(--charcoal); }
.section--tight { padding-block: clamp(2.6rem, 5vw, 4rem); }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.lede {
  font-size: clamp(1.06rem, 1.7vw, 1.2rem);
  color: var(--cream-dim);
}

.script {
  font-family: var(--font-script);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold-bright);
}

/* Gold diamond rule, echoing the divider on the shop's business card */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  margin: 1.6rem 0;
  color: var(--gold-deep);
}
.rule::before, .rule::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  max-width: 130px;
  background: linear-gradient(90deg, transparent, var(--gold-deep));
}
.rule::after { background: linear-gradient(90deg, var(--gold-deep), transparent); }
.rule span { font-size: .6rem; letter-spacing: .5em; }
.section-head--center .rule { margin-inline: auto; }

/* -------------------------------------------------------------- header --- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, .6); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: .8rem; }
.brand img {
  width: 50px; height: 50px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  background: var(--black);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
}
.brand-sub {
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: .35rem 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .28s var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--gold-bright); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--black) !important;
  font-family: var(--font-display);
  font-size: .86rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .62rem 1.15rem !important;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 46px; height: 42px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 50%; top: 50%;
  width: 22px; height: 2px;
  background: var(--cream);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s linear;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; left: 0; transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(0) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black-soft);
    border-bottom: 1px solid var(--line);
    padding: .5rem clamp(1.1rem, 4vw, 2.2rem) 1.6rem;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links li { margin: 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; padding-top: 1.1rem; }
  .nav-links a { display: block; padding: 1rem 0; font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-cta { justify-content: center; padding: .95rem 1.2rem !important; }
}

/* -------------------------------------------------------------- buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(201, 162, 39, .22);
}
.btn--ghost { background: transparent; color: var(--gold-bright); }
.btn--ghost:hover { background: var(--gold); color: var(--black); }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}
.btn-row--center { justify-content: center; }

/* ----------------------------------------------------------------- hero --- */

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5.5rem);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(201, 162, 39, .14), transparent 70%),
    linear-gradient(180deg, #000 0%, var(--black) 45%, var(--charcoal) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
}

.hero-logo {
  width: clamp(190px, 30vw, 310px);
  margin: 0 auto clamp(1.4rem, 3vw, 2.2rem);
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, .8));
}

.hero h1 { margin-bottom: .35rem; }
.hero h1 .line-2 { display: block; color: var(--gold-bright); }

.hero-tagline {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.15rem, 2.9vw, 1.75rem);
  color: var(--gold-bright);
  margin-bottom: 1.2rem;
}

.hero-copy {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
}

.hero-note {
  margin-top: 1.6rem;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-display);
  color: var(--muted);
}

/* ------------------------------------------------------------- trustbar --- */

.trustbar {
  background: var(--black-soft);
  border-block: 1px solid var(--line);
}
.trustbar ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  list-style: none;
  margin: 0; padding: 0;
}
.trustbar li {
  margin: 0;
  padding: 1.5rem 1.2rem;
  text-align: center;
  border-right: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: .84rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.trustbar li:last-child { border-right: 0; }
.trustbar li span { display: block; color: var(--gold); font-size: 1.55rem; letter-spacing: .06em; margin-bottom: .2rem; }

/* ---------------------------------------------------------------- grids --- */

.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- cards --- */

.card {
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.section--alt .card { background: var(--black-soft); }
.card:hover { border-color: var(--gold-deep); transform: translateY(-4px); }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .98rem; }

.card-icon {
  width: 46px; height: 46px;
  margin-bottom: 1.1rem;
  color: var(--gold);
}
.card-icon svg { width: 100%; height: 100%; fill: currentColor; }

.card-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-deep);
  margin-bottom: .7rem;
  display: block;
}

/* Counter / product tiles */
.counter {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  background: linear-gradient(160deg, var(--charcoal-2), var(--black-soft));
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.counter:hover { border-color: var(--gold-deep); transform: translateY(-4px); }
.counter h3 {
  font-size: 1.08rem;
  letter-spacing: .1em;
  margin-bottom: .45rem;
  color: var(--gold-bright);
}
.counter p { font-size: .93rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* Team */
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-soft);
  margin-bottom: 1.2rem;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: .15rem; }
.team-role {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.team-card p { font-size: .97rem; }

/* ------------------------------------------------------------ story img --- */

.frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(.9rem, 2vw, 1.6rem);
  background: linear-gradient(160deg, var(--charcoal-2), #000);
  box-shadow: var(--shadow);
}
.frame img { border-radius: 2px; }

/* ------------------------------------------------------------- callout --- */

.callout {
  border-left: 3px solid var(--gold);
  padding: 1.1rem 0 1.1rem 1.4rem;
  margin: 1.8rem 0;
  color: var(--cream);
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.6;
}

/* --------------------------------------------------------------- CTA band --- */

.cta-band {
  background:
    radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201, 162, 39, .13), transparent 70%),
    var(--black);
  border-block: 1px solid var(--line);
  text-align: center;
}
.cta-band h2 { margin-bottom: .6rem; }
.cta-band p { max-width: 620px; margin-inline: auto; }

/* -------------------------------------------------------------- contact --- */

.contact-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color .3s var(--ease);
}
.contact-card:hover { border-color: var(--gold-deep); }
.contact-icon {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
}
.contact-icon svg { width: 22px; height: 22px; fill: currentColor; }
.contact-card h3 {
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: .3rem;
}
.contact-card a, .contact-card p {
  font-size: 1.05rem;
  color: var(--cream);
  word-break: break-word;
  margin: 0;
  line-height: 1.5;
}
.contact-card a:hover { color: var(--gold-bright); }
.contact-card small { display: block; color: var(--muted); font-size: .85rem; margin-top: .3rem; }

/* Hours table */
.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.hours th, .hours td {
  text-align: left;
  padding: .85rem .4rem;
  border-bottom: 1px solid var(--line);
}
.hours th {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  font-size: .92rem;
}
.hours td { text-align: right; color: var(--cream-dim); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

/* ----------------------------------------------------------------- form --- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field--full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .5rem;
}
.field .req { color: var(--gold); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .88rem 1rem;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 155px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: #050505;
  outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: #6a6459; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a227' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 11px;
  padding-right: 2.6rem;
}

.form-note { font-size: .87rem; color: var(--muted); }

/* Honeypot — hidden from people, visible to bots */
.hp-field {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.alert {
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 1.6rem;
  font-size: .97rem;
  border: 1px solid;
}
.alert--ok    { border-color: #2f6b3a; background: rgba(47, 107, 58, .16); color: #b7e2c0; }
.alert--error { border-color: #7d2b22; background: rgba(125, 43, 34, .16); color: #f0b8b1; }
.alert strong { color: inherit; }

/* --------------------------------------------------------------- social --- */

.qr-card {
  text-align: center;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.qr-card:hover { border-color: var(--gold-deep); transform: translateY(-4px); }
.qr-card .qr-img {
  background: #fff;
  border-radius: var(--radius);
  padding: .7rem;
  max-width: 260px;
  margin: 0 auto 1.3rem;
}
.qr-card h3 { margin-bottom: .4rem; }
.qr-card p { font-size: .95rem; color: var(--muted); }

.social-hero {
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(24, 119, 242, .14), transparent 70%),
    var(--black);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}
.social-btn:hover { background: #3b8dfa; border-color: #3b8dfa; color: #fff; }

/* Link hub — the buttons the QR-code visitors land on */
.link-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 620px;
  display: grid;
  gap: .85rem;
}
.link-list li { margin: 0; }

.link-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.05rem 1.3rem;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
  transition: border-color .25s var(--ease), background .25s var(--ease),
              transform .25s var(--ease);
}
.link-btn:hover {
  color: var(--cream);
  border-color: var(--gold);
  background: var(--charcoal);
  transform: translateY(-2px);
}
.link-btn .li-icon {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--gold);
}
.link-btn .li-icon svg { width: 21px; height: 21px; fill: currentColor; }
.link-btn .li-text { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.link-btn .li-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.link-btn .li-sub { font-size: .85rem; color: var(--muted); }
.link-btn .li-arrow { margin-left: auto; color: var(--gold); font-size: 1.2rem; flex: none; }

.link-btn--facebook .li-icon { background: #1877f2; border-color: #1877f2; color: #fff; }
.link-btn--instagram .li-icon {
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  border-color: transparent; color: #fff;
}
.link-btn--tiktok .li-icon { background: #000; border-color: #444; color: #fff; }
.link-btn--whatsapp .li-icon { background: #25d366; border-color: #25d366; color: #fff; }
.link-btn--phone .li-icon { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* "Coming soon" state — not a link yet, just a placeholder row.
   Currently unused (Facebook, Instagram and TikTok are all live). Kept because
   it is the ready-made pattern for the next account: make the row a <span>
   instead of an <a>, add link-btn--soon, and put "Soon" in the .li-arrow. */
.link-btn--soon {
  cursor: default;
  opacity: .62;
  border-style: dashed;
}
.link-btn--soon:hover { transform: none; border-color: var(--line); background: var(--charcoal-2); }
.link-btn--soon .li-arrow {
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  border-radius: 100px;
  padding: .28rem .7rem;
}

.feed-list { list-style: none; padding: 0; margin: 0; }
.feed-list li {
  display: flex;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
  align-items: flex-start;
}
.feed-list li:last-child { border-bottom: 0; }
.feed-list .tick { color: var(--gold); flex: none; font-size: 1.1rem; line-height: 1.5; }

/* ------------------------------------------------------------------ FAQ --- */

.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-bright); }
.faq summary::after {
  content: "+";
  position: absolute;
  right: .2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-body { padding: 0 1.5rem 1.5rem 0; font-size: 1rem; }

/* -------------------------------------------------------------- footer --- */

.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .2em;
  margin-bottom: 1.2rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .7rem; }
.site-footer a { color: var(--cream-dim); }
.site-footer a:hover { color: var(--gold-bright); }
.footer-logo { width: 78px; margin-bottom: 1.1rem; border-radius: 50%; border: 1px solid var(--gold-deep); }
.footer-tagline { font-family: var(--font-script); font-style: italic; color: var(--gold-bright); margin-bottom: .8rem; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.6rem;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: var(--muted);
}
.footer-bottom p { margin: 0; }

/* Sticky call bar for phones */
.call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(10, 10, 10, .96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  gap: .6rem;
}
.call-bar .btn { flex: 1 1 0; padding: .85rem .6rem; font-size: .84rem; letter-spacing: .07em; }
@media (max-width: 700px) {
  .call-bar { display: flex; }
  body { padding-bottom: 74px; }
}

/* ------------------------------------------------------------- reveal --- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- print --- */

@media print {
  .site-header, .call-bar, .cta-band, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  h1, h2, h3, h4, a { color: #000 !important; }
}
