/*
Theme Name: NYC Sugar Daddies
Theme URI: https://nycsugardaddies.com/
Author: NYC Sugar Daddies
Description: A premium, privacy-conscious WordPress theme for NYC Sugar Daddies.
Version: 1.0.0
Requires at least: 6.3
Requires PHP: 7.4
Text Domain: nycsugardaddies
*/

:root {
  --ink: #171515;
  --muted: #625e59;
  --ivory: #f8f4ed;
  --paper: #fffdf9;
  --wine: #6f0c27;
  --wine-dark: #4f061b;
  --gold: #b58a57;
  --gold-soft: #decdb9;
  --line: #e7ddd1;
  --shadow: 0 18px 50px rgba(42, 27, 19, 0.1);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
body.admin-bar .site-header {
  top: auto;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
.button {
  cursor: pointer;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.site-main {
  overflow: hidden;
}
.section {
  padding: 96px 0;
}
.section--tight {
  padding: 68px 0;
}
.section--paper {
  background: var(--paper);
}
.section--ink {
  color: #fff;
  background: #171717;
}
.section--wine {
  color: #fff;
  background: linear-gradient(125deg, var(--wine-dark), #7e0e30);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section--ink .eyebrow,
.section--wine .eyebrow {
  color: #e3bd8c;
}
h1,
h2,
h3,
h4 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
}
h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
}
h2 {
  font-size: clamp(2.4rem, 4.3vw, 4.4rem);
}
h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}
p {
  margin: 0 0 20px;
}
.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}
.section--ink .lead,
.section--wine .lead {
  color: rgba(255, 255, 255, 0.78);
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--wine);
  border-radius: 3px;
  background: var(--wine);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  transition: 0.2s ease;
}
.button:hover,
.button:focus-visible {
  background: var(--wine-dark);
  color: #fff;
  transform: translateY(-1px);
}

.button.button--light:hover,
.button.button--light:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--wine-dark);
  opacity: 0.9;
}
.button--outline {
  background: transparent;
  color: var(--wine);
}
.button--light {
  border-color: #fff;
  background: #fff;
  color: var(--wine-dark);
}
.button--light-outline {
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
  color: #fff;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.gold-rule {
  width: 66px;
  height: 2px;
  margin: 22px 0;
  background: var(--gold);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Header */
.site-header {
  position: relative;
  top: auto;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.98);
}
.header-inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.custom-logo {
  width: auto;
  max-height: 42px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.primary-nav a {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 0;
  font-size: 0.84rem;
  font-weight: 650;
}
.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--wine);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition: 0.2s ease;
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.header-login {
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1;
}
.header-actions .button {
  min-height: 42px;
  padding-inline: 20px;
  line-height: 1;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
}
.split-section {
  padding: 72px 0;
}

.split-section .split {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.split-section .split__media {
  width: 100%;
  min-width: 0;
}
/* Shared page hero and cards */
.page-hero {
  padding: 92px 0 78px;
  text-align: center;
  background: var(--paper);
}
.page-hero .lead {
  margin: 0 auto;
}
.page-hero--image {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: left;
  background-position: center;
  background-size: cover;
}
.page-hero--image::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 18, 22, 0.82) 0%,
    rgba(12, 18, 22, 0.52) 50%,
    rgba(12, 18, 22, 0.08) 100%
  );
  content: "";
}
.page-hero--image .shell {
  position: relative;
}
.page-hero--image .hero-copy {
  max-width: 650px;
}
.page-hero--image .lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}
.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.icon-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.icon-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.5rem;
}
.icon-card p {
  color: var(--muted);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.split__copy {
  padding: clamp(40px, 7vw, 100px);
}
.split__media {
  min-height: 560px;
  height: 100%;
  object-fit: cover;
}
.center-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.trust-strip {
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  border-right: 1px solid var(--line);
  font-size: 0.87rem;
  font-weight: 700;
}
.trust-item:last-child {
  border: 0;
}
.trust-mark {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.25rem;
}

/* Homepage */
.home-hero {
  min-height: 660px;
  padding: 110px 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(14, 20, 24, 0.86),
      rgba(14, 20, 24, 0.48) 52%,
      rgba(14, 20, 24, 0.05)
    ),
    url("assets/images/hero.jpg");
}
.home-hero h1 {
  max-width: 700px;
  font-size: clamp(3.2rem, 6vw, 6rem);
}
.feature-band__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 50px;
}
.feature-band__item {
  padding: 12px 24px;
  text-align: center;
  border-right: 1px solid rgba(222, 205, 185, 0.38);
}
.feature-band__item:last-child {
  border: 0;
}
.feature-band__item .icon-card__icon {
  margin: 0 auto 18px;
  border-color: var(--gold);
  color: #e3bd8c;
}
.feature-band__item h3 {
  font-size: 1.35rem;
}
.feature-band__item p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
}
.nyc-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: stretch;
}
.nyc-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
  background: var(--paper);
}
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.photo-grid img:first-child {
  grid-row: 1 / 3;
  height: 524px;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.audience-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--paper);
}
.audience-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.audience-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step {
  position: relative;
  padding: 26px 50px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.step:last-child {
  border: 0;
}
.step__number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-weight: 800;
}
.event-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card,
.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}
.event-card img,
.post-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.event-card__body,
.post-card__body {
  padding: 26px;
}
.event-card p,
.post-card p {
  color: var(--muted);
  font-size: 0.9rem;
}
.post-card__category {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-link {
  color: var(--wine);
  font-size: 0.85rem;
  font-weight: 800;
}

/* Why us */
.stateless-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.proof-panel {
  min-height: 390px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background-position: center;
  background-size: cover;
}
.proof-panel::before {
  content: none;
}
.proof-panel p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.78);
}
.privacy-panel {
  padding: 64px;
  background: var(--wine);
  color: #fff;
}

/* How it works */
.process-list {
  max-width: 940px;
  margin: 0 auto;
}
.process-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.process-row:last-child {
  border: 0;
}
.process-number {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 2rem;
}
.waitlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 56px;
  border: 1px solid var(--gold-soft);
  background: var(--paper);
}
.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
}
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--wine);
  content: "✓";
  font-weight: 900;
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.plan-card {
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.plan-card--featured {
  border-color: var(--wine);
  box-shadow: var(--shadow);
}
.plan-price {
  margin: 10px 0 22px;
  font-family: var(--serif);
  font-size: 2.6rem;
}
.plan-price small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.8rem;
}
.safety-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: start;
}
.contact-form {
  padding: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 800;
}
.field input,
.field textarea,
.field select,
.search-form input {
  width: 100%;
  border: 1px solid #d8cec3;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
}
.field input,
.field select {
  height: 50px;
  padding: 0 14px;
}
.field textarea {
  min-height: 180px;
  padding: 14px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus,
.search-form input:focus {
  outline: 2px solid rgba(111, 12, 39, 0.22);
  border-color: var(--wine);
}
.support-card {
  margin-bottom: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.notice {
  margin-bottom: 28px;
  padding: 14px 18px;
  border-left: 3px solid var(--wine);
  background: #f5e8ec;
}
.notice--success {
  border-color: #496f55;
  background: #eaf3ec;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
}

/* Safety */
.safety-lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.safety-lane {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}
.safety-lane__head {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 38px;
  color: #fff;
  background-position: center;
  background-size: cover;
}
.safety-lane__body {
  padding: 42px;
}
.safety-topic {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.safety-topic:last-child {
  border: 0;
}
.warning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.warning-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.emergency-note {
  padding: 32px;
  border: 1px solid var(--gold-soft);
  background: #fff9f1;
}

/* Blog archive */
.blog-hero {
  position: relative;
  padding: 90px 0;
  background: var(--paper);
}
.blog-hero__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}
.blog-hero__image {
  height: 440px;
  width: 100%;
  object-fit: cover;
}
.search-form {
  display: flex;
  max-width: 520px;
  margin-top: 30px;
}
.search-form label {
  flex: 1;
}
.search-form input {
  height: 52px;
  padding: 0 16px;
  border-right: 0;
}
.search-form .button {
  border-radius: 0 3px 3px 0;
}
.category-bar {
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.category-bar__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 52px;
  overflow-x: auto;
}
.category-bar a {
  white-space: nowrap;
  font-size: 0.87rem;
  font-weight: 700;
}
.featured-post {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}
.featured-post img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.featured-post__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px;
}
.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}
.archive-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sidebar-card {
  margin-bottom: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.topic-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.topic-list li {
  border-bottom: 1px solid var(--line);
}
.topic-list a {
  display: flex;
  padding: 12px 0;
  justify-content: space-between;
}
.sidebar-safety {
  padding: 38px 30px;
  color: #fff;
  text-align: center;
  background: var(--wine);
}
.pagination,
.nav-links {
  display: flex;
  margin-top: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-numbers {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
}
.page-numbers.current {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}

/* Single */
.breadcrumb {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.78rem;
}
.single .breadcrumb {
  margin-top: 0;
}
.article-head {
  padding: 72px 0 42px;
  text-align: center;
  background: var(--paper);
}
.article-head h1 {
  max-width: 960px;
  margin-inline: auto;
}
.article-deck {
  max-width: 760px;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 1.2rem;
}
.article-meta {
  color: var(--muted);
  font-size: 0.78rem;
}
.article-hero {
  width: var(--shell);
  height: 560px;
  margin: 0 auto 50px;
  object-fit: cover;
}
.article-layout {
  width: min(1000px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 690px) 260px;
  gap: 50px;
  margin: 0 auto;
  align-items: start;
}
.article-content {
  font-family: Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.8;
}
.article-content h2 {
  margin-top: 48px;
  font-size: 2.45rem;
}
.article-content h3 {
  margin-top: 34px;
  font-size: 1.75rem;
}
.article-content ul,
.article-content ol {
  padding-left: 24px;
}
.article-content blockquote {
  margin: 34px 0;
  padding: 22px 28px;
  border: 1px solid var(--gold-soft);
  color: #43372f;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.35;
}
.article-content .safety-note {
  margin: 30px 0;
  padding: 24px;
  border-left: 3px solid var(--wine);
  background: #f7eaee;
  font-family: var(--sans);
  font-size: 0.9rem;
}
.article-content img {
  margin: 38px 0;
}
.toc {
  position: sticky;
  top: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.toc strong {
  display: block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.toc a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}
.author-box {
  display: flex;
  margin-top: 50px;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.author-mark {
  width: 58px;
  height: 58px;
  display: grid;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.5rem;
}

/* Legal and general content */
.legal-shell {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}
.legal-content {
  padding: 74px 0 100px;
}
.legal-content h2 {
  margin: 48px 0 14px;
  font-size: 2rem;
}
.legal-content h3 {
  margin: 30px 0 10px;
  font-size: 1.45rem;
}
.legal-content p,
.legal-content li {
  color: #3f3a36;
}
.legal-content ul {
  padding-left: 22px;
}
.legal-updated {
  color: var(--muted);
  font-size: 0.82rem;
}
.empty-state {
  padding: 50px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}

/* Footer */
.site-cta {
  padding: 70px 0;
  background: linear-gradient(120deg, var(--wine-dark), #750e2c);
  color: #fff;
}
.site-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.site-cta h2 {
  max-width: 650px;
  margin: 0;
}
.site-footer {
  padding: 48px 0;
  background: #171717;
  color: #fff;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.55rem;
}
.footer-note {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    gap: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }
  .primary-nav,
  .header-actions {
    display: none;
  }
  .site-header.is-open .primary-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }
  .site-header.is-open .header-inner {
    padding-bottom: 20px;
  }
  .site-header.is-open .primary-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-header.is-open .primary-nav a {
    min-height: auto;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .site-header.is-open .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 6px;
    padding-bottom: 4px;
  }
  .feature-band__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 42px;
  }
  .archive-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .sidebar-card {
    margin: 0;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
    grid-row: 1;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 30px, 680px);
  }
  body.admin-bar .site-header {
    top: auto;
  }
  .section {
    padding: 68px 0;
  }
  h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }
  h2 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }
  .page-hero--image,
  .home-hero {
    min-height: 600px;
  }
  .page-hero--image::before {
    background: rgba(12, 18, 22, 0.66);
  }
  .trust-strip__inner,
  .icon-card-grid,
  .steps,
  .event-grid,
  .post-grid,
  .warning-grid,
  .safety-journey {
    grid-template-columns: 1fr;
  }
  .trust-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .split,
  .nyc-grid,
  .audience-grid,
  .audience-card,
  .stateless-proof,
  .waitlist,
  .plan-grid,
  .support-grid,
  .safety-lanes,
  .blog-hero__inner,
  .featured-post,
  .archive-posts {
    grid-template-columns: 1fr;
  }
  .split__media {
    min-height: 420px;
  }
  .split__copy,
  .nyc-copy,
  .privacy-panel,
  .contact-form,
  .safety-lane__body {
    padding: 36px 24px;
  }
  .feature-band__grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-band__item:nth-child(even) {
    border: 0;
  }
  .photo-grid img,
  .photo-grid img:first-child {
    grid-row: auto;
    height: 230px;
  }
  .audience-card img {
    height: 340px;
  }
  .process-row {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
  .process-number {
    width: 52px;
    height: 52px;
  }
  .blog-sidebar {
    grid-template-columns: 1fr;
  }
  .blog-hero__image,
  .featured-post img,
  .article-hero {
    height: 360px;
  }
  .category-bar__inner {
    justify-content: flex-start;
    gap: 30px;
  }
  .article-layout {
    width: var(--shell);
  }
  .site-cta__inner,
  .footer-inner {
    display: block;
  }
  .site-cta .button-row {
    margin-top: 30px;
  }
  .footer-nav {
    margin-top: 28px;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 1.2rem;
  }
  .home-hero {
    min-height: 650px;
  }
  .feature-band__grid {
    grid-template-columns: 1fr;
  }
  .feature-band__item {
    border: 0;
    border-bottom: 1px solid rgba(222, 205, 185, 0.24);
  }
  .photo-grid {
    grid-template-columns: 1fr;
  }
  .search-form {
    display: block;
  }
  .search-form input {
    border-right: 1px solid #d8cec3;
  }
  .search-form .button {
    width: 100%;
    margin-top: 10px;
  }
  .article-hero {
    width: 100%;
    height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
