/* ============================================================
   Agraneeh Exim Services — Design System
   Brand: metallic gold + graphite charcoal (from logo)
   ============================================================ */

/* ---- Type scale ---- */
:root {
  --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.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.4rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.3rem + 2.4vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1.2rem + 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-sm: 0.375rem; --radius-md: 0.5rem; --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;  --radius-full: 9999px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow: 680px;
  --content-default: 1040px;
  --content-wide: 1280px;

  /* Fonts */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;
}

/* ---- Light theme (default) ---- */
:root, [data-theme='light'] {
  --color-bg: #faf8f4;
  --color-surface: #ffffff;
  --color-surface-2: #f4f0e8;
  --color-surface-offset: #efe9dd;
  --color-divider: #e4ddce;
  --color-border: #d8cfba;

  --color-text: #2c2a28;
  --color-text-muted: #6b665e;
  --color-text-faint: #a49d90;
  --color-text-inverse: #faf8f4;

  /* Brand gold */
  --color-gold: #bd8b2c;
  --color-gold-soft: #d4a94a;
  --color-gold-deep: #9a6f1f;
  --color-gold-tint: #f3e9d2;

  /* Brand charcoal */
  --color-ink: #35333a;
  --color-ink-2: #2a292f;
  --color-ink-deep: #1f1e23;

  --color-primary: var(--color-gold);
  --color-primary-hover: var(--color-gold-deep);

  --shadow-sm: 0 1px 3px rgba(45,40,30,0.07);
  --shadow-md: 0 6px 20px rgba(45,40,30,0.09);
  --shadow-lg: 0 18px 44px rgba(45,40,30,0.14);
  --shadow-gold: 0 10px 30px rgba(157,111,31,0.25);

  --header-bg: rgba(250,248,244,0.82);
  --gold-gradient: linear-gradient(135deg, #d4a94a 0%, #bd8b2c 45%, #9a6f1f 100%);
}

/* ---- Dark theme ---- */
[data-theme='dark'] {
  --color-bg: #1a191d;
  --color-surface: #232227;
  --color-surface-2: #2a292f;
  --color-surface-offset: #302f36;
  --color-divider: #38363d;
  --color-border: #423f48;

  --color-text: #e9e6e0;
  --color-text-muted: #a29d94;
  --color-text-faint: #6f6a62;
  --color-text-inverse: #1a191d;

  --color-gold: #d9ae52;
  --color-gold-soft: #e6c476;
  --color-gold-deep: #bd8b2c;
  --color-gold-tint: #332c1c;

  --color-ink: #232227;
  --color-ink-2: #1f1e23;
  --color-ink-deep: #151418;

  --color-primary: var(--color-gold);
  --color-primary-hover: var(--color-gold-soft);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 18px 44px rgba(0,0,0,0.5);
  --shadow-gold: 0 10px 30px rgba(217,174,82,0.18);

  --header-bg: rgba(26,25,29,0.82);
  --gold-gradient: linear-gradient(135deg, #e6c476 0%, #d9ae52 45%, #bd8b2c 100%);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #1a191d; --color-surface: #232227; --color-surface-2: #2a292f;
    --color-surface-offset: #302f36; --color-divider: #38363d; --color-border: #423f48;
    --color-text: #e9e6e0; --color-text-muted: #a29d94; --color-text-faint: #6f6a62;
    --color-text-inverse: #1a191d; --color-gold: #d9ae52; --color-gold-soft: #e6c476;
    --color-gold-deep: #bd8b2c; --color-gold-tint: #332c1c; --color-ink: #232227;
    --color-ink-2: #1f1e23; --color-ink-deep: #151418; --color-primary: var(--color-gold);
    --color-primary-hover: var(--color-gold-soft); --header-bg: rgba(26,25,29,0.82);
    --gold-gradient: linear-gradient(135deg, #e6c476 0%, #d9ae52 45%, #bd8b2c 100%);
  }
}

/* ============================================================
   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: 6rem;
}

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

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
ul[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); font-weight: 500; letter-spacing: -0.01em; }
p { text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--color-gold-tint); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; border-radius: var(--radius-sm); }

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

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

a, button, input, textarea, select, .card, .prod-card {
  transition: color var(--transition-interactive), background var(--transition-interactive),
    border-color var(--transition-interactive), box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}

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

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap { width: 100%; max-width: var(--content-wide); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.wrap-narrow { max-width: var(--content-narrow); }
.wrap-default { max-width: var(--content-default); }

section { padding-block: clamp(3.5rem, 8vw, 7rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-gold-deep);
  margin-bottom: var(--space-4);
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-gold); }
.eyebrow.center { justify-content: center; }

.section-title { font-size: var(--text-2xl); color: var(--color-text); margin-bottom: var(--space-4); }
.section-lead { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 60ch; line-height: 1.55; }
.center-head { text-align: center; margin-inline: auto; margin-bottom: var(--space-12); max-width: 46rem; }
.center-head .section-lead { margin-inline: auto; }

.gold-text { color: var(--color-gold-deep); }
[data-theme='dark'] .gold-text { color: var(--color-gold); }

/* ============================================================
   Buttons
   ============================================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  padding: 0.85rem 1.5rem; border-radius: var(--radius-full); border: 1px solid transparent;
  line-height: 1; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gold-gradient); color: #2a1f08; box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(157,111,31,0.34); }
.btn-outline { border-color: var(--color-border); color: var(--color-text); background: var(--color-surface); }
.btn-outline:hover { border-color: var(--color-gold); color: var(--color-gold-deep); transform: translateY(-2px); }
[data-theme='dark'] .btn-outline:hover { color: var(--color-gold); }
.btn-ghost { color: var(--color-text); padding-inline: var(--space-2); }
.btn-ghost:hover { color: var(--color-gold-deep); }
.btn-lg { padding: 1rem 1.9rem; font-size: var(--text-base); }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled { border-bottom-color: var(--color-divider); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); height: 76px; }

.brand { display: flex; align-items: center; gap: var(--space-3); }
.brand img { height: 46px; width: auto; }
.brand-logo-dark { display: none; }
[data-theme='dark'] .brand-logo-light { display: none; }
[data-theme='dark'] .brand-logo-dark { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .brand-logo-light { display: none; }
  :root:not([data-theme]) .brand-logo-dark { display: block; }
}

.nav { display: flex; align-items: center; gap: var(--space-1); }
.nav a { font-size: var(--text-sm); font-weight: 500; color: var(--color-text-muted); padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm); position: relative; }
.nav a:hover { color: var(--color-text); }
.nav a.active { color: var(--color-gold-deep); }
[data-theme='dark'] .nav a.active { color: var(--color-gold); }
.nav a.active::after { content: ''; position: absolute; left: var(--space-3); right: var(--space-3); bottom: 2px; height: 2px; background: var(--color-gold); border-radius: 2px; }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.theme-toggle { width: 40px; height: 40px; display: grid; place-items: center; border-radius: var(--radius-full); color: var(--color-text-muted); border: 1px solid var(--color-border); }
.theme-toggle:hover { color: var(--color-gold-deep); border-color: var(--color-gold); }

.menu-btn { display: none; width: 44px; height: 44px; place-items: center; color: var(--color-text); border-radius: var(--radius-sm); }

/* mobile nav */
.mobile-nav { display: none; }
@media (max-width: 900px) {
  .nav, .header-actions .btn { display: none; }
  .menu-btn { display: grid; }
  .mobile-nav { display: block; position: fixed; inset: 76px 0 auto 0; background: var(--color-surface);
    border-bottom: 1px solid var(--color-divider); box-shadow: var(--shadow-lg);
    transform: translateY(-120%); transition: transform .35s cubic-bezier(0.16,1,0.3,1); z-index: 90; }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav ul { list-style: none; padding: var(--space-4); }
  .mobile-nav a { display: block; padding: var(--space-4); font-size: var(--text-lg); font-family: var(--font-display); border-bottom: 1px solid var(--color-divider); }
  .mobile-nav a:last-of-type { border-bottom: 0; }
  .mobile-nav .btn-primary { margin-top: var(--space-4); width: 100%; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-block: clamp(3.5rem, 7vw, 6rem) clamp(4rem, 9vw, 7.5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-content { max-width: 34rem; }
.hero h1 { font-size: var(--text-3xl); line-height: 1.04; margin-bottom: var(--space-6); }
.hero h1 em { font-style: italic; color: var(--color-gold-deep); }
[data-theme='dark'] .hero h1 em { color: var(--color-gold); }
.hero p.lead { font-size: var(--text-lg); color: var(--color-text-muted); line-height: 1.55; margin-bottom: var(--space-8); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero-badge { position: absolute; bottom: -22px; left: -22px; background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-4) var(--space-5); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: var(--space-3); }
.hero-badge .num { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-gold-deep); line-height: 1; }
[data-theme='dark'] .hero-badge .num { color: var(--color-gold); }
.hero-badge .lbl { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.3; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-badge { left: auto; right: 16px; bottom: -18px; }
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust { background: var(--color-ink); color: var(--color-text-inverse); padding-block: var(--space-10); }
[data-theme='dark'] .trust { background: var(--color-ink-deep); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); }
.trust-item { text-align: center; }
.trust-item .num { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--color-gold-soft); line-height: 1; margin-bottom: var(--space-2); }
.trust-item .lbl { font-size: var(--text-sm); color: rgba(255,255,255,0.72); }
@media (max-width: 700px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-8) var(--space-6); } }

/* ============================================================
   Product cards
   ============================================================ */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-6); }
.prod-card { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-border); }
.prod-card .img-wrap { aspect-ratio: 3/2; overflow: hidden; }
.prod-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(0.16,1,0.3,1); }
.prod-card:hover .img-wrap img { transform: scale(1.06); }
.prod-card .body { padding: var(--space-5) var(--space-5) var(--space-6); flex: 1; display: flex; flex-direction: column; }
.prod-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.prod-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.55; flex: 1; }
.prod-card .tags { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }
.tag { font-size: var(--text-xs); font-weight: 500; padding: 0.3rem 0.7rem; border-radius: var(--radius-full); background: var(--color-gold-tint); color: var(--color-gold-deep); }
[data-theme='dark'] .tag { color: var(--color-gold-soft); }

/* ============================================================
   Feature / value cards
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-6); }
.card { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); padding: var(--space-8); }
.card:hover { box-shadow: var(--shadow-sm); border-color: var(--color-border); }
.card .icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--color-gold-tint); color: var(--color-gold-deep); margin-bottom: var(--space-5); }
[data-theme='dark'] .card .icon { color: var(--color-gold-soft); }
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }

/* ============================================================
   Split / alternating sections
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-xl); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split-content h2 { font-size: var(--text-xl); margin-bottom: var(--space-4); }
.split-content p { color: var(--color-text-muted); margin-bottom: var(--space-4); }
.split-content ul { list-style: none; display: grid; gap: var(--space-3); margin-top: var(--space-5); }
.split-content li { display: flex; gap: var(--space-3); align-items: flex-start; font-size: var(--text-sm); }
.split-content li svg { width: 20px; height: 20px; color: var(--color-gold-deep); flex-shrink: 0; margin-top: 2px; }
[data-theme='dark'] .split-content li svg { color: var(--color-gold); }
@media (max-width: 800px) { .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse .split-media { order: -1; } }

/* ---- band ---- */
.band { background: var(--color-surface-2); }
.band-ink { background: var(--color-ink); color: var(--color-text-inverse); }
[data-theme='dark'] .band-ink { background: var(--color-ink-deep); }
.band-ink .section-title, .band-ink h2 { color: #fff; }
.band-ink .section-lead, .band-ink p { color: rgba(255,255,255,0.74); }
.band-ink .eyebrow { color: var(--color-gold-soft); }
.band-ink .eyebrow::before { background: var(--color-gold-soft); }

/* ============================================================
   Process steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-6); counter-reset: step; }
.step { position: relative; padding: var(--space-6); border-radius: var(--radius-lg); background: var(--color-surface); border: 1px solid var(--color-divider); }
.step .step-num { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-gold); line-height: 1; margin-bottom: var(--space-4); }
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--gold-gradient); text-align: center; }
.cta-band .section-title { color: #2a1f08; }
.cta-band p { color: #43350f; font-size: var(--text-lg); max-width: 46ch; margin: 0 auto var(--space-8); }
.cta-band .btn-outline { background: #2a1f08; color: #f6e6c4; border-color: transparent; }
.cta-band .btn-outline:hover { background: #1f1706; color: #fff; transform: translateY(-2px); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 840px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: var(--space-5); }
.contact-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.contact-item .ci-icon { width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--color-gold-tint); color: var(--color-gold-deep); display: grid; place-items: center; flex-shrink: 0; }
[data-theme='dark'] .contact-item .ci-icon { color: var(--color-gold-soft); }
.contact-item .ci-icon svg { width: 22px; height: 22px; }
.contact-item h4 { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-faint); margin-bottom: var(--space-1); }
.contact-item a, .contact-item p { font-size: var(--text-base); color: var(--color-text); line-height: 1.5; word-break: break-word; }
.contact-item a:hover { color: var(--color-gold-deep); }

.form-card { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: var(--space-4); }
.field label { display: block; font-size: var(--text-sm); font-weight: 500; margin-bottom: var(--space-2); }
.field label .req { color: var(--color-gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: var(--radius-md);
  border: 1px solid var(--color-border); background: var(--color-bg); color: var(--color-text);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--color-gold); outline: none; box-shadow: 0 0 0 3px var(--color-gold-tint); }
.form-note { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-3); }
.form-success { display: none; padding: var(--space-4); border-radius: var(--radius-md); background: var(--color-gold-tint); color: var(--color-gold-deep); font-size: var(--text-sm); margin-bottom: var(--space-4); }
.form-success.show { display: block; }

/* map */
.map-wrap { margin-top: var(--space-6); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-divider); }
.map-wrap iframe { width: 100%; height: 300px; border: 0; display: block; filter: grayscale(0.2); }

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero { background: var(--color-surface-2); padding-block: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--color-divider); }
.page-hero h1 { font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.page-hero p { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 60ch; }
.breadcrumb { font-size: var(--text-xs); color: var(--color-text-faint); margin-bottom: var(--space-4); }
.breadcrumb a:hover { color: var(--color-gold-deep); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--color-ink-deep); color: rgba(255,255,255,0.7); padding-block: var(--space-16) var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-8); margin-bottom: var(--space-12); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-10) var(--space-8); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer img.f-logo { height: 44px; margin-bottom: var(--space-4); }
.footer p { font-size: var(--text-sm); line-height: 1.65; max-width: 32ch; }
.footer .f-social { display: inline-flex; align-items: center; gap: var(--space-2); margin-top: var(--space-4); font-size: var(--text-sm); color: rgba(255,255,255,0.7); }
.footer .f-social svg { width: 18px; height: 18px; flex: 0 0 auto; }
.footer .f-social:hover { color: var(--color-gold-soft); }
.footer h4 { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-gold-soft); margin-bottom: var(--space-5); }
.footer ul { list-style: none; display: grid; gap: var(--space-3); }
.footer ul a { font-size: var(--text-sm); color: rgba(255,255,255,0.7); }
.footer ul a:hover { color: var(--color-gold-soft); }
.footer .f-contact { font-size: var(--text-sm); line-height: 1.7; }
.footer .f-contact a:hover { color: var(--color-gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-6); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-4); font-size: var(--text-xs); color: rgba(255,255,255,0.5); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(0.16,1,0.3,1), transform .7s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
