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

:root {
  --cream:  #F6EFE4;
  --black:  #1A1A1A;
  --amber:  #C07B35;
  --teal:   #4AACAA;
  --pink:   #E5A0A8;
  --taupe:  #9B8B7E;
  --text:   #2C2C2C;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-text {
  flex: 1 1 0;
  min-width: 0;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--taupe);
  margin-bottom: 28px;
}

.hero-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  border-left: 3px solid var(--amber);
  padding-left: 18px;
  margin-bottom: 36px;
}

.hero-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.cta-btn {
  display: inline-block;
  background: var(--black);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover {
  background: var(--amber);
  transform: translateY(-1px);
}

.hero-cover {
  flex: 0 0 280px;
  width: 280px;
}

.hero-cover img {
  width: 100%;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

/* ── Quote ───────────────────────────────────────────── */
.quote-section {
  background: var(--black);
  color: var(--cream);
  padding: 72px 48px;
  text-align: center;
}

.quote-section blockquote {
  max-width: 660px;
  margin: 0 auto;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  line-height: 1.65;
}

.quote-section cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ── About / blurb ───────────────────────────────────── */
.blurb-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 48px;
  text-align: center;
}

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

.blurb-section p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.4em;
}

.blurb-section p:last-child {
  margin-bottom: 0;
}

/* ── Bottom CTA ──────────────────────────────────────── */
.cta-section {
  background: var(--amber);
  padding: 80px 48px;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.15;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(246,239,228,0.8);
  margin-bottom: 36px;
}

.cta-btn-light {
  display: inline-block;
  background: var(--cream);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.cta-btn-light:hover {
  background: var(--black);
  color: var(--cream);
  transform: translateY(-1px);
}

/* ── Footer ──────────────────────────────────────────── */
footer {
  padding: 32px 48px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--taupe);
  border-top: 1px solid rgba(155,139,126,0.2);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 700px) {
  .hero {
    flex-direction: column-reverse;
    padding: 48px 24px;
    gap: 40px;
    text-align: center;
  }

  .hero-cover {
    flex: 0 0 auto;
    width: min(260px, 70vw);
  }

  .quote-section { padding: 56px 24px; }
  .blurb-section { padding: 56px 24px; }
  .cta-section   { padding: 64px 24px; }
  footer         { padding: 28px 24px; }
}
