/* ==========================================================================
   Wickstead Farm Equestrian Centre — design system
   Palette: deep hunter green + saddle tan + ribbon gold + warm cream/sage
   Type: Bitter (display/slab-serif) + Mulish (body/sans)
   ========================================================================== */

:root {
  /* Colour tokens */
  --green-900: #1E2A1B;
  --green-800: #263524;
  --green-700: #35472B;
  --green-600: #46603A;
  --green-100: #E4EADF;

  --tan-700: #8B5430;
  --tan-600: #A9683C;
  --tan-500: #BC7A4C;
  --tan-100: #F2E2D2;

  --gold-500: #C08A2E;
  --gold-100: #F5E7C9;

  --cream-50: #FBF7EF;
  --sage-50: #F3F6EF;
  --white: #FFFFFF;

  --ink-900: #23251E;
  --ink-600: #5B5D50;
  --ink-400: #8A8C7E;

  --line-200: #E4DFD0;
  --line-100: #EFEBDF;

  /* Type */
  --font-display: 'Bitter', Georgia, 'Times New Roman', serif;
  --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Elevation / shape */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(30, 42, 27, 0.08);
  --shadow-md: 0 8px 24px rgba(30, 42, 27, 0.12);
  --shadow-lg: 0 20px 48px rgba(30, 42, 27, 0.18);

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
a { color: var(--tan-700); text-decoration: none; }
a:hover { color: var(--tan-600); }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--cream { background: var(--cream-50); }
.section--sage { background: var(--sage-50); }
.section--green {
  background: var(--green-900);
  color: var(--green-100);
}
.section--green h2, .section--green h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--tan-600);
  margin-bottom: 10px;
}
.section-head { max-width: 680px; margin: 0 0 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lede { font-size: 1.15rem; color: var(--ink-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 150ms ease;
  min-height: 44px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--tan-600); color: var(--white); }
.btn-primary:hover { background: var(--tan-700); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white); }
.btn-dark { background: var(--green-900); color: var(--white); }
.btn-dark:hover { background: var(--green-700); color: var(--white); }
.btn-ghost { background: transparent; color: var(--tan-700); border-color: var(--tan-600); }
.btn-ghost:hover { background: var(--tan-100); }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; min-height: 38px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--green-900);
  padding: 12px 20px;
  z-index: 1000;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--green-900);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand:hover { color: var(--gold-100); }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tan-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.4);
}
.brand-text { line-height: 1.15; }
.brand-text .name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}
.brand-text .sub {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-100);
  opacity: 0.85;
}

.main-nav { display: flex; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a, .main-nav button.nav-toggle {
  color: var(--white);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 10px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav button.nav-toggle:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.main-nav .current > a { background: rgba(255,255,255,0.14); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  border: 1px solid var(--line-200);
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms ease, visibility 150ms ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
}
.dropdown a {
  color: var(--ink-900);
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
}
.dropdown a:hover { background: var(--sage-50); color: var(--green-900); }
.dropdown a small { display: block; font-weight: 400; color: var(--ink-600); font-size: 0.8rem; margin-top: 2px; }

.caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -4px; transition: transform 150ms ease; }
.has-dropdown:hover .caret, .has-dropdown:focus-within .caret { transform: rotate(225deg); margin-top: 4px; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .main-nav { position: fixed; z-index: 495; inset: 0 0 0 auto; width: min(340px, 86vw); background: var(--green-900); transform: translateX(100%); transition: transform 250ms ease; padding: 90px 8px 24px; overflow-y: auto; box-shadow: var(--shadow-lg); }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transition: none; box-shadow: none; background: rgba(255,255,255,0.04); border: none; margin: 0 0 6px 12px; }
  .dropdown a { color: var(--white); }
  .dropdown a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
  .dropdown a small { color: var(--gold-100); opacity: 0.8; }
  .mobile-toggle { display: inline-flex; }
  .header-cta .btn-primary { display: none; }
  .nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(15,20,13,0.55); z-index: 490; }
  .nav-backdrop.open { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
  min-height: 78vh;
  background: var(--green-900);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(20,27,17,0.86) 0%, rgba(20,27,17,0.42) 55%, rgba(20,27,17,0.35) 100%);
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero .hero-img { object-position: center 65%; opacity: 0; transition: opacity 600ms ease; }
.hero .hero-img.is-active { opacity: 1; }
.hero-content { position: relative; z-index: 2; padding: 64px 24px 56px; max-width: var(--container); margin: 0 auto; width: 100%; }
.hero-eyebrow { color: var(--gold-100); font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.82rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.hero h1 { color: var(--white); max-width: 16ch; }
.hero p.lede { color: rgba(255,255,255,0.9); max-width: 56ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* Hero: two-column layout (copy + enquiry card) */
.hero-columns { display: flex; align-items: center; justify-content: space-between; gap: 44px; flex-wrap: wrap; }
.hero-text { flex: 1 1 440px; max-width: 620px; }

/* Hero: slideshow arrows */
/* Positioned a fixed distance from the top of .hero (not vertically
   centered) — with a form card in the content, the content block's height
   varies a lot by breakpoint, so any %-based vertical center risks landing
   on top of text. A fixed offset from the section's own top edge, just
   under the header, is always clear of content regardless of how tall the
   stacked copy + form grow. */
.hero-arrow {
  position: absolute;
  top: 14px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(20, 27, 17, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease;
}
.hero-arrow:hover { background: rgba(20, 27, 17, 0.75); border-color: var(--white); }
.hero-arrow-prev { left: 18px; }
.hero-arrow-next { right: 18px; }
@media (max-width: 640px) {
  .hero-arrow { width: 36px; height: 36px; }
  .hero-arrow-prev { left: 10px; }
  .hero-arrow-next { right: 10px; }
}

/* Hero: enquiry card */
.hero-form-card {
  flex: 1 1 340px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  color: var(--ink-900);
  box-shadow: var(--shadow-lg);
}
.hero-form-card h3 { margin-bottom: 4px; }
.hero-form-card .form-lede { color: var(--ink-600); font-size: 0.86rem; margin-bottom: 16px; }
.hero-form-card .form-field { margin-bottom: 12px; }
.hero-form-card .form-field label { font-size: 0.82rem; margin-bottom: 4px; }
.hero-form-card .form-field input,
.hero-form-card .form-field select,
.hero-form-card .form-field textarea { padding: 10px 12px; font-size: 0.92rem; }
.hero-form-card .btn { width: 100%; justify-content: center; margin-top: 4px; }
.hero-form-card .form-note { font-size: 0.74rem; margin-top: 10px; margin-bottom: 0; }
.hero-form-card .form-status { font-size: 0.86rem; padding: 12px 14px; }

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
  padding: 130px 0 56px;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(20,27,17,0.82) 0%, rgba(20,27,17,0.5) 100%);
}
.page-hero .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.breadcrumb { font-size: 0.85rem; color: var(--gold-100); opacity: 0.9; margin-bottom: 14px; }
.breadcrumb a { color: var(--gold-100); font-weight: 600; }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--cream-50); border-bottom: 1px solid var(--line-200); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 22px 24px; }
.trust-item, .trust-link { display: flex; align-items: center; gap: 12px; color: var(--ink-600); font-weight: 700; font-size: 0.92rem; }
.trust-item img, .trust-link img { width: 42px; height: 42px; object-fit: contain; border-radius: 8px; background: var(--white); padding: 4px; box-shadow: var(--shadow-sm); }
.trust-link:hover { color: var(--tan-700); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sage-50); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { color: var(--ink-600); font-size: 0.96rem; flex: 1; }
.card-link { margin-top: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; color: var(--tan-700); }
.card-link .arrow { transition: transform 150ms ease; }
.card:hover .card-link .arrow { transform: translateX(4px); }

.feature-card { text-align: left; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-100); color: var(--green-800);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* Animal profile cards */
.animal-card .card-media { aspect-ratio: 1 / 1; }
.animal-meta { font-size: 0.82rem; font-weight: 700; color: var(--tan-700); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a, .gallery figure { display: block; margin: 0; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; background: var(--sage-50); box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.gallery a:hover img { transform: scale(1.06); }
@media (max-width: 820px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split.reverse { direction: rtl; } .split.reverse > * { direction: ltr; }

/* ---------- Price table ---------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line-200); }
.price-table th { background: var(--green-900); color: var(--white); font-family: var(--font-display); font-weight: 600; }
.price-table td.amount { font-weight: 800; color: var(--tan-700); text-align: right; font-size: 1.05rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-note { font-size: 0.85rem; color: var(--ink-600); }

/* ---------- Lists ---------- */
.check-list li { position: relative; padding-left: 30px; margin-bottom: 10px; color: var(--ink-600); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-100);
  box-shadow: inset 0 0 0 2px var(--green-700);
}
.check-list li::after {
  content: ""; position: absolute; left: 5px; top: 9px; width: 8px; height: 4px; border-left: 2px solid var(--green-700); border-bottom: 2px solid var(--green-700); transform: rotate(-45deg);
}

/* ---------- Callout / notice ---------- */
.notice {
  background: var(--gold-100);
  border: 1px solid var(--gold-500);
  color: var(--ink-900);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 0.94rem;
}
.notice strong { color: var(--tan-700); }
.notice-green { background: var(--green-100); border-color: var(--green-700); }

/* ---------- News / blog ---------- */
.post-card .post-meta { font-size: 0.82rem; color: var(--ink-400); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }

/* ---------- Letter ---------- */
.letter-card {
  background: var(--cream-50);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 48px 56px;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 640px) { .letter-card { padding: 32px 24px; } }
.letter-card .letter-kicker { text-align: center; margin-bottom: 6px; }
.letter-card h2 { text-align: center; letter-spacing: 0.06em; margin-bottom: 8px; }
.letter-card .letter-intro { text-align: center; color: var(--ink-600); font-size: 0.92rem; margin-bottom: 32px; }
.letter-card p { color: var(--ink-900); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.1em; }
.letter-card .letter-signoff { margin-top: 28px; }
.letter-card .letter-signature { font-family: var(--font-display); font-size: 1.3rem; color: var(--green-900); margin: 0; }
.letter-card .letter-role { font-size: 0.85rem; color: var(--ink-600); margin: 2px 0 0; }
.letter-card hr { border: none; border-top: 1px solid var(--line-200); margin: 32px 0; }
.letter-download { text-align: center; margin-top: 28px; }

/* ---------- Facebook ---------- */
.fb-post-card .card-body { gap: 4px; }
.fb-post-meta { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--ink-400); font-weight: 700; margin-bottom: 8px; }
.fb-post-meta .icon-svg { width: 15px; height: 15px; color: #1877F2; }
.fb-note { font-size: 0.85rem; color: var(--ink-400); }

/* ---------- Team / horses profile detail ---------- */
.profile-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--green-900); margin: 0 0 2px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--white); border: 1px solid var(--line-200); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.contact-card + .contact-card { margin-top: 20px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--sage-50); color: var(--green-800); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.92rem; color: var(--ink-900); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--line-200);
  font-family: var(--font-body); font-size: 1rem; background: var(--white); color: var(--ink-900);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--tan-600); outline: none; box-shadow: 0 0 0 3px var(--tan-100); }
.form-field.checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-field.checkbox input { width: auto; margin-top: 4px; }
.form-field.checkbox label { font-weight: 500; }
.form-note { font-size: 0.82rem; color: var(--ink-400); margin-top: -8px; margin-bottom: 18px; }
.form-status { display: none; margin-top: 16px; }
.form-status.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.82); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--white); }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.78); }
.footer-col a:hover { color: var(--gold-100); }
.footer-badges { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.footer-badges a { background: var(--white); border-radius: 10px; padding: 6px; display: flex; }
.footer-badges img { width: 44px; height: 44px; object-fit: contain; }
.footer-address p { margin: 0 0 4px; font-size: 0.92rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding: 22px 0; font-size: 0.82rem; color: rgba(255,255,255,0.62); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.72); }
.footer-legal { max-width: 720px; }
.back-to-top { color: rgba(255,255,255,0.72); font-weight: 700; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.icon-svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Empty state */
.empty-state { text-align: center; padding: 64px 24px; background: var(--cream-50); border-radius: var(--radius-lg); border: 1px dashed var(--line-200); }
.empty-state .feature-icon { margin: 0 auto 18px; }
