:root {
  --bg: hsl(38 30% 97%);
  --fg: hsl(20 15% 12%);
  --muted: hsl(20 10% 42%);
  --muted-bg: hsl(38 20% 95%);
  --secondary: hsl(38 25% 94%);
  --border: hsl(30 15% 88%);
  --primary: hsl(334 82% 46%);
  --primary-dark: hsl(334 82% 40%);
  --white: #fff;
  --footer: #1c1014;
  --soft-card: #faf8f6;
  --rose-card: #fff5f8;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.08);
  --shadow-card: 0 18px 42px rgb(64 34 43 / 0.08);
  --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
}

.container {
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
}

.narrow {
  max-width: 900px;
}

.center {
  text-align: center;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 56px), 1160px);
  height: 66px;
  padding: 0 14px 0 24px;
  border: 1px solid rgb(222 211 204 / 0.42);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.64);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  box-shadow: 0 18px 45px rgb(28 16 20 / 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--fg);
  line-height: 1;
}

.nav-logo {
  display: block;
  width: 150px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand-wordmark {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  text-shadow: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  color: rgb(28 16 20 / 0.82);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--primary);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(222 211 204 / 0.62);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.56);
  font-size: 18px;
  box-shadow: 0 10px 22px rgb(28 16 20 / 0.08);
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.lang-switch:hover {
  transform: translateY(-1px);
  background: rgb(255 255 255 / 0.82);
}

.mobile-nav-cta,
.mobile-lang-switch,
.menu-toggle {
  display: none;
}

.menu-toggle {
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(222 211 204 / 0.72);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.72);
  cursor: pointer;
  gap: 4px;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: var(--fg);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.topbar.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cake-icon {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 31px;
  flex: 0 0 auto;
}

.cake-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 2px;
  width: 26px;
  height: 18px;
  background: linear-gradient(180deg, #ffe0a9, #f6c47b);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.cake-icon::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 8px 0 #f3bfd0;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease, color 160ms ease;
}

.primary-btn {
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 18px 35px rgb(199 18 107 / 0.2);
}

.primary-btn:hover {
  transform: scale(1.02);
  background: var(--primary-dark);
}

.primary-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
  transform: none;
}

.header-btn {
  display: inline-flex;
  min-height: 42px;
  padding-inline: 24px;
  font-size: 15px;
  white-space: nowrap;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 24px rgb(199 18 107 / 0.18);
}

.secondary-btn {
  min-height: 40px;
  padding: 0 28px;
  border: 1px solid rgb(28 16 20 / 0.2);
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  font-size: 14px;
  font-weight: 600;
}

.secondary-btn:hover {
  background: rgb(28 16 20 / 0.05);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.58), rgb(0 0 0 / 0.24) 50%, rgb(0 0 0 / 0.04)),
    linear-gradient(0deg, rgb(0 0 0 / 0.72), rgb(0 0 0 / 0.08) 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(100% - 48px, 680px);
  min-height: 100svh;
  padding: 150px 0 84px;
  margin-left: max(24px, calc((100vw - 1120px) / 2));
}

.hero h1 {
  max-width: 620px;
  font-size: 74px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.hero h1 span {
  display: block;
  font-style: italic;
}

.hero p:not(.quiet) {
  max-width: 490px;
  margin-top: 28px;
  color: rgb(255 255 255 / 0.88);
  font-size: 18px;
  line-height: 1.6;
}

.hero-btn {
  width: fit-content;
  min-height: 60px;
  margin-top: 36px;
  padding-inline: 36px;
  font-size: 17px;
}

.quiet {
  margin-top: 14px;
  color: rgb(255 255 255 / 0.45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.quiet.dark {
  margin-top: 0;
  color: rgb(117 104 111 / 0.7);
  letter-spacing: 0;
}

.intro-section,
.ways-section,
.wednesday-section,
.essentials-section,
.testimonials-section,
.bottom-cta,
.newsletter-section {
  background: var(--white);
}

.intro-section {
  padding: 96px 0;
}

.intro-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.pills span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg);
  font-size: 13px;
  font-weight: 600;
}

.ways-section,
.wednesday-section {
  padding: 96px 0 112px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ways-copy h2,
.wednesday-copy h2,
.feeling-section h2,
.section-title h2,
.quiz-heading h2,
.bottom-cta h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.ways-copy > p,
.wednesday-copy p,
.feeling-section p,
.section-title p,
.quiz-heading p,
.bottom-cta p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.ways-copy > p {
  margin-top: 20px;
  margin-bottom: 42px;
}

.way + .way {
  margin-top: 32px;
}

.way h3 {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 700;
}

.way p,
.simple-card p,
.essential p,
.testimonial span,
.accordion p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.photo-card {
  height: 480px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-photo img {
  object-position: center center;
}

.steps-section {
  padding: 96px 0;
  background: var(--secondary);
}

.section-title {
  margin-bottom: 48px;
}

.section-title p {
  margin-top: 12px;
}

.steps-grid,
.quick-grid,
.essentials-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card,
.simple-card,
.essential,
.testimonial {
  border: 1px solid rgb(222 211 204 / 0.65);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, var(--soft-card));
  box-shadow: var(--shadow-card);
}

.step-card {
  padding: 32px;
  text-align: left;
}

.step-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--primary);
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
}

.step-card h3,
.simple-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.step-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.small-cta {
  min-height: 44px;
  margin-top: 40px;
  padding-inline: 32px;
  font-size: 14px;
}

.feeling-section {
  padding: 112px 0;
  background: var(--footer);
  color: var(--white);
  text-align: center;
}

.overline {
  margin-bottom: 18px;
  color: rgb(255 255 255 / 0.36);
  font-size: 13px;
  font-weight: 500;
}

.overline.pink {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.feeling-section h2 {
  max-width: 770px;
  margin: 0 auto 28px;
}

.feeling-section p:not(.overline) {
  max-width: 670px;
  margin-inline: auto;
  color: rgb(255 255 255 / 0.58);
}

.feeling-section .exists {
  margin-top: 28px;
  color: rgb(255 255 255 / 0.3);
  font-style: italic;
}

.outline-dark {
  min-height: 44px;
  margin-top: 38px;
  padding-inline: 32px;
  font-size: 14px;
}

.wednesday-copy h2 span {
  display: block;
  color: var(--primary);
  font-style: italic;
}

.wednesday-copy p {
  margin-top: 18px;
}

.wednesday-copy .secondary-btn {
  margin-top: 30px;
}

.quick-faq-section {
  padding: 80px 0;
  background: rgb(247 239 232 / 0.55);
}

.quick-faq-section h2,
.essentials-section h2,
.testimonials-section h2,
.accordion-section h2 {
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.simple-card {
  padding: 24px;
  background: linear-gradient(145deg, #fff, #fff7f9);
}

.simple-card h3 {
  font-size: 18px;
}

.essentials-section {
  padding: 80px 0;
}

.essentials-grid {
  text-align: left;
}

.essential {
  padding: 24px;
  background: linear-gradient(145deg, #fffaf5, #fff3f7);
}

.essential h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quiz-section {
  padding: 104px 0;
  background: var(--soft-card);
}

.quiz-container {
  max-width: 720px;
}

.quiz-heading {
  margin-bottom: 40px;
  text-align: center;
}

.quiz-heading h2 {
  margin-bottom: 12px;
}

.quiz-heading p:not(.overline) {
  max-width: 520px;
  margin: 0 auto 12px;
  font-size: 14px;
}

.quiz-card {
  padding: 44px;
  border: 1px solid rgb(222 211 204 / 0.55);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.progress-wrap {
  margin-bottom: 40px;
}

.progress-copy {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.progress-bar {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(222 211 204 / 0.65);
}

.progress-bar span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  transition: width 260ms ease;
}

.quiz-step {
  display: none;
  padding: 0;
  border: 0;
}

.quiz-step.active {
  display: block;
  animation: slide-in 240ms ease both;
}

legend,
.quiz-result h3 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.05;
}

label,
.label-like {
  display: block;
  margin-bottom: 10px;
  color: var(--fg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgb(222 211 204 / 0.75);
  border-radius: 12px;
  background: var(--soft-card);
  color: var(--fg);
  font-size: 14px;
  outline: 0;
}

input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgb(199 18 107 / 0.08);
}

#first-name {
  margin-bottom: 24px;
}

.step-note {
  margin: -12px 0 24px;
  color: var(--muted);
  font-size: 12px;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.choice-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.choice-list {
  display: grid;
  gap: 10px;
}

.interest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice,
.interest {
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgb(222 211 204 / 0.75);
  border-radius: 12px;
  background: var(--soft-card);
  color: var(--fg);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  transition: border 160ms ease, background 160ms ease, color 160ms ease;
}

.interest {
  min-height: auto;
  padding: 8px 16px;
  border-radius: 999px;
}

.choice.selected,
.interest.selected {
  border-color: var(--primary);
  background: rgb(199 18 107 / 0.05);
  color: var(--primary);
}

.interest.selected {
  background: var(--primary);
  color: var(--white);
}

.interest:disabled {
  cursor: not-allowed;
  color: rgb(117 104 111 / 0.4);
}

.check-choice,
.rich-choice {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-right: 46px;
}

.check-choice::after,
.rich-choice::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 999px;
}

.check-choice.selected::after,
.rich-choice.selected::after {
  border-color: var(--primary);
  background: radial-gradient(circle at center, var(--primary) 0 45%, transparent 48%);
}

.rich-choice {
  min-height: 72px;
}

.rich-choice span,
.rich-choice small {
  display: block;
}

.rich-choice small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.quiz-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.back-btn {
  height: 48px;
  padding-inline: 22px;
  border-radius: 12px;
}

.next-btn {
  flex: 1;
  min-height: 48px;
  border-radius: 12px;
  font-size: 14px;
}

.quiz-result {
  display: none;
  text-align: center;
  animation: pop-in 320ms ease both;
}

.quiz-result.active {
  display: block;
}

.result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgb(199 18 107 / 0.1);
}

.result-logo {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.quiz-result h3 {
  margin-bottom: 12px;
}

.quiz-result > p:not(.overline) {
  max-width: 390px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.email-box {
  margin-top: 28px;
}

.email-box p {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
}

.email-box div {
  display: flex;
  gap: 8px;
}

.square-btn {
  min-height: 48px;
  padding-inline: 20px;
  border-radius: 12px;
  white-space: nowrap;
  font-size: 14px;
}

.email-box small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.success-message {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 28px auto 0;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgb(199 18 107 / 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.success-message.active {
  display: inline-flex;
}

.testimonials-section {
  padding: 96px 0;
}

.testimonial {
  padding: 28px;
  border-color: rgb(199 18 107 / 0.14);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.96), rgb(255 245 248 / 0.94)),
    var(--rose-card);
  text-align: left;
}

.testimonial p {
  margin-bottom: 20px;
  color: var(--fg);
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial h3 {
  margin-bottom: 2px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
}

.accordion-section {
  padding: 80px 0;
  background: rgb(247 239 232 / 0.45);
}

.faq-container {
  max-width: 720px;
}

.accordion {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid rgb(222 211 204 / 0.55);
  border-radius: 12px;
  background: var(--white);
}

summary {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 20px 52px 20px 24px;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 24px 20px;
}

.philosophy-section {
  padding: 104px 0;
  background:
    radial-gradient(circle at 18% 12%, rgb(199 18 107 / 0.11), transparent 26%),
    linear-gradient(180deg, #fff, var(--soft-card));
}

.philosophy-hero {
  padding: 136px 0 92px;
  background: var(--bg);
}

.philosophy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
}

.philosophy-hero h1 {
  max-width: 620px;
  font-size: 78px;
  font-weight: 700;
  line-height: 0.92;
}

.philosophy-hero h1 span {
  display: block;
  background: linear-gradient(90deg, #ff6b2b, #ff70c8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.philosophy-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 999px 999px 34px 34px;
  box-shadow: var(--shadow-xl);
}

.philosophy-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.philosophy-panel {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 56px;
  border: 1px solid rgb(199 18 107 / 0.14);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.94), rgb(255 245 248 / 0.82)),
    var(--white);
  box-shadow: 0 28px 80px rgb(64 34 43 / 0.12);
}

.philosophy-panel h1,
.philosophy-panel h2 {
  max-width: 420px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.philosophy-page-section {
  padding-top: 104px;
}

.philosophy-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.philosophy-copy p + p {
  margin-top: 20px;
}

.philosophy-copy .signature {
  margin-top: 30px;
  color: var(--primary);
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.belief-section,
.values-section {
  padding: 104px 0;
  background: var(--white);
}

.belief-grid,
.dark-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
}

.belief-copy h2,
.dark-grid h2 {
  margin-bottom: 24px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.belief-copy p:not(.overline),
.dark-grid p:not(.pill-label) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.belief-copy p + p,
.dark-grid p + p {
  margin-top: 18px;
}

.belief-image {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
}

.belief-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.dark-philosophy {
  padding: 112px 0;
  background: #111;
  color: var(--white);
}

.dark-grid p:not(.pill-label) {
  color: rgb(255 255 255 / 0.78);
}

.dark-grid img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 999px 999px 24px 24px;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 28px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd8be, #ffe943);
  color: var(--fg);
  font-size: 13px;
  font-weight: 800;
}

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

.page-hero {
  padding: 144px 0 72px;
  background:
    radial-gradient(circle at 50% 0%, rgb(199 18 107 / 0.1), transparent 34%),
    linear-gradient(180deg, #fff, var(--soft-card));
}

.page-hero h1 {
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 700;
  line-height: 0.95;
}

.page-hero p:not(.overline) {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.places-section,
.concept-section {
  padding: 72px 0 112px;
  background: var(--white);
}

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

.place-card,
.concept-card,
.inspiration-panel {
  border: 1px solid rgb(199 18 107 / 0.14);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #fff5f8);
  box-shadow: var(--shadow-card);
}

.place-card {
  overflow: hidden;
}

.place-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.place-card div,
.concept-card {
  padding: 28px;
}

.place-card span,
.concept-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.place-card h2,
.concept-card h2,
.inspiration-panel h2 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1;
}

.place-card p,
.concept-card p,
.inspiration-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.inspiration-panel {
  margin-top: 28px;
  padding: 40px;
}

.inspiration-panel h2 {
  font-size: 40px;
}

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

.concept-card span {
  font-family: var(--serif);
  font-size: 44px;
  letter-spacing: 0;
  text-transform: none;
}

.bottom-cta {
  padding: 112px 0;
}

.bottom-cta h2 {
  margin-bottom: 16px;
}

.bottom-cta .bottom-btn {
  margin-top: 32px;
  min-height: 52px;
}

.newsletter-section {
  padding: 0 0 96px;
}

.newsletter-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgb(199 18 107 / 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 91% 8%, rgb(199 18 107 / 0.18), transparent 30%),
    linear-gradient(90deg, rgb(255 255 255 / 0) 0 56%, rgb(199 18 107 / 0.05)),
    linear-gradient(135deg, #fff, var(--soft-card));
  box-shadow: 0 30px 90px rgb(28 16 20 / 0.12);
}

.newsletter-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.68);
  pointer-events: none;
}

.newsletter-panel::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: -1px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.78;
}

.newsletter-copy h2 {
  max-width: 600px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.newsletter-copy > p:not(.overline) {
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.newsletter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.newsletter-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgb(222 211 204 / 0.8);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.7);
  color: var(--fg);
  font-size: 12px;
  font-weight: 700;
}

.newsletter-form {
  padding: 28px;
  border: 1px solid rgb(199 18 107 / 0.16);
  border-radius: 22px;
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 18px 50px rgb(28 16 20 / 0.11);
}

.newsletter-form label {
  margin-bottom: 14px;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.newsletter-note,
.newsletter-success {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.newsletter-success {
  display: none;
  color: var(--primary);
  font-weight: 700;
}

.newsletter-success.active {
  display: block;
}

.footer {
  padding: 40px 0;
  background: var(--footer);
  color: rgb(255 255 255 / 0.35);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
}

.footer-brand,
.footer-wordmark {
  color: var(--white);
  text-shadow: none;
}

.footer nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.footer a:hover {
  color: rgb(255 255 255 / 0.65);
}

.footer p {
  color: rgb(255 255 255 / 0.2);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 560ms ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 80ms;
}

.reveal:nth-child(3) {
  animation-delay: 160ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 48px, 640px);
  }

  .hero-content {
    width: min(100% - 48px, 560px);
    margin-inline: 24px;
    padding-bottom: 86px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p:not(.quiet) {
    font-size: 17px;
  }

  .hero-btn {
    width: 100%;
  }

  .two-col,
  .steps-grid,
  .quick-grid,
  .essentials-grid,
  .testimonial-grid,
  .places-grid,
  .concept-grid,
  .philosophy-hero-grid,
  .belief-grid,
  .dark-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .reverse-mobile .photo-card {
    order: 2;
  }

  .reverse-mobile .wednesday-copy {
    order: 1;
  }

  .ways-copy h2,
  .wednesday-copy h2,
  .feeling-section h2,
  .section-title h2,
  .quiz-heading h2,
  .bottom-cta h2,
  .newsletter-copy h2,
  .page-hero h1,
  .inspiration-panel h2,
  .philosophy-hero h1,
  .belief-copy h2,
  .dark-grid h2 {
    font-size: 42px;
  }

  .newsletter-panel {
    grid-template-columns: 1fr;
  }

  .philosophy-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 32px;
  }

  .photo-card {
    height: 430px;
  }

  .footer-inner {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .topbar {
    top: 10px;
    width: min(calc(100% - 18px), 1160px);
    height: 62px;
    grid-template-columns: 1fr auto;
    padding: 0 10px 0 16px;
    background: rgb(255 255 255 / 0.68);
  }

  .nav-logo {
    width: 116px;
    height: 42px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-actions {
    display: none;
  }

  .topbar .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgb(222 211 204 / 0.64);
    border-radius: 26px;
    background: rgb(255 255 255 / 0.88);
    box-shadow: 0 22px 55px rgb(28 16 20 / 0.16);
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
  }

  .topbar.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 13px 16px;
    border-radius: 16px;
    font-size: 14px;
    color: rgb(28 16 20 / 0.84);
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    background: rgb(199 18 107 / 0.08);
  }

  .main-nav .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 4px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 14px 28px rgb(199 18 107 / 0.2);
  }

  .main-nav .mobile-lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
  }

  .topbar .header-btn {
    display: none;
  }

  .footer-wordmark {
    font-size: 30px;
  }

  .container {
    width: calc(100% - 48px);
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-content {
    padding-top: 122px;
  }

  .hero-media img {
    object-fit: cover;
    object-position: center top;
  }

  .philosophy-hero {
    padding: 132px 0 72px;
  }

  .philosophy-visual {
    min-height: 320px;
    border-radius: 120px 120px 26px 26px;
  }

  .belief-image img,
  .dark-grid img {
    height: 330px;
  }

  .hero p:not(.quiet) {
    margin-top: 24px;
    font-size: 17px;
  }

  .hero-btn {
    padding-inline: 24px;
    font-size: 16px;
    white-space: nowrap;
  }

  .quiet {
    line-height: 1.6;
  }

  .intro-section,
  .ways-section,
  .steps-section,
  .feeling-section,
  .wednesday-section,
  .testimonials-section,
  .bottom-cta {
    padding-block: 88px;
  }

  .quick-faq-section,
  .essentials-section,
  .accordion-section {
    padding-block: 72px;
  }

  .ways-copy h2,
  .wednesday-copy h2,
  .feeling-section h2,
  .section-title h2,
  .quiz-heading h2,
  .bottom-cta h2,
  .newsletter-copy h2 {
    font-size: 38px;
  }

  .newsletter-section {
    padding-bottom: 72px;
  }

  .page-hero {
    padding: 132px 0 56px;
  }

  .places-section,
  .concept-section {
    padding: 56px 0 84px;
  }

  .philosophy-section {
    padding-block: 72px;
  }

  .philosophy-panel {
    width: calc(100% - 32px);
    padding: 32px 22px;
    border-radius: 24px;
  }

  .philosophy-panel h1,
  .philosophy-panel h2 {
    font-size: 38px;
  }

  .philosophy-copy p {
    font-size: 15px;
  }

  .newsletter-panel {
    width: calc(100% - 32px);
    padding: 30px 22px;
    border-radius: 24px;
  }

  .newsletter-form {
    padding: 22px;
  }

  .newsletter-form div {
    grid-template-columns: 1fr;
  }

  .photo-card {
    height: 360px;
  }

  .quiz-card {
    padding: 32px 24px;
  }

  .choice-grid.two,
  .email-box div {
    grid-template-columns: 1fr;
    display: grid;
  }

  .quiz-actions {
    align-items: stretch;
  }

  .back-btn {
    padding-inline: 18px;
  }
}
