/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:  #152a45;
  --gold:  #b8956a;
  --gold2: #c9a97a;
  --teal:  #3a7a62;
  --white: #fafaf8;
  --off:   #f3f1ec;
  --mid:   #e0ddd6;
  --muted: #8a8880;
  --text:  #1a1a18;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── ANIMATIONS ── */
@keyframes fadeUp        { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn        { from{opacity:0} to{opacity:1} }
@keyframes scrollSlide   { 0%{left:-100%} 50%{left:0} 100%{left:100%} }
@keyframes typingBounce  { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }
@keyframes pulse         { 0%,100%{opacity:0.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.08)} }
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:300;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 64px;
  background:rgba(250,250,248,0.94);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid transparent;
  transition:border-color 0.4s, padding 0.35s;
}
nav.scrolled { border-bottom-color:var(--mid); padding:13px 64px; }
.nav-logo img { height:46px; width:auto; display:block; }
.nav-logo-fallback {
  display:none; flex-direction:column; line-height:1.1;
  font-family:var(--serif); font-size:19px; font-weight:400;
  letter-spacing:0.06em; color:var(--navy); text-decoration:none;
}
.nav-logo-fallback small { font-size:9px; letter-spacing:0.14em; color:var(--gold); font-family:var(--sans); font-weight:400; }
.nav-links { display:flex; gap:34px; list-style:none; }
.nav-links a {
  font-size:12px; font-weight:400; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--navy); text-decoration:none;
  transition:color 0.2s; position:relative;
}
.nav-links a::after { content:''; position:absolute; left:0; bottom:-3px; width:0; height:1px; background:var(--gold); transition:width 0.25s; }
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-btn {
  font-size:12px; font-weight:500; letter-spacing:0.06em;
  color:var(--white); background:var(--navy);
  padding:10px 24px; border-radius:100px; text-decoration:none;
  transition:background 0.25s, transform 0.2s;
}
.nav-btn:hover { background:var(--gold); transform:translateY(-1px); }

/* ── SECTION BASE ── */
section { padding:120px 64px; }
.s-label {
  font-size:11px; font-weight:500; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--gold);
  margin-bottom:20px; display:flex; align-items:center; gap:10px;
}
.s-label::before { content:''; width:24px; height:1px; background:var(--gold); }
.s-title { font-family:var(--serif); font-size:clamp(36px,4.2vw,60px); font-weight:300; line-height:1.1; color:var(--navy); margin-bottom:22px; }
.s-title em { font-style:italic; color:var(--gold); }
.s-desc { font-size:16px; font-weight:300; line-height:1.78; color:var(--muted); max-width:540px; }

/* ── BUTTONS ── */
.btn-primary { font-size:13.5px; font-weight:500; color:var(--white); background:var(--navy); padding:15px 38px; border-radius:100px; text-decoration:none; transition:background 0.25s, transform 0.2s; display:inline-block; }
.btn-primary:hover { background:var(--gold); transform:translateY(-1px); }
.btn-gold { font-size:13.5px; font-weight:500; color:var(--navy); background:var(--gold2); padding:14px 36px; border-radius:100px; text-decoration:none; transition:opacity 0.2s, transform 0.2s; display:inline-block; }
.btn-gold:hover { opacity:0.85; transform:translateY(-1px); }
.btn-outline-light { font-size:13.5px; font-weight:400; color:rgba(255,255,255,0.7); border:1px solid rgba(255,255,255,0.2); padding:13px 28px; border-radius:100px; text-decoration:none; transition:border-color 0.2s, color 0.2s; display:inline-block; }
.btn-outline-light:hover { border-color:var(--gold2); color:var(--gold2); }
.btn-ghost { font-size:13.5px; font-weight:400; color:var(--navy); text-decoration:none; display:inline-flex; align-items:center; gap:9px; transition:color 0.2s; }
.btn-ghost:hover { color:var(--gold); }
.btn-ghost svg { transition:transform 0.2s; }
.btn-ghost:hover svg { transform:translateX(5px); }

/* ── CONTACT FORM (shared) ── */
.contact-section { background:var(--navy); position:relative; overflow:hidden; }
.contact-bg { position:absolute; inset:0; pointer-events:none; background:radial-gradient(ellipse 55% 55% at 50% -10%, rgba(184,149,106,0.12) 0%, transparent 60%); }
.contact-inner { position:relative; display:grid; grid-template-columns:1fr 1fr; gap:100px; align-items:start; }
.contact-left .s-label { color:var(--gold2); }
.contact-left .s-label::before { background:var(--gold2); }
.contact-left .s-title { color:var(--white); }
.contact-left .s-title em { color:var(--gold2); }
.contact-left .s-desc { color:rgba(255,255,255,0.45); margin-bottom:52px; }
.c-details { display:flex; flex-direction:column; gap:26px; }
.c-item-label { font-size:10.5px; font-weight:500; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-bottom:4px; }
.c-item-val { font-size:15px; font-weight:300; color:rgba(255,255,255,0.8); }
.c-item-val a { color:inherit; text-decoration:none; transition:color 0.2s; }
.c-item-val a:hover { color:var(--gold2); }
.contact-form { display:flex; flex-direction:column; gap:18px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.fg { display:flex; flex-direction:column; gap:7px; }
.fg label { font-size:10.5px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.35); }
.fg input,.fg select,.fg textarea { font-family:var(--sans); font-size:14px; font-weight:300; color:var(--white); background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:10px; padding:13px 17px; outline:none; transition:border-color 0.2s,background 0.2s; -webkit-appearance:none; }
.fg select option { background:#152a45; }
.fg input::placeholder,.fg textarea::placeholder { color:rgba(255,255,255,0.2); }
.fg input:focus,.fg select:focus,.fg textarea:focus { border-color:var(--gold2); background:rgba(255,255,255,0.07); }
.fg textarea { resize:none; height:110px; }
.form-submit { font-family:var(--sans); font-size:14px; font-weight:500; color:var(--navy); background:var(--gold2); border:none; padding:15px 40px; border-radius:100px; cursor:pointer; align-self:flex-start; transition:opacity 0.2s,transform 0.2s; }
.form-submit:hover { opacity:0.85; transform:translateY(-1px); }

/* ── FOOTER ── */
footer { background:var(--navy); border-top:1px solid rgba(255,255,255,0.08); padding:44px 64px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.f-logo img { height:36px; width:auto; }
.f-logo-fallback { display:none; flex-direction:column; line-height:1.1; font-family:var(--serif); font-size:17px; font-weight:400; letter-spacing:0.06em; color:rgba(255,255,255,0.6); text-decoration:none; }
.f-logo-fallback small { font-size:9px; letter-spacing:0.14em; color:var(--gold2); font-family:var(--sans); }
.f-copy { font-size:12px; color:rgba(255,255,255,0.25); }
.f-links { display:flex; gap:28px; list-style:none; }
.f-links a { font-size:12px; color:rgba(255,255,255,0.35); text-decoration:none; transition:color 0.2s; }
.f-links a:hover { color:var(--gold2); }

/* ── RESPONSIVE ── */
@media (max-width:1000px) {
  nav { padding:16px 24px; } nav.scrolled { padding:12px 24px; } .nav-links{display:none;}
  section { padding:80px 24px; }
  .contact-inner { grid-template-columns:1fr; gap:56px; }
  .contact-section { padding:80px 24px; }
  .form-row { grid-template-columns:1fr; }
  footer { flex-direction:column; text-align:center; padding:32px 24px; gap:16px; }
  .f-links { flex-wrap:wrap; justify-content:center; }
}
