/* ==========================================================================
   Innovative Fashion & Beautiful Promotion (IFBP)
   Editorial fashion design system — WCAG-conscious palette
   ========================================================================== */

:root {
  --color-black: #111111;
  --color-charcoal: #282828;
  --color-ivory: #F7F2E8;
  --color-sand: #DDD0B8;
  --color-gold: #C49A3A;
  --color-gold-dark: #9A7427;
  --color-burgundy: #6E1F32;
  --color-burgundy-dark: #501524;
  --color-green: #1F4A3A;
  --color-green-dark: #143429;
  --color-white: #FFFFFF;

  /* Aliases used throughout */
  --black: var(--color-black);
  --charcoal: var(--color-charcoal);
  --ivory: var(--color-ivory);
  --sand: var(--color-sand);
  --cream: var(--color-sand);
  --gold: var(--color-gold);
  --gold-soft: #d4ae5a;
  --gold-deep: var(--color-gold-dark);
  --burgundy: var(--color-burgundy);
  --forest: var(--color-green);
  --forest-dark: var(--color-green-dark);
  --muted: #6b6560;
  --line: rgba(196, 154, 58, 0.35);
  --text: var(--color-charcoal);
  --text-on-dark: var(--color-ivory);
  --danger: #9b2c2c;
  --success: var(--color-green);
  --radius: 2px;
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --space: clamp(1rem, 2vw, 2rem);
  --container: 1180px;
  --header-h: 4.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pattern-opacity: 0.08;
  --section-pad: clamp(3.25rem, 7vw, 5.75rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

@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;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--color-ivory);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
img[loading="lazy"] { background: var(--color-sand); }
a { color: var(--color-burgundy); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--color-gold-dark); }
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-gold);
  color: var(--color-black);
  padding: 0.75rem 1rem;
  z-index: 10000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.container--narrow { width: min(100% - 2rem, 740px); }

/* Typography */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 0.85rem;
}
.section--dark .eyebrow,
.section--green .eyebrow,
.section--burgundy .eyebrow,
.hero .eyebrow { color: var(--color-gold); }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.85rem;
  color: inherit;
}
h1, .display-xl { font-size: clamp(2.4rem, 6.2vw, 4.75rem); font-weight: 400; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); }
.lede {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  color: var(--muted);
  max-width: 38rem;
  margin: 0;
}
.section--dark .lede,
.section--green .lede,
.section--burgundy .lede,
.hero .lede { color: rgba(247, 242, 232, 0.82); }

.section-head { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); max-width: 36rem; }
.section-head h2 { margin-bottom: 0.65rem; }

.pattern-edge {
  height: 6px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--color-gold) 0 7px,
      transparent 7px 14px,
      var(--color-burgundy) 14px 18px,
      transparent 18px 26px,
      var(--color-green) 26px 30px,
      transparent 30px 38px
    );
  opacity: 0.55;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.55rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:disabled, .btn.is-disabled { opacity: 0.45; pointer-events: none; }

.btn--primary, .btn--gold {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}
.btn--primary:hover, .btn--gold:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-black);
}

.btn--secondary, .btn--dark {
  background: var(--color-black);
  color: var(--color-ivory);
  border-color: var(--color-black);
}
.btn--secondary:hover, .btn--dark:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--outline, .btn--ghost {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn--outline:hover, .btn--ghost:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn--outline-dark, .btn--ghost-dark {
  background: transparent;
  color: var(--color-charcoal);
  border-color: rgba(40, 40, 40, 0.35);
}
.btn--outline-dark:hover, .btn--ghost-dark:hover {
  border-color: var(--color-gold-dark);
  color: var(--color-gold-dark);
}

.btn--cultural {
  background: var(--color-green);
  color: var(--color-ivory);
  border-color: var(--color-green);
}
.btn--cultural:hover {
  background: var(--color-green-dark);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--event, .btn--tour {
  background: var(--color-burgundy);
  color: var(--color-ivory);
  border-color: var(--color-burgundy);
}
.btn--event:hover, .btn--tour:hover {
  background: var(--color-burgundy-dark);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.5rem; }

/* ========== Header & Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 154, 58, 0.22);
}
.site-header--branded {
  background: rgba(247, 242, 232, 0.97);
  border-bottom: 1px solid rgba(196, 154, 58, 0.35);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding-block: 0.55rem;
  position: relative;
}
.header-nav-wrap {
  display: contents;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-ivory);
  min-width: 0;
}
.site-header--branded .brand { color: var(--color-charcoal); }
.brand:hover { color: var(--color-gold); text-decoration: none; }
.brand--logo { display: block; line-height: 0; }
.brand__logo {
  display: block;
  height: clamp(38px, 5vw, 52px);
  width: auto;
  max-width: min(240px, 62vw);
  object-fit: contain;
  object-position: left center;
}
.brand__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--color-gold);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.site-header--branded .brand__mark { border-color: rgba(196, 154, 58, 0.65); }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__mark-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-gold);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.12; min-width: 0; }
.brand__name {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.6vw, 1.15rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(52vw, 280px);
}
.brand__tag {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-header--branded .brand__tag { color: rgba(40, 40, 40, 0.55); }

.header-actions { display: none; gap: 0.5rem; flex-shrink: 0; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(247, 242, 232, 0.35);
  padding: 0.65rem;
  cursor: pointer;
}
.site-header--branded .nav-toggle { border-color: rgba(40, 40, 40, 0.22); }
.nav-toggle span { display: block; width: 20px; height: 1px; background: var(--color-ivory); }
.site-header--branded .nav-toggle span { background: var(--color-charcoal); }

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--color-black);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0 1.25rem;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.site-nav.is-open { display: block; }
.site-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}
.site-nav > ul > li { border-bottom: 1px solid rgba(247, 242, 232, 0.06); }
.site-nav a {
  display: block;
  padding: 0.85rem 1.25rem;
  color: var(--color-ivory);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav a:hover,
.site-nav a.is-active,
.site-nav .has-dropdown > button.is-active { color: var(--color-gold); }

.has-dropdown > button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--color-ivory);
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  text-align: left;
}
.has-dropdown > button .chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  opacity: 0.7;
}
.has-dropdown.is-open > button .chevron { transform: rotate(-135deg); }

.dropdown {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem;
  background: rgba(0,0,0,0.35);
}
.has-dropdown.is-open > .dropdown { display: block; }
.dropdown a {
  padding: 0.65rem 1.25rem 0.65rem 1.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(247, 242, 232, 0.85);
}
.nav-mobile-cta {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1.25rem 0;
}

@media (min-width: 1100px) {
  .nav-toggle { display: none; }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 300px) 1fr;
    align-items: center;
    gap: 1rem;
  }
  .site-header--branded .header-inner {
    grid-template-columns: minmax(0, 340px) 1fr;
  }
  .brand__logo {
    height: 56px;
    max-width: 320px;
  }
  .header-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    min-width: 0;
  }
  .header-actions { display: flex; flex-shrink: 0; }
  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    max-height: none;
    overflow: visible;
    flex: 1;
    min-width: 0;
  }
  .site-nav > ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
  }
  .site-nav > ul > li { border: 0; position: relative; flex-shrink: 0; }
  .site-nav a,
  .has-dropdown > button {
    padding: 0.45rem 0.5rem;
    font-size: 0.62rem;
    white-space: nowrap;
  }
  .has-dropdown > button .chevron {
    margin-left: 0.25rem;
    width: 0.35rem;
    height: 0.35rem;
  }
  .header-actions .btn {
    padding: 0.55rem 0.75rem;
    font-size: 0.58rem;
  }
  .brand__name { max-width: 200px; font-size: 0.95rem; }
  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 0.5rem 0;
    background: var(--color-black);
    border: 1px solid rgba(196, 154, 58, 0.25);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
    z-index: 20;
  }
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown,
  .has-dropdown.is-open > .dropdown {
    display: block;
  }
  .dropdown a {
    padding: 0.6rem 1rem;
    font-size: 0.72rem;
  }
  .nav-mobile-cta { display: none; }
  .site-header--branded .site-nav a,
  .site-header--branded .has-dropdown > button {
    color: var(--color-charcoal);
  }
  .site-header--branded .site-nav a:hover,
  .site-header--branded .site-nav a.is-active,
  .site-header--branded .site-nav .has-dropdown > button.is-active,
  .site-header--branded .site-nav .has-dropdown > button:hover {
    color: var(--color-gold-dark);
  }
}

@media (min-width: 1280px) {
  .site-nav a,
  .has-dropdown > button {
    padding: 0.5rem 0.65rem;
    font-size: 0.68rem;
  }
  .header-actions .btn {
    padding: 0.65rem 1rem;
    font-size: 0.65rem;
  }
  .brand__name { max-width: 260px; font-size: 1.05rem; }
  .brand__logo {
    height: 60px;
    max-width: 360px;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  color: var(--text-on-dark);
  background:
    linear-gradient(180deg, rgba(17,17,17,0.35) 0%, rgba(17,17,17,0.55) 40%, rgba(17,17,17,0.92) 100%),
    radial-gradient(ellipse at 75% 20%, rgba(196,154,58,0.22), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(110,31,50,0.35), transparent 50%),
    linear-gradient(135deg, #1a1214 0%, #111111 45%, #143429 100%);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.25) 0%, rgba(17,17,17,0.55) 45%, rgba(17,17,17,0.92) 100%);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/patterns/geo-motif.svg");
  background-size: 380px;
  opacity: var(--pattern-opacity);
  pointer-events: none;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 11vw, 6.5rem) 0 clamp(2.75rem, 7vw, 4.5rem);
  animation: rise 0.9s var(--ease) both;
}
.hero h1 { color: var(--color-ivory); max-width: 14ch; margin-bottom: 1.1rem; }
.hero .brand-signal {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  color: var(--color-gold);
  margin: 0 0 0.85rem;
  letter-spacing: 0.03em;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== Sections ========== */
.section { padding: var(--section-pad) 0; }
.section--dark {
  background: var(--color-black);
  color: var(--text-on-dark);
}
.section--sand { background: var(--color-sand); color: var(--color-charcoal); }
.section--ivory { background: var(--color-ivory); }
.section--green {
  background:
    linear-gradient(135deg, rgba(31,74,58,0.97), rgba(17,17,17,0.92)),
    var(--color-green);
  color: var(--color-ivory);
}
/* Legacy aliases used across interior pages */
.section--forest { background: linear-gradient(135deg, rgba(31,74,58,0.97), rgba(17,17,17,0.92)), var(--color-green); color: var(--color-ivory); }
.section--sand { background: var(--color-sand); color: var(--color-charcoal); }
.section--cream { background: var(--color-sand); color: var(--color-charcoal); }
.section--burgundy {
  background:
    linear-gradient(135deg, rgba(110,31,50,0.97), rgba(17,17,17,0.9)),
    var(--color-burgundy);
  color: var(--color-ivory);
}
.section--dark .empty-state {
  background: rgba(247,242,232,0.06);
  border-color: rgba(247,242,232,0.14);
}
.section--dark .empty-state h3 { color: var(--color-ivory); }
.section--dark .empty-state p { color: rgba(247,242,232,0.72); }
.section--dark .profile-card__body p { color: rgba(247,242,232,0.72); }
.section--dark .profile-card__body h3 { color: var(--color-ivory); }

.section--split { display: grid; gap: 2.25rem; }
@media (min-width: 900px) {
  .section--split { grid-template-columns: 1fr 1fr; align-items: start; gap: 3rem; }
}

.mission-statement {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  line-height: 1.35;
  max-width: 28ch;
  border-left: 2px solid var(--color-gold);
  padding-left: 1.35rem;
  margin: 0;
}

.grid { display: grid; gap: 1.15rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid--6 { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }

.tile {
  display: block;
  padding: 1.35rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(40, 40, 40, 0.12);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.tile:hover {
  border-color: var(--color-gold);
  background: rgba(196, 154, 58, 0.06);
  text-decoration: none;
  color: inherit;
}
.section--dark .tile,
.section--green .tile,
.section--burgundy .tile { border-color: rgba(247, 242, 232, 0.14); }
.section--dark .tile:hover,
.section--green .tile:hover,
.section--burgundy .tile:hover {
  border-color: var(--color-gold);
  background: rgba(196, 154, 58, 0.08);
}
.tile h3 { margin-bottom: 0.45rem; }
.tile p { margin: 0; font-size: 0.92rem; color: var(--muted); }
.section--dark .tile p,
.section--green .tile p,
.section--burgundy .tile p { color: rgba(247, 242, 232, 0.68); }

/* Profile / editorial cards */
.profile-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border: 0;
  transition: transform 0.35s var(--ease);
}
.profile-card:hover { transform: translateY(-4px); text-decoration: none; color: inherit; }
.profile-card__media {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #2a2420, #111 60%, #1a2a22);
  position: relative;
  overflow: hidden;
}
.profile-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.profile-card:hover .profile-card__media img { transform: scale(1.04); }
.profile-card__body { padding: 1.1rem 0.15rem 0.25rem; }
.section--sand .profile-card__body,
.section--ivory .profile-card__body { padding: 1.1rem 0 0.25rem; }
.profile-card__meta {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}
.demo-badge {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(196,154,58,0.5);
  padding: 0.2rem 0.45rem;
  color: var(--color-gold-dark);
}

.event-card {
  display: grid;
  gap: 0;
  text-decoration: none;
  color: inherit;
  background: var(--color-white);
  border: 1px solid rgba(40,40,40,0.08);
  transition: border-color 0.3s var(--ease);
}
.event-card:hover { border-color: var(--color-gold); text-decoration: none; color: inherit; }
.event-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1a1214, #282828);
  overflow: hidden;
}
.event-card__media img { width: 100%; height: 100%; object-fit: cover; }
.event-card__body { padding: 1.15rem 1.25rem 1.35rem; }

.empty-state {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  background:
    linear-gradient(180deg, rgba(247,242,232,0.92), rgba(247,242,232,0.96)),
    url("../images/patterns/geo-motif.svg");
  background-size: auto, 280px;
  border: 1px solid rgba(40,40,40,0.08);
}
.empty-state h3 { margin-bottom: 0.65rem; }
.empty-state p { max-width: 34rem; margin: 0 auto 1.35rem; color: var(--muted); }
.section--dark .empty-state {
  background: rgba(247,242,232,0.04);
  border-color: rgba(247,242,232,0.12);
}
.section--dark .empty-state p { color: rgba(247,242,232,0.7); }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}
.filters select,
.filters input[type="search"] {
  min-height: 2.75rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(40,40,40,0.18);
  background: var(--color-white);
  font: inherit;
}

/* Forms */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 700px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
  .form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
}
label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
label span.req { color: var(--color-burgundy); }
input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(40,40,40,0.18);
  background: var(--color-white);
  font: inherit;
  color: var(--text);
  border-radius: var(--radius);
}
textarea { min-height: 140px; resize: vertical; }
.checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
}
.checkbox input { width: auto; margin-top: 0.25rem; }
.hp-field {
  position: absolute;
  left: -10000px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.form-note { font-size: 0.85rem; color: var(--muted); }
.disclaimer {
  border-left: 2px solid var(--color-gold);
  padding: 1rem 1.15rem;
  background: rgba(196, 154, 58, 0.08);
  font-size: 0.92rem;
  margin: 1.5rem 0;
}
.alert {
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  border: 1px solid;
}
.alert--success { background: rgba(31,74,58,0.08); border-color: var(--color-green); color: var(--color-green-dark); }
.alert--error { background: rgba(155,44,44,0.08); border-color: var(--danger); color: var(--danger); }
.alert--info { background: rgba(196,154,58,0.1); border-color: var(--color-gold); }

.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(40,40,40,0.08);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.7rem;
}
.country-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 0.85rem;
  border: 1px solid rgba(40,40,40,0.1);
  text-decoration: none;
  color: inherit;
  font-size: 0.9rem;
  background: var(--color-white);
  transition: border-color 0.25s var(--ease);
}
.country-chip:hover { border-color: var(--color-gold); text-decoration: none; color: inherit; }
.flag { font-size: 1.2rem; line-height: 1; }

.status-pill {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border: 1px solid currentColor;
  color: var(--color-gold-dark);
}
.section--dark .status-pill,
.section--burgundy .status-pill,
.section--green .status-pill { color: var(--color-gold); }

.cta-band {
  text-align: center;
  padding: var(--section-pad) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(196,154,58,0.16), transparent 55%),
    var(--color-black);
  color: var(--color-ivory);
}
.cta-band h2 { max-width: 16ch; margin-inline: auto; }

/* Feature strip / editorial */
.feature-strip {
  display: grid;
  gap: 0;
}
@media (min-width: 900px) {
  .feature-strip { grid-template-columns: 1.1fr 1fr; min-height: 420px; }
  .feature-strip--reverse { direction: rtl; }
  .feature-strip--reverse > * { direction: ltr; }
}
.feature-strip__media {
  min-height: 280px;
  background: linear-gradient(145deg, #1a2a22, #111);
  position: relative;
  overflow: hidden;
}
.feature-strip__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.feature-strip__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem);
}

/* Footer */
.site-footer {
  background: var(--color-black);
  color: rgba(247, 242, 232, 0.8);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.35fr 1fr 1fr 1fr; }
}
.site-footer h3 {
  color: var(--color-gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(247,242,232,0.8); text-decoration: none; }
.site-footer a:hover { color: var(--color-gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.footer-brand {
  display: inline-block;
  margin-bottom: 0.85rem;
  text-decoration: none;
}
.footer-brand__logo {
  display: block;
  height: auto;
  width: min(100%, 260px);
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  padding: 0.65rem 0.85rem;
  background: var(--color-ivory);
  border: 1px solid rgba(196, 154, 58, 0.22);
}
.footer-bottom {
  border-top: 1px solid rgba(196,154,58,0.2);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
}
.socials { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* Page hero */
.page-hero {
  background: var(--color-black);
  color: var(--color-ivory);
  padding: clamp(2.75rem, 7vw, 4.25rem) 0;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-burgundy), var(--color-green), var(--color-gold));
  opacity: 0.7;
}
.page-hero h1 { max-width: 16ch; }
.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--color-gold); text-decoration: none; }

.prose { max-width: 40rem; }
.prose p { margin: 0 0 1.1rem; }
.prose h2, .prose h3 { margin-top: 1.75rem; }

.contact-meta { display: grid; gap: 1rem; margin-bottom: 1.75rem; }
.contact-meta dt {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact-meta dd { margin: 0; }

.contact-form-panel {
  background: var(--color-sand);
  padding: 1.75rem;
  border: 1px solid rgba(40, 40, 40, 0.08);
}

.news-feature {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 860px) {
  .news-feature { grid-template-columns: 1.2fr 1fr; align-items: center; }
}
.news-feature__media {
  aspect-ratio: 16 / 10;
  background: var(--color-charcoal);
  overflow: hidden;
}
.news-feature__media img { width: 100%; height: 100%; object-fit: cover; }

.profile-card__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
}
.section--sand .profile-card__link,
.section--ivory .profile-card__link { color: var(--color-gold-dark); }
.profile-card:hover .profile-card__link { text-decoration: underline; }

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 480px) {
  h1, .display-xl { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  .btn-group .btn { width: 100%; }
  .header-actions { display: none !important; }
}
