:root {
  --black: #111111;
  --ink: #25201e;
  --muted: #756861;
  --cream: #fff7ef;
  --pink: #f9d7d8;
  --peach: #f5b6a8;
  --rose: #c7767c;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 28px 70px rgba(17, 17, 17, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
}
img { width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.7; }

.top-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 247, 239, 0.94);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}

.brand span {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 34px;
  line-height: .9;
  letter-spacing: .04em;
}
.brand small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
  color: var(--rose);
}
.site-nav { display: flex; gap: 28px; align-items: center; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.site-nav a { position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: var(--rose); transition: .25s ease; }
.site-nav a:hover::after { width: 100%; }
.menu-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  align-items: stretch;
  min-height: 680px;
  border-bottom: 1px solid var(--line);
}
.hero-image img { height: 100%; min-height: 520px; }
.left-image { padding: 34px 0 34px 34px; }
.right-image { padding: 34px 34px 34px 0; }
.left-image img { border-radius: 999px 999px 0 0; }
.right-image img { border-radius: 0 0 999px 999px; }
.hero-copy {
  text-align: center;
  padding: clamp(60px, 9vw, 120px) 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.kicker { text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 700; color: var(--rose); margin: 0 0 18px; }
h1, h2, h3 { margin: 0; color: var(--ink); }
h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(74px, 10vw, 150px);
  line-height: .86;
  letter-spacing: .02em;
}
.hero-copy p:not(.kicker) { max-width: 520px; font-size: 18px; margin: 24px auto 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }
.button, button {
  border: 1px solid var(--black);
  padding: 14px 24px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
}
.button.dark, button { background: var(--black); color: var(--white); }
.button.light { background: var(--white); color: var(--black); }
.button:hover, button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.marquee {
  display: flex;
  gap: 36px;
  overflow: hidden;
  justify-content: center;
  padding: 18px 20px;
  background: var(--pink);
  color: var(--black);
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 12px;
}

.section { padding: 82px clamp(20px, 6vw, 86px) 32px; text-align: center; }
.intro h2, .split-copy h2, .bundle-section h2, .academy-card h2, .reviews h2, .contact h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 72px);
  line-height: .98;
}
.section-intro { max-width: 700px; margin: 20px auto 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 86px) 90px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px;
}
.product-image { background: #f2e7df; aspect-ratio: 1/1.1; overflow: hidden; }
.product-image img { height: 100%; transition: .4s ease; }
.product-card:hover img { transform: scale(1.05); }
.tag { color: var(--rose); font-size: 11px; text-transform: uppercase; font-weight: 700; letter-spacing: .14em; margin: 18px 0 8px; }
.product-card h3 { font-family: "Playfair Display", serif; font-size: 25px; }
.product-card p:not(.tag) { margin: 10px 0 16px; font-size: 14px; }
.price-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 14px; font-weight: 700; }
.price-row a { color: var(--rose); text-transform: uppercase; letter-spacing: .1em; font-size: 11px; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: 90px clamp(20px, 6vw, 86px);
  background: var(--white);
}
.split-copy p { max-width: 560px; }
.tick-list { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 12px; color: var(--ink); }
.tick-list li::before { content: "✦"; color: var(--rose); margin-right: 10px; }
.split-image img { height: 620px; border-radius: 220px 220px 0 0; }

.bundle-section { padding: 90px clamp(20px, 6vw, 86px); }
.bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.bundle-grid article { background: var(--pink); padding: 34px; border: 1px solid var(--line); min-height: 240px; }
.bundle-grid span { font-family: "Anton", sans-serif; font-size: 48px; color: var(--rose); }
.bundle-grid h3 { font-family: "Playfair Display", serif; font-size: 30px; margin-top: 20px; }

.academy { position: relative; min-height: 600px; display: grid; align-items: center; padding: 80px clamp(20px, 6vw, 86px); overflow: hidden; }
.academy > img { position: absolute; inset: 0; height: 100%; z-index: 0; filter: brightness(.72); }
.academy-card { position: relative; z-index: 1; max-width: 520px; background: rgba(17,17,17,.86); padding: clamp(28px, 5vw, 54px); color: var(--white); }
.academy-card h2, .academy-card p { color: var(--white); }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features article { background: var(--cream); padding: 34px clamp(20px, 5vw, 70px); text-align: center; }
.features strong { text-transform: uppercase; letter-spacing: .12em; font-size: 13px; }

.reviews { padding: 90px clamp(20px, 6vw, 86px); text-align: center; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; text-align: left; }
.review-grid article { background: var(--white); border: 1px solid var(--line); padding: 30px; }
.review-grid h3 { font-family: "Playfair Display", serif; font-size: 28px; }
.review-grid span { color: var(--rose); font-weight: 700; }

.contact { padding: 90px clamp(20px, 6vw, 86px); background: var(--pink); text-align: center; }
.contact > p:not(.kicker) { max-width: 720px; margin: 18px auto 30px; }
form { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, select, textarea { width: 100%; border: 1px solid var(--line); padding: 16px; font: inherit; background: var(--white); color: var(--ink); }
textarea { grid-column: 1 / -1; min-height: 140px; resize: vertical; }
form button { grid-column: 1 / -1; justify-self: center; }

.site-footer { display: flex; justify-content: space-between; gap: 28px; padding: 44px clamp(20px, 6vw, 86px); background: var(--black); color: var(--white); }
.site-footer p { color: rgba(255,255,255,.65); margin: 10px 0 0; }
.site-footer div:last-child { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }


.service-card .product-image { aspect-ratio: 1 / 1.18; }
.service-card .product-image img { filter: saturate(.95) contrast(.98); }
.service-card h3 { min-height: 60px; }

.studio-credit {
  flex-basis: 100%;
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 22px;
  padding-top: 18px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero, .split-section { grid-template-columns: 1fr; }
  .left-image, .right-image { display: none; }
  .hero { min-height: auto; }
  .product-grid, .bundle-grid, .review-grid, .features { grid-template-columns: 1fr 1fr; }
  .split-image img { height: 460px; }
}

@media (max-width: 720px) {
  .top-bar { font-size: 10px; letter-spacing: .08em; }
  .menu-toggle { display: inline-flex; flex-direction: column; gap: 6px; background: transparent; border: 0; padding: 8px; box-shadow: none; }
  .menu-toggle span { width: 28px; height: 2px; background: var(--black); display: block; }
  .site-nav { position: fixed; top: 78px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 14px; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  h1 { font-size: 72px; }
  .hero-copy { padding: 70px 20px; }
  .marquee { justify-content: flex-start; overflow-x: auto; }
  .product-grid, .bundle-grid, .review-grid, .features { grid-template-columns: 1fr; }
  form { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}
