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

/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
  --white:       #FFFFFF;
  --ivory:       #FAFCF8;
  --cream:       #F3F7F0;
  --mist:        #E2EBE0;
  --sage-pale:   #D4E4CE;
  --sage-light:  #A8C4A0;
  --sage:        #7FA878;
  --sage-mid:    #5A8A54;
  --sage-deep:   #3E6038;
  --gold-pale:   #F7F0DE;
  --gold-light:  #E8D5A3;
  --gold:        #C9A84C;
  --gold-dark:   #9E7B2F;
  --text-dark:   #2E3D2A;
  --text-mid:    #4A6044;
  --text-light:  #7A9070;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Raleway', sans-serif;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:  0.4s var(--ease);
  --shadow:      0 4px 30px rgba(62,96,56,0.09);
  --shadow-lg:   0 12px 60px rgba(62,96,56,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  font-weight: 300;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(250,252,248,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 60px;
  box-shadow: 0 1px 0 var(--mist);
}
.nav-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  transition: color var(--transition);
}
nav.scrolled .nav-logo-main { color: var(--text-dark); }
.nav-logo-sub {
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-light);
  transition: color var(--transition);
}
nav.scrolled .nav-logo-sub { color: var(--gold); }
.nav-links { display: flex; gap: 34px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.67rem; font-weight: 500;
  letter-spacing: 0.17em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative; padding-bottom: 3px;
}
nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }
nav.scrolled .nav-links a.active { color: var(--gold-dark); }
nav.scrolled .nav-links a:hover { color: var(--text-dark); }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
nav.scrolled .nav-hamburger span { background: var(--text-dark); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ivory); z-index: 199;
  padding: 90px 32px 40px;
  flex-direction: column; gap: 0;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300; font-style: italic;
  color: var(--text-dark); padding: 16px 0;
  border-bottom: 1px solid var(--mist);
  letter-spacing: 0.03em; transition: color var(--transition);
}
.nav-drawer a:hover { color: var(--sage-mid); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block; padding: 13px 34px;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: var(--transition); border-radius: 1px;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.65);
}
.btn-outline-light:hover { background: var(--white); color: var(--text-dark); border-color: var(--white); }
.btn-outline-sage {
  background: transparent; color: var(--sage-mid);
  border: 1px solid var(--sage-light);
}
.btn-outline-sage:hover { background: var(--sage-mid); color: var(--white); border-color: var(--sage-mid); }

/* ============================================
   LABELS & DIVIDERS
   ============================================ */
.section-label {
  font-size: 0.60rem; font-weight: 600;
  letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.divider { display: flex; align-items: center; gap: 14px; justify-content: center; margin: 18px 0; }
.divider-line { width: 48px; height: 1px; background: var(--gold-light); }
.divider-diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ============================================
   PAGE HEADER — compact inner pages
   ============================================ */
.page-header {
  padding: 100px 60px 44px;
  background: var(--white);
  border-bottom: 1px solid var(--mist);
}
.page-header-inner { max-width: 1100px; margin: 0 auto; }
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 300; color: var(--text-dark);
  letter-spacing: 0.03em; line-height: 1.15;
}
.page-header-title em { font-style: italic; color: var(--sage-mid); }
.page-header-sub {
  font-size: 0.76rem; color: var(--text-light);
  font-weight: 300; letter-spacing: 0.10em; margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--sage-deep); color: var(--mist); padding: 64px 60px 36px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(201,168,76,0.22);
  margin-bottom: 30px;
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 1.75rem;
  font-weight: 400; color: var(--white);
  letter-spacing: 0.05em; margin-bottom: 4px;
}
.footer-brand-tagline {
  font-size: 0.57rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-desc { font-size: 0.79rem; line-height: 1.82; color: rgba(212,228,206,0.72); max-width: 270px; }
.footer-col h4 {
  font-size: 0.59rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.79rem; color: rgba(212,228,206,0.68); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.79rem; color: rgba(212,228,206,0.68); line-height: 1.9; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,0.32);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: rgba(212,228,206,0.68); font-size: 0.68rem; font-weight: 500;
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.67rem; color: rgba(212,228,206,0.38);
  letter-spacing: 0.07em; max-width: 1100px; margin: 0 auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-up   { animation: fadeUp 0.85s var(--ease) both; }
.fade-up-1 { animation: fadeUp 0.85s 0.15s var(--ease) both; }
.fade-up-2 { animation: fadeUp 0.85s 0.30s var(--ease) both; }
.fade-up-3 { animation: fadeUp 0.85s 0.45s var(--ease) both; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 860px) {
  nav { padding: 20px 20px; }
  nav.scrolled { padding: 13px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  footer { padding: 48px 24px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .page-header { padding: 80px 24px 32px; }
}
@media (max-width: 480px) {
  .btn { padding: 12px 26px; font-size: 0.61rem; }
}
