:root {
  --bg: #FFFCF5;
  --fg: #1A1A18;
  --fg-muted: #5C5A55;
  --accent: #C1440E;
  --accent-hover: #A3380B;
  --green: #1B3A2D;
  --green-light: #2A5040;
  --gold: #D4A843;
  --cream: #FFF8EE;
  --border: #E8E4DB;
  --shadow: 0 4px 32px rgba(27,58,45,0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1160px;
  --radius: 14px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,252,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  background: var(--green);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding: 0 8%;
  opacity: 0.12;
  pointer-events: none;
}
.pattern-row {
  display: flex;
  justify-content: space-between;
  font-size: 3.5rem;
  line-height: 1;
}
.pattern-row--offset {
  padding-left: 10%;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* SECTIONS */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 24px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.manifesto-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto-deco {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.deco-ring--1 { width: 260px; height: 260px; border-color: var(--green); opacity: 0.3; }
.deco-ring--2 { width: 190px; height: 190px; border-color: var(--accent); opacity: 0.25; }
.deco-ring--3 { width: 110px; height: 110px; background: var(--green); opacity: 0.15; }
.manifesto-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* HOLIDAY GRID */
.holidays {
  padding: 100px 24px;
  background: var(--bg);
}
.holidays-header {
  max-width: var(--max-w);
  margin: 0 auto 56px;
  text-align: center;
}
.holidays-header .section-sub {
  margin: 12px auto 0;
}
.holidays-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.holiday-card {
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
.holiday-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.holiday-emoji {
  font-size: 2.2rem;
  line-height: 1;
  display: block;
}
.holiday-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
}
.holiday-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.holiday-card--xmas { background: #E8F5E9; }
.holiday-card--val  { background: #FFF0F0; }
.holiday-card--easter { background: #F0FFF4; }
.holiday-card--mother { background: #FFF5F7; }
.holiday-card--fourth { background: #EEF2FF; }
.holiday-card--halloween { background: #FFF6EE; }
.holiday-card--thanks { background: #FFF9F0; }
.holiday-card--stpat { background: #F0FFF9; }
.holiday-card--spring { background: #F5F0FF; }
.holiday-card--summer { background: #F0FFFB; }
.holiday-card--baby { background: #FFF0F8; }
.holiday-card--newyear { background: #F0F8FF; }

/* HOW IT WORKS */
.how {
  padding: 100px 24px;
  background: var(--green);
}
.how-header {
  max-width: var(--max-w);
  margin: 0 auto 60px;
  text-align: center;
}
.how-header .section-title { color: #fff; }
.how-header .section-sub { color: rgba(255,255,255,0.65); margin: 12px auto 0; }
.how-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.step-body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.step-connector {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  padding-top: 50px;
}

/* QUALITY */
.quality {
  padding: 100px 24px;
  background: var(--cream);
}
.quality-visual {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.quality-swatch {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  flex-shrink: 0;
}
.quality-swatch--forest { background: var(--green); }
.quality-swatch--cream  { background: #FFFCF5; border: 1px solid var(--border); }
.quality-swatch--berry  { background: var(--accent); }
.quality-swatch--gold   { background: var(--gold); }
.quality-swatch--flannel {
  background: repeating-linear-gradient(
    45deg,
    #1B3A2D,
    #1B3A2D 6px,
    #2A5040 6px,
    #2A5040 12px
  );
}
.quality-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.quality-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.quality-icon {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.quality-point strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.quality-point p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* CLOSING */
.closing {
  padding: 120px 24px;
  background: var(--green);
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,168,67,0.35);
  padding: 10px 24px;
  border-radius: 100px;
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-col-title {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 0.875rem;
  color: var(--fg);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .holidays-grid { grid-template-columns: repeat(3, 1fr); }
  .how-steps { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-deco { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .holidays-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-points { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding-top: 100px; }
}