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

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

:root {
  --navy: #1a2538;
  --gold: #c9a96e;
  --gold-light: rgba(201,169,110,0.15);
  --cream: #f8f5f0;
  --warm: #f4f0ea;
  --muted: #d4c5a9;
  --text: #2a2a2a;
  --text-light: #666;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Josefin Sans', 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  touch-action: pan-y;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  touch-action: pan-y;
  width: 100%;
  max-width: 100vw;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 72px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.nav-name-text {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nav-name-text:hover { color: var(--cream); }
.nav-name-text:visited { color: var(--cream); }

.nav-name-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nav-ig {
  color: rgba(201,169,110,0.6);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-ig:hover { color: var(--gold); }
.nav-tagline {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(201,169,110,0.35);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--muted);
  transition: all 0.3s;
}

/* Mobile nav */
@media (max-width: 680px) {
  nav { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-bottom: 2px solid var(--gold);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 16px; }
  .nav-hamburger { display: flex; }
}

/* ── PAGE WRAPPER ── */
main { padding-top: 72px; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-ig {
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-ig:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.7rem;
  color: var(--muted);
  opacity: 0.6;
  letter-spacing: 0.08em;
}

/* ── SHARED COMPONENTS ── */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.btn-primary {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: #b8924e; }

.btn-outline {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(201,169,110,0.45);
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.section-pad { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }

@media (max-width: 680px) {
  .section-pad { padding: 60px 24px; }
  .section-title { font-size: 1.9rem; }
}

/* Mobile touch handling */
a, button { touch-action: manipulation; }
img { max-width: 100%; }
* { box-sizing: border-box; }
