:root {
  --cream: #f7f1e8;
  --warm: #efe2cf;
  --paper: #fffaf2;
  --ink: #2f2b27;
  --muted: #766a5f;
  --charcoal: #555251;
  --terracotta: #c94728;
  --terracotta-dark: #9e331e;
  --line: rgba(47, 43, 39, 0.14);
  --shadow: 0 24px 70px rgba(47, 43, 39, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* Header matched to supplied reference image */
.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 270px;
  padding: 0 clamp(46px, 5vw, 96px) 0 clamp(64px, 8.9vw, 170px);
  background: #fffaf2;
  border-bottom: 1px solid rgba(47, 43, 39, 0.12);
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  line-height: 0;
}
.brand img {
  width: clamp(430px, 28vw, 535px);
  height: auto;
  background: transparent;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(26px, 2.15vw, 40px);
  margin-top: 4px;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav a { text-decoration: none; color: #5a5753; }
.nav a:hover { color: var(--terracotta); }
.nav-button {
  border: 1px solid rgba(47, 43, 39, 0.15);
  padding: 15px 25px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(47, 43, 39, 0.03);
}

.section-pad { padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  min-height: calc(100vh - 90px);
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 71, 40, 0.12), transparent 30%),
    linear-gradient(135deg, var(--paper) 0%, var(--cream) 58%, var(--warm) 100%);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 0.98; }
h1, h2 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; }
h1 { max-width: 830px; font-size: clamp(3.4rem, 8vw, 7.8rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.45rem, 5.2vw, 5.35rem); letter-spacing: -0.04em; }
h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; }
.lede, .section-intro p, .feature-copy p, .step p, .product-content p, .footer p {
  color: var(--muted);
  line-height: 1.72;
}
.hero-logo { width: min(420px, 82vw); height: auto; margin: 0 0 30px; background: transparent; filter: drop-shadow(0 10px 22px rgba(47, 43, 39, 0.10)); }
.lede { max-width: 640px; margin: 24px 0 0; font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.79rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(47, 43, 39, 0.13); }
.primary { color: #fff; background: var(--terracotta); }
.primary:hover { background: var(--terracotta-dark); }
.secondary { border: 1px solid var(--line); background: rgba(255,255,255,0.55); color: var(--ink); }
.light { background: #fff; color: var(--terracotta-dark); }
.frame {
  padding: clamp(12px, 2vw, 20px);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.hero-image img { border-radius: 24px; aspect-ratio: 1 / 1; object-fit: cover; }

.statement {
  padding: 34px 18px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.statement p { margin: 0 auto; max-width: 980px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.8rem, 3.8vw, 3.8rem); line-height: 1.05; }

.split { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.section-intro { max-width: 560px; }
.section-intro p { font-size: 1.06rem; margin: 24px 0 0; }
.center { margin: 0 auto 40px; text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.product-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 30px; box-shadow: 0 18px 46px rgba(47, 43, 39, 0.08); }
.product-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-content { padding: 28px; }
.kicker { margin: 0 0 8px !important; color: var(--terracotta) !important; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.product-content p { margin: 14px 0 18px; }
.product-content a { color: var(--terracotta-dark); font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 5px; }

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  background: var(--cream);
}
.feature-copy { max-width: 640px; }
.feature-copy p { font-size: 1.08rem; }
.check-list { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; gap: 14px; color: var(--ink); font-weight: 700; }
.check-list li { position: relative; padding-left: 30px; line-height: 1.45; }
.check-list li::before { content: "✦"; position: absolute; left: 0; color: var(--terracotta); }
.stacked-images { position: relative; min-height: 650px; }
.stacked-images img { position: absolute; width: 64%; border-radius: 30px; box-shadow: var(--shadow); object-fit: cover; background: #fff; }
.image-top { top: 0; right: 0; }
.image-bottom { left: 0; bottom: 0; }

.collection { background: var(--paper); }
.mini-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.mini-grid figure { margin: 0; overflow: hidden; border-radius: 30px; background: #fff; border: 1px solid var(--line); }
.mini-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.mini-grid figcaption { padding: 18px 20px 22px; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 700; font-size: 1.55rem; }

.process { background: linear-gradient(180deg, var(--cream), #fffaf2); }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.step { padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,0.66); }
.step span { display: inline-block; margin-bottom: 54px; color: var(--terracotta); font-weight: 900; letter-spacing: 0.18em; }
.step p { margin-bottom: 0; }

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(48px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background: var(--terracotta);
  color: #fff;
}
.cta .eyebrow { color: rgba(255,255,255,0.78); }
.cta h2 { max-width: 850px; color: #fff; }

.footer {
  min-height: 470px;
  padding: 50px 18px 60px;
  text-align: center;
  background: #302c28;
  color: var(--paper);
}
.footer img {
  width: clamp(430px, 28vw, 535px);
  margin: 0 auto 76px;
  background: transparent;
  opacity: 0.92;
}
.footer p {
  color: rgba(255,255,255,0.72);
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  font-weight: 700;
}
.footer a {
  color: #fff;
  font-weight: 900;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
}

@media (max-width: 980px) {
  .nav { display: none; }
  .site-header { justify-content: center; min-height: auto; padding: 24px 18px; }
  .hero, .split, .feature-band { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .product-grid, .mini-grid, .steps { grid-template-columns: 1fr; }
  .stacked-images { min-height: auto; display: grid; gap: 20px; }
  .stacked-images img { position: static; width: 100%; }
  .cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .brand img { width: min(320px, 88vw); }
  .footer img { width: min(330px, 88vw); margin-bottom: 36px; }
  .hero-logo { width: min(310px, 88vw); margin-bottom: 24px; }
  .section-pad { padding: 54px 16px; }
  .hero { padding-top: 34px; }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-actions .button, .cta .button { width: 100%; }
  .product-content, .step { padding: 24px; }
  .frame, .product-card, .mini-grid figure, .step { border-radius: 22px; }
}
