/* ============================================================
   Sugar Daddy Phoenix — shared design system
   Modern Desert Luxury × Phoenix Sunset × Discreet Dating
   ============================================================ */

/* ---------- Local fonts (variable) ---------- */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/playfair-display.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter.woff2") format("woff2");
}

/* ---------- Design tokens ---------- */
:root {
  /* Phoenix Afterglow palette — romantic, warm and editorial */
  --ink: #2d202a;
  --wine: #9f4455;
  --wine-dark: #783143;
  --terracotta: #c97b60;
  --sand: #f3e6dc;
  --ivory: #fff9f4;
  --champagne: #c6a05f;
  --slate: #62565d;
  --border: #e5d5cc;
  --white: #ffffff;
  --success: #356b58;
  --error: #a53d45;

  /* Semantic aliases; legacy names keep all existing pages compatible. */
  --midnight: var(--ink);
  --blue: var(--wine);
  --deep-blue: var(--wine-dark);
  --coral: var(--terracotta);

  /* Typography */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --gutter: 32px;
  --section-pad: 96px;
  --header-h: 76px;

  /* Radii */
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 18px;
  --r-xl: 22px;
  --r-2xl: 26px;
  --r-card: 28px;
  --r-hero: 180px 28px 180px 28px;

  /* Shadow */
  --shadow-soft: 0 8px 30px rgba(63, 37, 47, 0.08);
  --shadow-lift: 0 18px 54px rgba(63, 37, 47, 0.16);

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--midnight);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--header-h);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--midnight);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.025em;
}

p {
  margin: 0;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 3px solid var(--champagne);
  outline-offset: 3px;
  border-radius: 8px;
}

::selection {
  background: rgba(159, 68, 85, 0.2);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--champagne);
  border-radius: 3px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--midnight);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font: 600 14px/1.2 var(--font-body);
  text-decoration: none;
  transition: transform 0.15s var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--wide {
  max-width: var(--container-wide);
}
.container--narrow {
  max-width: 800px;
}
.container--prose {
  max-width: 720px;
}

.section {
  padding: var(--section-pad) 0;
}
.section--ivory {
  background: linear-gradient(180deg, var(--ivory), #fffdfb);
}
.section--sand {
  background:
    radial-gradient(circle at 8% 10%, rgba(201, 123, 96, 0.1), transparent 28%),
    var(--sand);
}
.section--midnight {
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 123, 96, 0.16), transparent 34%),
    linear-gradient(145deg, #261a24, #3b2431);
  color: #fff;
}
.section--tight {
  padding-top: 64px;
  padding-bottom: 64px;
}

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 12px;
}
.eyebrow--champagne {
  color: var(--champagne);
}

/* Section heading block */
.section-head {
  margin-bottom: 48px;
}
.section-head--center {
  text-align: center;
}
.section-head h2 {
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.2;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 14px 24px;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(80, 35, 50, 0.12);
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
    border-color 0.22s var(--ease), transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn--primary {
  background: var(--blue);
  color: #fff;
}
.btn--primary:hover {
  background: var(--deep-blue);
  box-shadow: 0 12px 30px rgba(80, 35, 50, 0.22);
  transform: translateY(-2px);
}
.btn--secondary {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
}
.btn--secondary:hover {
  background: rgba(45, 32, 42, 0.06);
}
.btn--ghost {
  background: rgba(255, 249, 244, 0.1);
  color: var(--ivory);
  border-color: rgba(255, 249, 244, 0.3);
}
.btn--ghost:hover {
  background: rgba(255, 249, 244, 0.2);
}
.btn--dark {
  background: var(--midnight);
  color: var(--ivory);
}
.btn--dark:hover {
  background: #49303e;
  transform: translateY(-2px);
}
.btn--lg {
  padding: 16px 32px;
  min-height: 56px;
  font-size: 17px;
}

/* Text link */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link .icon {
  transition: transform 0.18s var(--ease);
}
.text-link:hover .icon {
  transform: translateX(3px);
}

/* ---------- Icons ---------- */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 249, 244, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(63, 37, 47, 0.1);
}
.site-header__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo__mark {
  flex-shrink: 0;
  display: block;
}
.logo__text {
  line-height: 1;
}
.logo__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: -0.01em;
}
.logo__sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-footer .logo__name {
  color: var(--ivory);
}

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 11px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--midnight);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  min-height: 44px;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
.nav-link:hover,
.nav-item.is-open > .nav-link {
  color: var(--blue);
  background: rgba(159, 68, 85, 0.07);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
  min-width: 210px;
  padding: 8px 0;
  z-index: 200;
  list-style: none;
  display: none;
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--midnight);
  white-space: nowrap;
  transition: background 0.15s var(--ease);
}
.dropdown-menu a:hover {
  background: var(--ivory);
  color: var(--blue);
}
.nav-item:focus-within .dropdown-menu,
.nav-item.is-open .dropdown-menu,
.no-touch .nav-item:hover .dropdown-menu {
  display: block;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-join {
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(120, 49, 67, 0.2);
  transition: background 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.header-join:hover {
  background: var(--deep-blue);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(120, 49, 67, 0.25);
}

/* Hamburger */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(159, 68, 85, 0.08);
  border: 1px solid rgba(159, 68, 85, 0.18);
  cursor: pointer;
  padding: 10px;
  color: var(--midnight);
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
}
.menu-toggle::before {
  content: "";
  width: 20px;
  height: 14px;
  background: linear-gradient(
    to bottom,
    var(--wine) 0 2px,
    transparent 2px 6px,
    var(--wine) 6px 8px,
    transparent 8px 12px,
    var(--wine) 12px 14px
  );
}
.menu-toggle > .icon {
  display: none;
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 90% 5%, rgba(201, 123, 96, 0.14), transparent 28%),
    var(--ivory);
  z-index: 99;
  overflow-y: auto;
  padding: 24px 20px 40px;
  display: none;
}
.mobile-menu.is-open {
  display: block;
}
.mobile-menu__link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--midnight);
  border-bottom: 1px solid var(--border);
}
.mobile-menu__group {
  margin-bottom: 4px;
}
.mobile-menu__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--midnight);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
}
.mobile-menu__toggle .icon {
  transition: transform 0.2s var(--ease);
}
.mobile-menu__toggle[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}
.mobile-menu__sub {
  display: none;
  list-style: none;
  padding-left: 16px;
}
.mobile-menu__group.is-open .mobile-menu__sub {
  display: block;
}
.mobile-menu__sub a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
}
.mobile-menu__cta {
  margin-top: 32px;
  display: block;
  text-align: center;
  background: var(--blue);
  color: #fff;
  padding: 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
}

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(214, 151, 112, 0.34), transparent 22%),
    radial-gradient(circle at 12% 85%, rgba(159, 68, 85, 0.3), transparent 30%),
    linear-gradient(135deg, #291c27 0%, #4c2939 56%, #7e3f4b 100%);
  min-height: calc(94vh - var(--header-h));
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -220px;
  right: 7%;
  border: 1px solid rgba(255, 249, 244, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 249, 244, 0.025),
    0 0 0 140px rgba(255, 249, 244, 0.018);
  z-index: -1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  padding: 80px 0;
}
.hero h1 {
  font-size: clamp(46px, 5.5vw, 72px);
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.06;
  margin: 16px 0 24px;
  letter-spacing: -0.035em;
  max-width: 680px;
}
.hero__title > span {
  display: block;
}
.hero__title-kicker {
  margin-bottom: 7px;
  color: rgba(255, 249, 244, 0.78);
  font-family: var(--font-body);
  font-size: 0.3em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__title-focus {
  max-width: 720px;
}
.hero__title-focus em {
  color: #e5c17f;
  font-size: 0.7em;
  font-weight: 400;
}
.hero__title-place {
  position: relative;
  width: fit-content;
  margin-top: 8px;
  color: #f0cc89;
  font-style: italic;
  font-weight: 500;
}
.hero__title-place::after {
  content: "";
  position: absolute;
  right: 0.02em;
  bottom: -0.08em;
  width: 68%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(229, 193, 127, 0), #e5c17f 34%, rgba(229, 193, 127, 0.52));
}
.hero .eyebrow {
  color: #e5c17f;
}
.hero__lead {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 249, 244, 0.82);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__disclosure {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 249, 244, 0.6);
  margin: 0;
}
.hero__visual {
  position: relative;
}
.hero__visual-frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: transparent;
  border: 1px solid rgba(229, 193, 127, 0.5);
  border-radius: var(--r-hero);
  transform: none;
}
.hero__image {
  position: relative;
  border-radius: var(--r-hero);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 610px;
  background: #3b2431;
  box-shadow: 0 30px 70px rgba(18, 10, 16, 0.38);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__badges {
  position: absolute;
  bottom: -16px;
  left: -16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__badge {
  background: rgba(255, 249, 244, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 24px rgba(37, 20, 30, 0.18);
  white-space: nowrap;
}

/* ---------- Page hero (solid) ---------- */
.page-hero {
  background:
    radial-gradient(circle at 82% 15%, rgba(201, 123, 96, 0.24), transparent 28%),
    linear-gradient(135deg, #291c27, #542c3c);
  padding: 72px 0 60px;
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.15;
  margin: 8px 0 14px;
}
.page-hero__lead {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 249, 244, 0.78);
  line-height: 1.7;
  max-width: 620px;
}

/* Page hero with background image */
.page-hero--image {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: var(--midnight);
}
.page-hero--image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 32, 42, 0.18) 0%,
    rgba(45, 32, 42, 0.92) 100%
  );
}
.page-hero--image .container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 52px;
  padding-top: 60px;
}
.page-hero--image h1 {
  color: var(--ivory);
}
.page-hero--image .page-hero__lead {
  color: rgba(255, 249, 244, 0.82);
}

/* Full-screen editorial role heroes */
.role-hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: #251720;
  color: #fff;
}
.role-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.role-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(27, 15, 23, 0.9) 0%, rgba(31, 17, 25, 0.68) 42%, rgba(31, 17, 25, 0.08) 72%),
    linear-gradient(0deg, rgba(27, 15, 23, 0.76) 0%, transparent 45%);
}
.role-hero__inner {
  width: 100%;
  padding-top: 120px;
  padding-bottom: clamp(64px, 9vh, 112px);
}
.role-hero .breadcrumbs a,
.role-hero .breadcrumbs span,
.role-hero .breadcrumbs .icon {
  color: rgba(255, 255, 255, 0.76);
}
.role-hero__content {
  max-width: 760px;
}
.role-hero__eyebrow {
  margin-bottom: 18px;
  color: #f1c993;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.role-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #fffaf5;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.role-hero__lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.65;
}
.role-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn--ghost-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.btn--ghost-light:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.role-hero__notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 42px;
}
.role-hero__note {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(40, 21, 31, 0.35);
  backdrop-filter: blur(12px);
}
.role-hero__note span {
  display: block;
  margin-bottom: 5px;
  color: #efbd83;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.role-hero__note strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
}

/* Wide, aligned role-page layouts */
.role-copy {
  max-width: 1080px;
}
.role-copy > .body-copy,
.role-copy > p {
  max-width: 820px;
}
.role-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: end;
  margin-bottom: 42px;
}
.role-section-head h2 {
  max-width: 560px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}
.role-section-head p {
  max-width: 650px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.industry-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(159, 68, 85, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}
.industry-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: rgba(159, 68, 85, 0.1);
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 18px;
}
.industry-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}
.industry-card p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}
.local-scene-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.local-scene-grid__media {
  min-height: 560px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-lift);
}
.local-scene-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.local-scene-grid__content {
  display: grid;
  align-content: center;
  gap: 14px;
}
.scene-card {
  padding: 22px 24px;
  border-left: 3px solid var(--terracotta);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.72);
}
.scene-card h3 {
  margin-bottom: 6px;
  font-size: 19px;
}
.scene-card p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.signal-card {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(159, 68, 85, 0.1);
  box-shadow: var(--shadow-soft);
}
.signal-card--good { border-top: 4px solid #7e9974; }
.signal-card--watch { border-top: 4px solid #c89c5c; }
.signal-card--stop { border-top: 4px solid var(--wine); }
.signal-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}
.signal-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
}
.age-spectrum {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.age-spectrum__item {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #fff8f3);
  border: 1px solid rgba(159, 68, 85, 0.1);
  box-shadow: var(--shadow-soft);
}
.age-spectrum__range {
  display: block;
  margin-bottom: 14px;
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 26px;
}
.age-spectrum__item p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}
.role-source-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.role-source-note a { text-decoration: underline; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  margin-bottom: 20px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 13px;
}
.breadcrumbs a {
  color: rgba(255, 249, 244, 0.7);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}
.breadcrumbs a:hover {
  color: #fff;
}
.breadcrumbs .icon {
  color: rgba(255, 249, 244, 0.4);
}
.breadcrumbs [aria-current="page"] {
  color: #fff;
  font-weight: 500;
}

/* ---------- Editorial split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split__media {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand);
  box-shadow: var(--shadow-soft);
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Cards & panels ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.feature-panel {
  background: var(--white);
  border: 1px solid rgba(159, 68, 85, 0.1);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.feature-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.feature-panel__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--sand);
}
.feature-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}
.feature-panel:hover .feature-panel__media img {
  transform: scale(1.04);
}
.feature-panel__body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.feature-panel h3 {
  font-size: 29px;
}
.feature-panel__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.feature-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--slate);
}
.feature-panel__list .icon {
  color: var(--blue);
  margin-top: 2px;
}

/* City cards (staggered grid) */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.city-card {
  display: block;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(159, 68, 85, 0.1);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.city-card:nth-child(even) {
  transform: none;
}
.city-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}
.city-card:nth-child(even):hover {
  transform: translateY(-4px);
}
.city-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}
.city-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}
.city-card:hover .city-card__media img {
  transform: scale(1.05);
}
.city-card__body {
  padding: 24px 24px 28px;
}
.city-card h3 {
  font-size: 23px;
  margin-bottom: 8px;
}
.city-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 12px;
}
.city-card__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  text-align: center;
  padding: 30px 22px 32px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(159, 68, 85, 0.09);
  border-radius: var(--r-xl);
  box-shadow: 0 10px 30px rgba(63, 37, 47, 0.06);
  transition: background 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.step:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.step__icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(145deg, #fff7f2, #f4e4dc);
  border: 1px solid rgba(159, 68, 85, 0.12);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
}
.step__art {
  width: 74px;
  height: 74px;
  overflow: visible;
}
.step__art-fill {
  fill: rgba(159, 68, 85, 0.08);
  stroke: var(--wine);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step__art-line {
  fill: none;
  stroke: var(--wine-dark);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step__art-accent {
  fill: none;
  stroke: var(--champagne);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 8px;
}
.step h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.step p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
}

/* ---------- Idea cards ---------- */
.idea-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.idea-card {
  background: var(--white);
  border: 1px solid rgba(159, 68, 85, 0.1);
  border-radius: var(--r-xl);
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.idea-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.idea-card .icon {
  color: var(--coral);
  margin-bottom: 10px;
}
.idea-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.idea-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* ---------- Safety principles (dark) ---------- */
.principles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.principle {
  background: rgba(255, 249, 244, 0.07);
  border: 1px solid rgba(255, 249, 244, 0.12);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.principle .icon {
  color: var(--coral);
  margin-top: 2px;
}
.principle h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 4px;
}
.principle p {
  font-size: 14px;
  color: rgba(255, 249, 244, 0.64);
  line-height: 1.6;
}

/* ---------- Guide links (featured + small) ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
}
.guide-card {
  display: block;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--midnight);
  position: relative;
  min-height: 280px;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.guide-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.guide-card:hover img {
  transform: scale(1.035);
  opacity: 0.64;
}
.guide-card--featured img {
  opacity: 0.45;
}
.guide-card__content {
  position: relative;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.guide-card--small .guide-card__content {
  padding: 20px;
}
.guide-card__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 8px;
}
.guide-card h3 {
  color: var(--ivory);
  font-size: 24px;
  margin-bottom: 8px;
}
.guide-card--small h3 {
  font-size: 18px;
  margin: 0;
}
.guide-card p {
  color: rgba(255, 249, 244, 0.76);
  font-size: 14px;
}

/* ---------- Homepage first-meeting planner ---------- */
.meeting-planner {
  overflow: hidden;
}
.meeting-planner__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.meeting-planner__media {
  position: relative;
  min-height: 620px;
}
.meeting-planner__media::before {
  content: "";
  position: absolute;
  inset: 22px -20px -20px 22px;
  border: 1px solid rgba(159, 68, 85, 0.24);
  border-radius: 32px;
}
.meeting-planner__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-lift);
}
.meeting-planner__badge {
  position: absolute;
  right: -28px;
  bottom: 34px;
  width: min(300px, 74%);
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  background: rgba(48, 27, 39, 0.9);
  color: #fff;
  box-shadow: 0 18px 45px rgba(40, 20, 31, 0.26);
  backdrop-filter: blur(16px);
}
.meeting-planner__badge span {
  display: block;
  margin-bottom: 7px;
  color: #efbd83;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.meeting-planner__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}
.meeting-planner__copy h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
}
.meeting-planner__intro {
  margin-bottom: 28px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}
.meeting-checkpoints {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}
.meeting-checkpoint {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(159, 68, 85, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(63, 37, 47, 0.05);
}
.meeting-checkpoint__num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(159, 68, 85, 0.09);
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
}
.meeting-checkpoint h3 {
  margin-bottom: 4px;
  font-size: 18px;
}
.meeting-checkpoint p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- FAQ accordion ---------- */
.accordion {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.46);
  border-radius: var(--r-xl);
  padding: 0 28px;
  box-shadow: var(--shadow-soft);
}
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  min-height: 44px;
}
.accordion-trigger__label {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--midnight);
  line-height: 1.35;
}
.accordion-trigger .icon {
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.accordion-item.is-open .accordion-trigger .icon {
  transform: rotate(180deg);
}
.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.22s var(--ease);
}
.js .accordion-item.is-open .accordion-panel {
  max-height: 60em;
}
.accordion-panel__inner {
  padding-bottom: 20px;
}
.accordion-panel p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 720px;
}
/* Without JS: answers are fully visible */
html:not(.js) .accordion-panel {
  max-height: none;
  overflow: visible;
}

/* FAQ category chips */
.faq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.faq-chip {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--midnight);
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background 0.15s var(--ease);
}
.faq-chip:hover {
  background: #ead7cb;
}

/* ---------- Callouts ---------- */
.callout {
  border-radius: var(--r-lg);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.callout--info {
  background: rgba(159, 68, 85, 0.07);
  border: 1px solid rgba(159, 68, 85, 0.16);
}
.callout--warning {
  background: rgba(185, 68, 68, 0.08);
  border: 1px solid rgba(185, 68, 68, 0.2);
}
.callout p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--midnight);
  line-height: 1.6;
}
.callout--warning p {
  color: var(--error);
  font-weight: 600;
}

/* ---------- Tip panel ---------- */
.tip {
  background: rgba(159, 68, 85, 0.07);
  border: 1px solid rgba(159, 68, 85, 0.16);
  border-radius: var(--r-lg);
  padding: 18px 20px;
}
.tip p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--midnight);
  line-height: 1.6;
}

/* ---------- Scam / warning list ---------- */
.warning-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.warning-list li {
  background: rgba(201, 123, 96, 0.1);
  border: 1px solid rgba(201, 123, 96, 0.18);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 249, 244, 0.82);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  list-style: none;
  line-height: 1.6;
}
.warning-list .icon {
  color: var(--coral);
  margin-top: 3px;
  flex-shrink: 0;
}
.warning-list--dark li {
  background: rgba(201, 123, 96, 0.12);
  border-color: rgba(201, 123, 96, 0.2);
}

/* ---------- Venue cards ---------- */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.venue-card {
  background: var(--white);
  border: 1px solid rgba(159, 68, 85, 0.1);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.venue-card h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 6px;
}
.venue-card p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}

/* ---------- Area link chips ---------- */
.area-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.area-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--midnight);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.area-chip:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-soft);
}
.area-chip .icon {
  color: var(--coral);
}

/* ---------- Safety reminder band ---------- */
.safety-band {
  background: linear-gradient(135deg, #2d202a, #4b2a39);
  border-radius: var(--r-card);
  padding: 32px 36px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.safety-band .icon {
  color: var(--coral);
  margin-top: 3px;
}
.safety-band h3 {
  color: var(--ivory);
  font-size: 22px;
  margin-bottom: 10px;
}
.safety-band p {
  color: rgba(255, 249, 244, 0.76);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.safety-band__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.safety-band__links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ---------- Two-column "this vs external" ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-card {
  border-radius: var(--r-card);
  padding: 32px;
}
.compare-card--light {
  background: var(--white);
  border: 1px solid var(--border);
}
.compare-card--dark {
  background: linear-gradient(145deg, #2d202a, #482b3a);
}
.compare-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.compare-card--dark h3 {
  color: var(--ivory);
}
.compare-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compare-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
}
.compare-card--dark li {
  color: rgba(255, 249, 244, 0.74);
}
.compare-card li .icon {
  color: var(--blue);
  margin-top: 2px;
}
.compare-card--dark li .icon {
  color: var(--coral);
}

/* ---------- Step timeline (how it works) ---------- */
.timeline {
  display: flex;
  flex-direction: column;
}
.timeline__step {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
}
.timeline__step:last-child {
  padding-bottom: 0;
}
.timeline__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.timeline__num {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.timeline__line {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 8px;
}
.timeline__body {
  padding-bottom: 8px;
}
.timeline__body .icon {
  color: var(--blue);
  margin-bottom: 8px;
}
.timeline__body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.timeline__body p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ---------- Date idea categories ---------- */
.date-ideas-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: var(--midnight);
  color: #fff;
}
.date-ideas-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.date-ideas-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(35, 18, 28, 0.94) 0%, rgba(48, 25, 36, 0.72) 48%, rgba(48, 25, 36, 0.18) 78%),
    linear-gradient(0deg, rgba(35, 18, 28, 0.66), transparent 58%);
}
.date-ideas-hero__inner {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 64px;
}
.date-ideas-hero .breadcrumbs a,
.date-ideas-hero .breadcrumbs span,
.date-ideas-hero .breadcrumbs .icon {
  color: rgba(255, 255, 255, 0.8);
}
.date-ideas-hero__content {
  max-width: 780px;
}
.date-ideas-hero h1 {
  margin-bottom: 20px;
  color: #fffaf5;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -0.035em;
}
.date-ideas-hero__lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.7;
}
.date-ideas-hero__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.date-ideas-hero__nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(36, 18, 27, 0.32);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.date-ideas-hero__nav a:hover,
.date-ideas-hero__nav a:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}
.date-ideas-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 34px;
  padding: 18px 22px;
  border: 1px solid rgba(159, 68, 85, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}
.date-ideas-note strong {
  color: var(--wine);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.date-ideas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.date-ideas-grid .idea-category,
.date-ideas-grid .idea-category--flip {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(159, 68, 85, 0.11);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.date-ideas-grid .idea-category__body {
  order: 1;
  padding: 30px 30px 20px;
}
.date-ideas-grid .idea-category__body .icon {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(159, 68, 85, 0.09);
  color: var(--wine);
}
.idea-category__index {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(159, 68, 85, 0.09);
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.date-ideas-grid .idea-category__body h2 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.2;
}
.date-ideas-grid .idea-category__body p {
  max-width: 600px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}
.date-ideas-grid .idea-category__list {
  order: 2;
  flex: 1;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 0 30px 28px;
}
.date-ideas-grid .idea-category__list li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
}
.date-ideas-grid .idea-category__list li:last-child {
  border-bottom: 0;
}
.date-ideas-grid .idea-category__list li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(201, 123, 96, 0.12);
}
.date-ideas-grid .idea-category__media {
  order: 0;
  height: 250px;
  overflow: hidden;
}
.date-ideas-grid .idea-category__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.date-ideas-grid .idea-category:hover .idea-category__media img {
  transform: scale(1.025);
}
.date-ideas-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 48px;
  padding: 30px 34px;
  border-radius: 22px;
  background: linear-gradient(135deg, #33202d, #563040);
  color: #fff;
}
.date-ideas-footer h2 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 25px;
}
.date-ideas-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.date-ideas-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.idea-category {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
.idea-category--flip {
  grid-template-columns: 280px 1fr;
}
.idea-category__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.idea-category__list li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--slate);
  padding: 10px 14px;
  background: var(--sand);
  border-radius: var(--r-sm);
  line-height: 1.5;
}
.idea-category__body .icon {
  color: var(--coral);
  margin-bottom: 10px;
}
.idea-category__body h2 {
  font-size: 26px;
  margin-bottom: 10px;
}
.idea-category__body p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 480px;
}

/* ---------- TOC sidebar layout ---------- */
.doc-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
.doc-toc {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.doc-toc__title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 12px;
}
.doc-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.doc-toc a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
  display: block;
  padding: 2px 0;
  transition: color 0.15s var(--ease);
}
.doc-toc a:hover {
  color: var(--blue);
}

/* ---------- Prose / legal ---------- */
.prose h2 {
  font-size: 26px;
  margin-bottom: 12px;
}
.prose h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.prose p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 680px;
}
.legal-section {
  margin-bottom: 36px;
}
.legal-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
.legal-section p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
}
.legal-meta {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 249, 244, 0.55);
}

/* ---------- Contact form ---------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--midnight);
  display: block;
  margin-bottom: 6px;
}
.form input,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--midnight);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.form input:focus,
.form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(159, 68, 85, 0.1);
}
.form textarea {
  resize: vertical;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(91, 43, 59, 0.3), rgba(31, 16, 25, 0.78) 72%),
    linear-gradient(to bottom, rgba(30, 16, 25, 0.36), rgba(28, 15, 23, 0.86));
}
.final-cta__content {
  position: relative;
  z-index: 1;
  padding: 80px 32px;
  max-width: 920px;
}
.final-cta h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 16px;
}
.final-cta p {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 249, 244, 0.82);
  margin-bottom: 32px;
}
.final-cta__disclosure {
  font-size: 13px;
  color: rgba(255, 249, 244, 0.55);
  margin-top: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 123, 96, 0.15), transparent 28%),
    #271b25;
  color: #fff;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px var(--gutter) 40px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: #bcaeb5;
  max-width: 440px;
  line-height: 1.6;
  margin-top: 8px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px 24px;
  margin-bottom: 48px;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--champagne);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-family: var(--font-body);
  font-size: 14px;
  color: #c8bbc1;
  transition: color 0.15s var(--ease);
}
.footer-col a:hover {
  color: var(--ivory);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-size: 13px;
  color: #9d8f96;
}
.footer-bottom__links {
  display: flex;
  gap: 20px;
}
.footer-bottom__links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: #9d8f96;
}
.footer-bottom__links a:hover {
  color: #d9ccd2;
}

/* ---------- Rich editorial modules ---------- */
.experience-strip {
  position: relative;
  z-index: 4;
  margin: -34px auto 0;
  max-width: var(--container);
  padding: 0 var(--gutter);
}
.experience-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 249, 244, 0.97);
  border: 1px solid rgba(159, 68, 85, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(45, 32, 42, 0.16);
  overflow: hidden;
}
.experience-item {
  min-width: 0;
  padding: 24px 26px;
  border-right: 1px solid var(--border);
}
.experience-item:last-child {
  border-right: 0;
}
.experience-item__label {
  display: block;
  margin-bottom: 5px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.experience-item strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.story-intro {
  padding: 78px 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(198, 160, 95, 0.12), transparent 30%),
    var(--ivory);
}
.story-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}
.story-intro--reverse .story-intro__media {
  order: 2;
}
.story-intro--reverse .story-intro__content {
  order: 1;
}
.story-intro__media {
  position: relative;
}
.story-intro__media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(159, 68, 85, 0.24);
  border-radius: 32px;
  z-index: 0;
}
.story-intro__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-lift);
}
.story-intro__content h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.12;
}
.story-intro__content > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}
.story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.story-point {
  min-width: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(159, 68, 85, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.story-point span {
  display: block;
  margin-bottom: 6px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.story-point strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

/* Area-page editorial date planner */
.area-date-guide {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(198, 160, 95, 0.13), transparent 28%),
    var(--sand);
}
.area-date-guide__head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
  margin-bottom: 44px;
}
.area-date-guide__head > *,
.area-date-guide__layout > *,
.area-date-guide__steps,
.area-date-step > div {
  min-width: 0;
}
.area-date-guide__head h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  overflow-wrap: break-word;
}
.area-date-guide__intro {
  max-width: 650px;
  margin: 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}
.area-date-guide__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}
.area-date-guide--reverse .area-date-guide__media {
  order: 2;
}
.area-date-guide__media {
  position: relative;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-lift);
}
.area-date-guide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(31, 17, 25, 0.78) 100%);
  pointer-events: none;
}
.area-date-guide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.area-date-guide__media figcaption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.55;
}
.area-date-guide__media figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}
.area-date-guide__steps {
  display: grid;
  gap: 16px;
}
.area-date-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(159, 68, 85, 0.1);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(63, 37, 47, 0.05);
}
.area-date-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.area-date-step h3 {
  margin: 0 0 8px;
  font-size: 23px;
}
.area-date-step p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.72;
}
.area-source-note {
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.6;
}
.area-source-note a {
  color: var(--wine);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.area-practical {
  background: var(--midnight);
}
.area-practical__head {
  max-width: 720px;
  margin-bottom: 34px;
}
.area-practical__head .eyebrow {
  color: var(--gold-light);
}
.area-practical__head h2 {
  margin: 0 0 12px;
  color: var(--ivory);
  font-size: clamp(32px, 3.5vw, 46px);
}
.area-practical__head p {
  margin: 0;
  color: rgba(252, 250, 246, 0.7);
  font-size: 16px;
  line-height: 1.7;
}
.area-practical__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.area-practical__card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
}
.area-practical__card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.area-practical__card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 21px;
}
.area-practical__card p {
  margin: 0;
  color: rgba(252, 250, 246, 0.69);
  font-size: 14px;
  line-height: 1.68;
}

.editorial-showcase {
  overflow: hidden;
}
.editorial-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.editorial-showcase__copy h2 {
  max-width: 560px;
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 52px);
}
.editorial-showcase__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 26px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}
.editorial-showcase__gallery {
  position: relative;
  min-height: 520px;
}
.editorial-showcase__gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-lift);
}
.editorial-showcase__primary {
  position: absolute;
  inset: 0 84px 44px 0;
}
.editorial-showcase__inset {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 42%;
  height: 54%;
  border: 8px solid var(--ivory);
  border-radius: 24px !important;
}
.editorial-showcase__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-showcase__primary img {
  object-position: center 44%;
}
.editorial-showcase__inset img {
  object-position: 56% center;
}
.editorial-showcase__primary figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 4px;
  max-width: 360px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(38, 22, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
.editorial-showcase__primary figcaption span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.editorial-showcase__primary figcaption strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}
.editorial-list {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.editorial-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
}
.editorial-list .icon {
  margin-top: 2px;
  color: var(--wine);
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.content-card {
  min-width: 0;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(159, 68, 85, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.content-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(159, 68, 85, 0.1);
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
}
.content-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.content-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}

.safety-check-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 14px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(159, 68, 85, 0.09);
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(63, 37, 47, 0.05);
}
.safety-check-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(159, 68, 85, 0.1);
  color: var(--wine);
}
.safety-check-row h2 {
  margin-bottom: 8px;
  font-size: 22px;
}
.safety-check-row .body-copy {
  margin-bottom: 0;
}

.prose > div[id] {
  margin-bottom: 0 !important;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(159, 68, 85, 0.08);
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(63, 37, 47, 0.05);
}
.prose > div[id] + div[id] {
  margin-top: 20px;
}
.doc-toc {
  padding: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(159, 68, 85, 0.1);
  border-radius: 18px;
}

@media (max-width: 1024px) {
  .date-ideas-grid {
    grid-template-columns: 1fr;
  }
  .role-section-head,
  .local-scene-grid {
    grid-template-columns: 1fr;
  }
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .local-scene-grid__media {
    min-height: 480px;
  }
  .experience-strip__inner {
    grid-template-columns: 1fr 1fr;
  }
  .experience-item:nth-child(2) {
    border-right: 0;
  }
  .experience-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  .story-intro__grid,
  .editorial-showcase__grid,
  .area-date-guide__head,
  .area-date-guide__layout {
    grid-template-columns: 1fr;
  }
  .story-intro__media,
  .story-intro--reverse .story-intro__media,
  .story-intro--reverse .story-intro__content {
    order: initial;
  }
  .story-intro__media {
    max-width: 760px;
  }
  .editorial-showcase__gallery {
    width: min(100%, 760px);
    min-height: 520px;
  }
  .area-date-guide__head {
    gap: 20px;
    margin-bottom: 34px;
  }
  .area-date-guide__media,
  .area-date-guide--reverse .area-date-guide__media {
    order: initial;
    min-height: 480px;
  }
}

@media (max-width: 768px) {
  .date-ideas-hero {
    min-height: 560px;
  }
  .date-ideas-hero__inner {
    padding-top: 80px;
    padding-bottom: 42px;
  }
  .date-ideas-hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }
  .date-ideas-hero__lead {
    font-size: 17px;
  }
  .date-ideas-hero__nav a {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }
  .date-ideas-note {
    grid-template-columns: 1fr;
  }
  .date-ideas-grid .idea-category__body {
    padding: 26px 22px 18px;
  }
  .date-ideas-grid .idea-category__list {
    padding: 0 22px 22px;
  }
  .date-ideas-grid .idea-category__media {
    height: 220px;
  }
  .date-ideas-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 24px;
  }
  .role-hero {
    min-height: calc(100svh - 64px);
  }
  .role-hero > img {
    object-position: 62% center;
  }
  .role-hero--daddies > img {
    object-position: 86% center;
  }
  .role-hero--babies > img {
    object-position: 88% center;
  }
  .role-hero::after {
    background: linear-gradient(0deg, rgba(27, 15, 23, 0.94) 0%, rgba(27, 15, 23, 0.62) 64%, rgba(27, 15, 23, 0.18) 100%);
  }
  .role-hero__inner {
    padding-top: 100px;
    padding-bottom: 44px;
  }
  .role-hero h1 {
    font-size: clamp(44px, 14vw, 66px);
  }
  .role-hero__notes,
  .industry-grid,
  .signal-grid,
  .age-spectrum {
    grid-template-columns: 1fr;
  }
  .role-hero__notes {
    display: none;
  }
  .role-section-head {
    gap: 18px;
    margin-bottom: 30px;
  }
  .industry-card {
    min-height: 0;
  }
  .local-scene-grid__media {
    min-height: 360px;
  }
  .experience-strip {
    margin-top: -22px;
  }
  .experience-strip__inner,
  .story-points,
  .content-card-grid,
  .area-practical__grid {
    grid-template-columns: 1fr;
  }
  .experience-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .experience-item:last-child {
    border-bottom: 0;
  }
  .story-intro {
    padding: 64px 0;
  }
  .story-intro__grid {
    gap: 42px;
  }
  .area-date-guide__layout {
    gap: 24px;
    width: 100%;
  }
  .area-date-guide__head h2 {
    font-size: clamp(32px, 10vw, 44px);
  }
  .area-date-guide__media {
    min-height: 380px;
    border-radius: 24px;
  }
  .area-date-guide__media figcaption {
    right: 22px;
    bottom: 20px;
    left: 22px;
  }
  .area-date-step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 18px;
  }
  .area-date-step__number {
    width: 38px;
    height: 38px;
  }
  .area-practical__card {
    padding: 22px;
  }
  .story-intro__media::after {
    inset: 12px -10px -10px 12px;
  }
  .editorial-showcase__gallery {
    min-height: 430px;
  }
  .editorial-showcase__primary {
    inset: 0 38px 56px 0;
    height: auto;
    border-radius: 26px !important;
  }
  .editorial-showcase__inset {
    display: block;
    width: 44%;
    height: 43%;
    border-width: 6px;
    border-radius: 20px !important;
  }
  .editorial-showcase__primary figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    max-width: calc(100% - 36px);
    padding: 14px 16px;
  }
  .editorial-showcase__primary figcaption strong {
    font-size: 15px;
  }
  .prose > div[id] {
    padding: 24px 22px;
  }
  .safety-check-row {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 22px 18px;
  }
  .safety-check-row__icon {
    width: 42px;
    height: 42px;
  }
}

/* ---------- Reveal (JS-enhanced, gated) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .primary-nav,
  .header-join {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }

  .city-grid {
    grid-template-columns: 1fr 1fr;
  }
  .city-card:nth-child(even) {
    transform: none;
  }
  .city-card:nth-child(even):hover {
    transform: translateY(-4px);
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .meeting-planner__grid {
    grid-template-columns: 1fr;
  }
  .meeting-planner__media {
    min-height: 560px;
    max-width: 780px;
  }
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }
  .venue-grid {
    grid-template-columns: 1fr 1fr;
  }
  .doc-layout {
    grid-template-columns: 1fr;
  }
  .doc-toc {
    position: static;
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --gutter: 20px;
    --header-h: 72px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 0 68px;
  }
  .hero {
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(38px, 10.5vw, 50px);
  }
  .hero__title-kicker {
    font-size: 0.32em;
  }
  .hero__lead {
    font-size: 17px;
  }
  .hero__visual {
    width: min(100%, 520px);
    margin: 0 auto;
  }
  .hero__image {
    max-height: 540px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .idea-grid {
    grid-template-columns: 1fr;
  }
  .city-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .meeting-planner__media {
    min-height: 440px;
  }
  .meeting-planner__badge {
    right: 14px;
    bottom: 14px;
  }
  .meeting-checkpoint {
    grid-template-columns: 38px 1fr;
    padding: 16px;
  }
  .meeting-checkpoint__num {
    width: 38px;
    height: 38px;
  }
  .guide-grid {
    grid-template-columns: 1fr;
  }
  .venue-grid {
    grid-template-columns: 1fr;
  }
  .idea-category,
  .idea-category--flip {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .idea-category__list {
    order: 2;
  }
  .idea-category__body {
    order: 1;
  }
  .timeline__step {
    gap: 16px;
  }
  .section-head h2 {
    font-size: clamp(29px, 6vw, 34px);
  }
  .accordion {
    padding: 0 20px;
  }
}

@media (max-width: 560px) {
  .hero__grid > div:first-child {
    text-align: center;
  }
  .feature-panel__body {
    padding: 24px;
  }
  .hero__badges {
    position: static;
    margin-top: 22px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero__visual-frame {
    inset: 12px -10px -10px 12px;
    border-radius: 110px 22px 110px 22px;
  }
  .hero__image {
    border-radius: 110px 22px 110px 22px;
    aspect-ratio: 4 / 3;
  }
  .hero__badge {
    white-space: normal;
  }
  .safety-band {
    padding: 24px;
  }
  .btn,
  .btn--lg {
    width: 100%;
  }
  .hero__cta {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .hero__cta .btn {
    width: min(100%, 220px);
  }
  .hero__title-focus {
    max-width: none;
    width: 100%;
  }
  .hero__title-line {
    display: block;
  }
  .hero__title-line--right {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .hero__title-place {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__disclosure {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }
  .accordion {
    padding: 0 16px;
  }
}

/* ---------- Typography & grid utilities ---------- */
.h2 {
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.2;
}
.h2-sm {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
}
.h3 {
  font-size: 26px;
}
.lead {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
}
.body-copy {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
}
.muted {
  color: var(--slate);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mt-0 { margin-top: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.center { text-align: center; }

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ---------- Point items (icon + title + text) ---------- */
.point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.point > .icon {
  color: var(--blue);
  margin-top: 3px;
  flex-shrink: 0;
}
.point__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 4px;
}
.point__text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* ---------- Heading with inline icon ---------- */
.heading-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.heading-row .icon {
  color: var(--blue);
  flex-shrink: 0;
}
.heading-row .icon--coral {
  color: var(--coral);
}

.point-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px;
}

.venue-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.venue-item .icon {
  color: var(--coral);
  margin-top: 2px;
  flex-shrink: 0;
}
.venue-item span {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.5;
}
.venue-item--blue .icon {
  color: var(--blue);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
