/* ============================================================
   LILIUM STUDIO — Luxury Branding & Growth
   Editorial / Refined Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Jost:wght@200;300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --ivory:      #F7F6F2;
  --ivory-warm: #F0EDE5;
  --ivory-deep: #E8E2D8;
  --champagne:  #EBDECC;
  --sage:       #A5B59F;
  --olive:      #2F3A2E;
  --olive-mid:  #3D4E3A;
  --olive-soft: #5A6B57;
  --gold:       #C9A24A;
  --gold-pale:  #DEC98A;
  --gold-soft:  #E8D9B0;
  --ink:        #1C2420;

  --font-serif: 'Cormorant Garamond', 'EB Garamond', 'Garamond', Georgia, serif;
  --font-sans:  'Jost', 'Helvetica Neue', sans-serif;

  --border-gold: 1px solid rgba(201, 162, 74, 0.28);
  --border-thin: 1px solid rgba(47, 58, 46, 0.12);
  --shadow-soft: 0 20px 80px rgba(28, 36, 32, 0.08);
  --shadow-card: 0 4px 40px rgba(28, 36, 32, 0.06);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--olive);
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Layout ────────────────────────────────────────────────── */
.container { width: min(1160px, calc(100% - 60px)); margin: 0 auto; }
.section { padding: 120px 0; position: relative; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--olive);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3.6rem, 7vw, 7rem); line-height: 1.0; letter-spacing: -0.03em; }
h2 { font-size: clamp(2.4rem, 4.5vw, 4.2rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.35rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.no-lines::before, .eyebrow.no-lines::after { display: none; }

/* ── Gold Rule ──────────────────────────────────────────────── */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.site-header.scrolled {
  background: rgba(247, 246, 242, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-gold);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-logo {
  height: 44px;
  width: auto;
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--olive);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-soft);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.nav-links a:hover { color: var(--olive); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-sans) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  padding: 12px 22px;
  border: var(--border-gold);
  color: var(--olive) !important;
  background: transparent;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--olive) !important;
  color: var(--ivory) !important;
  border-color: var(--olive) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--olive);
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--ivory);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(201,162,74,0.09), transparent),
    radial-gradient(ellipse 50% 40% at 10% 85%, rgba(165,181,159,0.13), transparent);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-copy { position: relative; }
.hero-kicker {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-weight: 300;
  color: var(--olive);
  margin-bottom: 8px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--olive-soft);
  margin: 20px 0 36px;
  max-width: 560px;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-divider {
  margin-top: 64px;
  padding-top: 40px;
  border-top: var(--border-thin);
  display: flex;
  gap: 56px;
}
.hero-stat .stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--olive);
  display: block;
  line-height: 1;
}
.hero-stat .stat-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin-top: 6px;
}

/* Hero Visual Side */
.hero-visual {
  position: relative;
  height: 580px;
}
.hero-lily-frame {
  position: absolute;
  inset: 0;
  border: var(--border-gold);
}
.hero-lily-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,162,74,0.12);
}
.hero-lily-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-quote {
  position: absolute;
  bottom: -24px;
  left: -36px;
  background: var(--olive);
  color: var(--ivory);
  padding: 28px 32px;
  max-width: 280px;
}
.hero-quote p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--champagne);
}
.hero-quote span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--olive);
  color: var(--ivory);
  padding: 16px 36px;
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(28,36,32,0.22);
}
.btn-outline {
  border: var(--border-gold);
  color: var(--olive);
  padding: 15px 35px;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--ivory);
  border-color: var(--gold);
}
.btn-gold {
  background: var(--gold);
  color: var(--ivory);
  padding: 16px 36px;
}
.btn-gold:hover {
  background: #b38d3a;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE / TICKER
═══════════════════════════════════════════════════════════ */
.marquee-section {
  padding: 20px 0;
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  background: var(--olive);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding: 0 40px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 40px;
}
.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about-section { background: var(--ivory); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-frame {
  position: relative;
  height: 600px;
  background: var(--ivory-warm);
  border: var(--border-gold);
  overflow: hidden;
}
.about-frame::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201,162,74,0.15);
  pointer-events: none;
  z-index: 1;
}
.about-lily-large {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.85;
}
.about-accent {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border: var(--border-gold);
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.about-accent svg { opacity: 0.6; }
.about-content { padding-right: 20px; }
.about-content p {
  font-size: 1.06rem;
  color: var(--olive-soft);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-qualities {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border-top: var(--border-thin);
}
.about-quality {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: var(--border-thin);
}
.quality-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
  flex-shrink: 0;
  width: 24px;
}
.quality-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--olive);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services-section { background: var(--ivory-warm); }
.section-header { margin-bottom: 72px; }
.section-header.centered { text-align: center; }
.section-header.centered .eyebrow { justify-content: center; }
.section-header.centered .gold-rule { margin-left: auto; margin-right: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,162,74,0.15);
  border: var(--border-gold);
}
.service-item {
  background: var(--ivory-warm);
  padding: 44px 36px;
  transition: background 0.3s ease;
  position: relative;
}
.service-item:hover { background: var(--ivory); }
.service-num {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 24px;
}
.service-item h4 {
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--olive);
}
.service-item p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--olive-soft);
  line-height: 1.75;
}
.service-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 36px;
  right: 36px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.service-item:hover::after { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════════
   CASE STUDIES
═══════════════════════════════════════════════════════════ */
.cases-section { background: var(--olive); overflow: hidden; }
.cases-section .eyebrow { color: var(--gold-pale); }
.cases-section .eyebrow::before,
.cases-section .eyebrow::after { background: var(--gold-pale); }
.cases-section h2 { color: var(--champagne); }
.cases-section .gold-rule { background: var(--gold-pale); }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,162,74,0.2);
  margin-top: 64px;
  border: 1px solid rgba(201,162,74,0.2);
}
.case-card {
  background: var(--olive);
  padding: 52px 44px;
  position: relative;
  transition: background 0.3s;
}
.case-card:hover { background: var(--olive-mid); }
.case-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201,162,74,0.15);
  line-height: 1;
  position: absolute;
  top: 28px;
  right: 32px;
  font-style: italic;
}
.case-type {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.case-card h4 {
  font-size: 1.5rem;
  color: var(--champagne);
  margin-bottom: 28px;
  font-weight: 400;
  line-height: 1.2;
}
.case-field {
  margin-bottom: 18px;
}
.case-field-label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.case-field-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.65;
}
.case-result {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,162,74,0.2);
}
.case-result .case-field-label { color: var(--gold-pale); }
.case-result .case-field-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--champagne);
}

/* ═══════════════════════════════════════════════════════════
   IDEAL CLIENTS
═══════════════════════════════════════════════════════════ */
.clients-section { background: var(--ivory); }
.clients-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.clients-visual {
  position: relative;
}
.clients-frame {
  border: var(--border-gold);
  padding: 60px 52px;
  background: var(--ivory-warm);
  position: relative;
}
.clients-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,162,74,0.12);
  pointer-events: none;
}
.clients-frame h3 {
  font-size: 1.9rem;
  color: var(--olive);
  margin-bottom: 40px;
  line-height: 1.25;
}
.client-check-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.client-check {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: var(--border-thin);
}
.client-check:last-child { border-bottom: none; }
.check-mark {
  width: 22px;
  height: 22px;
  border: var(--border-gold);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-mark svg { opacity: 0.8; }
.client-check p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--olive-soft);
  line-height: 1.6;
}
.clients-content p {
  font-size: 1.05rem;
  color: var(--olive-soft);
  line-height: 1.85;
  margin-bottom: 24px;
}
.client-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.client-type-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--olive-soft);
  padding: 9px 16px;
  border: var(--border-thin);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   PHILOSOPHY / QUOTE BREAK
═══════════════════════════════════════════════════════════ */
.philosophy-section {
  background: var(--champagne);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.philosophy-section::before,
.philosophy-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201,162,74,0.2);
  border-radius: 50%;
}
.philosophy-section::before { left: -100px; top: -80px; }
.philosophy-section::after { right: -100px; bottom: -80px; }
.philosophy-lily {
  margin: 0 auto 40px;
  opacity: 0.4;
}
.philosophy-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--olive);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.philosophy-section cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 28px;
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT / CTA
═══════════════════════════════════════════════════════════ */
.contact-section { background: var(--ivory-warm); }
.contact-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.contact-content h2 { margin-bottom: 20px; }
.contact-content p {
  font-size: 1rem;
  color: var(--olive-soft);
  line-height: 1.85;
  margin-bottom: 16px;
}
.contact-details {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--olive-soft);
  font-weight: 300;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { color: var(--gold); }
.contact-social {
  margin-top: 40px;
  padding-top: 32px;
  border-top: var(--border-thin);
  display: flex;
  gap: 14px;
}
.social-link {
  width: 40px;
  height: 40px;
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  color: var(--olive-soft);
}
.social-link:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--ivory);
}
.social-link svg { width: 14px; height: 14px; }

.contact-form-wrap {
  background: var(--ivory);
  border: var(--border-gold);
  padding: 52px;
  position: relative;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201,162,74,0.1);
  pointer-events: none;
}
.form-field {
  margin-bottom: 24px;
  position: relative;
}
.form-field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--ivory-warm);
  border: var(--border-thin);
  border-bottom: var(--border-gold);
  padding: 14px 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--olive);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  border-radius: 0;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--olive);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(47,58,46,0.4);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
  padding: 14px 0;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note {
  font-size: 0.72rem;
  color: var(--olive-soft);
  opacity: 0.6;
  margin-top: 12px;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(201,162,74,0.15);
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--champagne);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-brand-tag {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(235,222,204,0.55);
  line-height: 1.8;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(235,222,204,0.55);
  transition: color 0.3s;
  letter-spacing: 0.03em;
}
.footer-col ul li a:hover { color: var(--champagne); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}
.footer-bottom p {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(235,222,204,0.35);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   LILY SVG DECORATIONS
═══════════════════════════════════════════════════════════ */
.lily-ornament {
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { padding: 44px 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 88px; left: 0; right: 0; background: var(--ivory); border-top: var(--border-gold); border-bottom: var(--border-gold); padding: 24px 30px; gap: 20px; z-index: 200; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 380px; }
  .hero-quote { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-frame { height: 440px; }
  .clients-inner { grid-template-columns: 1fr; gap: 60px; }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 40px, 1160px); }
  .section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3rem, 12vw, 4.5rem); }
  .hero-divider { flex-wrap: wrap; gap: 28px; }
  .contact-form-wrap { padding: 32px 24px; }
