/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --navy:    #0D1B2A;
  --navy-mid:#14263A;
  --gold:    #C9A96E;
  --gold-lt: #DFC090;
  --stone:   #E8E0D5;
  --cream:   #F5F0E8;
  --white:   #FFFFFF;
  --text:    #1A2A3A;
  --text-lt: #4A5A6A;
  --radius:  4px;
  --trans:   0.3s ease;

  /* Semantic aliases — light mode */
  --surface:        #FFFFFF;        /* card / form backgrounds */
  --surface-raised: #F5F0E8;       /* inputs, method pills */
  --heading:        #0D1B2A;       /* h2/h3 on light bg */
  --border:         #E8E0D5;       /* default borders */
  --success-bg:    rgba(34,197,94,0.08);
  --success-text:  #166534;
  --success-bd:    rgba(34,197,94,0.3);
  --error-text:    #b91c1c;
  --rate-bg:       rgba(185,28,28,0.07);
  --rate-text:     #7f1d1d;
  --rate-bd:       rgba(185,28,28,0.25);
}

/* ── DARK MODE TOKENS ────────────────────────────────── */
[data-theme="dark"] {
  --navy:    #0A1520;
  --navy-mid:#0F1E2E;
  --gold:    #D4B07A;              /* slightly brighter for contrast */
  --gold-lt: #E5C892;
  --stone:   #2A3A4A;
  --cream:   #0F1B28;              /* page background */
  --white:   #E8EDF2;             /* text-on-dark contexts */
  --text:    #C8D5E0;
  --text-lt: #7A8FA0;

  /* Semantic aliases — dark mode */
  --surface:        #162232;
  --surface-raised: #0F1B28;
  --heading:        #D8E5F0;
  --border:         #253545;
  --success-bg:    rgba(34,197,94,0.1);
  --success-text:  #4ade80;
  --success-bd:    rgba(34,197,94,0.25);
  --error-text:    #f87171;
  --rate-bg:       rgba(248,113,113,0.08);
  --rate-text:     #fca5a5;
  --rate-bd:       rgba(248,113,113,0.25);
}

/* ── DARK MODE SURFACE OVERRIDES ─────────────────────── */
[data-theme="dark"] body { background: var(--cream); }

/* ── DARK MODE TOGGLE ────────────────────────────────── */
.theme-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans);
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  padding: 0;
}
.theme-toggle:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.1);
  color: var(--gold);
}
.theme-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  transition: opacity 0.2s ease;
}
/* Show/hide sun vs moon icons */
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun  { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ─────────────────────────────────────────── */
.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.gold-rule.left { margin-left: 0; }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,27,42,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.18);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--trans);
  position: relative;
  padding-bottom: 0.5rem;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--trans);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background var(--trans) !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }
.nav-cta::after { display: none !important; }
.nav-cta.active { color: var(--navy) !important; }

/* Nav right cluster (toggle + hamburger on mobile) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(16px);
  z-index: 99;
  padding: 1.5rem;
  flex-direction: column;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--trans);
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .nav-cta {
  margin-top: 1rem;
  text-align: center;
  padding: 0.85rem;
  border-bottom: none;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary, .btn-outline {
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: background var(--trans), transform 0.15s ease, border-color var(--trans);
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

/* ── PAGE HERO (shared across About / Contact / Portfolio) */
.page-hero {
  background: var(--navy);
  padding: 8rem 1.5rem 5rem;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255,255,255,0.62);
  font-size: 0.98rem;
  line-height: 1.8;
  font-weight: 300;
}
.page-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto;
}

/* ── SECTION HEADER ──────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1rem;
}
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-lt);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 3.5rem 1.5rem;
  border-top: 1px solid rgba(201,169,110,0.2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer-logo span { color: var(--gold); }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 0.75rem;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── HOME: HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.55) 60%, rgba(201,169,110,0.15) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(13,27,42,0.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,169,110,0.25);
  z-index: 2;
}
.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat-item {
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ── HOME: SERVICES ──────────────────────────────────── */
.services {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(13,27,42,0.09);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,169,110,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.88rem; color: var(--text-lt); line-height: 1.7; }

/* ── HOME: FEATURED STRIP ────────────────────────────── */
.featured-strip { background: var(--navy); padding: 5rem 1.5rem; }
.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.featured-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.featured-text h2 em { font-style: italic; color: var(--gold-lt); }
.featured-text p {
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.featured-img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 6px;
  pointer-events: none;
}

/* ── ABOUT ───────────────────────────────────────────── */
.about-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
  text-align: center;
}
.about-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-body p {
  color: var(--text-lt);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.1rem;
}
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  text-align: left;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 6px;
  padding: 1.4rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-lt);
  line-height: 1.6;
}
.value-card strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.6rem;
}
.contact-info > p {
  color: var(--text-lt);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cd-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.cd-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.cd-value { font-size: 0.9rem; color: var(--text); line-height: 1.6; }

/* Form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.4rem;
}
.contact-form-wrap > p {
  font-size: 0.85rem;
  color: var(--text-lt);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--surface-raised);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
  background: var(--surface);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-lt); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--error-text);
  box-shadow: 0 0 0 3px rgba(185,28,28,0.08);
}
.field-error {
  font-size: 0.75rem;
  color: var(--error-text);
  margin-top: 0.2rem;
  display: none;
}
.form-group.has-error .field-error { display: block; }
.contact-method-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.method-option { flex: 1; min-width: 80px; }
.method-option input[type="radio"] { display: none; }
.method-option label {
  display: block;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all var(--trans);
  color: var(--text-lt);
  background: var(--surface-raised);
}
.method-option input[type="radio"]:checked + label {
  border-color: var(--gold);
  background: rgba(201,169,110,0.12);
  color: var(--heading);
}
.method-option label:hover { border-color: var(--gold-lt); }
.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem;
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--trans);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--navy-mid); }
.form-note {
  font-size: 0.75rem;
  color: var(--text-lt);
  text-align: center;
  margin-top: 0.85rem;
  line-height: 1.5;
}
.form-success {
  display: none;
  background: var(--success-bg);
  border: 1px solid var(--success-bd);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--success-text);
  margin-top: 1rem;
  line-height: 1.6;
}
.rate-banner {
  display: none;
  background: var(--rate-bg);
  border: 1px solid var(--rate-bd);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--rate-text);
  margin-bottom: 1rem;
  line-height: 1.5;
}
/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ── PORTFOLIO ───────────────────────────────────────── */
.portfolio-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.project-section {
  margin-bottom: 5rem;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 5rem;
}
.project-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

/* ── COMING SOON OVERLAY (homepage featured strip + portfolio) ── */
.coming-soon-media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
}
.coming-soon-img { filter: grayscale(45%) brightness(0.8); }
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.35) 0%, rgba(13,27,42,0.86) 78%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.coming-soon-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.42rem 1.1rem;
  border-radius: 999px;
}
.coming-soon-overlay h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin: 1rem 0 0.5rem;
}
.coming-soon-overlay p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  max-width: 380px;
  line-height: 1.7;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .featured-inner     { grid-template-columns: 1fr; gap: 2rem; }
  .contact-body       { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .footer-brand       { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .nav-links          { display: none; }
  .hamburger          { display: flex; }
  .theme-toggle       { width: 30px; height: 30px; }
  .form-row           { grid-template-columns: 1fr; }
  .footer-inner       { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .stat-num           { font-size: 1.4rem; }
  .coming-soon-media  { aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .stat-item          { padding: 0.5rem 0.3rem; }
  .stat-label         { font-size: 0.62rem; }
  .btn-group          { flex-direction: column; align-items: flex-start; }
  .btn-primary,
  .btn-outline        { width: 100%; text-align: center; }
}
