/* ============================================
   Arches & Aesthetics — site.css
   Luxury Brand Refresh — Ivory · Gold · Charcoal
   ============================================ */

@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=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Luxury Palette */
  --ivory:        #F8F3EA;
  --cream:        #FFFDF8;
  --beige:        #E8DDCC;
  --gold:         #B9965A;
  --gold-hover:   #A88545;
  --gold-light:   #D4B483;
  --gold-tint:    rgba(185, 150, 90, 0.10);
  --gold-border:  rgba(185, 150, 90, 0.28);
  --charcoal:     #1F1F1D;
  --charcoal-soft:#3A3834;
  --taupe:        #7A6F62;
  --line:         rgba(185, 150, 90, 0.20);
  --line-soft:    rgba(58, 56, 52, 0.10);

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', -apple-system, system-ui, sans-serif;

  /* Radii */
  --radius:       12px;
  --radius-lg:    20px;

  /* Shadows — very soft, warm-tinted */
  --shadow-sm:    0 1px 3px rgba(31,31,29,.06), 0 2px 8px rgba(31,31,29,.04);
  --shadow-md:    0 4px 20px rgba(31,31,29,.08), 0 1px 4px rgba(31,31,29,.04);
  --shadow-lg:    0 12px 40px rgba(31,31,29,.10), 0 3px 10px rgba(31,31,29,.05);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  font-family: var(--font-sans);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── Layout ── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }
@media (max-width: 720px) { section { padding: 72px 0; } }

/* ── Section headings ── */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.kicker::before, .kicker::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 18px;
  text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-head p { color: var(--taupe); font-size: 16px; line-height: 1.7; text-wrap: pretty; }

/* ── Page hero (subpages) ── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--ivory);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
}
.page-hero .crumb {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 20px;
}
.page-hero .crumb a { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin-bottom: 20px;
  text-wrap: balance;
}
.page-hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-hero p { color: var(--taupe); font-size: 17px; max-width: 580px; margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; transition: transform .3s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--gold);
  color: var(--ivory);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(185,150,90,.28);
}

.btn-ghost {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--ivory);
  transform: translateY(-1px);
}

.btn-ghost-gold {
  background: transparent;
  border-color: var(--gold-border);
  color: var(--gold);
}
.btn-ghost-gold:hover {
  background: var(--gold);
  color: var(--ivory);
  border-color: var(--gold);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(248, 243, 234, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s;
}
.nav.scrolled {
  padding: 13px 0;
  background: rgba(248, 243, 234, 0.96);
  border-bottom-color: var(--gold-border);
  box-shadow: 0 2px 20px rgba(31,31,29,.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Logo in nav */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}
/* Mobile mark version */
.nav-logo-mark { display: none; }

.nav-menu {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-menu a {
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  border-radius: 999px;
  transition: color .2s;
  position: relative;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a.active { color: var(--gold); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 4px;
  width: 14px; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-size: 12px;
  color: var(--taupe);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .03em;
  transition: color .2s;
}
.nav-phone svg { width: 13px; height: 13px; color: var(--gold); }
.nav-phone:hover { color: var(--gold); }

.nav-book {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.nav-book:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(185,150,90,.28);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  color: var(--charcoal);
  cursor: pointer;
  border-radius: 8px;
  transition: background .2s;
}
.nav-toggle:hover { background: var(--gold-tint); }

@media (max-width: 980px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-logo img { height: 46px; }
}
@media (max-width: 480px) {
  .nav-logo img.nav-logo-full { display: none; }
  .nav-logo-mark { display: flex; align-items: center; }
  .nav-logo-mark img { height: 40px; width: auto; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ivory);
  display: none;
  flex-direction: column;
  padding: 90px 32px 36px;
  border-right: 1px solid var(--gold-border);
}
.drawer.open { display: flex; }
.drawer a {
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: -0.01em;
  transition: color .2s;
}
.drawer a:hover { color: var(--gold); }
.drawer .drawer-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.footer-tag {
  color: rgba(255, 253, 248, .6);
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(185,150,90,.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255,253,248,.7);
  transition: background .2s, border-color .2s, color .2s;
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ivory);
}
.footer-col h5 {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col a,
.footer-col div {
  display: block;
  padding: 5px 0;
  color: rgba(255,253,248,.65);
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(185,150,90,.15);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,253,248,.4);
  letter-spacing: .04em;
}
.footer-bottom a { color: rgba(255,253,248,.55); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Gold divider line ── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 16px;
}
.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.gold-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
