/* ==========================================================================
   COTTANIX APPAREL — Main Stylesheet
   --------------------------------------------------------------------------
   HOW TO EDIT BRAND COLOURS:
   All colours are defined once as CSS variables in the :root block below.
   Change a value there and it updates across the entire site.
   ========================================================================== */

/* ---------- 1. DESIGN TOKENS ---------- */
:root,
[data-theme='light'] {
  /* Brand colours (from the Cottanix logo) */
  --color-gold: #c9a03b;            /* primary accent — tulip gold */
  --color-gold-hover: #b08a2e;
  --color-gold-active: #97741f;
  --color-gold-soft: #f4ecd9;       /* pale gold tint for highlights */
  --color-charcoal: #23272e;        /* wordmark charcoal */

  /* Surfaces */
  --color-bg: #fbfaf7;
  --color-surface: #ffffff;
  --color-surface-offset: #f3f1ea;
  --color-border: #e2ded3;
  --color-divider: #ebe8df;

  /* Text */
  --color-text: #23272e;
  --color-text-muted: #5f646c;
  --color-text-faint: #9a9ea4;
  --color-text-inverse: #f9f8f4;

  /* Semantic */
  --color-primary: var(--color-gold);
  --color-primary-hover: var(--color-gold-hover);

  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  /* Spacing (4px system) */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem;
  --space-12: 3rem; --space-16: 4rem; --space-20: 5rem; --space-24: 6rem; --space-32: 8rem;

  /* Radius, shadows, transitions */
  --radius-sm: 0.375rem; --radius-md: 0.5rem; --radius-lg: 0.75rem; --radius-xl: 1rem; --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgb(35 39 46 / 0.06);
  --shadow-md: 0 4px 14px rgb(35 39 46 / 0.08);
  --shadow-lg: 0 14px 36px rgb(35 39 46 / 0.13);
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout widths */
  --content-narrow: 680px;
  --content-default: 1080px;
  --content-wide: 1240px;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', Arial, sans-serif;
}

[data-theme='dark'] {
  --color-gold: #d4ac4b;
  --color-gold-hover: #e0bc66;
  --color-gold-active: #c39a35;
  --color-gold-soft: #33301f;
  --color-bg: #16171a;
  --color-surface: #1d1f23;
  --color-surface-offset: #24262b;
  --color-border: #35383f;
  --color-divider: #2a2d33;
  --color-text: #d9d8d4;
  --color-text-muted: #a2a4a8;
  --color-text-faint: #6c6f75;
  --color-text-inverse: #1d1f23;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.25);
  --shadow-md: 0 4px 14px rgb(0 0 0 / 0.35);
  --shadow-lg: 0 14px 36px rgb(0 0 0 / 0.45);
}

/* ---------- 2. BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: none; text-size-adjust: none;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; scroll-behavior: smooth;
  scroll-padding-top: var(--space-20);
}

body {
  min-height: 100dvh; line-height: 1.65;
  font-family: var(--font-body); font-size: var(--text-base);
  color: var(--color-text); background-color: var(--color-bg);
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { text-wrap: balance; line-height: 1.12; font-family: var(--font-display); }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }

a { color: inherit; }
::selection { background: rgb(201 160 59 / 0.3); }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; border-radius: var(--radius-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
}

button { cursor: pointer; background: none; border: none; }

a, button, [role='button'], input, textarea, select {
  transition: color var(--transition), background var(--transition),
    border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

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

.skip-link {
  position: absolute; top: -48px; left: var(--space-4); z-index: 100;
  background: var(--color-charcoal); color: #fff; padding: var(--space-2) var(--space-4);
  border-radius: 0 0 var(--radius-md) var(--radius-md); text-decoration: none; font-size: var(--text-sm);
}
.skip-link:focus { top: 0; }

/* ---------- 3. LAYOUT HELPERS ---------- */
.container { width: min(var(--content-wide), 100% - 2.5rem); margin-inline: auto; }
.container--narrow { width: min(var(--content-narrow), 100% - 2.5rem); margin-inline: auto; }
.section { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }
.section--offset { background: var(--color-surface-offset); }

.eyebrow {
  display: inline-block; font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-gold-hover);
  margin-bottom: var(--space-3);
}
[data-theme='dark'] .eyebrow { color: var(--color-gold); }

.section-head { max-width: 640px; margin-bottom: clamp(var(--space-10), 5vw, var(--space-16)); }
.section-head h2 { font-size: var(--text-xl); font-weight: 800; margin-bottom: var(--space-3); }
.section-head p { color: var(--color-text-muted); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 700; text-decoration: none;
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn--primary { background: var(--color-gold); color: #1d1a10; }
.btn--primary:hover { background: var(--color-gold-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: currentColor; color: var(--color-text); }
.btn--ghost:hover { border-color: var(--color-gold); color: var(--color-gold-hover); }
.btn--light { background: #fff; color: var(--color-charcoal); }
.btn--light:hover { background: var(--color-gold); color: #1d1a10; }

/* ---------- 5. HEADER / NAV ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6); min-height: 4.5rem;
}
.brand { display: inline-flex; align-items: center; gap: var(--space-3); text-decoration: none; color: var(--color-text); }
.brand svg { flex-shrink: 0; }
.brand__name { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.16em; font-size: 1.05rem; }
.brand__tag { display: block; font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 500; }
.brand__logo { height: 54px; width: auto; display: block; }
.brand__logo--dark { display: none; }
[data-theme='dark'] .brand__logo--light { display: none; }
[data-theme='dark'] .brand__logo--dark { display: block; }
.footer .brand__logo { height: 84px; }

.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav > .btn { display: none; }
.nav__list { display: flex; align-items: center; gap: var(--space-5); list-style: none; }
.nav__link {
  text-decoration: none; font-size: var(--text-sm); font-weight: 500;
  color: var(--color-text-muted); padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
}
.nav__link:hover { color: var(--color-text); }
.nav__link[aria-current='page'] { color: var(--color-text); border-bottom-color: var(--color-gold); font-weight: 700; }

.header__actions { display: flex; align-items: center; gap: var(--space-3); }
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.4rem; height: 2.4rem; border-radius: var(--radius-full);
  color: var(--color-text-muted); border: 1px solid var(--color-border);
}
.theme-toggle:hover { color: var(--color-gold-hover); border-color: var(--color-gold); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 2.6rem; height: 2.6rem; border-radius: var(--radius-md);
  border: 1px solid var(--color-border); padding: 0 0.6rem;
}
.nav-toggle span { display: block; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 4.5rem 0 auto 0; z-index: 49;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-surface); border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg); padding: var(--space-4) var(--space-6) var(--space-6);
    transform: translateY(-110%); visibility: hidden; transition: transform 0.28s cubic-bezier(0.16,1,0.3,1), visibility 0.28s;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { display: block; padding: var(--space-3) 0; font-size: var(--text-base); border-bottom: 1px solid var(--color-divider); }
  .nav__link[aria-current='page'] { border-bottom-color: var(--color-gold); }
  .nav > .btn { display: inline-flex; margin-top: var(--space-4); justify-content: center; }
  .nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header .btn--header-cta { display: none; }
}

/* ---------- 6. HERO ---------- */
.hero {
  position: relative; display: grid; align-items: end;
  min-height: min(88vh, 780px); color: #fff; isolation: isolate; overflow: hidden;
}
.hero__img { position: absolute; inset: 0; z-index: -2; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgb(20 21 24 / 0.35) 0%, rgb(20 21 24 / 0.72) 78%, rgb(20 21 24 / 0.86) 100%);
}
.hero__content { padding-block: clamp(var(--space-16), 9vw, var(--space-24)); max-width: 780px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: var(--space-4);
}
.hero__kicker::before { content: ''; width: 2rem; height: 2px; background: var(--color-gold); }
.hero h1 { font-size: var(--text-3xl); font-weight: 800; margin-bottom: var(--space-5); }
.hero__lead { font-size: var(--text-lg); color: rgb(255 255 255 / 0.85); max-width: 56ch; margin-bottom: var(--space-8); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* Page hero (interior pages) */
.page-hero { position: relative; color: #fff; isolation: isolate; overflow: hidden; }
.page-hero__img { position: absolute; inset: 0; z-index: -2; }
.page-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgb(20 21 24 / 0.55), rgb(20 21 24 / 0.78));
}
.page-hero__content { padding-block: clamp(var(--space-16), 9vw, var(--space-24)); max-width: 720px; }
.page-hero h1 { font-size: var(--text-2xl); font-weight: 800; margin-bottom: var(--space-4); }
.page-hero p { color: rgb(255 255 255 / 0.85); font-size: var(--text-lg); }
.page-hero .eyebrow { color: var(--color-gold); }

/* ---------- 7. CARDS & GRIDS ---------- */
.grid { display: grid; gap: var(--space-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
}
.card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.card__body h3 { font-size: var(--text-lg); font-weight: 700; }
.card__body p { color: var(--color-text-muted); font-size: var(--text-sm); flex: 1; }
.card__link {
  font-size: var(--text-sm); font-weight: 700; text-decoration: none;
  color: var(--color-gold-hover); display: inline-flex; align-items: center; gap: var(--space-1);
}
.card__link:hover { color: var(--color-gold-active); gap: var(--space-2); }
[data-theme='dark'] .card__link { color: var(--color-gold); }

/* Feature (icon) cards */
.feature {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-8) var(--space-6);
}
.feature__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: var(--radius-md);
  background: var(--color-gold-soft); color: var(--color-gold-hover); margin-bottom: var(--space-4);
}
[data-theme='dark'] .feature__icon { color: var(--color-gold); }
.feature h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-2); }
.feature p { color: var(--color-text-muted); font-size: var(--text-sm); }

/* Split (two-column media + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: center; }
.split__media { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) {
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}
.split__body h2 { font-size: var(--text-xl); font-weight: 800; margin-bottom: var(--space-4); }
.split__body p { color: var(--color-text-muted); margin-bottom: var(--space-4); }

/* Checklist */
.checklist { list-style: none; display: grid; gap: var(--space-3); margin-top: var(--space-4); }
.checklist li { display: flex; gap: var(--space-3); align-items: flex-start; color: var(--color-text); }
.checklist li svg { flex-shrink: 0; margin-top: 0.3rem; color: var(--color-gold-hover); }
[data-theme='dark'] .checklist li svg { color: var(--color-gold); }

/* Process steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: var(--space-6); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.step::before {
  counter-increment: step; content: '0' counter(step);
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: var(--text-xl); color: var(--color-gold); margin-bottom: var(--space-3);
}
.step h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* Stats-free value strip */
.value-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
@media (max-width: 860px) { .value-strip { grid-template-columns: 1fr; } }

/* ---------- 8. CTA BAND ---------- */
.cta-band { background: var(--color-charcoal); color: #f4f3ef; }
[data-theme='dark'] .cta-band { background: #101114; }
.cta-band__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--space-8); padding-block: clamp(var(--space-16), 7vw, var(--space-20));
}
.cta-band h2 { font-size: var(--text-xl); font-weight: 800; margin-bottom: var(--space-2); max-width: 22ch; }
.cta-band p { color: rgb(244 243 239 / 0.72); max-width: 48ch; }

/* ---------- 9. FAQ ACCORDION ---------- */
.faq-list { display: grid; gap: var(--space-3); }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  padding: var(--space-5) var(--space-6); cursor: pointer; list-style: none;
  font-weight: 700; font-size: var(--text-base); font-family: var(--font-display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--color-gold-hover);
  transition: transform var(--transition); line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 var(--space-6) var(--space-5); color: var(--color-text-muted); }

/* ---------- 10. FORMS ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: var(--space-2); }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: var(--text-sm); font-weight: 700; }
.form-field input, .form-field select, .form-field textarea {
  padding: var(--space-3) var(--space-4); border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border); background: var(--color-surface);
  font-size: var(--text-sm); width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-gold); box-shadow: 0 0 0 3px rgb(201 160 59 / 0.18);
}
.form-field textarea { min-height: 9rem; resize: vertical; }
.form-note { font-size: var(--text-xs); color: var(--color-text-faint); }
.form-status { display: none; padding: var(--space-4); border-radius: var(--radius-md); font-size: var(--text-sm); font-weight: 500; }
.form-status.is-visible { display: block; background: var(--color-gold-soft); color: var(--color-text); border: 1px solid var(--color-gold); }

/* Contact info panel */
.contact-panel { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-8); }
.contact-panel h2 { font-size: var(--text-lg); font-weight: 800; margin-bottom: var(--space-4); }
.contact-list { list-style: none; display: grid; gap: var(--space-5); }
.contact-list li { display: flex; gap: var(--space-4); align-items: flex-start; }
.contact-list svg { flex-shrink: 0; margin-top: 0.2rem; color: var(--color-gold-hover); }
[data-theme='dark'] .contact-list svg { color: var(--color-gold); }
.contact-list strong { display: block; font-size: var(--text-sm); }
.contact-list a { color: var(--color-text-muted); text-decoration: none; font-size: var(--text-sm); }
.contact-list a:hover { color: var(--color-gold-hover); }
.contact-list span { color: var(--color-text-muted); font-size: var(--text-sm); }

/* ---------- 11. PORTFOLIO ---------- */
.case-card { display: grid; grid-template-columns: 1fr 1fr; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; }
@media (max-width: 860px) { .case-card { grid-template-columns: 1fr; } }
.case-card__img { min-height: 300px; }
.case-card__img img { width: 100%; height: 100%; object-fit: cover; }
.case-card__body { padding: clamp(var(--space-6), 4vw, var(--space-10)); display: flex; flex-direction: column; gap: var(--space-3); }
.case-card__body h3 { font-size: var(--text-lg); font-weight: 800; }
.case-card__body p { color: var(--color-text-muted); font-size: var(--text-sm); }
.badge {
  display: inline-block; width: fit-content; font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full); background: var(--color-gold-soft); color: var(--color-gold-active);
}
[data-theme='dark'] .badge { color: var(--color-gold); }
.badge--placeholder { background: transparent; border: 1.5px dashed var(--color-gold); }
.case-card__points { list-style: none; margin-top: var(--space-2); display: grid; gap: var(--space-2); }
.case-card__points li { padding-left: 1.4em; position: relative; font-size: var(--text-sm); color: var(--color-text-muted); }
.case-card__points li::before { content: '—'; position: absolute; left: 0; color: var(--color-gold); }

/* ---------- 12. LEGAL / PROSE ---------- */
.prose h2 { font-size: var(--text-lg); font-weight: 800; margin: var(--space-10) 0 var(--space-3); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--color-text-muted); margin-bottom: var(--space-3); }
.prose ul { padding-left: var(--space-6); margin-bottom: var(--space-4); }
.prose .placeholder-note {
  background: var(--color-gold-soft); border-left: 3px solid var(--color-gold);
  padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm);
  font-size: var(--text-sm); color: var(--color-text);
}

/* ---------- 13. FOOTER ---------- */
.footer { background: var(--color-charcoal); color: #c9c8c2; }
[data-theme='dark'] .footer { background: #101114; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: var(--space-10);
  padding-block: clamp(var(--space-16), 6vw, var(--space-20)) var(--space-10);
}
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer .brand { color: #fff; margin-bottom: var(--space-4); }
.footer .brand__tag { color: rgb(255 255 255 / 0.5); }
.footer__about { font-size: var(--text-sm); color: rgb(201 200 194 / 0.85); max-width: 34ch; }
.footer h3 { color: #fff; font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--space-4); }
.footer ul { list-style: none; display: grid; gap: var(--space-2); }
.footer a { color: rgb(201 200 194 / 0.85); text-decoration: none; font-size: var(--text-sm); }
.footer a:hover { color: var(--color-gold); }
.footer address { font-style: normal; font-size: var(--text-sm); display: grid; gap: var(--space-2); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3);
  border-top: 1px solid rgb(255 255 255 / 0.1); padding-block: var(--space-6);
  font-size: var(--text-xs); color: rgb(201 200 194 / 0.6);
}
.footer__bottom a { font-size: var(--text-xs); }

/* ---------- 14. SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- 15. FULL-BLEED IMAGE BREAK ---------- */
.img-break { position: relative; height: clamp(280px, 45vw, 480px); overflow: hidden; }
.img-break img { width: 100%; height: 100%; object-fit: cover; }
