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

:root {
  --cream: #F5EDE3;
  --sand: #E8DDD2;
  --sand-light: #F0E8E0;
  --warm: #D2BEA6;
  --blush: #8a9a74;
  --blush-light: #a3b38e;
  --earth: #B09C8A;
  --earth-dark: #5C4A3D;
  --deep: #4A3C32;
  --text: #5C4A3D;
  --text-light: #8A7B6F;
  --text-faint: #B09C8A;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(250,246,241,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .symbol { position: relative; width: 32px; height: 18px; }
.nav-logo .symbol svg { width: 32px; height: 18px; }
.nav-logo .wordmark {
  font-family: var(--sans);
  font-size: 16px; font-weight: 200;
  letter-spacing: 0.14em;
  color: var(--earth-dark);
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-light);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a:hover { color: var(--earth-dark); }
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--blush);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0 24px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 25% 20%, rgba(210,190,166,0.5), transparent 60%),
    radial-gradient(ellipse 60% 55% at 75% 70%, rgba(196,144,122,0.25), transparent 55%),
    radial-gradient(ellipse 80% 40% at 50% 90%, rgba(232,221,210,0.6), transparent 50%),
    var(--cream);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-symbol { width: 64px; height: 64px; position: relative; margin-bottom: 28px; }
.hero-symbol .outer { width: 64px; height: 64px; border: 1.2px solid rgba(92,74,61,0.45); border-radius: 50%; position: absolute; }
.hero-symbol .inner { width: 26px; height: 26px; background: #C4907A; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero h1 {
  font-family: var(--sans);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 200;
  letter-spacing: 0.2em;
  color: transparent;
  line-height: 1;
  margin-top: 2px;
  background: linear-gradient(145deg, rgba(180,165,145,0.6), rgba(120,105,85,0.4));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.3), -0.5px -0.5px 1px rgba(0,0,0,0.08);
}
.hero-symbol svg {
  filter: drop-shadow(0.5px 0.5px 0.5px rgba(255,255,255,0.35)) drop-shadow(-0.3px -0.3px 0.5px rgba(0,0,0,0.06));
}
.hero .tagline {
  font-family: var(--serif);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  margin-top: 28px;
  max-width: 500px;
}
.hero .scroll-hint {
  position: absolute;
  bottom: 40px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}
.hero .scroll-hint .line { width: 1px; height: 40px; background: var(--warm); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============ SECTIONS ============ */
section { padding: 100px 24px; }
.section-label {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  color: var(--earth-dark);
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.15;
  max-width: 600px;
  margin: 0 auto 20px;
}
.section-body {
  font-size: 16px; font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

/* ============ INTRO ============ */
.intro { background: var(--cream); }
.intro-divider {
  width: 50px; height: 1px;
  background: var(--warm);
  margin: 32px auto 0;
}

/* ============ OFFERINGS GRID ============ */
.offerings { background: var(--cream); }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1060px;
  margin: 48px auto 0;
}
.offer-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.3,1), box-shadow 0.4s ease;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.offer-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(196,144,122,0.12);
  border: 1px solid rgba(196,144,122,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--blush);
}
.offer-icon svg { width: 22px; height: 22px; }
.offer-card h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 400;
  color: var(--earth-dark);
  margin-bottom: 10px;
}
.offer-card p {
  font-size: 14px; font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
}

/* ============ THEME EVENINGS ============ */
.themes { background: transparent; padding-top: 40px; }
.themes-row {
  display: flex; gap: 16px;
  max-width: 960px;
  margin: 48px auto 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.themes-row::-webkit-scrollbar { display: none; }
.theme-card {
  flex: 0 0 220px;
  padding: 28px 22px;
  border-radius: 18px;
  background: var(--sand-light);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
  transition: transform 0.3s ease;
}
.theme-card:hover { transform: translateY(-3px); }
.theme-card .emoji { font-size: 28px; margin-bottom: 14px; display: block; }
.theme-card h4 {
  font-family: var(--serif);
  font-size: 18px; font-weight: 400;
  color: var(--earth-dark);
  margin-bottom: 8px;
}
.theme-card p {
  font-size: 13px; font-weight: 300;
  line-height: 1.6;
  color: var(--text-light);
}

/* ============ PULL QUOTE ============ */
.pull-quote {
  background: var(--deep);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 30%, rgba(196,144,122,0.15), transparent 55%),
    radial-gradient(ellipse 60% 50% at 70% 70%, rgba(210,190,166,0.1), transparent 50%);
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--sand-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.4;
  position: relative;
}
.pull-quote .attr {
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--earth);
  margin-top: 24px;
  display: block;
}

/* ============ CONTACT ============ */
.contact { background: var(--cream); }
.contact-wrap {
  max-width: 480px;
  margin: 48px auto 0;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.form-group input, .form-group textarea {
  font-family: var(--sans);
  font-size: 15px; font-weight: 300;
  color: var(--text);
  background: var(--sand-light);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--blush-light);
  box-shadow: 0 0 0 3px rgba(196,144,122,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-faint);
  font-weight: 300;
}
.submit-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--earth);
  color: #fff;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 8px;
  align-self: center;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,60,50,0.2);
}
.contact-note {
  text-align: center;
  font-size: 14px; font-weight: 300;
  color: var(--text-light);
  margin-top: 28px;
  font-style: italic;
}
.contact-ig {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blush);
  font-size: 14px; font-weight: 400;
  margin-top: 8px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--deep);
  padding: 48px 24px;
  text-align: center;
  color: var(--earth);
}
.footer-logo {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 16px;
}
.footer-logo .symbol { position: relative; width: 22px; height: 22px; }
.footer-logo .symbol .outer { width: 22px; height: 22px; border: 0.8px solid rgba(240,232,224,0.4); border-radius: 50%; position: absolute; }
.footer-logo .symbol .inner { width: 9px; height: 9px; background: #DEB8A5; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.footer-logo .wordmark {
  font-family: var(--sans);
  font-size: 17px; font-weight: 200;
  letter-spacing: 0.1em;
  color: var(--sand-light);
}
footer .copy { font-size: 12px; color: var(--earth); font-weight: 300; }

/* ============ FADE IN ANIMATION ============ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2,0.8,0.3,1), transform 0.8s cubic-bezier(0.2,0.8,0.3,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 12px; }
  section { padding: 70px 20px; }
  .offerings-grid { grid-template-columns: 1fr; }
}
</style>
