:root {
  color-scheme: light;
  --red: #ff3039;
  --red-deep: #d9000c;
  --gold: #f4c95d;
  --jade: #1f8f70;
  --ink: #080808;
  --muted: #6f737c;
  --soft: #f5f6f8;
  --line: rgba(8, 8, 8, 0.1);
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 22px 80px rgba(30, 34, 42, 0.14);
  --soft-shadow: 0 12px 32px rgba(30, 34, 42, 0.1);
  --serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

body::selection {
  background: rgba(255, 48, 57, 0.18);
}

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

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

section[id] {
  scroll-margin-top: 86px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.header-light {
  background: rgba(255, 255, 255, 0.86);
}

.header-editorial {
  background: rgba(250, 250, 247, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(255, 48, 57, 0.2);
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: #3c3f45;
  font-size: 14px;
  font-weight: 750;
}

.top-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.top-nav a:hover,
.site-footer a:hover {
  color: var(--red);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.header-action {
  justify-self: end;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.button-red {
  color: #fff;
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 18px 42px rgba(255, 48, 57, 0.24);
}

.button-quiet {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(8, 8, 8, 0.14);
  box-shadow: 0 14px 34px rgba(30, 34, 42, 0.08);
}

.button-ink {
  color: var(--ink);
  background: transparent;
  border-color: rgba(217, 0, 12, 0.55);
}

.recommended-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(217, 0, 12, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hybrid-hero h1 {
  max-width: 640px;
  font-size: clamp(60px, 7.2vw, 112px);
}

.hybrid-hero .hero-line {
  max-width: 590px;
}

.hero {
  position: relative;
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  min-height: min(820px, calc(100vh - 72px));
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 72px) clamp(38px, 6vw, 72px);
  overflow: hidden;
}

.hero-a {
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  background:
    linear-gradient(90deg, rgba(255, 48, 57, 0.08), rgba(255, 255, 255, 0.2) 34%, rgba(31, 143, 112, 0.08)),
    #fff;
}

.hero-b {
  grid-template-columns: minmax(280px, 0.86fr) minmax(300px, 0.66fr) minmax(280px, 0.72fr);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(244, 201, 93, 0.17), rgba(255, 255, 255, 0.5) 38%, rgba(31, 143, 112, 0.12)),
    #fafaf7;
  border-bottom: 1px solid rgba(8, 8, 8, 0.1);
}

.hero-copy,
.editorial-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.hero h1,
.review-hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 128px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-b h1 {
  max-width: 500px;
  font-size: clamp(52px, 5.4vw, 78px);
}

.review-hero h1 {
  max-width: 540px;
  font-size: clamp(46px, 5.1vw, 74px);
}

.hero-line {
  max-width: 620px;
  margin: 26px 0 0;
  color: #60656e;
  font-size: clamp(20px, 2.1vw, 31px);
  line-height: 1.18;
  font-weight: 740;
}

.red-line {
  margin: 22px 0 0;
  color: var(--red-deep);
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1;
}

.hero-actions,
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.moment-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(34px, 6vw, 72px);
  max-width: 780px;
}

.moment-row a,
.guide-strip a,
.option-card,
.ledger-grid > div,
.proof-list > div,
.place-grid > div,
.chapter-list > div,
.search-notebook > div {
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.moment-row a {
  padding: 20px;
}

.moment-row strong,
.guide-strip strong,
.proof-list strong,
.place-grid strong,
.chapter-list strong,
.search-notebook strong {
  display: block;
  font-size: 17px;
}

.moment-row span,
.guide-strip span,
.proof-list span,
.place-grid span,
.chapter-list span,
.search-notebook em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.35;
}

.hero-product {
  position: relative;
  min-height: 620px;
}

.device-cluster {
  position: relative;
  height: 640px;
}

.phone-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 9px solid #050505;
  border-radius: 44px;
  background: #050505;
  box-shadow: var(--shadow);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 30%;
  height: 4.8%;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
}

.phone-main {
  position: absolute;
  right: 28%;
  top: 0;
  width: min(330px, 34vw);
  height: min(716px, 72vw);
  transform: rotate(-2deg);
}

.phone-side {
  position: absolute;
  width: min(260px, 27vw);
  height: min(562px, 58vw);
  opacity: 0.96;
}

.phone-side-left {
  left: 0;
  top: 110px;
  transform: rotate(-8deg);
}

.phone-side-right {
  right: 0;
  top: 104px;
  transform: rotate(7deg);
}

.floating-audio {
  position: absolute;
  right: 3%;
  bottom: 94px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(360px, 70vw);
  padding: 18px;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.play-dot {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(255, 48, 57, 0.3);
}

.play-dot::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 17px 0 0 21px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}

.floating-audio strong {
  display: block;
  font-size: 21px;
}

.floating-audio span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.split-section,
.moments-section,
.feature-band,
.trial-section,
.editorial-feature,
.search-feature,
.audio-board,
.review-options,
.claim-ledger {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(30px, 7vw, 112px);
  border-top: 1px solid rgba(8, 8, 8, 0.08);
}

.food-section {
  background:
    linear-gradient(110deg, #fff, rgba(255, 48, 57, 0.05) 48%, rgba(244, 201, 93, 0.1)),
    #fff;
}

.places-section {
  grid-template-columns: minmax(300px, 0.62fr) minmax(330px, 0.9fr);
  background:
    linear-gradient(90deg, rgba(31, 143, 112, 0.08), #fff 50%),
    #fff;
}

.section-copy h2,
.section-heading h2,
.trial-section h2,
.editorial-section-copy h2,
.audio-board h2,
.search-feature h2,
.claim-ledger h2 {
  margin: 0;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 82px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.trial-section p,
.editorial-section-copy p,
.audio-board p,
.search-feature p {
  max-width: 680px;
  margin: 20px 0 0;
  color: #6e7279;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.35;
  font-weight: 650;
}

.proof-list,
.place-grid,
.chapter-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.proof-list > div,
.place-grid > div,
.chapter-list > div {
  padding: 20px;
}

.media-stack {
  position: relative;
  justify-self: center;
  width: min(360px, 82vw);
}

.media-stack .phone-frame {
  aspect-ratio: 1320 / 2868;
}

.media-left {
  justify-self: center;
}

.menu-note {
  position: absolute;
  right: -58px;
  bottom: 72px;
  width: 220px;
  padding: 18px;
  border: 1px solid rgba(255, 48, 57, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.menu-note strong,
.menu-note span {
  display: block;
}

.menu-note strong {
  font-family: var(--serif);
  font-size: 28px;
}

.menu-note span {
  margin-top: 6px;
  color: var(--muted);
}

.moments-section {
  background: #f7f8fa;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.section-heading p {
  margin-top: 0;
}

.moment-proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(320px, 0.58fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.proof-phone {
  justify-self: center;
  width: min(340px, 82vw);
  aspect-ratio: 1320 / 2868;
}

.moment-panel {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.proof-chip {
  min-height: 52px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: 850 15px/1 var(--sans);
  cursor: pointer;
}

.proof-chip.active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.moment-results {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.moment-results > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 16px;
  border-radius: 8px;
  background: #f7f8fa;
}

.moment-results span,
.search-notebook span {
  color: var(--red);
  font-weight: 900;
}

.feature-band {
  background:
    linear-gradient(180deg, #fff, rgba(255, 48, 57, 0.06)),
    #fff;
}

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

.feature-phones article,
.audio-grid article {
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 24px;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.small-phone {
  width: min(260px, 72vw);
  aspect-ratio: 1320 / 2868;
}

.feature-phones h3,
.audio-grid h3 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.feature-phones p,
.audio-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
}

.trial-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(280px, 0.38fr);
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(8, 8, 8, 0.1);
  background: #fff;
}

.trial-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 28px;
  border: 1px dashed rgba(8, 8, 8, 0.28);
  border-radius: 8px;
  background: rgba(250, 250, 250, 0.86);
  color: #50545c;
  text-align: center;
}

.trial-placeholder strong {
  color: var(--ink);
  font-size: 18px;
}

.trial-placeholder span {
  margin-top: 10px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(8, 8, 8, 0.1);
  background: #f7f8fa;
}

.site-footer div {
  display: grid;
  gap: 8px;
}

.site-footer span,
.site-footer a {
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 750;
}

.editorial-phone {
  justify-self: center;
  width: min(360px, 42vw);
  aspect-ratio: 1320 / 2868;
}

.chapter-stack {
  display: grid;
  gap: 18px;
}

.chapter-stack a {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-top: 1px solid rgba(217, 0, 12, 0.22);
  background: rgba(255, 255, 255, 0.64);
}

.chapter-stack span,
.chapter-label {
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.chapter-stack strong {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1;
}

.chapter-stack em {
  color: #4e535c;
  font-style: normal;
  line-height: 1.4;
}

.guide-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid rgba(8, 8, 8, 0.1);
}

.guide-strip a {
  padding: 18px;
  box-shadow: none;
}

.recommended-strip {
  background:
    linear-gradient(90deg, rgba(255, 48, 57, 0.04), rgba(31, 143, 112, 0.04)),
    #fff;
}

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 0.86fr);
  gap: clamp(32px, 7vw, 98px);
  align-items: center;
  border-bottom: 1px solid rgba(8, 8, 8, 0.08);
}

.feature-food {
  background: #fff;
}

.feature-places {
  grid-template-columns: minmax(320px, 0.62fr) minmax(300px, 0.82fr);
  background:
    linear-gradient(90deg, rgba(31, 143, 112, 0.1), rgba(255, 255, 255, 0.1) 52%, rgba(244, 201, 93, 0.1)),
    #fff;
}

.editorial-media-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.editorial-media-pair .phone-frame {
  aspect-ratio: 1320 / 2868;
}

.pair-left {
  grid-template-columns: minmax(0, 0.72fr);
  justify-content: center;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--red-deep);
  font-weight: 900;
}

.search-feature {
  background: #f6f8f4;
}

.search-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(320px, 0.56fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.search-layout .phone-frame {
  justify-self: center;
  width: min(330px, 80vw);
  aspect-ratio: 1320 / 2868;
}

.search-notebook {
  display: grid;
  gap: 12px;
}

.search-notebook > div {
  padding: 22px;
  background: #fff;
  box-shadow: none;
}

.audio-board {
  background: #fff;
}

.editorial-trial {
  background:
    linear-gradient(90deg, rgba(255, 48, 57, 0.08), rgba(244, 201, 93, 0.12)),
    #fff;
}

.recommended-page #trial {
  min-height: 680px;
  align-items: start;
}

.editorial-footer {
  background: #fbfaf5;
}

.review-page {
  background: #f7f8fa;
}

.review-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(420px, 0.9fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(105deg, rgba(255, 48, 57, 0.08), rgba(255, 255, 255, 0.6), rgba(31, 143, 112, 0.08)),
    #fff;
}

.review-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.28;
  font-weight: 720;
}

.review-frame {
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.review-options {
  background: #fff;
}

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

.option-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-card {
  overflow: hidden;
  background: #fff;
}

.option-recommended {
  border-color: rgba(217, 0, 12, 0.28);
}

.option-card > div {
  padding: 22px;
}

.option-card > a > img {
  width: 100%;
  aspect-ratio: 1440 / 1100;
  object-fit: cover;
  object-position: top center;
}

.option-card h3,
.ledger-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.option-card p,
.ledger-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.claim-ledger {
  background: #f7f8fa;
}

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.ledger-grid > div {
  padding: 24px;
}

.contact-page {
  background: #f7f8fa;
}

.contact-sheet-main {
  padding: clamp(40px, 6vw, 80px) clamp(18px, 5vw, 72px);
}

.contact-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.compact-intro {
  margin-top: 56px;
  align-items: center;
}

.compact-intro h1 {
  font-size: clamp(44px, 5.4vw, 76px);
}

#responsive-title {
  scroll-margin-top: 112px;
}

.contact-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.9;
}

.contact-intro p {
  max-width: 520px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 720;
}

.contact-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.contact-feature {
  grid-template-columns: minmax(0, 1fr);
}

.contact-compare article {
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.contact-compare h2 {
  margin: 0;
  padding: 20px 20px 14px;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.contact-compare > article > img {
  width: 100%;
  aspect-ratio: 1440 / 1100;
  object-fit: cover;
  object-position: top center;
  border-top: 1px solid rgba(8, 8, 8, 0.08);
}

.mini-row {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 20px 20px;
}

.mini-row img {
  width: 124px;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: 8px;
}

.mini-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 650;
}

.concepts > article > img {
  aspect-ratio: 1536 / 1024;
}

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

.source-mobile-grid {
  grid-template-columns: repeat(2, minmax(220px, 320px));
}

.mobile-review-card {
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.mobile-review-card h2 {
  margin: 0;
  padding: 18px 18px 12px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.mobile-review-card img {
  width: 100%;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top center;
  border-top: 1px solid rgba(8, 8, 8, 0.08);
  border-bottom: 1px solid rgba(8, 8, 8, 0.08);
}

.mobile-review-card p {
  margin: 0;
  padding: 14px 18px 18px;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 650;
}

@media (min-width: 1061px) {
  .hybrid-hero .phone-side-left {
    left: 70px;
  }

  .hybrid-hero .phone-main {
    right: 22%;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .hero-a,
  .hero-b,
  .review-hero,
  .split-section,
  .places-section,
  .trial-section,
  .editorial-feature,
  .feature-places,
  .search-layout,
  .moment-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-product {
    min-height: 560px;
  }

  .device-cluster {
    height: 560px;
  }

  .phone-main {
    right: 30%;
    width: 310px;
    height: 674px;
  }

  .phone-side {
    width: 230px;
    height: 499px;
  }

  .editorial-phone {
    width: min(360px, 76vw);
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 18px;
  }

  .feature-phones,
  .audio-grid,
  .option-grid,
  .option-grid-three,
  .ledger-grid,
  .guide-strip,
  .contact-compare,
  .mobile-review-grid,
  .source-mobile-grid {
    grid-template-columns: 1fr;
  }

  .editorial-media-pair {
    max-width: 720px;
  }

  .places-section .section-copy {
    order: 1;
  }

  .places-section .media-left {
    order: 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand span {
    max-width: 136px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand span {
    font-size: 0;
  }

  .brand span::after {
    content: "SpeakLocal";
    font-size: 16px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero,
  .review-hero {
    padding: 30px 16px 22px;
  }

  .hero h1,
  .review-hero h1 {
    font-size: clamp(46px, 14vw, 72px);
    line-height: 0.9;
  }

  .hero-b h1 {
    font-size: clamp(46px, 13vw, 66px);
  }

  .hero-line,
  .review-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .review-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .moment-row {
    display: none;
  }

  .hero-product {
    min-height: 390px;
    margin-top: -8px;
  }

  .device-cluster {
    height: 390px;
  }

  .phone-main {
    left: 50%;
    right: auto;
    width: 210px;
    height: 456px;
    transform: translateX(-50%) rotate(-2deg);
  }

  .phone-side {
    width: 132px;
    height: 286px;
  }

  .phone-side-left {
    left: 0;
    top: 102px;
  }

  .phone-side-right {
    right: 0;
    top: 108px;
  }

  .floating-audio {
    right: 0;
    bottom: 12px;
    width: 100%;
    padding: 13px;
  }

  .floating-audio .play-dot {
    width: 44px;
    height: 44px;
  }

  .floating-audio .play-dot::after {
    margin: 13px 0 0 17px;
  }

  .floating-audio strong {
    font-size: 18px;
  }

  .floating-audio span {
    font-size: 12px;
  }

  .split-section,
  .moments-section,
  .feature-band,
  .trial-section,
  .editorial-feature,
  .search-feature,
  .audio-board,
  .review-options,
  .claim-ledger {
    padding: 54px 16px;
  }

  .section-copy h2,
  .section-heading h2,
  .trial-section h2,
  .editorial-section-copy h2,
  .audio-board h2,
  .search-feature h2,
  .claim-ledger h2 {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 0.96;
  }

  .section-copy p,
  .section-heading p,
  .trial-section p,
  .editorial-section-copy p,
  .audio-board p,
  .search-feature p {
    font-size: 17px;
  }

  .menu-note {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .feature-phones article,
  .audio-grid article {
    padding: 18px;
  }

  .small-phone {
    width: min(230px, 72vw);
  }

  .site-footer {
    display: grid;
    padding: 28px 16px;
  }

  .recommended-page #trial {
    min-height: 1040px;
  }

  .editorial-media-pair {
    grid-template-columns: 1fr;
  }

  .editorial-media-pair .phone-frame:nth-child(2) {
    display: none;
  }

  .chapter-stack a {
    padding: 18px 0;
  }

  .contact-intro {
    display: block;
  }

  .contact-intro p {
    font-size: 17px;
  }

  .mini-row {
    grid-template-columns: 92px 1fr;
    padding: 14px;
  }

  .mini-row img {
    width: 92px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .proof-chip,
  .moment-row a,
  .guide-strip a,
  .option-card {
    transition:
      transform 160ms ease,
      box-shadow 160ms ease,
      border-color 160ms ease,
      background 160ms ease;
  }

  .button:hover,
  .moment-row a:hover,
  .guide-strip a:hover,
  .option-card:hover {
    transform: translateY(-2px);
  }
}
