:root {
  --bg: #f5efe5;
  --bg-soft: #ece2d1;
  --surface: rgba(255, 250, 241, 0.78);
  --surface-strong: #ffffff;
  --ink: #15191d;
  --muted: #5f625d;
  --line: rgba(21, 25, 29, 0.12);
  --line-strong: rgba(21, 25, 29, 0.18);
  --accent: #b6853c;
  --accent-deep: #8c6227;
  --accent-soft: #e8d1a6;
  --shadow: 0 20px 60px rgba(31, 26, 17, 0.14);
  --shadow-soft: 0 14px 34px rgba(31, 26, 17, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --wrap: min(1180px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(182, 133, 60, 0.18), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(110, 83, 34, 0.14), transparent 22%),
    linear-gradient(180deg, #fbf6ef 0%, #f5efe5 35%, #efe5d5 100%);
  line-height: 1.6;
}

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

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

p,
ul,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 50;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #10161b;
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  transition: padding 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding: 0.65rem 0;
  background: rgba(251, 246, 239, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 24px rgba(21, 25, 29, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand img {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--accent-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.route-card:hover,
.signal-card:hover,
.step-card:hover,
.comparison-card:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #d2a35d 100%);
  color: #10161b;
  box-shadow: 0 16px 36px rgba(182, 133, 60, 0.26);
}

.button-secondary,
.button-ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.button-small {
  min-height: 44px;
  padding: 0.7rem 1.05rem;
}

.section,
.signal-band {
  position: relative;
  padding: 3.5rem 0;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 2.2rem 0 2.5rem;
}

.hero-grid,
.compare-layout,
.experience-layout,
.faq-layout,
.closing-panel,
.routes-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.compare-layout,
.experience-layout,
.faq-layout,
.closing-panel {
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.signal-kicker,
.route-label,
.comparison-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

h1,
h2,
h3,
summary {
  margin: 0;
  font-family: "Fraunces", serif;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3,
summary {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.hero-lede,
.section-heading p,
.compare-copy > p,
.experience-copy > p,
.faq-copy > p,
.closing-copy > p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lede {
  margin-top: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #d9b37c 100%);
  box-shadow: 0 0 0 4px rgba(182, 133, 60, 0.14);
}

.hero-note {
  max-width: 54ch;
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(140, 98, 39, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 248, 237, 0.72);
  color: #4a453d;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 1.15rem;
  align-content: start;
}

.hero-image-card,
.planner-card,
.signal-card,
.route-card,
.route-aside,
.comparison-card,
.step-card,
.faq-list details,
.closing-panel,
.gallery-card,
.site-footer,
.signal-band {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #131920;
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(10, 13, 17, 0.78));
}

.image-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  width: min(82%, 360px);
  max-width: calc(100% - 2.2rem);
  z-index: 1;
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(9, 13, 18, 0.84), rgba(20, 25, 31, 0.94));
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.planner-card {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 1.35rem 1.4rem;
  display: grid;
  gap: 1rem;
  scroll-margin-top: 6.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(247, 240, 228, 0.98));
}

.planner-title {
  margin-bottom: 0.35rem;
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.planner-note {
  color: var(--muted);
}

.search-widget-shell {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(21, 25, 29, 0.08);
}

.planner-proof {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.planner-proof-card {
  display: grid;
  gap: 0.22rem;
  min-height: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(140, 98, 39, 0.14);
  border-radius: 18px;
  background: rgba(255, 248, 237, 0.72);
}

.planner-proof-card strong {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.planner-proof-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.search-widget-frame {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 320px;
  overflow-x: auto;
}

.powered-by {
  display: none !important;
}

.footer-inner p:not(:first-child) {
  color: var(--muted);
}

.planner-meta {
  display: grid;
  gap: 0.7rem;
  padding-top: 0.2rem;
}

.planner-meta-title {
  font-weight: 700;
  color: var(--ink);
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.route-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(21, 25, 29, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #473f34;
  font-weight: 600;
  font-size: 0.94rem;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.route-tags a:hover,
.route-tags a:focus-visible {
  border-color: rgba(140, 98, 39, 0.3);
  background: rgba(255, 248, 237, 0.96);
  transform: translateY(-1px);
}

.planner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.planner-actions .inline-link {
  margin-top: 0;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.hero-aura {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.45;
}

.hero-aura-one {
  top: 3rem;
  left: -6rem;
  width: 16rem;
  height: 16rem;
  background: rgba(182, 133, 60, 0.35);
}

.hero-aura-two {
  right: 6rem;
  bottom: 1rem;
  width: 12rem;
  height: 12rem;
  background: rgba(58, 79, 70, 0.16);
}

.signal-band {
  margin: 0 auto;
  background: rgba(255, 250, 241, 0.42);
  backdrop-filter: blur(14px);
  border-radius: 34px;
}

.signal-grid,
.steps-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-card,
.route-card,
.route-aside,
.comparison-card,
.step-card,
.faq-list details {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.75);
}

.signal-card h2 {
  margin-bottom: 0.7rem;
  font-size: 1.6rem;
}

.signal-card p:last-child,
.route-card p,
.route-aside p,
.comparison-card p,
.step-card p,
.faq-list p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.routes-layout {
  grid-template-columns: 1.55fr 0.85fr;
  align-items: start;
}

.route-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-card {
  min-height: 240px;
}

.route-card h3 {
  margin-bottom: 0.75rem;
}

.route-card h3 a {
  color: inherit;
}

.route-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.7rem;
}

.route-aside {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(244, 233, 214, 0.86)),
    linear-gradient(135deg, rgba(182, 133, 60, 0.18), transparent 65%);
}

.check-list {
  display: grid;
  gap: 0.8rem;
}

.comparison-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.comparison-card-dark {
  background: linear-gradient(180deg, #12171d 0%, #1a2128 100%);
  color: #f4eee4;
}

.comparison-card-dark .comparison-label,
.comparison-card-dark p,
.comparison-card-dark li {
  color: rgba(255, 255, 255, 0.78);
}

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

.compare-image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.experience-layout {
  align-items: start;
}

.experience-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.25fr 0.75fr;
}

.gallery-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 250, 241, 0.75);
}

.gallery-card-large {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.feature-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-stack article {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.feature-stack article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.feature-stack h3 {
  margin-bottom: 0.45rem;
}

.step-card {
  min-height: 210px;
}

.guide-promo {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.6rem;
  align-items: center;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: var(--shadow-soft);
}

.guide-promo-media {
  overflow: hidden;
  border-radius: 24px;
}

.guide-promo-media img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.guide-promo-copy {
  display: grid;
  gap: 0.85rem;
}

.step-number {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] {
  background: rgba(255, 255, 255, 0.9);
}

.faq-list p {
  margin-top: 0.85rem;
}

.closing-panel {
  overflow: hidden;
  padding: 0;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(13, 18, 24, 0.97), rgba(37, 31, 22, 0.96));
  color: #f5efe5;
}

.closing-copy {
  padding: 2.2rem;
}

.closing-copy .eyebrow,
.closing-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.closing-copy h2 {
  max-width: 11ch;
}

.closing-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.site-footer {
  margin: 0 auto 6.5rem;
  width: var(--wrap);
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.72);
}

.footer-inner {
  display: grid;
  gap: 0.45rem;
}

.footer-inner p:first-child {
  font-weight: 700;
}

.mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 18;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #d9aa62 100%);
  color: #10161b;
  font-weight: 800;
  box-shadow: 0 24px 44px rgba(122, 83, 24, 0.28);
}

.article-main {
  padding-bottom: 4rem;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-hero {
  padding: 2.1rem 0 2.6rem;
}

.article-hero-inner {
  position: relative;
}

.article-hero-grid,
.article-layout {
  display: grid;
  gap: 2rem;
}

.article-hero-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
}

.article-intro {
  display: grid;
  gap: 1rem;
}

.article-meta {
  color: var(--accent-deep);
  font-weight: 700;
}

.article-lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.article-hero-media {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.article-hero-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.article-shell {
  padding: 0 0 2rem;
}

.article-layout {
  grid-template-columns: 1.28fr 0.72fr;
  align-items: start;
}

.article-content,
.article-aside {
  display: grid;
  gap: 1.2rem;
}

.article-card,
.article-side-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 250, 241, 0.84);
  box-shadow: var(--shadow-soft);
}

.article-card h2,
.article-side-card h2 {
  margin-bottom: 0.95rem;
}

.article-card h3 {
  margin: 1.4rem 0 0.55rem;
  font-size: 1.4rem;
}

.article-card h3:first-of-type {
  margin-top: 0;
}

.article-card p,
.article-side-card p,
.article-toc a {
  color: var(--muted);
}

.article-card a {
  color: var(--accent-deep);
}

.article-list,
.article-toc ul {
  display: grid;
  gap: 0.8rem;
}

.article-list {
  margin-top: 0.9rem;
}

.article-list li {
  position: relative;
  padding-left: 1.45rem;
}

.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #d9b37c 100%);
}

.article-side-card {
  position: static;
}

.article-side-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.article-faq h3 + p {
  margin-top: 0.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 100ms;
}

.reveal-delay-two {
  transition-delay: 180ms;
}

@media (max-width: 980px) {
  .hero-grid,
  .compare-layout,
  .experience-layout,
  .faq-layout,
  .closing-panel,
  .routes-layout,
  .guide-promo,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .signal-grid,
  .steps-grid,
  .route-grid,
  .experience-gallery,
  .planner-proof {
    grid-template-columns: 1fr;
  }

  .route-aside {
    position: static;
  }

  .compare-image img,
  .closing-image img,
  .article-hero-media img {
    min-height: 320px;
  }

  .article-side-card {
    position: static;
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-panel {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .site-nav,
  .site-header .button-ghost {
    display: none;
  }

  .hero {
    padding-top: 1rem;
  }

  .section,
  .signal-band {
    padding: 2.8rem 0;
  }

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

  .brand img {
    width: 58px;
    height: 58px;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .planner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .route-tags {
    flex-direction: column;
  }

  .site-footer {
    margin-bottom: 7.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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