/* ═══════════════════════════════════════════════════════════════
   KURSA — Design System
   Aesthetic: Private Capital Editorial (after Vitol)
   Layout DNA: Two-tier nav · Full-bleed hero with overlapping cards
               · Statement headlines · Image-card focus grid
               · Rich dark footer with column links
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ═══════════════════════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  /* Brand */
  --charcoal:    #11191D;
  --surface:     #1b1f22;   /* exact logo background — used for nav, footer, mobile menu */
  --navy:        #1b1f22;
  --ivory:       #F4EFE7;
  --ivory-dim:   #e8e1d6;
  --copper:      #AC6C38;
  --copper-dim:  #8A5428;
  --white:       #FFFFFF;
  --navy:        #0e1c2e; /* footer */

  /* Derived */
  --charcoal-80: rgba(17, 25, 29, 0.80);
  --charcoal-95: rgba(17, 25, 29, 0.95);
  --ivory-60:    rgba(244, 239, 231, 0.60);
  --copper-line: rgba(172, 108, 56, 0.30);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Scale */
  --text-xs:    0.6875rem;   /* 11px */
  --text-sm:    0.8125rem;   /* 13px */
  --text-base:  1rem;        /* 16px */
  --text-lg:    1.125rem;    /* 18px */
  --text-xl:    1.375rem;    /* 22px */
  --text-2xl:   1.75rem;     /* 28px */
  --text-3xl:   2.25rem;     /* 36px */
  --text-4xl:   3rem;        /* 48px */
  --text-hero:  clamp(4.5rem, 11vw, 9.5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 80px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 200ms;
  --duration-base: 400ms;
  --duration-slow: 700ms;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul { list-style: none; }

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

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

input, select, textarea, button {
  font-family: var(--font-body);
}

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-8);
}

@media (max-width: 768px) {
  .container { padding-inline: var(--space-6); }
}

/* ── Focus visible ── */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem 2.2rem;
  transition: background var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-copper {
  background: var(--copper);
  color: var(--white);
  border: 1px solid var(--copper);
}
.btn-copper:hover {
  background: var(--copper-dim);
  border-color: var(--copper-dim);
}

/* ── Text Link (Vitol "Read more —" style) ── */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--copper);
  transition: gap var(--duration-fast) var(--ease-out),
              color var(--duration-fast);
  margin-top: var(--space-4);
}
.text-link:hover {
  color: var(--copper-dim);
  gap: 0.9em;
}
.link-dash {
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-out);
}
.text-link:hover .link-dash {
  transform: translateX(4px);
}

/* ── Shared section elements ── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-4);
}
.section-label--light {
  color: rgba(172, 108, 56, 0.85);
}

.body-text {
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(17, 25, 29, 0.70);
  max-width: 52ch;
}
.body-text--light {
  color: rgba(244, 239, 231, 0.65);
}




/* ═══════════════════════════════════════════════════════════════
   MAIN NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background-color: var(--surface);
  border-bottom: 1px solid rgba(172, 108, 56, 0.15);
  z-index: 90;
  transition: transform 0.3s var(--ease-out);
}
#site-header.scrolled-up {
  transform: translateY(0);
}
#site-header.scrolled-down {
  transform: translateY(-100%);
}

@media (max-width: 768px) {
  #site-header { inset-block-start: 0; }
}

#site-header.scrolled {
  border-bottom-color: rgba(172, 108, 56, 0.30);
}

.nav-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-8);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-logo {
  flex-shrink: 0;
  margin-right: auto;
  /* Constrain to nav height and crop the image's massive built-in background padding */
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.logo-img {
  width: 250px;
  height: auto;
}

/* Desktop nav links — centered in Vitol style */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 231, 0.70);
  transition: color var(--duration-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}
.nav-link:hover { color: var(--ivory); }
.nav-link:hover::after { transform: scaleX(1); }

/* Search button */
.nav-search-btn {
  flex-shrink: 0;
  color: rgba(244, 239, 231, 0.60);
  padding: var(--space-2);
  transition: color var(--duration-fast);
  margin-left: var(--space-4);
}
.nav-search-btn:hover { color: var(--ivory); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
  margin-left: var(--space-4);
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ivory);
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-fast);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--surface);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-12) var(--space-8);
  gap: var(--space-8);
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu[aria-hidden="true"] { visibility: hidden; }
.mobile-menu[aria-hidden="false"] { visibility: visible; }

.mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: -0.01em;
  transition: color var(--duration-fast);
}
.mobile-link:hover { color: var(--copper); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-search-btn { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 480px) {
  .nav-inner { padding-inline: var(--space-6); }
}


/* ═══════════════════════════════════════════════════════════════
   HERO (Vitol: full-bleed, massive left headline, overlapping cards)
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s var(--ease-out);
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }

/* Vitol-style gradient: strong on left bottom for text, lighter on right/top */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17, 25, 29, 0.88) 0%,
    rgba(17, 25, 29, 0.65) 40%,
    rgba(17, 25, 29, 0.30) 70%,
    rgba(17, 25, 29, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Hero Text (top-left, Vitol style) ── */
.hero-text-block {
  padding: var(--space-16) var(--space-8);
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ivory);
  margin-bottom: var(--space-8);
  display: block;
}

.hero-line-1,
.hero-line-2 {
  display: block;
  font-weight: 300;
  opacity: 0;
  transform: translateY(32px);
  animation: fade-up 0.9s var(--ease-out) forwards;
}
.hero-line-1 { animation-delay: 0.15s; }
.hero-line-2 { animation-delay: 0.30s; }

/* Vitol: last line is larger / bolder for drama */
.hero-line-3 {
  display: block;
  font-weight: 500;
  color: var(--copper);
  opacity: 0;
  transform: translateY(32px);
  animation: fade-up 0.9s var(--ease-out) 0.45s forwards;
}

.hero-sub {
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(244, 239, 231, 0.85);
  max-width: 45ch;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.9s var(--ease-out) 0.65s forwards;
  margin-bottom: var(--space-4);
}

.hero-sub-secondary {
  font-size: var(--text-lg);
  color: var(--copper);
  animation-delay: 0.8s;
  margin-bottom: 0;
}

/* ── Hero Cards (Vitol's overlapping news tray at hero bottom) ── */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(17, 25, 29, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(172, 108, 56, 0.25);
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.9s forwards;
}

.hero-card {
  padding: var(--space-8) var(--space-8);
  border-right: 1px solid rgba(172, 108, 56, 0.18);
  transition: background var(--duration-base);
}
.hero-card:last-child { border-right: none; }
.hero-card:hover { background: rgba(172, 108, 56, 0.06); }

.hero-card-label {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-3);
  opacity: 0.85;
}

.hero-card-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(244, 239, 231, 0.80);
  margin-bottom: var(--space-4);
}

.hero-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--copper);
  transition: gap var(--duration-fast) var(--ease-out);
}
.hero-card-link:hover { gap: 0.9em; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero-cards {
    grid-template-columns: 1fr;
  }
  .hero-card { border-right: none; border-bottom: 1px solid rgba(172, 108, 56, 0.18); }
  .hero-card:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .hero {
    padding-top: var(--nav-height);
  }
  .hero-text-block {
    padding: var(--space-12) var(--space-6);
    text-align: center;
  }
  .hero-sub {
    margin-inline: auto;
  }
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT — Full-width editorial layout
   ═══════════════════════════════════════════════════════════════ */
.about {
  background: var(--ivory);
  padding-block: var(--space-32);
  border-top: 1px solid rgba(17, 25, 29, 0.08);
}

.about-headline {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  border-top: 1px solid rgba(17, 25, 29, 0.10);
  padding-top: var(--space-10);
  margin-bottom: var(--space-16);
  white-space: nowrap;
  overflow: visible;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.about-text {
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(17, 25, 29, 0.70);
}

@media (max-width: 768px) {
  .about { padding-block: var(--space-16); }
  .about-headline { font-size: clamp(2.4rem, 8vw, 3.2rem); margin-bottom: var(--space-10); white-space: normal; }
  .about-body { grid-template-columns: 1fr; gap: var(--space-8); }
}


/* ═══════════════════════════════════════════════════════════════
   FOCUS & HOW WE WORK
   ═══════════════════════════════════════════════════════════════ */
.focus {
  background: var(--ivory);
  padding-block: var(--space-32);
}

.how-we-work {
  background: var(--ivory-dim);
  padding-block: var(--space-32);
}

.focus-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(17, 25, 29, 0.15);
}

.focus-row {
  display: flex;
  gap: var(--space-12);
  padding-block: var(--space-12);
  border-bottom: 1px solid rgba(17, 25, 29, 0.15);
  align-items: flex-start;
}

.focus-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--copper);
  line-height: 1;
}

.focus-content {
  flex: 1;
}

.focus-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-4);
  line-height: 1.1;
}

.focus-desc {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(17, 25, 29, 0.7);
  max-width: 50ch;
}

.focus-image-wrapper {
  width: 260px;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.focus-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform var(--duration-slow) var(--ease-out), filter var(--duration-base) var(--ease-out);
}

.focus-row:hover .focus-image {
  transform: scale(1.04);
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .focus { padding-block: var(--space-16); }
  .focus-row { 
    flex-direction: column; 
    gap: var(--space-4); 
    padding-block: var(--space-8);
  }
  .focus-title { font-size: var(--text-3xl); }
  .focus-image-wrapper {
    margin-left: 0;
    width: 100%;
    height: 200px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   HOW WE WORK — Light ivory, three-column layout
   ═══════════════════════════════════════════════════════════════ */
.work-label {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-16);
  display: block;
}

.work-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
  border-top: 1px solid rgba(17, 25, 29, 0.12);
  padding-top: var(--space-12);
}

.work-col {
  padding-right: var(--space-10);
  border-right: 1px solid rgba(17, 25, 29, 0.08);
}
.work-col:last-child {
  border-right: none;
  padding-right: 0;
}

.work-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--copper);
  line-height: 1;
  margin-bottom: var(--space-6);
  opacity: 0.7;
}

.work-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.work-desc {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(17, 25, 29, 0.6);
}

@media (max-width: 900px) {
  .work-cols { grid-template-columns: 1fr; }
  .work-col {
    border-right: none;
    border-bottom: 1px solid rgba(17, 25, 29, 0.08);
    padding-right: 0;
    padding-bottom: var(--space-10);
  }
  .work-col:last-child { border-bottom: none; padding-bottom: 0; }
  .how-we-work { padding-block: var(--space-16); }
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact {
  background: var(--charcoal);
  padding-block: var(--space-32);
  border-top: 1px solid rgba(172, 108, 56, 0.15);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-24);
  align-items: start;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-block: var(--space-6) var(--space-8);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(244, 239, 231, 0.65);
}

.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 239, 231, 0.18);
  padding: var(--space-4) 0;
  color: var(--ivory);
  font-size: var(--text-lg);
  font-weight: 300;
  width: 100%;
  transition: border-color var(--duration-fast);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input::placeholder { color: rgba(244, 239, 231, 0.42); }
.form-input:focus { outline: none; border-bottom-color: var(--copper); }
.form-input:focus::placeholder { color: rgba(244, 239, 231, 0.10); }

.select-wrapper { position: relative; }
.select-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(172, 108, 56, 0.6);
  border-bottom: 1px solid rgba(172, 108, 56, 0.6);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.form-select {
  cursor: pointer;
  color: var(--ivory);
  background: var(--charcoal);
}
.form-select option {
  background: var(--charcoal);
  color: var(--ivory);
}

.form-textarea { resize: vertical; min-height: 120px; font-size: var(--text-lg); }

.form-actions { padding-top: var(--space-2); }

.form-status {
  font-size: var(--text-sm);
  padding: var(--space-3) 0;
  min-height: 1.5em;
  color: var(--ivory);
  opacity: 0;
  transition: opacity var(--duration-base);
}
.form-status.visible { opacity: 1; }
.form-status.success { color: #7ec89b; }
.form-status.error   { color: #e07070; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .contact { padding-block: var(--space-16); }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER (Vitol: dark navy, multi-column + bottom bar)
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
}

/* ── Footer Main ── */
.footer-main {
  padding-block: var(--space-16) var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-main-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-24);
  align-items: start;
}

/* Brand column */
.footer-brand {
  /* No changes needed to brand container */
}

.footer-logo-wrapper {
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: var(--space-6);
}

.footer-logo {
  width: 250px;
  height: auto;
}

.footer-desc {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(244, 239, 231, 0.85);
  max-width: 38ch;
  margin-bottom: var(--space-8);
}

.footer-socials {
  display: flex;
  gap: var(--space-4);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(244, 239, 231, 0.3);
  color: rgba(244, 239, 231, 0.85);
  transition: border-color var(--duration-fast),
              color var(--duration-fast);
}
.footer-social-link:hover {
  border-color: var(--copper);
  color: var(--copper);
}

/* Link columns */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.footer-col {}

.footer-col-heading {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 231, 0.9);
  margin-bottom: var(--space-6);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(244, 239, 231, 0.85);
  transition: color var(--duration-fast);
}
.footer-link:hover { color: var(--copper); }

/* ── Footer Bottom bar ── */
.footer-bottom {
  padding-block: var(--space-4);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: var(--text-sm);
  color: rgba(244, 239, 231, 0.5);
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: var(--text-sm);
  color: rgba(244, 239, 231, 0.5);
  letter-spacing: 0.04em;
  transition: color var(--duration-fast);
}
.footer-legal-link:hover { color: rgba(244, 239, 231, 0.65); }

@media (max-width: 900px) {
  .footer-main-inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
}

@media (max-width: 560px) {
  .footer-links-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL (JS-driven)
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }


/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-line-1, .hero-line-2, .hero-line-3,
  .hero-sub, .hero-cards { opacity: 1; transform: none; }
}
