:root {
  --ink: #241d1f;
  --muted: #665d60;
  --line: #e7ded9;
  --paper: #fffaf6;
  --soft: #f3ebe5;
  --rose: #8f3f55;
  --rose-dark: #6f2f42;
  --teal: #326c69;
  --gold: #c38b4a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(70, 44, 36, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--rose);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(25, 15, 12, 0.72), rgba(25, 15, 12, 0.12));
  box-shadow: 0 10px 28px rgba(31, 20, 18, 0.08);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.is-scrolled {
  color: var(--white);
  background: linear-gradient(to bottom, rgba(25, 15, 12, 0.72), rgba(25, 15, 12, 0.12));
  box-shadow: 0 12px 30px rgba(31, 20, 18, 0.1);
}

.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 246, 0.88);
  box-shadow: 0 12px 30px rgba(31, 20, 18, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 1.05rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  color: var(--white);
  background: var(--rose);
}

.site-header:not(.is-scrolled):not(.is-open) .header-cta {
  color: var(--rose-dark);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 145px clamp(18px, 5vw, 72px) 120px;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(35, 23, 27, 0.78) 0%, rgba(35, 23, 27, 0.58) 38%, rgba(35, 23, 27, 0.12) 100%),
    linear-gradient(0deg, rgba(35, 23, 27, 0.34), rgba(35, 23, 27, 0));
}

.hero-content {
  position: relative;
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  text-wrap: balance;
}

.hero blockquote {
  max-width: 650px;
  margin: 24px 0 0;
  padding: 0 0 0 18px;
  border-left: 4px solid var(--gold);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 2vw, 1.34rem);
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-primary {
  color: var(--white);
  background: var(--rose);
}

.button-primary:hover {
  background: var(--rose-dark);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-proof span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  min-height: 130px;
  padding: 28px clamp(18px, 3vw, 36px);
  background: var(--white);
}

.trust-strip strong {
  display: block;
  color: var(--rose);
  font-size: 1.28rem;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(70px, 8vw, 118px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.comparison > .section-copy,
.comparison > .safety-points {
  width: 100%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.comparison > .section-copy {
  max-width: 1180px;
}

.comparison > .section-copy > p:last-child {
  max-width: 850px;
  margin-bottom: 0;
}

.why-banner {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(76px, 10vw, 140px) clamp(18px, 5vw, 72px);
  color: var(--ink);
  background:
    linear-gradient(135deg, #f7efe8 0%, #efe1d6 56%, #e7d5ca 100%);
  overflow: hidden;
}

.why-banner::after {
  content: "";
  min-height: clamp(300px, 34vw, 460px);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(247, 239, 232, 0.18), rgba(247, 239, 232, 0)),
    url("../images/home-why-optimized.jpg") center 42% / cover;
  box-shadow: 0 24px 60px rgba(70, 44, 36, 0.2);
}

.why-content {
  position: relative;
  max-width: 780px;
}

.why-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
  line-height: 1.08;
  text-wrap: balance;
}

.why-content p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.14rem;
}

.why-content .check-list li {
  color: var(--ink);
}

.why-content .check-list li::before {
  background: var(--gold);
}

.section-copy,
.section-heading {
  max-width: 760px;
}

.section h2,
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  text-wrap: balance;
}

.section p {
  color: var(--muted);
  font-size: 1.12rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.soft {
  background: var(--soft);
}

.section-heading {
  margin: 0 auto 38px;
  text-align: center;
}

.city-grid,
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.city-grid article,
.feature-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.city-grid article {
  padding: 30px;
}

.city-grid span {
  color: var(--gold);
  font-weight: 900;
}

.city-grid h3,
.feature-cards h3,
.site-footer h2 {
  margin: 10px 0 8px;
  font-size: 1.34rem;
  line-height: 1.2;
}

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

.feature-cards img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-cards img.image-couple {
  object-position: center 42%;
}

.feature-cards h3,
.feature-cards p {
  padding-left: 22px;
  padding-right: 22px;
}

.feature-cards p {
  padding-bottom: 24px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--rose);
  background: #fbf3ef;
}

tr:last-child td {
  border-bottom: 0;
}

.safety-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.safety-points article {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(70, 44, 36, 0.1);
}

.safety-points span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.safety-points h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.18;
}

.safety-points p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.safety-points small {
  display: block;
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
}

.cta-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background: var(--teal);
  border-radius: var(--radius);
  text-align: center;
}

.cta-band > div {
  max-width: 1080px;
}

.cta-band h2 {
  font-size: clamp(1.85rem, 2.35vw, 2.75rem);
  line-height: 1.08;
  white-space: nowrap;
}

.cta-band .eyebrow {
  color: #f1d5a4;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  padding: 22px 24px;
  font-size: 1.14rem;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding: 56px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #251b1d;
}

.footer-brand {
  color: var(--white);
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-top: 8px;
}

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-cta {
    display: flex;
  }

  .site-header.is-open {
    grid-template-columns: 1fr auto;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding-top: 10px;
  }

  .site-header.is-open .header-cta {
    grid-column: 1 / -1;
    width: max-content;
  }

  .hero {
    min-height: auto;
    padding-bottom: 70px;
  }

  .trust-strip,
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .comparison,
  .why-banner,
  .feature-cards,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .why-banner::after {
    min-height: 300px;
    order: -1;
  }

  .cta-band {
    align-items: center;
  }

  .cta-band h2 {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .hero {
    --mobile-hero-image-height: clamp(320px, 42svh, 420px);

    display: block;
    padding: 0;
    background: #251b1d;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: var(--mobile-hero-image-height);
  }

  .hero-media img {
    object-position: center 48%;
  }

  .hero-overlay {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: var(--mobile-hero-image-height);
    background:
      linear-gradient(180deg, rgba(25, 15, 12, 0.62) 0%, rgba(25, 15, 12, 0.12) 36%, rgba(37, 27, 29, 0.06) 72%, rgba(37, 27, 29, 0.42) 100%);
  }

  .hero-content {
    z-index: 1;
    max-width: none;
    padding: 30px 20px 64px;
    background: #251b1d;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero blockquote {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-proof span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    text-align: center;
  }

  .hero-proof span:first-child {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hero-proof span:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-proof span:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .trust-strip,
  .city-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
  }

  .button,
  .header-cta {
    width: 100%;
  }
}


.content-page {
  background: var(--paper);
}

.content-site-header {
  position: sticky;
  color: var(--ink);
  background: rgba(255, 250, 246, 0.96);
}

.content-site-header .header-cta,
.content-site-header:not(.is-scrolled):not(.is-open) .header-cta {
  color: var(--white);
  background: var(--rose);
}

.content-hero,
.article-hero {
  padding: 118px clamp(18px, 5vw, 72px) 54px;
  background: linear-gradient(135deg, #fffaf6 0%, #f3ebe5 100%);
}

.content-hero h1,
.article-hero h1 {
  max-width: 1180px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  line-height: 1.06;
  text-wrap: balance;
}

.content-hero p,
.article-lead {
  max-width: 850px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--rose);
}

.listing-section,
.article-layout {
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

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

.article-card,
.location-note,
.article-sidebar,
.inline-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article-card {
  padding: 26px;
}

.article-card span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h2,
.location-note h2,
.article-sidebar h2,
.inline-cta h2 {
  margin: 8px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.14;
}

.article-card p,
.location-note p {
  color: var(--muted);
}

.location-note {
  max-width: 980px;
  margin-bottom: 22px;
  padding: 28px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.article-content {
  max-width: 860px;
}

.article-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 34px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-content h2 {
  margin: 34px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.article-content h3 {
  margin: 26px 0 8px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.article-content p {
  color: var(--muted);
}

.article-content a {
  color: var(--rose);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  padding: 22px;
}

.article-sidebar a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--rose);
  font-weight: 800;
}

.inline-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background: var(--teal);
  text-align: center;
}

.inline-cta h2 {
  margin: 0;
  font-size: clamp(1.85rem, 2.35vw, 2.75rem);
  line-height: 1.08;
  text-wrap: balance;
}

.inline-cta p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.inline-cta a {
  color: var(--white);
  text-decoration: none;
}

.city-grid h3 a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .article-card-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .content-hero,
  .article-hero {
    padding-top: 96px;
  }

  .article-card,
  .location-note {
    padding: 22px;
  }
}


.nav-menu {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nav-menu summary {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  list-style: none;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.24s ease;
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  min-width: 230px;
  max-height: 0;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 250, 246, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -10px);
  transition:
    max-height 0.26s ease,
    opacity 0.22s ease,
    transform 0.26s ease,
    visibility 0s linear 0.26s;
}

.nav-menu[open] .nav-menu-panel,
.nav-menu:focus-within .nav-menu-panel {
  max-height: 240px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition:
    max-height 0.28s ease,
    opacity 0.2s ease,
    transform 0.28s ease,
    visibility 0s;
}

.nav-menu[open] summary::after {
  transform: rotate(225deg) translate(-1px, -2px);
}

.nav-menu.is-closing .nav-menu-panel {
  max-height: 0;
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transform: translate(-50%, -10px);
}

@keyframes guideDropdownIn {
  from {
    opacity: 0;
    transform: translate(-50%, -16px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes guideDropdownOut {
  from {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -16px);
  }
}

@media (min-width: 981px) {
  .nav-menu[open]:not(.is-closing) .nav-menu-panel {
    animation: guideDropdownIn 0.3s cubic-bezier(0.2, 0.72, 0.2, 1) both;
  }

  .nav-menu.is-closing .nav-menu-panel {
    animation: guideDropdownOut 0.22s ease both;
  }
}

.nav-menu-panel a {
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-menu-panel a:hover {
  background: var(--soft);
}

.home-guides {
  background: var(--paper);
}

.guide-preview-block {
  max-width: 1180px;
  margin: 0 auto 34px;
}

.guide-preview-block:last-child {
  margin-bottom: 0;
}

.guide-preview-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.guide-preview-heading h3,
.section h2.guide-style-heading {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.guide-preview-heading a {
  color: var(--rose);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.compact-guides .article-card h2 {
  font-size: 1.28rem;
}

@media (max-width: 980px) {
  .site-header {
    overflow: visible;
  }

  .site-header .site-nav {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    max-height: 0;
    padding-top: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 0.32s ease,
      opacity 0.22s ease,
      padding-top 0.32s ease,
      transform 0.32s ease;
  }

  .site-header .header-cta {
    grid-column: 1 / -1;
    display: inline-flex;
    width: max-content;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 0.28s ease,
      opacity 0.2s ease,
      padding 0.28s ease,
      transform 0.28s ease;
  }

  .site-header.is-open .site-nav {
    max-height: 360px;
    padding-top: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.is-open .header-cta {
    max-height: 54px;
    padding: 0 26px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.is-open .nav-menu {
    width: 100%;
  }

  .site-header.is-open .nav-menu summary {
    padding: 4px 0;
  }

  .site-header.is-open .nav-menu-panel {
    position: static;
    min-width: 0;
    max-height: 0;
    margin-top: 8px;
    padding-top: 0;
    padding-bottom: 0;
    color: inherit;
    background: rgba(255, 255, 255, 0.52);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    box-shadow: none;
    transition:
      max-height 0.28s ease,
      opacity 0.22s ease,
      padding 0.28s ease,
      transform 0.28s ease,
      visibility 0s linear 0.28s;
  }

  .site-header.is-open .nav-menu[open] .nav-menu-panel {
    max-height: 180px;
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      max-height 0.28s ease,
      opacity 0.22s ease,
      padding 0.28s ease,
      transform 0.28s ease,
      visibility 0s;
  }

  .site-header.is-open .nav-menu.is-closing .nav-menu-panel {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .compact-guides {
    grid-template-columns: 1fr;
  }

  .safety-points {
    grid-template-columns: 1fr;
  }

  .guide-preview-heading {
    display: block;
  }
}
