:root {
  --surface: #fbf9f4;
  --surface-low: #f5f3ee;
  --surface-container: #f0eee9;
  --surface-high: #e4e2dd;
  --ink: #18281e;
  --ink-soft: #30312e;
  --muted: #434844;
  --outline: #c3c8c2;
  --outline-strong: #737873;
  --primary: #18281e;
  --primary-container: #2d3e33;
  --secondary: #865300;
  --secondary-bright: #b36b00;
  --tertiary: #032839;
  --tertiary-container: #1e3e4f;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(24, 40, 30, 0.14);
  --shadow-strong: 0 24px 70px rgba(14, 31, 21, 0.22);
  --radius-sm: 2px;
  --radius: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --container: 1152px;
  --section-gap: 120px;
  --section-gap-mobile: 64px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 4.85rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.2rem;
}

p,
li {
  font-size: 1rem;
}

:focus-visible {
  outline: 3px solid rgba(179, 107, 0, 0.52);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-160%);
  border-radius: var(--radius);
  padding: 0.7rem 0.95rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.header-inner,
.hero-content {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(24, 40, 30, 0.1);
  background: rgba(251, 249, 244, 0.94);
  backdrop-filter: blur(16px);
}

.home-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  background: rgba(251, 249, 244, 0.96);
}

.header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-text,
.brand strong,
.footer-brand a {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(24, 40, 30, 0.18);
  border-radius: var(--radius);
  background: var(--surface-low);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--secondary);
  content: "";
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.section {
  padding-block: var(--section-gap);
}

.section-tight {
  padding-block: 48px;
}

.section-muted {
  background: var(--surface-container);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.narrow {
  max-width: 560px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.guide-intro-section {
  padding-bottom: 84px;
}

.guide-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 3rem;
  align-items: center;
}

.guide-intro-grid .section-heading {
  margin-bottom: 0;
}

.prose-card,
.place-list-panel {
  border: 1px solid rgba(67, 72, 68, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 32px rgba(23, 49, 47, 0.08);
}

.prose-card {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.prose-card p {
  color: var(--muted);
}

.eyebrow,
.hero-kicker {
  margin-bottom: 0.85rem;
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.light {
  color: #feb964;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.82rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(2px);
}

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

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

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

.button-secondary:hover {
  background: var(--secondary-bright);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

[data-whatsapp] {
  border-color: #1f7a42;
  background: #1f7a42;
  color: var(--white);
}

[data-whatsapp]:hover {
  background: #176134;
}

.editorial-hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  align-items: center;
  color: var(--white);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 20, 14, 0.78), rgba(8, 20, 14, 0.34) 48%, rgba(8, 20, 14, 0.08)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 64px;
}

.editorial-hero h1 {
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.editorial-hero h1 em {
  display: block;
  font-style: italic;
}

.hero-kicker {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 52px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  transform: translateX(-50%);
  color: var(--white);
  opacity: 0.9;
}

.scroll-cue svg {
  width: 24px;
  height: 24px;
}

.destination-grid,
.card-grid,
.locality-grid,
.service-list,
.image-grid,
.timeline,
.quick-facts,
.faq-list {
  display: grid;
  gap: 1.25rem;
}

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

.destination-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.destination-card,
.card,
.fact,
.locality-grid article,
.service-list article,
.timeline article,
.cta-panel,
.faq-list details {
  border: 1px solid rgba(67, 72, 68, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
}

.destination-card {
  overflow: hidden;
}

.destination-card a,
.card a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.destination-card img,
.card img {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
}

.destination-body,
.card-body {
  padding: 1.35rem;
}

.destination-body h3,
.card-body h3 {
  margin-bottom: 0.75rem;
}

.destination-body p,
.card-body p,
.fact p,
.locality-grid p,
.service-list span,
.timeline p,
.cta-panel p,
.faq-list p {
  color: var(--muted);
}

.destination-body span,
.card-body a,
.text-link {
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 800;
  text-underline-offset: 0.22em;
}

.destination-body span::after {
  content: " ->";
}

.experiences-section {
  padding-top: 0;
}

.split-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.feature-tile,
.wide-mini-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--primary);
  color: var(--white);
}

.feature-tile img,
.wide-mini-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-tile::after,
.wide-mini-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 14, 0.82), rgba(8, 20, 14, 0.32));
  content: "";
}

.tile-overlay,
.wide-mini-tile > div {
  position: relative;
  z-index: 1;
}

.tile-overlay {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.tile-overlay p,
.wide-mini-tile p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.86);
}

.tile-overlay a {
  color: var(--white);
  font-weight: 800;
  text-underline-offset: 0.22em;
}

.tile-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--secondary);
  color: var(--white);
  margin-bottom: 1.1rem;
}

.tile-icon svg {
  width: 22px;
  height: 22px;
}

.tile-icon.small {
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  background: var(--tertiary);
}

.stacked-tiles {
  display: grid;
  gap: 1.5rem;
}

.place-list-panel {
  min-height: 168px;
  padding: 1.5rem;
}

.place-list-panel h3 {
  margin-bottom: 1rem;
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.two-column-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.two-column-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--secondary);
  content: "";
}

.wide-mini-tile {
  display: flex;
  min-height: 168px;
  align-items: center;
  padding: 2rem;
}

.wide-mini-tile > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
}

.wide-mini-tile h3,
.wide-mini-tile p {
  grid-column: 2;
  margin-bottom: 0;
}

.interest-panel {
  display: grid;
  min-height: 168px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(67, 72, 68, 0.18);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--surface-container);
  text-align: center;
}

.interest-panel .panel-title {
  margin-bottom: 1rem;
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.06;
}

.chip-list,
.link-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.chip-list a,
.link-strip a {
  border: 1px solid rgba(67, 72, 68, 0.16);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.stay-section {
  padding-top: 0;
}

.travel-style-section .card {
  background: rgba(255, 255, 255, 0.72);
}

.simple-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stay-card {
  display: grid;
  grid-template-columns: 1fr 1.32fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.stay-copy {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.stay-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin: 1.2rem 0 2rem;
  padding: 0;
  list-style: none;
}

.amenity-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.amenity-list svg {
  width: 17px;
  height: 17px;
}

.stay-media {
  margin: 0;
}

.stay-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.map-section {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
  overflow: hidden;
  background: #8d8e88;
}

.map-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  background:
    linear-gradient(125deg, transparent 0 28%, rgba(255, 255, 255, 0.55) 28% 33%, transparent 33% 100%),
    linear-gradient(155deg, transparent 0 42%, rgba(255, 255, 255, 0.22) 42% 48%, transparent 48% 100%),
    radial-gradient(circle at 38% 18%, rgba(255, 255, 255, 0.35), transparent 24%),
    linear-gradient(90deg, #72736e, #9a9b95);
  filter: grayscale(1);
}

.trail {
  position: absolute;
  width: 48%;
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.45);
  transform: rotate(-22deg);
}

.trail-one {
  left: 20%;
  top: 36%;
}

.trail-two {
  right: 13%;
  bottom: 30%;
  transform: rotate(18deg);
}

.map-label {
  position: absolute;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.label-top {
  left: 31%;
  top: 30%;
}

.label-bottom {
  left: 45%;
  bottom: 18%;
}

.map-card {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 360px);
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  background: rgba(251, 249, 244, 0.95);
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.pin-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 1rem;
  place-items: center;
  color: var(--secondary);
}

.pin-icon svg {
  width: 28px;
  height: 28px;
}

.map-card .map-card-title {
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.06;
}

.map-card p {
  color: var(--muted);
}

.faq-section {
  padding-block: 88px;
}

.faq-list {
  max-width: 820px;
  margin-inline: auto;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.68);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0.8rem 0 0;
}

.site-footer {
  padding: 72px 0 34px;
  background: var(--primary);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(2rem, 8vw, 7rem);
}

.footer-brand a {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--white);
  text-decoration: none;
}

.footer-brand p,
.site-footer p,
.site-footer small {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav .footer-heading {
  display: block;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 72px;
}

.footer-bottom div {
  display: flex;
  gap: 1.5rem;
}

/* Shared internal-page styles kept for the existing site pages. */
.hero:not(.editorial-hero) {
  display: grid;
  min-height: 68svh;
  align-items: center;
  padding: 6rem 0 5rem;
  background-image: linear-gradient(90deg, rgba(13, 35, 32, 0.82), rgba(13, 35, 32, 0.54) 46%, rgba(13, 35, 32, 0.2)), var(--hero-image);
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero-compact {
  min-height: 60svh;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 3rem;
  align-items: center;
}

.quick-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fact,
.locality-grid article,
.service-list article,
.timeline article,
.cta-panel {
  padding: 1.2rem;
}

.fact span,
.timeline span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--secondary);
  content: "";
}

.feature-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

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

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

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

.image-grid figure,
.real-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 49, 47, 0.1);
}

.image-grid img,
.real-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-grid figcaption,
.real-gallery figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.real-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.real-gallery figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.real-gallery figure:first-child img {
  height: calc(100% - 48px);
  aspect-ratio: auto;
}

.real-gallery img {
  aspect-ratio: 1;
}

.map-placeholder {
  display: grid;
  min-height: 320px;
  align-content: center;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid rgba(67, 72, 68, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(30, 62, 79, 0.2), rgba(45, 62, 51, 0.08)),
    var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.map-placeholder span,
.map-placeholder strong {
  display: block;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.map-placeholder strong {
  background: var(--primary);
  color: var(--white);
}

.cta-band {
  padding: 2.4rem 0;
  background: var(--primary);
  color: var(--white);
}

.cta-band h2 {
  max-width: 720px;
}

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

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.planning-grid article {
  min-height: 210px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.breadcrumbs span::before {
  margin-right: 0.45rem;
  content: "/";
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 2rem;
  align-items: start;
}

.decision-grid,
.hub-grid,
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.decision-card,
.hub-card,
.profile-card,
.source-note,
.alert-box {
  border: 1px solid rgba(67, 72, 68, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

.decision-card,
.hub-card,
.profile-card,
.alert-box {
  padding: 1.25rem;
}

.hub-card {
  position: relative;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.decision-card span,
.profile-card span,
.source-note span,
.alert-box span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--secondary);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.decision-card h3,
.hub-card h3,
.profile-card h3 {
  margin-bottom: 0.55rem;
}

.decision-card p,
.hub-card p,
.profile-card p,
.source-note p,
.alert-box p {
  color: var(--muted);
}

.hub-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
}

.hub-card:hover,
.hub-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(179, 107, 0, 0.48);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(23, 49, 47, 0.12);
}

.hub-card .card-kicker {
  display: inline-flex;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(179, 107, 0, 0.24);
  border-radius: 999px;
  padding: 0.24rem 0.58rem;
  background: rgba(179, 107, 0, 0.08);
  color: var(--secondary);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.hub-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  border: 1px solid rgba(179, 107, 0, 0.26);
  border-radius: 999px;
  padding: 0.46rem 0.72rem;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.hub-card .card-cta::after {
  content: "->";
  transition: transform 160ms ease;
}

.hub-card:hover .card-cta::after,
.hub-card:focus-within .card-cta::after {
  transform: translateX(4px);
}

.hub-card strong,
.decision-card strong {
  color: var(--ink);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(67, 72, 68, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(23, 49, 47, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 0.95rem;
  border-bottom: 1px solid rgba(67, 72, 68, 0.16);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: var(--surface-container);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-table td {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.source-note {
  padding: 1rem;
}

.table-wrap + .source-note {
  margin-top: 1rem;
}

.source-note p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.alert-box {
  border-left: 5px solid var(--secondary);
}

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.internal-links a {
  border: 1px solid rgba(67, 72, 68, 0.16);
  border-radius: 999px;
  padding: 0.5rem 0.78rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

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

.ad-placeholder {
  display: grid;
  min-height: 92px;
  place-items: center;
  border: 1px dashed rgba(67, 72, 68, 0.32);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 42;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(23, 49, 47, 0.24);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 980px) {
  .container,
  .header-inner,
  .hero-content {
    width: min(100% - 32px, var(--container));
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .section {
    padding-block: 84px;
  }

  .destination-grid,
  .card-grid,
  .simple-card-grid,
  .quick-facts,
  .locality-grid,
  .service-list,
  .image-grid,
  .timeline,
  .real-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-experience-grid,
  .guide-intro-grid,
  .page-intro,
  .stay-card,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .stay-copy,
  .stay-media img {
    min-height: auto;
  }

  .stay-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .header-inner {
    min-height: 62px;
  }

  .brand-text,
  .brand strong,
  .footer-brand a {
    font-size: 1.62rem;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

.home-page .main-nav,
.main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid rgba(24, 40, 30, 0.1);
    background: var(--surface);
    padding: 0.6rem 1rem 1rem;
  }

  .home-page .main-nav.is-open,
  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.8rem 0.25rem;
    font-size: 0.95rem;
  }

  .main-nav a::after {
    bottom: 0.35rem;
  }

  .editorial-hero {
    min-height: 86svh;
  }

  .hero-content {
    padding-top: 56px;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .destination-grid,
  .card-grid,
  .simple-card-grid,
  .quick-facts,
  .locality-grid,
  .service-list,
  .image-grid,
  .timeline,
  .decision-grid,
  .hub-grid,
  .profile-grid,
  .split-list {
    grid-template-columns: 1fr;
  }

  .guide-intro-section {
    padding-bottom: 64px;
  }

  .split-experience-grid,
  .stacked-tiles {
    gap: 1rem;
  }

  .two-column-list {
    grid-template-columns: 1fr;
  }

  .feature-tile,
  .tile-overlay {
    min-height: 330px;
  }

  .wide-mini-tile {
    min-height: 210px;
  }

  .wide-mini-tile > div {
    grid-template-columns: 1fr;
  }

  .wide-mini-tile h3,
  .wide-mini-tile p {
    grid-column: auto;
  }

  .interest-panel,
  .tile-overlay,
  .wide-mini-tile,
  .stay-copy {
    padding: 1.35rem;
  }

  .map-card {
    width: min(100% - 32px, 340px);
  }

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

  .button {
    width: 100%;
  }

  .footer-bottom,
  .footer-bottom div {
    flex-direction: column;
    align-items: flex-start;
  }
}

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