@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,600;6..96,700;6..96,800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bone: #f4ede5;
  --shell: #efe3d6;
  --cherry: #3c0f17;
  --cherry-soft: #6f2332;
  --espresso: #1d1412;
  --ink: #1e1715;
  --ink-soft: rgba(30, 23, 21, 0.72);
  --paper: rgba(255, 250, 244, 0.74);
  --paper-strong: rgba(255, 248, 241, 0.92);
  --line: rgba(38, 23, 20, 0.12);
  --gold: #bf8a4c;
  --copper: #c87053;
  --fog: rgba(255, 255, 255, 0.38);
  --shadow: 0 30px 80px rgba(49, 25, 22, 0.14);
  --shadow-strong: 0 40px 120px rgba(29, 13, 17, 0.24);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(191, 138, 76, 0.18), transparent 24%),
    radial-gradient(circle at 100% 6%, rgba(111, 35, 50, 0.2), transparent 20%),
    linear-gradient(180deg, #f6efe8 0%, #efe1d2 36%, #f5ece3 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    linear-gradient(90deg, rgba(31, 19, 17, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(31, 19, 17, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 82%);
}

body::after {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.5), transparent 18%),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.3), transparent 16%);
  opacity: 0.9;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.ambient-glow {
  position: fixed;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(68px);
  opacity: 0.32;
  z-index: -1;
  animation: breathe 12s ease-in-out infinite;
}

.ambient-glow--left {
  left: -12vw;
  top: 8vh;
  background: rgba(200, 112, 83, 0.32);
}

.ambient-glow--right {
  right: -14vw;
  top: 18vh;
  background: rgba(111, 35, 50, 0.26);
  animation-delay: -4s;
}

.site-header,
.hero,
.statement-panel,
.step,
.safety-shell,
.gentlemen-panel,
.faq-list details,
.launch-shell,
.site-footer {
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: min(var(--max), calc(100vw - 32px));
  margin: 20px auto 0;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 999px;
  background: rgba(251, 244, 236, 0.72);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.brand-mark,
h1,
h2,
h3,
.statement-quote {
  font-family: "Bodoni Moda", Georgia, serif;
}

.brand-mark {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--copper), var(--gold));
  transition: transform 0.24s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

main {
  display: grid;
  gap: 24px;
  padding-bottom: 44px;
}

.hero,
.section,
.site-footer {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 116px);
  margin-top: 14px;
  padding: 44px;
  border-radius: 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  background:
    linear-gradient(125deg, rgba(255, 249, 244, 0.9), rgba(249, 238, 229, 0.54)),
    radial-gradient(circle at 12% 0%, rgba(191, 138, 76, 0.24), transparent 22%),
    radial-gradient(circle at 100% 8%, rgba(111, 35, 50, 0.2), transparent 20%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "DOODZ";
  position: absolute;
  right: -36px;
  bottom: -30px;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(4.8rem, 15vw, 12rem);
  line-height: 0.88;
  letter-spacing: 0.08em;
  color: rgba(60, 15, 23, 0.06);
  pointer-events: none;
}

.hero-copy,
.hero-poster,
.section-heading,
.statement-grid,
.steps,
.gentlemen-grid,
.launch-shell {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cherry-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(60, 15, 23, 0.08);
  border: 1px solid rgba(60, 15, 23, 0.12);
  color: var(--cherry);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 22px 0 18px;
  max-width: 9ch;
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 56ch;
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-actions,
.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

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

.button--solid {
  color: #fff8f3;
  background: linear-gradient(135deg, var(--cherry), var(--copper));
  box-shadow: 0 24px 48px rgba(111, 35, 50, 0.24);
}

.button--ghost {
  color: var(--ink);
  border-color: rgba(38, 23, 20, 0.14);
  background: rgba(255, 255, 255, 0.28);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(38, 23, 20, 0.1);
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.hero-poster {
  display: grid;
}

.poster-shell {
  height: 100%;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(165deg, rgba(43, 16, 22, 0.96), rgba(102, 35, 48, 0.86)),
    radial-gradient(circle at 0% 0%, rgba(191, 138, 76, 0.18), transparent 26%);
  color: #fff4ed;
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 24px;
  overflow: hidden;
  position: relative;
}

.poster-shell::after {
  content: "";
  position: absolute;
  inset: auto -14% -26% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.poster-intro,
.poster-rail {
  position: relative;
  z-index: 1;
}

.poster-kicker {
  margin: 0 0 12px;
  color: rgba(255, 236, 223, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.poster-intro h2 {
  margin: 0 0 14px;
  max-width: 10ch;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.92;
}

.poster-intro p {
  margin: 0;
  max-width: 38ch;
  color: rgba(255, 236, 223, 0.78);
}

.poster-rail {
  display: grid;
  gap: 14px;
}

.poster-note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 238, 230, 0.16);
  transition: transform 0.24s ease;
}

.poster-note:hover {
  transform: translateX(6px);
}

.poster-note span {
  color: rgba(255, 236, 223, 0.5);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.poster-note strong {
  grid-column: 2;
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.poster-note p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 236, 223, 0.72);
  line-height: 1.5;
}

.section {
  position: relative;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.statement-copy h2,
.safety-copy h2,
.gentlemen-copy h2,
.launch-shell h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.94;
}

.section--occasions,
.section--how,
.section--gentlemen,
.section--faq {
  padding: 24px 0 0;
}

.occasion-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.occasion-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(38, 23, 20, 0.14);
}

.occasion-index,
.step-number {
  color: rgba(111, 35, 50, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.occasion-item h3,
.step h3,
.gentlemen-panel h3,
.safety-points h3 {
  margin: 0 0 8px;
  font-size: 1.44rem;
  line-height: 1.02;
}

.occasion-item p,
.statement-copy p,
.statement-list,
.step p,
.safety-copy p,
.safety-points p,
.gentlemen-copy p,
.gentlemen-panel li,
.faq-list p,
.launch-shell p,
.site-footer p {
  margin: 0;
  color: var(--ink-soft);
}

.section--statement {
  padding: 12px 0 0;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 22px;
  align-items: stretch;
}

.statement-copy {
  padding: 34px 0;
}

.statement-copy p {
  max-width: 58ch;
  margin-top: 18px;
}

.statement-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, rgba(255, 249, 243, 0.78), rgba(247, 236, 225, 0.56));
}

.statement-quote {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
}

.statement-list {
  padding-left: 18px;
  line-height: 1.9;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 244, 0.62);
}

.step-number {
  display: inline-flex;
  margin-bottom: 18px;
}

.section--safety {
  padding-top: 10px;
}

.safety-shell {
  padding: 34px;
  border-radius: 40px;
  background:
    linear-gradient(155deg, rgba(31, 16, 18, 0.98), rgba(89, 31, 44, 0.9)),
    radial-gradient(circle at 0% 0%, rgba(191, 138, 76, 0.18), transparent 26%);
  color: #fff7f1;
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 26px;
}

.safety-copy .eyebrow,
.safety-points h3 {
  color: #f6d0b8;
}

.safety-copy p,
.safety-points p {
  color: rgba(255, 238, 230, 0.76);
}

.safety-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.safety-points article {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 238, 230, 0.16);
}

.gentlemen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  gap: 22px;
  align-items: stretch;
}

.gentlemen-copy {
  padding: 16px 0;
}

.gentlemen-copy p {
  margin-top: 18px;
  max-width: 52ch;
}

.gentlemen-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 249, 243, 0.74);
}

.gentlemen-panel ul {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.9;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.64);
}

.faq-list summary {
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--cherry-soft);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding: 0 0 20px;
  max-width: 68ch;
}

.section--launch {
  padding-top: 10px;
}

.launch-shell {
  padding: 34px;
  border-radius: 40px;
  background: linear-gradient(160deg, rgba(255, 249, 242, 0.84), rgba(248, 236, 225, 0.62));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.launch-shell p {
  max-width: 54ch;
  margin-top: 18px;
}

.site-footer {
  margin: 0 auto 30px;
  padding: 20px 24px;
  border-radius: 999px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  background: rgba(251, 244, 236, 0.72);
}

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

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

@keyframes breathe {
  0%,
  100% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.08) translate3d(0, 18px, 0);
  }
}

@media (max-width: 1120px) {
  .hero,
  .statement-grid,
  .safety-shell,
  .gentlemen-grid,
  .launch-shell {
    grid-template-columns: 1fr;
  }

  .occasion-list,
  .steps,
  .safety-points {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(calc(100vw - 20px), 100%);
  }

  .site-header {
    position: static;
    margin-top: 12px;
    padding: 18px;
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 12px 16px;
  }

  .hero {
    padding: 22px;
    border-radius: 30px;
  }

  .hero h1,
  .section-heading h2,
  .statement-copy h2,
  .safety-copy h2,
  .gentlemen-copy h2,
  .launch-shell h2,
  .poster-intro h2 {
    max-width: 100%;
  }

  .poster-shell,
  .safety-shell,
  .launch-shell,
  .gentlemen-panel,
  .step,
  .statement-panel {
    padding: 22px;
  }

  .site-footer {
    border-radius: 28px;
  }
}
