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

:root {
  --gold: #C9A227;
  --gold-light: #E8C84A;
  --gold-pale: #F5E9C0;
  --sage: #8FAF7A;
  --sage-light: #C6D9B8;
  --sage-pale: #EEF5E8;
  --cream: #FAF6EE;
  --blush: #E8CFCF;
  --dark: #2C2416;
  --mid: #5C4F38;
  --light-text: #8A7B64;
  --white: #FFFDF8;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; }

/* ── SCROLL PROGRESS ── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--sage)); z-index: 200; transition: width 0.1s; width: 0; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 1.2rem 5%;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(250,246,238,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  transition: all 0.4s ease;
}
nav.scrolled { padding: 0.8rem 5%; box-shadow: 0 4px 30px rgba(44,36,22,0.08); }
.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-logo-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--dark); letter-spacing: 0.02em; line-height: 1.1; }
.nav-logo-text span { display: block; font-size: 0.65rem; font-family: 'DM Sans', sans-serif; font-weight: 300; letter-spacing: 0.12em; color: var(--light-text); text-transform: uppercase; }
.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--mid); font-size: 0.88rem; font-weight: 400; letter-spacing: 0.03em; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--gold) !important; color: var(--dark) !important; padding: 0.6rem 1.4rem; border-radius: 40px; font-weight: 500 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 26px; height: 2px; background: var(--dark); transition: all 0.3s; border-radius: 2px; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 99; padding: 6rem 8% 3rem; flex-direction: column; gap: 1.8rem; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--dark); text-decoration: none; font-weight: 400; transition: color 0.3s; border-bottom: 1px solid rgba(201,162,39,0.1); padding-bottom: 1rem; }
.mobile-menu a:hover { color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 52vh; display: flex; align-items: center;
  padding: 10rem 8% 5rem;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--dark) 0%, #3D3020 100%);
}
.page-hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 65%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: -10%; left: -5%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143,175,122,0.08) 0%, transparent 65%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero-label { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.25); border-radius: 50px; padding: 0.4rem 1rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 1.2rem; }
.page-hero-title em { color: var(--gold); font-style: italic; }
.page-hero-sub { font-size: 1.05rem; color: rgba(250,246,238,0.65); font-weight: 300; line-height: 1.8; max-width: 560px; }
.page-hero-img { position: absolute; right: 0; top: 0; bottom: 0; width: 42%; object-fit: cover; opacity: 0.25; }

/* breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(250,246,238,0.45); font-size: 0.8rem; text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(250,246,238,0.25); font-size: 0.8rem; }
.breadcrumb .current { color: var(--gold); font-size: 0.8rem; }

/* ── SECTIONS ── */
section { padding: 6rem 8%; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.2; color: var(--dark); margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 1rem; line-height: 1.8; color: var(--mid); max-width: 560px; font-weight: 300; }

/* ── BUTTONS ── */
.btn-primary { background: var(--dark); color: var(--white); padding: 1rem 2.2rem; border-radius: 50px; text-decoration: none; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.03em; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,39,0.35); }
.btn-gold { background: var(--gold); color: var(--dark); padding: 1rem 2.2rem; border-radius: 50px; text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,39,0.4); }
.btn-outline { background: transparent; color: var(--dark); padding: 1rem 2.2rem; border-radius: 50px; text-decoration: none; font-size: 0.95rem; font-weight: 500; border: 1.5px solid rgba(44,36,22,0.25); letter-spacing: 0.03em; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); padding: 1rem 2.2rem; border-radius: 50px; text-decoration: none; font-size: 0.95rem; font-weight: 500; border: 1.5px solid rgba(250,246,238,0.3); transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── BACK TO HOME ── */
.back-home { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-size: 0.85rem; font-weight: 500; text-decoration: none; letter-spacing: 0.05em; transition: gap 0.3s; }
.back-home:hover { gap: 0.8rem; }

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.anim-1 { animation: fadeSlideUp 0.8s ease 0.1s both; }
.anim-2 { animation: fadeSlideUp 0.8s ease 0.25s both; }
.anim-3 { animation: fadeSlideUp 0.8s ease 0.4s both; }
.anim-4 { animation: fadeSlideUp 0.8s ease 0.55s both; }
.anim-5 { animation: fadeSlideUp 0.8s ease 0.7s both; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--dark) 0%, #3D3020 100%);
  padding: 5rem 8%; text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,162,39,0.1) 0%, transparent 70%); }
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 400; color: var(--white); margin-bottom: 1rem; }
.cta-strip h2 em { color: var(--gold); font-style: italic; }
.cta-strip p { color: rgba(250,246,238,0.6); font-size: 1rem; font-weight: 300; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.8; }
.cta-strip-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #1A1409; border-top: 1px solid rgba(201,162,39,0.12); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem; padding: 4rem 8% 3rem; }
.footer-logo-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--white); font-weight: 400; }
.footer-tagline { font-size: 0.72rem; color: rgba(250,246,238,0.4); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.2rem; }
.footer-desc { font-size: 0.88rem; color: rgba(250,246,238,0.45); line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; max-width: 400px; }
.footer-contact-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.footer-pill { background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.15); border-radius: 30px; padding: 0.4rem 0.9rem; font-size: 0.78rem; color: rgba(250,246,238,0.6); text-decoration: none; transition: all 0.3s; }
.footer-pill:hover { background: rgba(201,162,39,0.15); color: var(--gold); }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col-title { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-links-grid a { display: block; font-size: 0.85rem; color: rgba(250,246,238,0.4); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.3s; }
.footer-links-grid a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(201,162,39,0.08); padding: 1.5rem 8%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
.footer-copy { font-size: 0.78rem; color: rgba(250,246,238,0.3); }
.footer-legal { font-size: 0.72rem; color: rgba(250,246,238,0.2); }

/* ── FORM STYLES ── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; font-weight: 500; color: var(--mid); letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid rgba(44,36,22,0.12); border-radius: 12px;
  padding: 0.85rem 1rem; font-size: 0.92rem;
  font-family: 'DM Sans', sans-serif; color: var(--dark);
  background: var(--white); transition: border-color 0.3s, box-shadow 0.3s;
  outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.12); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-section-title { font-size: 0.72rem; font-weight: 500; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin: 1.5rem 0 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.form-section-title::before, .form-section-title::after { content: ''; flex: 1; height: 1px; background: var(--gold-pale); }
.checkbox-item { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; margin-bottom: 0.4rem; }
.checkbox-item input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--gold); cursor: pointer; flex-shrink: 0; }
.checkbox-item label { font-size: 0.86rem; color: var(--mid); cursor: pointer; font-weight: 300; }
.form-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; }
.consent-box { background: var(--cream); border-radius: 12px; padding: 1rem 1.2rem; font-size: 0.82rem; color: var(--mid); line-height: 1.65; margin-bottom: 1.5rem; border: 1px solid rgba(201,162,39,0.15); }
.success-msg { display: none; text-align: center; padding: 3rem 2rem; background: var(--sage-pale); border-radius: 20px; border: 1px solid var(--sage); }
.success-msg.show { display: block; }
.success-msg h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--dark); margin: 1rem 0 0.5rem; }
.success-msg p { font-size: 0.95rem; color: var(--mid); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 6%; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .form-checkboxes { grid-template-columns: 1fr; }
  .page-hero { padding: 8rem 6% 4rem; }
  .page-hero-img { display: none; }
}
@media (max-width: 600px) {
  .footer-links-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-strip-btns { flex-direction: column; align-items: center; }
}
@keyframes shake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-6px)} 40%,80%{transform:translateX(6px)} }
