:root {
  --guide-red: var(--red, #e4181b);
  --guide-red-deep: var(--red-deep, #b30e12);
  --guide-ink: var(--ink, #16110f);
  --guide-ink-soft: var(--ink-soft, #4a4543);
  --guide-paper: var(--paper, #fff);
  --guide-grey: var(--grey, #ecebea);
  --guide-line: var(--grey-line, #e2e0de);
  --guide-beige: var(--beige, #efebe6);
  --guide-ease: var(--ease, cubic-bezier(.22, .61, .36, 1));
  --guide-out: var(--bezier-out, cubic-bezier(.16, 1, .3, 1));
}

.best-guide {
  overflow: hidden;
  background: var(--guide-paper);
  color: var(--guide-ink);
  font-family: 'Archivo', system-ui, sans-serif;
}

.guide-wrap {
  width: min(1320px, 92vw);
  margin-inline: auto;
}

.guide-kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.15rem;
  color: var(--guide-red-deep);
  font: 700 .72rem/1 'Archivo', sans-serif;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.guide-kicker::before {
  width: 26px;
  height: 2px;
  background: var(--guide-red-deep);
  content: '';
}

.guide-hero {
  padding: calc(var(--nav-h, 78px) + 4.4rem) 0 clamp(5rem, 9vw, 8.5rem);
  background: #fff;
}

.guide-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  align-items: stretch;
  gap: clamp(2.5rem, 5vw, 5.5rem);
}

.guide-hero-copy {
  min-width: 0;
  padding-bottom: 0;
}

.guide-hero h1,
.guide-section h2,
.guide-final h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5.25vw, 5.9rem);
  line-height: .88;
  letter-spacing: -.015em;
}

.guide-hero h1 span {
  display: block;
}

.guide-hero h1 .accent {
  color: var(--guide-red);
}

.guide-deck {
  max-width: 62ch;
  margin: 1.7rem 0 2rem;
  color: var(--guide-ink-soft);
  font-size: 1.08rem;
  line-height: 1.6;
}

.guide-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.guide-local-note {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 1.15rem 0 0;
  color: var(--guide-red-deep);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.guide-local-note::before {
  width: 18px;
  height: 2px;
  background: var(--guide-red-deep);
  content: '';
}

.guide-hero-meta {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, .75fr) minmax(0, 1.25fr) minmax(0, .9fr);
  gap: 1rem;
  margin-top: 2.6rem;
}

.guide-hero-meta div {
  min-width: 0;
  padding-top: .85rem;
  border-top: 1px solid var(--guide-line);
}

.guide-hero-meta b {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.guide-hero-meta span {
  display: block;
  margin-top: .45rem;
  color: var(--guide-ink-soft);
  font-size: .64rem;
  line-height: 1.35;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.guide-hero-visual {
  position: relative;
  min-width: 0;
  aspect-ratio: auto;
  overflow: visible;
  background: var(--guide-beige);
  box-shadow: 0 36px 80px -46px rgba(228, 24, 27, .45);
}

.guide-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.guide-hero-visual figcaption {
  position: absolute;
  bottom: 2rem;
  left: -18px;
  padding: .78rem 1.08rem;
  background: var(--guide-red);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.guide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 52px;
  padding: .95rem 1.7rem;
  border: 1.5px solid var(--guide-red);
  border-radius: 0;
  background: var(--guide-red);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .3s var(--guide-out), background .3s var(--guide-ease), color .3s var(--guide-ease), border-color .3s var(--guide-ease);
}

.guide-button:hover {
  border-color: var(--guide-red-deep);
  background: var(--guide-red-deep);
  color: #fff;
  transform: translateY(-2px);
}

.guide-button--outline {
  border-color: var(--guide-ink);
  background: transparent;
  color: var(--guide-ink);
}

.guide-button--outline:hover {
  border-color: var(--guide-ink);
  background: var(--guide-ink);
}

.guide-intent-bridge {
  padding: clamp(2.1rem, 2.4vw, 2.35rem) 0;
  background: var(--guide-ink);
  color: #fff;
}

.guide-intent-bridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.guide-intent-bridge-copy::before {
  display: block;
  width: 22px;
  height: 2px;
  margin-bottom: 1rem;
  background: var(--guide-red);
  content: '';
}

.guide-intent-bridge h2 {
  max-width: 24ch;
  margin: 0;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.65rem, 2.45vw, 2.35rem);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.guide-intent-bridge p {
  max-width: 56ch;
  margin: .85rem 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
  line-height: 1.5;
}

.guide-intent-bridge-cta {
  min-width: 280px;
  justify-self: end;
}

.guide-section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.guide-section--paper {
  background: var(--guide-paper);
}

.guide-section--grey {
  background: var(--guide-grey);
}

.guide-section--beige {
  background: var(--guide-beige);
}

.guide-section--ink {
  background: var(--guide-ink);
  color: #fff;
}

.guide-section-head {
  display: block;
  max-width: 1180px;
  margin: 0;
}

.guide-section-head > span {
  display: none;
}

.guide-section h2,
.guide-final h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  line-height: .96;
  letter-spacing: -.01em;
}

.guide-title-line {
  display: block;
}

@media (min-width: 1200px) {
  .guide-title-line {
    white-space: nowrap;
  }
}

@media (min-width: 981px) and (max-width: 1399px) {
  .guide-final h2 {
    font-size: clamp(2.9rem, 3.6vw, 3.25rem);
  }
}

.guide-intro {
  max-width: 66ch;
  margin: 1.7rem 0 3.4rem;
  color: var(--guide-ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.guide-section--ink .guide-intro {
  color: rgba(255, 255, 255, .74);
}

.facial-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--guide-line);
  background: var(--guide-line);
}

.facial-selector fieldset {
  min-width: 0;
  margin: 0;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border: 0;
  background: #fff;
}

.facial-selector legend {
  float: left;
  width: 100%;
  min-height: 4.8rem;
  margin: 0 0 1.2rem;
  font: 700 1.05rem/1.35 'Archivo', sans-serif;
}

.facial-selector legend span {
  display: block;
  margin-bottom: .65rem;
  color: var(--guide-red);
  font-size: .72rem;
}

.selector-options {
  clear: both;
  display: grid;
  gap: .65rem;
}

.selector-options label {
  position: relative;
  display: block;
  cursor: pointer;
}

.selector-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.selector-options span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: .85rem 1rem;
  border: 1px solid var(--guide-line);
  background: #fff;
  color: var(--guide-ink);
  font-size: .92rem;
  line-height: 1.35;
  transition: border-color .2s, background .2s, color .2s;
}

.selector-options input:focus-visible + span {
  outline: 3px solid rgba(228, 24, 27, .25);
  outline-offset: 2px;
}

.selector-options input:checked + span {
  border-color: var(--guide-red);
  background: var(--guide-red);
  color: #fff;
}

.facial-selector > .guide-button {
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: -1px;
}

.selector-result {
  margin-top: 1px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 5px solid var(--guide-red);
  background: var(--guide-ink);
  color: #fff;
}

.selector-result h3 {
  margin: 0 0 .7rem;
  font: 700 clamp(1.45rem, 2.5vw, 2.3rem)/1 'Jost', sans-serif;
  text-transform: uppercase;
}

.selector-result p {
  max-width: 820px;
  margin: .6rem 0;
  color: rgba(255, 255, 255, .75);
  line-height: 1.55;
}

.selector-result a {
  color: #fff;
}

.type-grid,
.boundary-grid,
.price-copy-grid,
.area-grid {
  display: grid;
  gap: 1rem;
}

.type-grid,
.boundary-grid,
.price-copy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.type-card,
.price-copy-grid > div,
.area-grid article {
  border: 1px solid var(--guide-line);
  background: #fff;
}

.type-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.type-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--guide-line);
}

.type-card-top span {
  color: var(--guide-red);
  font-size: .72rem;
  font-weight: 700;
}

.type-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 1.4rem 0 0;
  overflow: hidden;
  background: var(--guide-beige);
}

.type-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--guide-out);
}

.type-card:hover .type-card-media img {
  transform: scale(1.025);
}

.type-card:nth-child(2) .type-card-media img {
  object-position: center 42%;
}

.type-card:nth-child(4) .type-card-media img {
  object-position: center 46%;
}

.type-card:nth-child(5) .type-card-media img {
  object-position: center 40%;
}

.type-card:nth-child(6) .type-card-media img {
  object-position: center 52%;
}

.type-card-top p {
  margin: 0;
  color: var(--guide-ink-soft);
  font-size: .78rem;
}

.type-card h3 {
  max-width: 18ch;
  margin: 1.7rem 0 1.15rem;
  font: 700 clamp(1.65rem, 2.5vw, 2.5rem)/.98 'Jost', sans-serif;
  text-transform: uppercase;
}

.type-card p {
  max-width: 65ch;
  margin: 0 0 .9rem;
  color: var(--guide-ink-soft);
  line-height: 1.65;
}

.type-card strong {
  color: var(--guide-ink);
}

.menu-decoder {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(2rem, 6vw, 5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(22, 17, 15, .2);
}

.menu-decoder h3 {
  max-width: 15ch;
  margin: 0;
  font: 700 clamp(1.7rem, 3vw, 2.7rem)/1 'Jost', sans-serif;
  text-transform: uppercase;
}

.menu-decoder > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2.5rem;
}

.menu-decoder p {
  margin: 0;
  color: var(--guide-ink-soft);
  line-height: 1.65;
}

.menu-decoder strong {
  display: block;
  margin-bottom: .4rem;
  color: var(--guide-ink);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 2.5rem 0 1.2rem;
}

.filter-chip {
  min-height: 44px;
  padding: .7rem 1rem;
  border: 1px solid var(--guide-ink);
  background: transparent;
  color: var(--guide-ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.filter-chip:hover,
.filter-chip.is-active {
  background: var(--guide-ink);
  color: #fff;
}

.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--guide-line);
  background: #fff;
}

.comparison-table {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.15rem;
  border-right: 1px solid var(--guide-line);
  border-bottom: 1px solid var(--guide-line);
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--guide-ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  width: 18%;
  font-size: .95rem;
  line-height: 1.35;
}

.comparison-table tbody td {
  color: var(--guide-ink-soft);
  font-size: .92rem;
  line-height: 1.45;
}

.comparison-table tr[hidden] {
  display: none;
}

.table-note {
  max-width: 850px;
  margin: 1rem 0 0;
  color: var(--guide-ink-soft);
  font-size: .85rem;
  line-height: 1.55;
}

.price-scale {
  margin: clamp(3rem, 6vw, 5rem) 0;
}

.price-track {
  position: relative;
  height: 230px;
  border: 1px solid var(--guide-line);
  border-bottom: 2px solid var(--guide-ink);
  background: #f7f6f5;
}

.price-track span {
  position: absolute;
  right: calc(100% - var(--end));
  bottom: 0;
  left: var(--start);
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: .7rem;
  border-right: 1px solid rgba(255, 255, 255, .35);
  background: var(--guide-red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.price-track span:nth-child(2) {
  bottom: 55px;
  background: var(--guide-ink);
}

.price-track span:nth-child(3) {
  bottom: 110px;
  background: #514a47;
}

.price-track span:nth-child(4) {
  bottom: 165px;
  background: #a49d98;
}

.price-ticks {
  display: flex;
  justify-content: space-between;
  padding-top: .7rem;
  font-size: .69rem;
  font-weight: 700;
  line-height: 1;
}

.price-copy-grid > div {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--guide-beige);
}

.price-copy-grid h3,
.area-grid h3 {
  margin: 0 0 .75rem;
  font: 700 1.25rem/1 'Jost', sans-serif;
  text-transform: uppercase;
}

.price-copy-grid p,
.area-grid p {
  margin: 0;
  color: var(--guide-ink-soft);
  line-height: 1.65;
}

.guide-callout {
  max-width: 950px;
  margin: 2.5rem 0 0;
  padding: 1.4rem 0 1.4rem 1.5rem;
  border-left: 4px solid var(--guide-red);
  font-size: 1.05rem;
  line-height: 1.65;
}

.guide-linkline {
  margin: 1.8rem 0 0;
  color: var(--guide-ink-soft);
}

.guide-linkline a,
.guide-section a:not(.guide-button):not(.menu-list a) {
  color: inherit;
  text-decoration-color: var(--guide-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.boundary-grid {
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .18);
}

.boundary-grid article {
  min-height: 260px;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.boundary-grid span {
  color: var(--guide-red);
  font: 300 2.3rem/1 'Jost', sans-serif;
}

.boundary-grid h3 {
  margin: 1.3rem 0 .9rem;
  font: 700 clamp(1.35rem, 2vw, 1.8rem)/1 'Jost', sans-serif;
  text-transform: uppercase;
}

.boundary-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
}

.medical-note {
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, .68);
}

.mimiq-position {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(3rem, 7vw, 6rem);
  margin: 3rem 0;
}

.mimiq-position > div:first-child p {
  margin: 0 0 1.25rem;
  color: var(--guide-ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.menu-list {
  border-top: 1px solid var(--guide-ink);
}

.menu-list a,
.menu-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--guide-line);
  color: var(--guide-ink);
  text-decoration: none;
}

.menu-list a:hover b {
  color: var(--guide-red);
}

.menu-list span {
  display: grid;
  gap: .25rem;
}

.menu-list b {
  font: 700 .95rem/1.2 'Jost', sans-serif;
  text-transform: uppercase;
  transition: color .2s;
}

.menu-list small {
  color: var(--guide-ink-soft);
}

.menu-list em {
  font-style: normal;
  font-weight: 600;
  text-align: right;
}

.area-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3rem;
}

.area-grid article {
  padding: clamp(1.4rem, 2.7vw, 2.2rem);
  background: #fff;
}

.guide-faq-list {
  margin-top: 3rem;
  border-top: 1px solid var(--guide-ink);
}

.guide-faq-item {
  border-bottom: 1px solid var(--guide-line);
}

.guide-faq-item summary {
  display: grid;
  grid-template-columns: 50px 1fr 32px;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
}

.guide-faq-item summary::-webkit-details-marker {
  display: none;
}

.guide-faq-item summary > span {
  color: var(--guide-red);
  font-size: .7rem;
  font-weight: 700;
}

.guide-faq-item summary strong {
  font: 700 clamp(1rem, 1.5vw, 1.25rem)/1.35 'Jost', sans-serif;
  text-transform: uppercase;
}

.guide-faq-item summary i {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid var(--guide-line);
  border-radius: 50%;
}

.guide-faq-item summary i::before,
.guide-faq-item summary i::after {
  position: absolute;
  top: 14px;
  right: 8px;
  left: 8px;
  height: 2px;
  background: var(--guide-red);
  content: '';
}

.guide-faq-item summary i::after {
  transform: rotate(90deg);
  transition: transform .2s;
}

.guide-faq-item[open] summary i {
  border-color: var(--guide-red);
  background: var(--guide-red);
}

.guide-faq-item[open] summary i::before,
.guide-faq-item[open] summary i::after {
  background: #fff;
}

.guide-faq-item[open] summary i::after {
  transform: rotate(0);
}

.guide-faq-answer {
  max-width: 900px;
  margin: 0 0 1.8rem 66px;
  color: var(--guide-ink-soft);
  line-height: 1.65;
}

.guide-faq-answer p {
  margin: 0;
}

.guide-faq-answer p + p {
  margin-top: .9rem;
}

.guide-faq-answer a {
  color: var(--guide-red-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}

.guide-faq-answer a:hover {
  color: var(--guide-red);
}

.guide-final {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--guide-red);
  color: #fff;
}

.guide-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
}

.guide-final-grid > span {
  display: none;
}

.guide-final .guide-kicker {
  color: #fff;
}

.guide-final .guide-kicker::before {
  background: #fff;
}

.guide-final h2 {
  max-width: none;
}

@media (min-width: 981px) and (max-width: 1199px) {
  .guide-final-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .guide-final .guide-button {
    justify-self: start;
  }
}

.guide-button--light {
  border-color: #fff;
  background: #fff;
  color: var(--guide-red);
}

.guide-button--light:hover {
  border-color: var(--guide-ink);
  background: var(--guide-ink);
}

.mobile-guide-cta {
  display: none;
}

.guide-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--guide-out), transform .75s var(--guide-out);
}

.guide-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .guide-hero-grid,
  .guide-intent-bridge-grid,
  .mimiq-position,
  .menu-decoder {
    grid-template-columns: 1fr;
  }

  .guide-hero h1 {
    font-size: clamp(3rem, 11vw, 6rem);
  }

  .guide-hero-copy {
    padding-bottom: 0;
  }

  .guide-hero-visual {
    aspect-ratio: 16 / 10;
  }

  .guide-hero-visual figcaption {
    left: 0;
  }

  .guide-intent-bridge-grid {
    gap: 1.75rem;
  }

  .guide-intent-bridge-cta {
    min-width: 0;
    justify-self: start;
  }

  .facial-selector {
    grid-template-columns: 1fr;
  }

  .type-grid,
  .boundary-grid,
  .price-copy-grid {
    grid-template-columns: 1fr;
  }

  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-decoder > div {
    grid-template-columns: 1fr;
  }

  .guide-final-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .guide-final .guide-button {
    justify-self: start;
  }

  .mobile-guide-cta {
    position: fixed;
    z-index: 80;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: .9rem 1rem;
    background: var(--guide-red);
    color: #fff;
    font-size: .73rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 12px 35px rgba(22, 17, 15, .32);
    opacity: 0;
    transform: translateY(120%);
    pointer-events: none;
    transition: opacity .3s, transform .45s var(--guide-out);
  }

  .mobile-guide-cta.is-visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

@media (max-width: 620px) {
  .guide-wrap {
    width: min(100% - 32px, 1320px);
  }

  .guide-hero {
    padding-top: calc(var(--nav-h, 78px) + 2.2rem);
  }

  .guide-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.6rem);
  }

  .guide-deck {
    font-size: 1rem;
  }

  .guide-hero-actions,
  .guide-hero-actions .guide-button {
    width: 100%;
  }

  .guide-hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-hero-visual {
    aspect-ratio: 4 / 3;
  }

  .guide-intent-bridge {
    padding: 2.5rem 0;
  }

  .guide-intent-bridge h2 {
    max-width: 18ch;
    font-size: clamp(1.8rem, 8.5vw, 2.5rem);
  }

  .guide-intent-bridge-cta {
    width: 100%;
  }

  .guide-section h2,
  .guide-final h2 {
    max-width: 15ch;
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .guide-title-line {
    display: inline;
    white-space: normal;
  }

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

  .price-track {
    height: 250px;
  }

  .price-track span {
    padding: .45rem;
    font-size: .61rem;
  }

  .price-ticks span:nth-child(2),
  .price-ticks span:nth-child(4) {
    display: none;
  }

  .menu-list a,
  .menu-list > div {
    align-items: flex-start;
    flex-direction: column;
    gap: .65rem;
  }

  .menu-list em {
    text-align: left;
  }

  .guide-faq-item summary {
    grid-template-columns: 34px 1fr 32px;
    gap: .6rem;
  }

  .guide-faq-answer {
    margin-left: 34px;
  }

  .guide-final .guide-button {
    width: 100%;
  }
}

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

  .guide-reveal,
  .mobile-guide-cta,
  .guide-button,
  .guide-faq-item summary i::after {
    transition: none !important;
  }

  .guide-reveal {
    opacity: 1;
    transform: none;
  }
}
