
:root {
  --ink: #17211f;
  --muted: #5f6f68;
  --line: #dbe3dd;
  --paper: #fbfaf4;
  --white: #fffefb;
  --green: #1f6b4f;
  --green-dark: #123f32;
  --blue: #2d5f85;
  --sun: #d59a2f;
  --rose: #b85b4d;
  --shadow: 0 18px 50px rgba(31, 64, 50, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  letter-spacing: 0;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--green-dark);
  color: white;
  padding: 10px 14px;
  z-index: 10;
}
.skip-link:focus { left: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(18, 63, 50, .96);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  width: 196px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}
.main-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.main-nav a {
  text-decoration: none;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 700;
}
.main-nav a:hover { color: white; }
.home-hero {
  min-height: 60vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(40px, 6vw, 76px) clamp(18px, 5vw, 76px) 32px;
  background:
    linear-gradient(180deg, rgba(18,63,50,.08), rgba(251,250,244,0) 48%),
    url("/wp-content/uploads/2025/05/reserva-faro-querandi.webp") center/cover;
  position: relative;
}
.home-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251,250,244,.94) 0%, rgba(251,250,244,.72) 48%, rgba(251,250,244,.22) 100%);
}
.home-hero > * { position: relative; }
.hero-copy { max-width: 780px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 92px);
  max-width: 900px;
}
.hero-copy > p:last-child {
  max-width: 680px;
  font-size: 19px;
  color: #33463f;
}
.hero-panel {
  background: var(--green-dark);
  color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.hero-panel strong { display: block; font-size: 31px; line-height: 1.08; }
.hero-panel span { color: #d8e6dd; font-weight: 700; }
.featured-guides,
.cluster-section {
  padding: clamp(28px, 4.5vw, 54px) clamp(18px, 5vw, 76px);
}
.featured-guides {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  background: var(--white);
}
.guide-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  border-radius: 8px;
  padding: 18px;
  background: #14251f;
  color: white;
  box-shadow: var(--shadow);
}
.guide-card-large { grid-row: span 2; min-height: 578px; }
.guide-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .54;
  transition: transform .25s ease, opacity .25s ease;
}
.guide-card:hover img { transform: scale(1.035); opacity: .66; }
.guide-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,.74) 100%);
}
.guide-card > *:not(img) { position: relative; z-index: 1; }
.guide-card span {
  align-self: flex-start;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}
.guide-card h3 { margin: 12px 0 6px; font-size: 23px; }
.guide-card p { margin: 0; color: #e5eee8; font-weight: 800; font-size: 13px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 16px;
}
.section-heading p { color: var(--muted); margin: 0; }
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 58px);
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, .82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(38px, 7vw, 86px) clamp(18px, 5vw, 76px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.article-hero h1 {
  font-size: clamp(36px, 5.8vw, 74px);
}
.article-hero p {
  font-size: 18px;
  color: #3c514a;
  max-width: 720px;
}
.article-hero figure { margin: 0; }
.article-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.cluster-pill {
  display: inline-flex;
  margin-bottom: 14px;
  text-decoration: none;
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.proof-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: #f5f2e8;
  color: #52635c;
  font-size: 13px;
  font-weight: 800;
}
.article-body {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0;
  font-size: 18px;
}
.article-body h2 {
  margin-top: 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}
.article-body h3 { margin-top: 30px; font-size: 24px; }
.article-body p { margin: 0 0 18px; }
.article-body a {
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.article-body figure {
  margin: 34px 0;
}
.article-body img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.article-body ul,
.article-body ol {
  padding-left: 24px;
}
.related-guides {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto 60px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.related-guides h2 { margin: 0 0 12px; font-size: 24px; }
.related-guides ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding-left: 20px;
}
.related-guides a { color: var(--green-dark); font-weight: 800; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 76px);
  background: var(--green-dark);
  color: #dce9e0;
}
.site-footer p { margin: 0; max-width: 760px; }
.site-footer a { color: white; font-weight: 800; }
@media (max-width: 920px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .home-hero,
  .article-hero,
  .section-heading {
    grid-template-columns: 1fr;
  }
  .home-hero {
    min-height: 560px;
    align-items: end;
  }
  .hero-panel { max-width: 260px; }
  .featured-guides,
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }
  .guide-card-large { grid-row: span 1; min-height: 340px; }
}
@media (max-width: 620px) {
  .main-nav { gap: 12px; }
  .main-nav a { font-size: 13px; }
  .home-hero { min-height: 520px; }
  .featured-guides,
  .guide-grid,
  .related-guides ul {
    grid-template-columns: 1fr;
  }
  .article-hero { padding-top: 32px; }
  .article-body { font-size: 17px; }
  .site-footer { flex-direction: column; }
}
