:root {
  --bg: #f4ecdf;
  --bg-deep: #d8c2a5;
  --card: rgba(253, 248, 240, 0.8);
  --card-strong: #f9f1e5;
  --text: #2f241c;
  --muted: #6f5e52;
  --accent: #b85c38;
  --accent-deep: #74361d;
  --moss: #5f7151;
  --moss-deep: #43503a;
  --line: rgba(47, 36, 28, 0.08);
  --shadow: 0 24px 60px rgba(76, 46, 24, 0.15);
  --shadow-soft: 0 16px 32px rgba(76, 46, 24, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Avenir Next", sans-serif;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent 30%),
    radial-gradient(circle at top left, rgba(184, 92, 56, 0.15), transparent 28%),
    radial-gradient(circle at right 15%, rgba(95, 113, 81, 0.18), transparent 24%),
    linear-gradient(180deg, #f7efe3 0%, var(--bg) 55%, #efe1cd 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.hero {
  position: relative;
  padding: 0.8rem 0 3.5rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 36, 28, 0.14), transparent);
}

.topbar,
.hero-grid,
.story-layout,
.split-section,
.faq-grid,
.product-grid,
.footer-card {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.top-note {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 1rem;
}

.top-note p {
  display: inline-flex;
  margin: 0;
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(47, 36, 28, 0.1);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.55);
  color: var(--accent-deep);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0 2rem;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  max-width: 17ch;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  opacity: 0.5;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.split-card h2,
.footer-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3.6rem, 8vw, 6.5rem);
  max-width: 9ch;
  text-wrap: balance;
}

.hero-text,
.product-card p,
.faq-card p,
.story-panel p,
.split-card p,
.footer-card p,
.check-item p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.eyebrow,
.display-label,
.product-tag,
.mini-label,
.spec {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow {
  color: var(--accent-deep);
  margin-bottom: 0.75rem;
}

.hero-pill-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.15rem 0 1.2rem;
}

.hero-pill {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid rgba(47, 36, 28, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--moss-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  box-shadow: var(--shadow-soft);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--text);
  color: #fff8f0;
}

.button-secondary {
  border: 1px solid rgba(47, 36, 28, 0.16);
  background: rgba(255, 255, 255, 0.35);
}

.hero-highlights {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 35rem;
}

.hero-highlights li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  color: var(--muted);
}

.hero-highlights li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.35rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #e0a56c);
  box-shadow: 0 0 0 6px rgba(184, 92, 56, 0.1);
}

.hero-signoff {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.9rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid rgba(116, 54, 29, 0.26);
  background: linear-gradient(90deg, rgba(255, 249, 241, 0.72), rgba(255, 249, 241, 0.08));
  color: var(--muted);
}

.hero-signoff strong {
  color: var(--accent-deep);
  font-size: 0.98rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.profile-showcase {
  position: relative;
  width: min(100%, 460px);
  min-height: 540px;
  filter: drop-shadow(0 26px 40px rgba(76, 46, 24, 0.1));
}

.profile-photo {
  position: absolute;
  top: 1.5rem;
  left: 0.5rem;
  width: 240px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 32px;
  border: 8px solid rgba(255, 249, 241, 0.9);
  box-shadow: var(--shadow);
}

.profile-photo::selection {
  background: transparent;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.orb-sun {
  width: 280px;
  height: 280px;
  top: 2rem;
  right: 2rem;
  background: radial-gradient(circle, rgba(246, 184, 97, 0.8), rgba(246, 184, 97, 0.05) 72%);
}

.orb-moss {
  width: 220px;
  height: 220px;
  bottom: 1rem;
  left: 0;
  background: radial-gradient(circle, rgba(95, 113, 81, 0.45), rgba(95, 113, 81, 0.02) 70%);
}

.display-card {
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.88), rgba(247, 236, 221, 0.75));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.display-card-large {
  width: min(100%, 430px);
  padding: 2rem;
  right: 0;
  top: 9rem;
}

.display-card-large h2 {
  margin: 0.6rem 0 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.display-card-large p,
.display-card-small p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.display-card-small {
  width: 240px;
  padding: 1.25rem;
  left: 1.5rem;
  bottom: 2rem;
}

.display-card-small strong {
  display: block;
  margin: 0.4rem 0;
  font-size: 1.2rem;
}

.floating-tag {
  position: absolute;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(95, 113, 81, 0.9);
  color: #fff9f0;
  box-shadow: var(--shadow-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.floating-tag-one {
  top: 4.75rem;
  right: 2.5rem;
}

.floating-tag-two {
  bottom: 7.75rem;
  right: 0.5rem;
  background: rgba(184, 92, 56, 0.92);
}

.intro-band {
  padding-top: 0;
}

.intro-band p {
  margin: 0;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.8), rgba(255, 250, 242, 0.34)),
    rgba(255, 250, 242, 0.5);
  color: var(--accent-deep);
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.split-card h2,
.footer-card h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.tiktok-section {
  padding-top: 1rem;
}

.tiktok-layout,
.social-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.tiktok-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-card,
.faq-card,
.split-card,
.checklist-card,
.story-panel,
.footer-card,
.tiktok-bio-card,
.gallery-card,
.social-link-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
}

.product-card,
.faq-card,
.story-panel,
.social-link-card {
  padding: 1.5rem;
}

.tiktok-bio-card {
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(184, 92, 56, 0.09), transparent 34%),
    rgba(253, 248, 240, 0.82);
}

.tiktok-bio-card h3,
.social-link-card h3 {
  margin: 0.3rem 0 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
}

.tiktok-bio-card a {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.gallery-card {
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.gallery-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 9 / 15;
  object-fit: cover;
  display: block;
}

.gallery-copy {
  padding: 1rem 1rem 1.15rem;
}

.gallery-copy strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.gallery-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-card h3,
.faq-card h3 {
  margin: 0.7rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.product-card,
.faq-card,
.story-panel,
.social-link-card,
.gallery-card,
.tiktok-bio-card,
.split-card,
.checklist-card,
.footer-card {
  position: relative;
  overflow: hidden;
}

.product-card::before,
.faq-card::before,
.story-panel::before,
.social-link-card::before,
.gallery-card::before,
.tiktok-bio-card::before,
.split-card::before,
.checklist-card::before,
.footer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 38%);
  pointer-events: none;
}

.product-card a {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.product-card {
  background:
    radial-gradient(circle at top right, rgba(184, 92, 56, 0.08), transparent 28%),
    rgba(253, 248, 240, 0.8);
}

.product-card:hover,
.faq-card:hover,
.social-link-card:hover {
  transform: translateY(-4px);
}

.product-card,
.faq-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card-accent {
  margin-top: 1rem;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.split-section,
.story-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.split-card,
.checklist-card,
.footer-card {
  padding: 2rem;
}

.checklist-card {
  display: grid;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(95, 113, 81, 0.12), rgba(255, 255, 255, 0.65));
}

.check-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(47, 36, 28, 0.08);
}

.check-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.check-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.story-panel-primary {
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.9), rgba(247, 236, 221, 0.82));
}

.story-panel-accent {
  background: linear-gradient(145deg, rgba(116, 54, 29, 0.92), rgba(72, 54, 40, 0.92));
  color: #fff5eb;
}

.story-panel-accent ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  line-height: 1.8;
}

.story-panel-accent .mini-label {
  color: rgba(255, 245, 235, 0.72);
}

.footer {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.social-link-card {
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-link-card:hover {
  transform: translateY(-4px);
}

.footer-card {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(184, 92, 56, 0.14), transparent 45%),
    rgba(255, 248, 238, 0.82);
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 240ms;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero-grid,
  .split-section,
  .story-layout,
  .product-grid,
  .faq-grid,
  .tiktok-layout,
  .tiktok-gallery,
  .social-link-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-visual {
    min-height: 460px;
  }

  .profile-showcase {
    min-height: 500px;
  }

  .profile-photo {
    width: 220px;
  }

  .floating-tag {
    display: none;
  }

  .display-card-large {
    right: 0;
    top: 7rem;
  }

  .display-card-small {
    left: 0;
    bottom: 1rem;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: start;
    flex-direction: column;
  }

  .top-note p,
  .hero-signoff {
    width: 100%;
  }

  .nav-links {
    gap: 0.8rem 1rem;
  }

  .section,
  .topbar,
  .hero-grid,
  .story-layout,
  .split-section,
  .faq-grid,
  .product-grid,
  .tiktok-layout,
  .tiktok-gallery,
  .social-link-grid,
  .footer-card {
    width: min(100% - 1.25rem, 1120px);
  }

  .hero {
    padding-top: 0.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .display-card-large,
  .display-card-small {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
  }

  .hero-visual {
    gap: 1rem;
    min-height: auto;
    padding-top: 1rem;
  }

  .profile-showcase {
    width: 100%;
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .profile-photo {
    position: relative;
    width: 180px;
    top: auto;
    left: auto;
    margin: 0 auto;
  }

  .orb-sun {
    width: 180px;
    height: 180px;
    right: 0;
    top: 0;
  }

  .orb-moss {
    width: 140px;
    height: 140px;
  }
}
