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

:root {
  --cream: #faf7f2;
  --paper: #f5f0e8;
  --pale: #efe8da;
  --warm-white: #fff9f4;
  --rose: #d4899a;
  --rose-light: #e8b4c0;
  --rose-pale: #f5dde3;
  --sage: #8aab8a;
  --sage-light: #b5cdb5;
  --sage-pale: #e0ece0;
  --peach: #e8b49a;
  --gold: #c4a068;
  --gold-light: #d9bb8e;
  --ink: #2c2520;
  --ink-soft: #4a3f38;
  --muted: rgba(44,37,32,0.62);
  --border: rgba(44,37,32,0.1);
  --border-soft: rgba(44,37,32,0.06);
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── GLASS NAV — subpages (cream variant) ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  height: 58px;
  background: rgba(250,247,242,0.72);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border-bottom: 1px solid rgba(212,137,154,0.14);
  box-shadow: 0 1px 20px rgba(44,37,32,0.05);
  transition: all 0.3s;
}

.nav-left  { display:flex; gap:24px; list-style:none; margin:0; padding:0; align-items:center; }
.nav-right { display:flex; gap:24px; list-style:none; justify-content:flex-end; margin:0; padding:0; align-items:center; }

.nav-left a, .nav-right a {
  color: var(--muted);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-left a:hover, .nav-right a:hover { color: var(--rose); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.nav-logo:hover { color: var(--rose); }

/* Mobile hamburger */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--muted); transition: all .3s;
}
.nav-mobile-menu {
  display: none; position: fixed; top: 58px; left: 0; right: 0;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 99; padding: 12px 24px 20px;
  flex-direction: column; gap: 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: var(--ink-soft); text-decoration: none; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 12px 0;
  border-bottom: 1px solid var(--border-soft); transition: color .2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--rose); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 80px;
  background: var(--paper);
}
.footer-logo { font-family:'Playfair Display',serif; font-size:18px; font-style:italic; color:var(--rose); letter-spacing:0.05em; }
.footer-links { display:flex; gap:24px; list-style:none; flex-wrap:wrap; }
.footer-links a { color:var(--muted); text-decoration:none; font-size:10px; letter-spacing:0.1em; text-transform:uppercase; transition:color .3s; }
.footer-links a:hover { color:var(--rose); }
.footer-copy { color:var(--muted); font-size:11px; letter-spacing:0.08em; }

/* BUTTONS */
.btn {
  display:inline-block; padding:13px 32px;
  border:1px solid var(--rose); color:var(--rose);
  text-decoration:none; font-size:11px; letter-spacing:0.2em; text-transform:uppercase;
  font-family:'Jost',sans-serif; font-weight:400; transition:all .3s;
  background:transparent; cursor:pointer; border-radius:0;
}
.btn:hover { background:var(--rose); color:white; }
.btn-solid { background:var(--rose); color:white; }
.btn-solid:hover { background:var(--rose-light); border-color:var(--rose-light); }
.btn-sage { border-color:var(--sage); color:var(--sage); }
.btn-sage:hover { background:var(--sage); color:white; }

/* PAGE HEADER */
.page-header {
  padding: 120px 48px 56px; text-align:center; position:relative;
  overflow:hidden; background:var(--warm-white);
}
.page-header::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 20% 50%,rgba(212,137,154,0.07) 0%,transparent 50%),
              radial-gradient(ellipse at 80% 50%,rgba(138,171,138,0.07) 0%,transparent 50%);
  pointer-events:none;
}
.page-header h1 {
  font-family:'Playfair Display',serif; font-size:clamp(38px,6vw,68px);
  font-weight:400; letter-spacing:0.02em; line-height:1.15; color:var(--ink); margin-bottom:12px;
}
.page-header .subtitle {
  font-size:10px; letter-spacing:0.26em; text-transform:uppercase;
  color:var(--rose); margin-bottom:16px; display:block;
}

.container { max-width:1200px; margin:0 auto; padding:0 48px; }

.section-title {
  font-family:'Playfair Display',serif; font-size:clamp(26px,4vw,46px);
  font-weight:400; letter-spacing:0.02em; color:var(--ink); margin-bottom:12px;
}
.section-label {
  font-size:10px; letter-spacing:0.28em; text-transform:uppercase;
  color:var(--rose); margin-bottom:14px; display:block;
}
.divider { width:48px; height:1px; background:var(--rose-light); margin:28px auto; opacity:0.7; }

.card {
  background:var(--white); border:1px solid var(--border); padding:40px;
  transition:border-color .3s, box-shadow .3s;
}
.card:hover { border-color:var(--rose-light); box-shadow:0 4px 32px rgba(212,137,154,0.1); }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 0 16px; grid-template-columns: auto 1fr auto !important; }
  .nav-left, .nav-right { display: none !important; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 20px; }
  footer { padding: 28px 20px; flex-direction:column; text-align:center; }
  .page-header { padding: 96px 20px 44px; }
}
