:root {
  --green-deep: #1C2B24;
  --green-mid: #2E3F34;
  --green-light: #3D5142;
  --gold: #C9A870;
  --gold-muted: #B8986A;
  --ivory: #F7F3ED;
  --ivory-warm: #EEE9E0;
  --text-dark: #1A1A1A;
  --text-muted: #6B6358;
  --white: #FFFFFF;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--text-dark);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

.hero-left {
  padding: 80px 72px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
  position: relative;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--green-deep);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-aside {
  border-top: 1px solid var(--ivory-warm);
  padding-top: 32px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-right {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px;
}

.hero-art-strip {
  display: flex;
  gap: 0;
  height: 280px;
}

.art-block {
  width: 90px;
  height: 100%;
}

.art-block--deep { background: var(--green-mid); }
.art-block--ivory { background: var(--ivory-warm); opacity: 0.3; }
.art-block--gold { background: var(--gold); }

.hero-text-art {
  display: flex;
  gap: 16px;
}

.letter-art {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--ivory);
  opacity: 0.15;
  line-height: 1;
  letter-spacing: 0.1em;
}

.hero-since {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ── WHAT WE DO ── */
.what-we-do {
  background: var(--ivory-warm);
  padding: 120px 80px;
}

.section-header {
  margin-bottom: 64px;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.deliverable {
  padding: 48px 40px;
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,0.06);
}

.deliverable-icon {
  display: block;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.deliverable h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.deliverable p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── OCCASIONS ── */
.occasions {
  background: var(--green-deep);
  padding: 120px 80px;
}

.occasions-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.occasions-intro .section-label {
  color: var(--gold);
  opacity: 0.8;
}

.occasions-title {
  color: var(--ivory);
  margin-bottom: 24px;
}

.occasions-body {
  color: rgba(247,243,237,0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.occasion-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.occasion-card {
  background: var(--green-mid);
  padding: 40px 36px;
  position: relative;
  transition: background 0.3s ease;
}

.occasion-card:hover {
  background: var(--green-light);
}

.occasion-card--accent {
  background: rgba(201,168,112,0.12);
}

.occasion-card--accent:hover {
  background: rgba(201,168,112,0.18);
}

.occasion-emoji {
  display: block;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.occasion-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 12px;
}

.occasion-card p {
  font-size: 0.875rem;
  color: rgba(247,243,237,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.occasion-price {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--ivory);
  padding: 120px 80px;
}

.philosophy-inner {
  max-width: 900px;
}

.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 40px;
}

.philosophy-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 64px;
}

.philosophy-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 48px;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  background: var(--green-deep);
  padding: 140px 80px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 32px;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.closing-body {
  font-size: 1rem;
  color: rgba(247,243,237,0.55);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-rule {
  width: 1px;
  height: 60px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0 auto 48px;
}

.closing-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  background: var(--ivory-warm);
  padding: 48px 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    height: 340px;
  }
  .occasions-inner {
    grid-template-columns: 1fr;
  }
  .philosophy-pillars {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero-left { padding: 60px 32px 60px 32px; }
  .what-we-do { padding: 80px 32px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .occasions { padding: 80px 32px; }
  .occasion-cards { grid-template-columns: 1fr; }
  .philosophy { padding: 80px 32px; }
  .closing { padding: 100px 32px; }
  .footer { padding: 40px 32px; }
  .footer-inner { flex-direction: column; gap: 12px; }
  .hero-art-strip { height: 200px; }
  .art-block { width: 65px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 48px; }
  .closing-headline { font-size: 48px; }
  .letter-art { font-size: 56px; }
}