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

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

:root {
  --navy:      #0A1628;
  --navy-mid:  #0F2044;
  --navy-light:#1A3055;
  --gold:      #C9A84C;
  --gold-light:#E2C47A;
  --gold-pale: #F5EDD5;
  --cream:     #FAF8F4;
  --white:     #FFFFFF;
  --gray-100:  #F2F0EC;
  --gray-200:  #E0DDD6;
  --gray-400:  #9A9790;
  --gray-600:  #6B6860;
  --gray-800:  #3A3830;
  --text-body: #2A2820;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.3s ease;
}
.nav-logo { display: flex; flex-direction: column; gap: 1px; text-decoration: none; }
.nav-logo-name { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--white); letter-spacing: 0.04em; line-height: 1; }
.nav-logo-sub  { font-size: 9px; font-weight: 300; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

.nav-cta {
  background: transparent !important; border: 1px solid var(--gold) !important;
  color: var(--gold) !important; padding: 8px 20px !important;
  border-radius: 2px; font-size: 12px !important; letter-spacing: 0.1em !important;
  transition: background 0.2s, color 0.2s !important; cursor: pointer;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span { width: 24px; height: 1px; background: rgba(255,255,255,0.7); display: block; transition: all 0.3s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; min-height: 52vh;
  display: flex; align-items: flex-end;
  background: var(--navy); overflow: hidden;
  padding-top: 72px;
}
.page-hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 30s linear infinite;
}
@keyframes gridShift {
  0%   { transform: translate(0,0); }
  100% { transform: translate(80px,80px); }
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.6) 0%, rgba(10,22,40,0.0) 100%);
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: grayscale(30%);
}
.page-hero-inner {
  position: relative; z-index: 2;
  padding: 60px 5vw 72px;
  max-width: 1200px; margin: 0 auto; width: 100%;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

.ph-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 24px;
}
.ph-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.ph-breadcrumb a:hover { color: var(--gold); }
.ph-breadcrumb span { color: var(--gold); }

.ph-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.ph-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.ph-eyebrow-text { font-size: 11px; font-weight: 400; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; }

.ph-heading {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.01em; color: var(--white);
  max-width: 700px; margin-bottom: 20px;
}
.ph-heading em { font-style: italic; color: var(--gold-light); }

.ph-sub {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 520px; line-height: 1.8;
}

/* ── SHARED SECTION STYLES ── */
.section-label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-label-line { width: 32px; height: 1px; background: var(--gold); }
.section-label-text { font-size: 11px; font-weight: 400; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; }

.section-heading { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.15; color: var(--navy); margin-bottom: 20px; }
.section-heading em { font-style: italic; }
.section-desc { font-size: 17px; font-weight: 300; color: var(--gray-600); max-width: 560px; line-height: 1.8; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 14px 32px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 2px; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.7);
  padding: 14px 32px; font-size: 13px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--navy);
  padding: 13px 32px; font-size: 13px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--gold);
  cursor: pointer; border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.btn-navy {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: var(--gold);
  padding: 14px 32px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 2px; transition: background 0.2s, transform 0.15s;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ── PHOTO UTILITY ── */
.photo-full {
  width: 100%; height: 440px;
  object-fit: cover; display: block;
  filter: sepia(4%) contrast(1.05) brightness(0.97);
}
.photo-caption {
  font-size: 11px; font-weight: 300;
  color: var(--gray-400); letter-spacing: 0.1em;
  padding: 10px 5vw;
  border-bottom: 1px solid var(--gray-200);
  background: var(--cream);
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy); padding: 80px 5vw;
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
.cta-strip-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-strip-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; justify-content: center; }
.cta-strip-eyebrow-line { width: 28px; height: 1px; background: var(--gold); }
.cta-strip-eyebrow-text { font-size: 11px; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; }
.cta-strip-heading { font-family: var(--serif); font-size: clamp(32px,4vw,56px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.cta-strip-heading em { font-style: italic; color: var(--gold-light); }
.cta-strip-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 40px; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-strip-actions { display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT SECTION ── */
.contact-section { background: var(--navy); padding: 100px 5vw; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: 1200px; margin: 0 auto; }
.contact-section .section-heading { color: var(--white); margin-bottom: 16px; }
.contact-section .section-desc { color: rgba(255,255,255,0.5); margin-bottom: 48px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.cd-icon { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; }
.cd-icon svg { width: 16px; height: 16px; color: var(--gold); }
.cd-label { font-size: 11px; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px; }
.cd-value { font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 300; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; font-weight: 300; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.85);
  padding: 12px 16px; font-family: var(--sans); font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.2s; border-radius: 0; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(201,168,76,0.5); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; background: var(--gold); color: var(--navy); padding: 14px 32px; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; margin-top: 8px; transition: background 0.2s; }
.form-submit:hover { background: var(--gold-light); }

/* ── FOOTER ── */
footer { background: var(--navy-mid); border-top: 1px solid rgba(201,168,76,0.12); padding: 60px 5vw 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand-name { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--white); letter-spacing: 0.04em; margin-bottom: 4px; }
.footer-brand-tag { font-size: 10px; font-weight: 300; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; }
.footer-brand-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.3); }
.footer-copy span { color: rgba(201,168,76,0.6); }

/* ── WHATSAPP ── */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 26px; height: 26px; color: white; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(10,22,40,0.98); padding: 24px 5vw; gap: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-toggle { display: flex; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .photo-full { height: 280px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
