:root {
  --color-primary: #1f7a5a;
  --color-primary-dark: #14533d;
  --color-secondary: #27323f;
  --color-accent: #b65d2a;
  --color-text: #18212b;
  --color-text-light: #5b6673;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f7f3;
  --color-border: #e3e7df;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(27,39,49,.12);
  --radius-sm: 4px;
  --radius-md: 8px;
}

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

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure { margin: 0; padding: 0; }

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s ease, transform .2s ease, box-shadow .2s ease; }
button { font: inherit; border: 0; background: none; cursor: pointer; }

.container { width: min(1120px, 90vw); margin: 0 auto; }
.section { padding: 5rem 0; }
.bg-light { background: var(--color-bg-alt); }
.eyebrow {
  color: var(--color-primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.header-top {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 1.15rem 0;
}

.brand { display: inline-flex; align-items: center; gap: 1rem; }
.brand img { width: 64px; height: 64px; border-radius: 50%; }
.brand strong { display: block; font-size: 1.35rem; line-height: 1.15; }
.brand small { display: block; color: var(--color-text-light); font-size: .86rem; }

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.nav__inner { min-height: 54px; display: flex; align-items: center; justify-content: center; }
.nav__links { display: none; gap: 2.2rem; }
.nav__links a {
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav__links a:hover { color: #e7c29f; }

.nav__toggle { display: flex; flex-direction: column; gap: 5px; margin-left: auto; color: #fff; padding: .75rem 0; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: currentColor; }

.nav-mobile {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 82vw);
  z-index: 2000;
  background: #fff;
  padding: 5rem 2rem;
  transform: translateX(100%);
  transition: transform .25s ease;
  box-shadow: -10px 0 30px rgba(0,0,0,.15);
}
.nav-mobile.active { transform: translateX(0); }
.nav-mobile a { display: block; padding: .85rem 0; font-weight: 800; text-transform: uppercase; color: var(--color-secondary); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__toggle,
  .nav-mobile { display: none; }
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(24,33,43,.48); }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero > div { position: relative; z-index: 1; width: min(820px, 90vw); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.7rem); line-height: 1.05; margin-bottom: 1.2rem; }
.hero p:not(.eyebrow) { font-size: clamp(1.05rem, 2vw, 1.35rem); margin-bottom: 2rem; color: rgba(255,255,255,.92); }
.hero .eyebrow { color: #f1cfaa; }

.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: .95rem 1.45rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
}
.btn-primary:hover { background: #9f4f22; transform: translateY(-1px); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-header h2,
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.15; margin-bottom: 1rem; }
.section-header p,
.page-hero p { color: var(--color-text-light); font-size: 1.08rem; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--color-bg-alt); }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__content { padding: 1.5rem; }
.card__category { color: var(--color-primary); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.card h3 { margin: .55rem 0 .8rem; font-size: 1.25rem; line-height: 1.25; }
.card p { color: var(--color-text-light); font-size: .95rem; line-height: 1.6; }

.destination-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.destination-grid a { border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.4rem; background: #fff; }
.destination-grid strong { display: block; margin-bottom: .4rem; color: var(--color-secondary); }
.destination-grid span { color: var(--color-text-light); font-size: .95rem; }

.content-panel {
  max-width: 900px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.content-panel h2 { font-size: 1.55rem; line-height: 1.25; margin-bottom: 1rem; }
.content-panel p,
.content-panel ul { margin-bottom: 1rem; color: var(--color-text-light); }
.content-panel ul { padding-left: 1.25rem; }
.content-panel a { color: var(--color-primary-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.page-hero {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, var(--color-bg-alt), #fff);
  border-bottom: 1px solid var(--color-border);
}
.page-hero--compact { padding: 3.5rem 0; }

.breadcrumb { padding: 1rem 0; background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); font-size: .9rem; color: var(--color-text-light); }
.breadcrumb a { color: var(--color-primary-dark); font-weight: 700; }

.article { padding: 3rem 0 5rem; max-width: 920px; }
.article__header { margin-bottom: 2.5rem; }
.article__meta { color: var(--color-primary); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; }
.article__meta a:hover { color: var(--color-accent); }
.article h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.1; margin-bottom: 1rem; }
.article__header p { color: var(--color-text-light); font-size: 1.12rem; margin-bottom: 2rem; }
.article__hero { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.article__byline {
  margin-top: 1rem;
  color: var(--color-text-light);
  font-size: .95rem;
}
.article__byline a { color: var(--color-primary-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.disclosure-box,
.author-box {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  padding: 1.2rem;
  margin: 0 0 2rem;
}
.disclosure-box { color: var(--color-text-light); font-size: .95rem; }
.author-box { margin-top: 2.5rem; }
.author-box h2 { font-size: 1.35rem; margin-bottom: .7rem; }
.author-box p { color: var(--color-text-light); margin-bottom: .8rem; }
.author-box a { color: var(--color-primary-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.article__body { font-size: 1.06rem; line-height: 1.9; }
.article__body p,
.article__body ul,
.article__body ol,
.article__body figure,
.article__body div { margin-bottom: 1.45rem; }
.article__body h2,
.article__body h3,
.article__body h4 { line-height: 1.25; margin: 2.4rem 0 1rem; }
.article__body h2 { font-size: 1.8rem; }
.article__body h3 { font-size: 1.45rem; }
.article__body a { color: var(--color-primary-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.article__body ul,
.article__body ol { padding-left: 1.4rem; }
.article__body img { border-radius: var(--radius-sm); margin: 1.4rem auto; }
.article__body iframe { max-width: 100%; }
.wp-block-media-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: var(--color-bg-alt);
}
.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media { order: 2; }
.wp-block-media-text__content > :last-child { margin-bottom: 0; }
.wp-block-button { margin: 1rem 0; }
.wp-block-button__link {
  display: inline-block;
  background: var(--color-primary);
  color: #fff !important;
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  text-decoration: none !important;
}
.wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.instagram-media {
  border-left: 4px solid var(--color-border);
  padding-left: 1rem;
  color: var(--color-text-light);
  overflow-wrap: anywhere;
}

.footer {
  background: var(--color-secondary);
  color: #d8dee5;
  padding: 4rem 0 2rem;
}
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 2.5rem; }
.footer__logo { width: 58px; height: 58px; border-radius: 50%; margin-bottom: 1rem; }
.footer h4 { color: #fff; margin-bottom: 1rem; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; }
.footer a { display: block; color: #d8dee5; margin-bottom: .55rem; }
.footer a:hover { color: #f1cfaa; }
.footer p { color: #b7c0ca; }
.footer__bottom { width: min(1120px, 90vw); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); color: #aeb7c1; font-size: .9rem; }

#scroll-top {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
}
#scroll-top.visible { display: flex; }

.fade-in { opacity: 0; transform: translateY(12px); transition: opacity .35s ease, transform .35s ease; }
.fade-in.visible { opacity: 1; transform: none; }

#swt-consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3000;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}
.consent-banner__inner { display: flex; gap: 1rem; align-items: center; justify-content: space-between; }
.consent-banner__title { font-weight: 800; margin-bottom: .25rem; }
.consent-banner__desc { font-size: .9rem; color: var(--color-text-light); margin: 0; }
.consent-banner__actions { display: flex; gap: .6rem; flex-shrink: 0; }
.consent-btn { border-radius: var(--radius-sm); padding: .7rem .9rem; font-weight: 800; }
.consent-btn--primary { background: var(--color-primary); color: #fff; }
.consent-btn--secondary { background: var(--color-bg-alt); color: var(--color-secondary); }
.consent-link { color: var(--color-primary-dark); font-weight: 800; text-decoration: underline; }

@media (max-width: 720px) {
  .brand small { display: none; }
  .hero { min-height: 460px; }
  .section { padding: 3.5rem 0; }
  .article { padding-top: 2rem; }
  .consent-banner__inner { display: block; }
  .consent-banner__actions { margin-top: 1rem; flex-wrap: wrap; }
  .wp-block-media-text { grid-template-columns: 1fr; }
  .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media { order: 0; }
}
