:root {
  --cream: #F5EFE6;
  --charcoal: #1A1A18;
  --teal: #2D7A6C;
  --coral: #C4503D;
  --gold: #D4920A;
  --sage: #6B8F71;
  --rust: #8B4513;
  --warm-grey: #8A8279;
  --light-warm: #EDE8DF;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Commissioner', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 80px 60px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at top right, rgba(212,146,10,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey);
  font-family: 'Commissioner', sans-serif;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero__headline {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 72, 'wght' 700;
  font-size: clamp(48px, 5.5vw, 88px);
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 28px;
  max-width: 14ch;
}

.hero__sub {
  font-size: 18px;
  color: var(--warm-grey);
  max-width: 44ch;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 40ch;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(26,26,24,0.15);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--coral);
  color: #fff;
  font-family: 'Commissioner', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-bottom: 20px;
}

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

.cta-btn:active {
  transform: translateY(0);
}

/* ── PRODUCT SHOT ── */
.hero__product-shot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
}

.hero__product-shot img {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(26,26,24,0.14), 0 8px 24px rgba(26,26,24,0.08);
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--charcoal);
  padding: 120px 80px;
}

.manifesto__inner { max-width: 860px; }

.manifesto__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.4);
  margin-bottom: 32px;
  font-weight: 600;
}

.manifesto__quote {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 36, 'wght' 300;
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 36px;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}

.manifesto__body {
  font-size: 16px;
  color: rgba(245,239,230,0.6);
  line-height: 1.8;
  max-width: 60ch;
}

/* ── GALLERY ── */
.gallery {
  background: var(--cream);
  padding: 120px 80px;
}

.gallery__header {
  margin-bottom: 72px;
  max-width: 600px;
}

.gallery__header h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 48, 'wght' 600;
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 20px;
}

.gallery__sub {
  font-size: 16px;
  color: var(--warm-grey);
  font-weight: 300;
  line-height: 1.7;
  max-width: 44ch;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.gallery__card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(26,26,24,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,26,24,0.14);
}

.gallery__card--hero {
  grid-row: 1;
}

.gallery__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0ece6;
}

.gallery__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery__card:hover .gallery__img-wrap img {
  transform: scale(1.04);
}

.gallery__card-label {
  padding: 20px 24px;
  border-top: 1px solid rgba(26,26,24,0.07);
}

.gallery__card-name {
  display: block;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 18, 'wght' 600;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.gallery__card-desc {
  display: block;
  font-size: 13px;
  color: var(--warm-grey);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ── HOW ── */
.how {
  padding: 120px 80px;
  background: var(--cream);
}

.how__header { margin-bottom: 72px; }

.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 16px;
  font-weight: 600;
}

.how h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 48, 'wght' 600;
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--charcoal);
  max-width: 20ch;
  line-height: 1.15;
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26,26,24,0.12);
}

.how__card {
  padding: 48px 40px 48px 0;
  border-right: 1px solid rgba(26,26,24,0.12);
}
.how__card:last-child { border-right: none; }
.how__card:nth-child(2) { padding-left: 40px; }
.how__card:nth-child(3) { padding-left: 40px; }

.how__num {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 36, 'wght' 200;
  font-size: 72px;
  color: rgba(26,26,24,0.08);
  line-height: 1;
  margin-bottom: 20px;
}

.how__card h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 18, 'wght' 600;
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.how__card p {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.75;
  font-weight: 300;
}

/* ── IMPACT ── */
.impact {
  background: var(--light-warm);
  padding: 120px 80px;
}

.impact__inner { max-width: 900px; }

.impact h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 48, 'wght' 600;
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--charcoal);
  margin-bottom: 64px;
  max-width: 20ch;
}

.impact__stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(26,26,24,0.1);
}

.impact__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(26,26,24,0.1);
}

.impact__icon {
  color: var(--teal);
  margin-top: 4px;
}

.impact__item h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 18, 'wght' 600;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.impact__item p {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.7;
  font-weight: 300;
}

/* ── CLOSING ── */
.closing {
  background: var(--cream);
  padding: 120px 80px;
}

.closing__inner { max-width: 860px; }

.closing h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 72, 'wght' 700;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing > .closing__inner > p {
  font-size: 18px;
  color: var(--warm-grey);
  max-width: 52ch;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 56px;
}

.closing__designs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.design-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.design-card__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.design-card--teal  { background: #2D7A6C; color: #fff; }
.design-card--coral { background: #C4503D; color: #fff; }
.design-card--rust  { background: #8B4513; color: #fff; }
.design-card--gold  { background: #D4920A; color: #fff; }
.design-card--sage  { background: #6B8F71; color: #fff; }

.closing__price {
  font-size: 14px;
  color: var(--warm-grey);
  font-weight: 400;
}

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

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}

.footer__logo {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 24, 'wght' 700;
  font-size: 28px;
  color: var(--cream);
  display: block;
  margin-bottom: 14px;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(245,239,230,0.45);
  line-height: 1.7;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(245,239,230,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--cream); }

.footer__small {
  grid-column: 1 / -1;
  font-size: 12px;
  color: rgba(245,239,230,0.25);
  padding-top: 40px;
  border-top: 1px solid rgba(245,239,230,0.08);
  margin-top: 40px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 40px 60px;
    min-height: auto;
  }

  .hero__canvas-art { display: none; }

  .manifesto, .how, .impact, .closing, .footer {
    padding: 80px 40px;
  }

  .how__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .how__card {
    border-right: none;
    border-bottom: 1px solid rgba(26,26,24,0.12);
    padding: 40px 0;
  }

  .how__card:nth-child(2), .how__card:nth-child(3) { padding-left: 0; }

  .footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero, .manifesto, .how, .impact, .closing, .footer {
    padding: 60px 24px;
  }

  .hero__headline { font-size: 40px; }
  .manifesto__quote { font-size: 20px; }
  .how__num { font-size: 56px; }
}