:root {
  --cream: #fbf7f0;
  --warm-white: #fffdf9;
  --paper: #f5eee6;
  --rose: #c76572;
  --rose-dark: #a94f5d;
  --rose-pale: #f1d9d8;
  --blue: #557fa4;
  --sage: #8a936a;
  --sage-pale: #dfe3d0;
  --ink: #171716;
  --soft-ink: #3f3731;
  --muted: #71675d;
  --line: #e4d8cb;
  --shadow: 0 18px 46px rgba(73, 50, 34, 0.11);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.96), transparent 30rem),
    linear-gradient(180deg, var(--cream), #fffaf4 56%, var(--cream));
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.45;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(199, 101, 114, 0.38);
  outline-offset: 4px;
}

.container {
  width: min(1050px, calc(100% - 2rem));
  margin: 0 auto;
}

#hero,
#idea,
#topics {
  scroll-margin-top: 72px;
}

.top-menu {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 249, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.menu-container {
  width: min(1130px, calc(100% - 2rem));
  min-height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.26rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-style: italic;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.logo span:last-child {
  font-style: normal;
}

.flag-word {
  background: linear-gradient(90deg, #123f86 0 32%, #f7efe1 42% 58%, #b83245 70% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  font-size: 1.14em;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow:
    0 0.5px 0 rgba(23, 23, 22, 0.34),
    0 1px 4px rgba(73, 50, 34, 0.16);
}

.menu-panel {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 3vw, 2.5rem);
}

.menu-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list a {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.45rem 0;
  border-bottom: 1px solid transparent;
}

.menu-list a:hover,
.menu-list a:focus-visible {
  color: var(--rose-dark);
  border-bottom-color: var(--rose);
}

.mobile-nav-link {
  display: none;
}

.mobile-menu-divider {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(251, 247, 240, 0.96);
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: var(--cream);
  border-color: rgba(169, 79, 93, 0.32);
  box-shadow: 0 10px 24px rgba(73, 50, 34, 0.08);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  min-height: 44px;
  padding: 0.72rem 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(96, 53, 48, 0.18);
}

.btn.primary {
  background: linear-gradient(180deg, #cf7880, var(--rose));
  color: var(--warm-white);
  border-color: rgba(139, 63, 70, 0.18);
}

.btn.primary:hover {
  background: linear-gradient(180deg, #d77d86, #b64f5d);
  border-color: rgba(139, 63, 70, 0.28);
}

.btn.secondary {
  background: rgba(255, 253, 249, 0.72);
  color: var(--soft-ink);
  border-color: #c7aa9e;
}

.btn.secondary:hover {
  background: rgba(255, 249, 241, 0.94);
  border-color: #b88f82;
  color: var(--ink);
}

.sage-btn {
  background: linear-gradient(180deg, #98a077, var(--sage));
  color: var(--warm-white);
}

.sage-btn:hover {
  background: linear-gradient(180deg, #a4ad80, #778258);
}

.hero {
  position: relative;
  min-height: 455px;
  display: grid;
  grid-template-columns: minmax(1rem, 1fr) minmax(320px, 1050px) minmax(1rem, 1fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(251, 247, 240, 0.99) 0%, rgba(251, 247, 240, 0.96) 32%, rgba(251, 247, 240, 0.64) 48%, rgba(251, 247, 240, 0.08) 68%),
    linear-gradient(180deg, transparent 78%, rgba(251, 247, 240, 0.78));
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(255, 244, 218, 0.08), rgba(255, 249, 239, 0.02) 44%, rgba(196, 91, 78, 0.035)),
    radial-gradient(circle at 74% 18%, rgba(255, 235, 196, 0.1), transparent 28rem);
  mix-blend-mode: soft-light;
  opacity: 0.34;
  pointer-events: none;
  animation: heroWarmBreath 18s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 46%;
  filter: brightness(100%);
  animation: heroLightBreath 18s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  grid-column: 2;
  width: min(500px, 100%);
  padding: 2.2rem 0 2.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6.2vw, 5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero h1 span {
  color: var(--blue);
  display: block;
  letter-spacing: 0;
}

@keyframes heroLightBreath {
  0%,
  100% {
    filter: brightness(100%);
  }

  50% {
    filter: brightness(102%);
  }
}

@keyframes heroWarmBreath {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.42;
  }
}

.brush {
  width: 7.6rem;
  height: 0.48rem;
  margin: 1.05rem 0 1.3rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(199, 101, 114, 0.08), rgba(199, 101, 114, 0.38), rgba(199, 101, 114, 0.08));
  transform: rotate(-3deg);
}

.hero-slogan {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.35;
}

.hero-slogan em {
  color: var(--rose);
}

.hero-desc,
.hero-note {
  max-width: 380px;
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: 1.02rem;
}

.hero-desc {
  margin: 1rem 0 0.45rem;
}

.hero-note {
  margin: 0.95rem 0 1.35rem;
  color: #514942;
  font-size: 0.92rem;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.65;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-meta span + span::before {
  content: "·";
  margin-right: 0.15rem;
}

.hero-meta svg {
  width: 1.05rem;
  height: 1.05rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.benefits {
  padding: 1rem 0 1.35rem;
  background: rgba(255, 253, 249, 0.76);
  border-bottom: 1px solid var(--line);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.benefit-card {
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow);
}

.benefit-card {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.15rem;
  padding: 1rem 1.45rem;
}

.icon-bubble {
  width: 4.35rem;
  height: 4.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--soft-ink);
}

.icon-bubble svg {
  width: 2.1rem;
  height: 2.1rem;
}

.icon-bubble.rose {
  background: var(--rose-pale);
}

.icon-bubble.sage {
  background: var(--sage-pale);
}

.benefit-card h2,
.themes h2,
.events h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
}

.benefit-card h2 {
  font-size: 1.35rem;
}

.benefit-card p,
.final-cta p {
  margin: 0.35rem 0 0;
  color: var(--soft-ink);
  font-family: var(--serif);
}

.approach {
  background: linear-gradient(90deg, rgba(241, 228, 214, 0.55), rgba(255, 253, 249, 0.86), rgba(241, 228, 214, 0.55));
  border-bottom: 1px solid var(--line);
}

.approach-grid {
  min-height: 120px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 260px;
  gap: 2.5rem;
  align-items: center;
  padding: 1.5rem 0;
}

.sketch-card svg {
  width: 100%;
  height: auto;
  color: #b9a99a;
  opacity: 0.86;
}

.sketch-card .leaf {
  color: var(--sage);
}

.approach h2 {
  margin: 0 0 0.55rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.approach p {
  max-width: 500px;
  margin: 0;
  font-family: var(--serif);
}

.approach-steps {
  margin-bottom: 0.55rem !important;
  color: var(--rose-dark);
  font-size: 1.14rem;
  line-height: 1.35;
}

.approach blockquote {
  margin: 0;
  padding-left: 2.8rem;
  border-left: 1px solid var(--line);
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.18;
}

.philosophy {
  position: relative;
  overflow: hidden;
  padding: 2.6rem 0 2.45rem;
  background:
    linear-gradient(120deg, rgba(250, 232, 225, 0.78), rgba(255, 250, 244, 0.94) 46%, rgba(245, 238, 230, 0.9)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.philosophy::before,
.philosophy::after {
  content: "";
  position: absolute;
  width: 14rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 79, 93, 0.28), transparent);
  pointer-events: none;
}

.philosophy::before {
  top: 1.15rem;
  left: calc(50% - 27rem);
}

.philosophy::after {
  right: calc(50% - 27rem);
  bottom: 1.05rem;
}

.philosophy-inner {
  position: relative;
  max-width: 800px;
  padding: 0 2rem;
  text-align: center;
}

.philosophy blockquote {
  max-width: 720px;
  margin: 0 auto;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4.6vw, 3rem);
  font-style: italic;
  line-height: 1.2;
}

.themes-events {
  padding: clamp(2.5rem, 6vw, 4.7rem) 0 clamp(2.6rem, 6vw, 4.4rem);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(250, 244, 236, 0.94)),
    var(--cream);
}

.editorial-container {
  display: grid;
  gap: clamp(2.8rem, 6vw, 4.8rem);
}

.section-kicker,
.article-label {
  display: inline-block;
  margin: 0;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.next-conversation {
  display: grid;
  gap: 0.85rem;
}

.next-feature {
  position: relative;
  overflow: hidden;
  padding: clamp(1.45rem, 4vw, 2.5rem) clamp(1.35rem, 5vw, 3rem);
  border: 1px solid rgba(190, 157, 133, 0.46);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(250, 241, 229, 0.9)),
    var(--cream);
  transition: border-color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.next-feature::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  bottom: 1.3rem;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(169, 79, 93, 0.16), rgba(169, 79, 93, 0.58), rgba(169, 79, 93, 0.16));
  pointer-events: none;
}

.next-feature:hover {
  border-color: rgba(169, 79, 93, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(249, 235, 222, 0.92)),
    var(--cream);
  transform: translateY(-1px);
}

.next-feature-content {
  position: relative;
}

.next-feature h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5.6vw, 4.45rem);
  font-weight: 400;
  line-height: 1.02;
}

.next-feature p {
  max-width: 580px;
  margin: 1rem 0 0;
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: 1.13rem;
  line-height: 1.55;
}

.next-meta {
  margin: 1.15rem 0 1.25rem;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.journal-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}

.journal-cta:hover,
.journal-cta:focus-visible {
  gap: 0.7rem;
  color: var(--rose-dark);
}

.section-heading {
  max-width: 660px;
  margin-bottom: clamp(1.35rem, 4vw, 2rem);
}

.section-heading h2 {
  margin: 0.35rem 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.section-heading p:last-child {
  max-width: 540px;
  margin: 0.8rem 0 0;
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.55;
}

.conversation-journal {
  border-top: 1px solid rgba(169, 79, 93, 0.2);
}

.archive-items[hidden] {
  display: none;
}

.journal-item {
  position: relative;
  border-bottom: 1px solid rgba(169, 79, 93, 0.2);
}

.journal-item::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  bottom: 1.15rem;
  left: 0;
  width: 2px;
  background: var(--rose-dark);
  opacity: 0;
  transform: scaleY(0.55);
  transform-origin: center;
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.journal-item:hover::before,
.journal-item.is-open::before {
  opacity: 0.58;
  transform: scaleY(1);
}

.journal-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.05rem, 3vw, 1.55rem) 0 clamp(1.05rem, 3vw, 1.55rem) 1.05rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.journal-copy {
  min-width: 0;
  display: grid;
  gap: 0.28rem;
}

.journal-question {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.5vw, 2.35rem);
  font-weight: 400;
  line-height: 1.08;
  transition: color 0.26s ease;
}

.journal-reflection {
  max-width: 680px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(0.96rem, 2vw, 1.08rem);
  line-height: 1.45;
  transition: color 0.26s ease;
}

.journal-arrow {
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  transition: transform 0.26s ease, color 0.26s ease;
}

.journal-toggle:hover .journal-question,
.journal-toggle:focus-visible .journal-question,
.journal-item.is-open .journal-question {
  color: var(--rose-dark);
}

.journal-toggle:hover .journal-reflection,
.journal-toggle:focus-visible .journal-reflection,
.journal-item.is-open .journal-reflection {
  color: var(--soft-ink);
}

.journal-toggle:hover .journal-arrow,
.journal-toggle:focus-visible .journal-arrow,
.journal-item.is-open .journal-arrow {
  transform: translateX(5px);
  color: #8f4550;
}

.journal-details {
  max-width: 700px;
  margin: -0.55rem 0 1.35rem 1.05rem;
  padding: 0.95rem 1.15rem;
  border-left: 1px solid rgba(169, 79, 93, 0.28);
  background: rgba(255, 253, 249, 0.54);
}

.journal-details[hidden] {
  display: none;
}

.journal-details ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--soft-ink);
  font-family: var(--serif);
  line-height: 1.65;
}

.journal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.journal-archive-button {
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(169, 79, 93, 0.34);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.52);
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.journal-archive-button:hover,
.journal-archive-button:focus-visible {
  background: rgba(250, 232, 225, 0.58);
  border-color: rgba(169, 79, 93, 0.52);
  color: var(--ink);
}

.journal-archive-button.secondary {
  color: var(--soft-ink);
  border-color: rgba(113, 103, 93, 0.24);
}

.journal-archive-button[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(40, 31, 27, 0.38);
  backdrop-filter: blur(10px);
}

.modal-overlay[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(92vh, 780px);
  overflow: auto;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgba(228, 216, 203, 0.95);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(251, 247, 240, 0.98)),
    var(--warm-white);
  box-shadow: 0 28px 80px rgba(73, 50, 34, 0.25);
}

.modal-card::before {
  content: "";
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(199, 101, 114, 0.13);
  border-radius: 10px;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.88);
  color: var(--soft-ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.modal-card h2 {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 400;
  line-height: 1.05;
}

.modal-subtitle {
  position: relative;
  max-width: 560px;
  margin: 0.65rem 0 1.15rem;
  color: var(--soft-ink);
  font-family: var(--serif);
  line-height: 1.55;
}

.access-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.honey-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row,
.conversation-checks {
  display: grid;
  gap: 0.38rem;
}

.form-row-full,
.conversation-checks,
.access-form .btn,
.form-note {
  grid-column: 1 / -1;
}

.access-form label,
.conversation-checks legend {
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: 0.95rem;
}

.access-form input,
.access-form select,
.access-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #eaded4;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--ink);
  font: 0.95rem var(--serif);
  padding: 0.62rem 0.75rem;
}

.access-form textarea {
  resize: vertical;
}

.conversation-checks {
  margin: 0.1rem 0;
  padding: 0;
  border: 0;
}

.conversation-checks legend {
  margin-bottom: 0.45rem;
  padding: 0;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.availability-grid {
  grid-template-columns: repeat(3, 1fr);
}

.check-grid label {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(228, 216, 203, 0.9);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.68);
  font-size: 0.88rem;
}

.check-grid input {
  width: 0.95rem;
  min-height: auto;
  accent-color: var(--rose);
}

.access-form .btn {
  justify-self: center;
  margin-top: 0.25rem;
}

.form-note {
  max-width: 520px;
  margin: -0.2rem auto 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  margin: 0;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 0.9rem;
  text-align: center;
}

.access-form.is-sending .btn {
  opacity: 0.72;
  pointer-events: none;
}

.request-confirmation {
  position: relative;
  overflow: hidden;
  max-width: 620px;
  margin: 1.55rem auto 0;
  padding: clamp(2.9rem, 7vw, 4.6rem) clamp(1.65rem, 6vw, 3.8rem);
  border: 1px solid rgba(226, 211, 194, 0.82);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.82), transparent 14rem),
    linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(251, 247, 240, 0.95) 58%, rgba(250, 239, 224, 0.96)),
    var(--cream);
  box-shadow: 0 24px 62px rgba(73, 50, 34, 0.12);
  text-align: center;
}

.request-confirmation::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 50%;
  width: 5.4rem;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(199, 101, 114, 0.42), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.request-confirmation[hidden] {
  display: none;
}

.request-confirmation h3 {
  position: relative;
  margin: 0 0 1.35rem;
  color: #8f4550;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 2.55rem);
  font-weight: 400;
  line-height: 1.12;
}

.request-confirmation p {
  position: relative;
  max-width: 455px;
  margin: 0.82rem auto 0;
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.09rem);
  line-height: 1.72;
}

.confirmation-flower {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 4.4rem;
  height: 4.4rem;
  margin: 0;
  color: rgba(138, 147, 106, 0.42);
  background:
    radial-gradient(ellipse at 50% 18%, rgba(199, 101, 114, 0.2) 0 16%, transparent 17%),
    radial-gradient(ellipse at 24% 36%, rgba(199, 101, 114, 0.14) 0 15%, transparent 16%),
    radial-gradient(ellipse at 76% 36%, rgba(199, 101, 114, 0.14) 0 15%, transparent 16%),
    linear-gradient(100deg, transparent 48%, currentColor 49% 51%, transparent 52%);
  opacity: 0.85;
  transform: rotate(10deg);
}

.city-sketch {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(3.2rem, 7vw, 5rem) 0 clamp(3rem, 6vw, 4.4rem);
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(250, 232, 225, 0.68)),
    var(--cream);
}

.final-cta h2 {
  margin: 0;
  color: var(--rose);
  font-family: var(--serif);
  font-size: clamp(2.05rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.final-cta p {
  margin: 0.7rem 0 1.3rem;
  font-size: 1.05rem;
}

.final-cta .btn {
  min-height: 48px;
  padding-inline: 2.15rem;
  box-shadow: 0 16px 34px rgba(169, 79, 93, 0.18);
}

.city-sketch {
  width: 260px;
  height: 95px;
  bottom: -20px;
  border-bottom: 1px solid #d9cabc;
  opacity: 0.45;
}

.city-sketch::before,
.city-sketch::after {
  content: "";
  position: absolute;
  bottom: 0;
  border: 1px solid #d9cabc;
}

.city-sketch.left {
  left: 0;
}

.city-sketch.right {
  right: 0;
}

.city-sketch.left::before {
  left: 45px;
  width: 72px;
  height: 62px;
}

.city-sketch.left::after {
  left: 130px;
  width: 52px;
  height: 42px;
}

.city-sketch.right::before {
  right: 38px;
  width: 70px;
  height: 78px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.city-sketch.right::after {
  right: 120px;
  width: 80px;
  height: 48px;
}

.footer {
  padding: 0.9rem 0;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer p {
  margin: 0;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .menu-panel {
    position: absolute;
    top: 62px;
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 0.9rem;
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 46px rgba(73, 50, 34, 0.14);
    max-height: calc(100dvh - 78px);
    overflow: auto;
    overscroll-behavior: contain;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.45rem);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    visibility: hidden;
  }

  .menu-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .menu-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }

  .menu-list li {
    width: 100%;
  }

  .menu-list a {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.68rem 0.7rem;
    border-bottom: 1px solid rgba(228, 216, 203, 0.7);
    border-radius: 8px;
    font-size: 1.08rem;
  }

  .mobile-menu-divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0.35rem 0;
    background: linear-gradient(90deg, transparent, rgba(169, 79, 93, 0.28), transparent);
  }

  .menu-list a:hover,
  .menu-list a:focus-visible {
    background: rgba(250, 232, 225, 0.38);
    border-bottom-color: rgba(199, 101, 114, 0.2);
  }

  .desktop-nav-link {
    display: none !important;
  }

  .mobile-nav-link {
    display: flex;
    color: var(--rose-dark) !important;
    font-weight: 700;
  }

  .menu-btn {
    display: none;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(251, 247, 240, 0.98), rgba(255, 253, 249, 0.95));
  }

  .hero::before {
    display: none;
  }

  .hero-image {
    order: 2;
    width: 100%;
    min-width: 0;
    height: clamp(240px, 36vw, 340px);
    position: relative;
  }

  .hero-image::after {
    opacity: 0.25;
  }

  .hero-image img {
    object-position: 58% center;
  }

  .hero-content {
    order: 1;
    width: min(680px, calc(100% - 2.5rem));
    max-width: calc(100% - 2.5rem);
    min-width: 0;
    margin: 0 auto;
    padding: 1.8rem 0 1.45rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 8.4vw, 4.6rem);
    line-height: 0.96;
  }

  .benefit-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach blockquote {
    padding-left: 0;
    border-left: 0;
  }

  .sketch-card {
    max-width: 280px;
  }
}

@media (max-width: 720px) {
  .container,
  .menu-container {
    width: min(1050px, calc(100% - 2.5rem));
  }

  .menu-container {
    min-height: 58px;
  }

  .logo {
    font-size: 1.45rem;
  }

  .menu-panel {
    top: 58px;
    left: 1.25rem;
    right: 1.25rem;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-image {
    height: clamp(210px, 54vw, 285px);
  }

  .hero-image::after {
    opacity: 0.25;
  }

  .hero-image img {
    object-position: 58% center;
  }

  .hero-content {
    width: min(520px, calc(100% - 2.5rem));
    padding: 1.55rem 0 1.35rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11.2vw, 3.45rem);
    line-height: 0.96;
    overflow-wrap: normal;
  }

  .brush {
    margin: 0.9rem 0 1rem;
  }

  .hero-slogan {
    font-size: 1.16rem;
  }

  .hero-desc,
  .hero-note {
    max-width: none;
    font-size: 1rem;
  }

  .hero-desc {
    margin-top: 0.85rem;
  }

  .hero-note {
    margin-bottom: 1rem;
  }

  .hero-meta {
    margin-bottom: 1rem;
  }

  .hero-buttons,
  .hero-buttons .btn {
    width: 100%;
  }

  .hero-buttons .btn,
  .final-cta .btn,
  .access-form .btn {
    min-height: 48px;
  }

  .access-form {
    grid-template-columns: 1fr;
    gap: 0.78rem;
  }

  .check-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits {
    padding: 1.1rem 0 1.2rem;
  }

  .themes-events {
    padding: 1.85rem 0 2.4rem;
  }

  .themes-events .container {
    width: 100%;
  }

  .editorial-container {
    gap: 2rem;
  }

  .next-conversation,
  .recent-conversations {
    width: min(1050px, calc(100% - 2.5rem));
    margin: 0 auto;
  }

  .next-conversation {
    width: 100%;
    gap: 0.65rem;
  }

  .next-conversation .section-kicker {
    margin-left: 1.25rem;
  }

  .next-feature {
    width: 100%;
    padding: 1.55rem 1.25rem 1.65rem;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .next-feature::before {
    top: 1.45rem;
    bottom: 1.45rem;
  }

  .next-feature h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 1.06;
  }

  .next-feature p {
    margin-top: 0.85rem;
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .next-meta {
    margin: 0.95rem 0 1.1rem;
  }

  .journal-cta {
    min-height: 44px;
    align-items: center;
  }

  .next-feature-content {
    padding: 0;
  }

  .philosophy {
    padding: 2rem 0 1.9rem;
  }

  .philosophy-inner {
    padding: 0 0.35rem;
  }

  .benefit-card {
    grid-template-columns: 56px 1fr;
    padding: 0.85rem;
  }

  .icon-bubble {
    width: 3.5rem;
    height: 3.5rem;
  }

  .city-sketch {
    display: none;
  }

  .section-heading {
    margin-bottom: 0.8rem;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .conversation-journal {
    border-top-color: rgba(169, 79, 93, 0.24);
  }

  .journal-toggle {
    min-height: 88px;
    padding: 1.15rem 0 1.15rem 0.9rem;
  }

  .journal-question {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.12;
  }

  .journal-reflection {
    font-size: 1rem;
  }

  .journal-details {
    margin: -0.35rem 0 1.05rem 0.9rem;
    padding: 0.85rem 0 0.9rem 0.95rem;
    background: transparent;
  }

  .journal-actions {
    margin-top: 1rem;
  }

  .journal-archive-button {
    border-radius: 6px;
    background: transparent;
    border-color: transparent;
    padding-inline: 0;
    text-align: left;
  }

  .final-cta {
    padding: 2.5rem 0 2.6rem;
  }

  .footer {
    padding: 1rem 0;
  }
}

@media (max-width: 470px) {
  .logo span:first-child {
    display: none;
  }

  .logo {
    font-size: 1.32rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 10.4vw, 2.85rem);
  }

  .journal-toggle {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding-left: 0.75rem;
  }

  .journal-arrow {
    justify-self: end;
    align-self: start;
    padding-top: 0.15rem;
  }

  .journal-actions {
    display: grid;
  }

  .journal-archive-button {
    width: 100%;
  }

  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.28rem;
  }

  .hero-meta span + span::before {
    content: "";
    margin: 0;
  }

  .modal-overlay {
    align-items: start;
    padding: 0.65rem;
  }

  .modal-card {
    width: 100%;
    max-height: calc(100dvh - 1.3rem);
    padding: 1.2rem 1rem 1.05rem;
    border-radius: 12px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .modal-card h2,
  .modal-subtitle,
  .modal-card .eyebrow {
    padding-right: 2.25rem;
  }

  .modal-subtitle {
    margin-bottom: 1rem;
  }

  .access-form label,
  .conversation-checks legend {
    font-size: 1rem;
  }

  .check-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .check-grid label {
    min-height: 44px;
    border-radius: 8px;
  }

  .access-form .btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .container,
  .menu-container,
  .hero-content,
  .next-conversation,
  .recent-conversations {
    width: min(1050px, calc(100% - 2.25rem));
  }

  .next-conversation {
    width: 100%;
  }

  .next-conversation .section-kicker {
    margin-left: 1.125rem;
    margin-right: 1.125rem;
  }

  .next-feature {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 2.45rem);
  }

  .hero-image {
    height: 205px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
