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

:root {
  --cream:       #F9F3EC;
  --cream-dark:  #EDE4D8;
  --cream-deep:  #E2D5C4;
  --plum:        #5C3E48;
  --plum-light:  #9B7B85;
  --plum-pale:   #D4B8BE;
  --dark:        #302026;
  --sage:        #9EBE9C;
  --sage-light:  #C8DEC7;
  --rose:        #D4A8A0;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(48,32,38,.08);
  --shadow-lg: 0 12px 48px rgba(48,32,38,.14);

  --max-w: 1100px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(249,243,236,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  display: flex; align-items: center;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--plum);
  letter-spacing: .02em;
}

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

.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color .2s;
}

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

.nav-cta {
  background: var(--plum);
  color: var(--cream) !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-size: 12px !important;
  letter-spacing: .14em !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--dark) !important; }

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-menu-btn span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--dark);
  transition: .3s;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: var(--plum-pale);
  padding: 56px 32px 32px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--plum-pale);
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--plum-pale);
  transition: color .2s;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(212,184,190,.5);
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .2s;
  border-radius: 2px;
  text-decoration: none;
}

.btn-primary {
  background: var(--plum);
  color: var(--cream);
}
.btn-primary:hover { background: var(--dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
}
.btn-outline:hover { background: var(--plum); color: var(--cream); }

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--cream-deep);
}
.btn-ghost:hover { border-color: var(--plum); color: var(--plum); }

/* ── PAGE WRAPPER ────────────────────────────────────────────────────────── */
.page-wrap {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── SECTIONS ────────────────────────────────────────────────────────────── */
.section {
  padding: 96px 32px;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--plum-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--plum-light);
  max-width: 600px;
}

/* ── DIVIDER ─────────────────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1.5px;
  background: var(--plum-pale);
  margin: 24px 0;
}

/* ── LOADING STATE ───────────────────────────────────────────────────────── */
.btn.loading {
  opacity: .7;
  pointer-events: none;
}
.btn.loading::after {
  content: '';
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    padding: 24px 32px;
    gap: 20px;
  }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 24px; }
}
