:root {
  --bg: #F8F5F0;
  --fg: #1A1A18;
  --accent: #2D4A3E;
  --accent-warm: #C4785B;
  --muted: #6B6560;
  --border: rgba(26,26,24,0.12);
  --surface: rgba(45,74,62,0.06);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--fg);
}
.nav__tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
  overflow: hidden;
}
.hero__left {
  padding: 80px 64px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.hero__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__languages {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero__languages span {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
  font-weight: 500;
}
.hero__right {
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__glass {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__glass-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
}
.hero__glass-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(248,245,240,0.9);
  letter-spacing: 0.05em;
}
.hero__glass-sub {
  font-size: 12px;
  color: rgba(248,245,240,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(248,245,240,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring--1 { width: 260px; height: 260px; }
.ring--2 { width: 340px; height: 340px; }
.ring--3 { width: 420px; height: 420px; }

/* PHILOSOPHY */
.philosophy {
  padding: 100px 64px;
  background: var(--surface);
}
.philosophy__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.philosophy__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  line-height: 1.4;
  margin-bottom: 36px;
}
.philosophy__body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}

/* FEATURES */
.features {
  padding: 100px 64px;
}
.features__header {
  text-align: center;
  margin-bottom: 64px;
}
.features__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--fg);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}
.feature__icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.feature__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.feature__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* SEASONAL */
.seasonal {
  padding: 100px 64px;
  background: var(--accent);
  color: var(--bg);
}
.seasonal__inner {
  max-width: 860px;
  margin: 0 auto;
}
.seasonal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--bg);
  margin-bottom: 16px;
  line-height: 1.3;
}
.seasonal__sub {
  font-size: 15px;
  color: rgba(248,245,240,0.6);
  margin-bottom: 56px;
}
.seasonal__events {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.event__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
}
.event__items { display: flex; flex-direction: column; gap: 24px; }
.event__item strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 4px;
}
.event__item span {
  font-size: 13px;
  color: rgba(248,245,240,0.5);
  line-height: 1.5;
}
.event--tier3 .event__item strong { color: rgba(248,245,240,0.8); }
.event--tier3 .event__item span { color: rgba(248,245,240,0.4); }
.seasonal__note {
  font-size: 13px;
  color: rgba(248,245,240,0.4);
  border-top: 1px solid rgba(248,245,240,0.15);
  padding-top: 32px;
  margin-top: 8px;
}

/* CLOSING */
.closing {
  padding: 120px 64px;
  background: var(--bg);
}
.closing__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.closing__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.2;
}
.closing__sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--accent-warm);
  margin-bottom: 48px;
}
.closing__stripe {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing__body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.closing__body:last-of-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0;
}

/* FOOTER */
.footer {
  padding: 40px 64px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--fg);
}
.footer__tagline {
  font-size: 13px;
  color: var(--muted);
  margin-left: 16px;
}
.footer__brand { display: flex; align-items: baseline; gap: 16px; }
.footer__meta { font-size: 12px; color: var(--muted); }

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav__tagline { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 60px 24px 48px; }
  .hero__right { min-height: 320px; order: -1; }
  .hero__headline { font-size: 40px; }
  .features { padding: 64px 24px; }
  .features__grid { grid-template-columns: 1fr; gap: 36px; }
  .philosophy { padding: 64px 24px; }
  .seasonal { padding: 64px 24px; }
  .seasonal__events { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer__inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer__brand { flex-direction: column; gap: 4px; align-items: center; }
  .footer__meta { font-size: 11px; }
}