:root {
  --green: #1a3a2a;
  --green-deep: #0a1a10;
  --green-soft: #dfeee5;
  --gold: #d4a853;
  --gold-soft: rgba(212, 168, 83, 0.16);
  --cream: #f8f5f0;
  --ink: #13221a;
  --muted: #506157;
  --glass: rgba(248, 245, 240, 0.72);
  --border: rgba(27, 67, 50, 0.12);
  --shadow: 0 24px 64px rgba(16, 36, 27, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 168, 76, 0.22), transparent 30%),
    radial-gradient(circle at top right, rgba(45, 106, 79, 0.2), transparent 34%),
    linear-gradient(180deg, #fcfaf6 0%, #eef5f0 52%, #f8f5f0 100%);
  line-height: 1.7;
}

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

main {
  display: block;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 245, 240, 0.78);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}

.site-nav-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff6df;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-links a:hover,
.site-links a:focus-visible {
  color: var(--green);
}

.hero {
  padding: 82px 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(27, 67, 50, 0.09);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 26px;
}

.hero-card,
.glass-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-copy {
  padding: 40px;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 0 0 26px;
  font-size: 18px;
  color: var(--muted);
  max-width: 62ch;
}

.hero-copy em,
.section-title em,
.card-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-panel {
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(22, 52, 38, 0.96), rgba(45, 106, 79, 0.88)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  color: #f8f5f0;
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.44), transparent 70%);
  pointer-events: none;
}

.hero-panel h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.hero-panel p,
.hero-panel li {
  color: rgba(248, 245, 240, 0.88);
}

.hero-panel ul,
.plain-list {
  padding-left: 18px;
}

.hero-actions,
.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #dfc570);
  color: #302200;
  box-shadow: 0 16px 32px rgba(201, 168, 76, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fffdf9;
}

.btn-outline {
  border-color: rgba(27, 67, 50, 0.14);
  background: rgba(255, 255, 255, 0.62);
  color: var(--green-deep);
}

.section {
  padding: 26px 0 72px;
}

.section-header {
  margin-bottom: 22px;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
}

.section-sub {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
  font-size: 17px;
}

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

.teaser-card,
.info-card {
  padding: 28px;
}

.teaser-card {
  min-height: 100%;
}

.card-meta {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #745d16;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-title {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.teaser-card p,
.info-card p,
.muted {
  color: var(--muted);
}

.teaser-card .cta-link,
.text-link {
  color: var(--green);
  font-weight: 700;
}

.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.stack {
  display: grid;
  gap: 20px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.pill {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(27, 67, 50, 0.12);
  background: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 700;
  color: var(--green-deep);
}

.mini-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.cta-banner {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.14), rgba(255, 255, 255, 0.64)),
    linear-gradient(180deg, rgba(45, 106, 79, 0.08), rgba(45, 106, 79, 0.02));
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(27, 67, 50, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  padding: 0 0 56px;
}

.footer-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 24px 28px;
}

.footer-card p {
  margin: 0;
  color: var(--muted);
}

.article-main {
  padding: 48px 0 84px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.breadcrumbs a {
  color: var(--green);
}

.article-shell {
  display: grid;
  gap: 26px;
}

.article-card {
  padding: 34px;
}

.article-card h1 {
  margin: 12px 0 16px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.article-card h2,
.article-card h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.03em;
}

.article-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.article-card h3 {
  font-size: 1.3rem;
}

.article-card p,
.article-card li,
.article-card td,
.article-card th {
  color: var(--muted);
  font-size: 16px;
}

.article-card p,
.article-card ul,
.article-card ol,
.article-card table,
.article-card .cta-strip,
.article-card .faq-list,
.article-card .spot-grid,
.article-card .country-grid,
.article-card .quote-grid,
.article-card .calculator {
  margin: 0 0 22px;
}

.intro {
  font-size: 19px;
  max-width: 68ch;
}

.meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.spot-grid,
.country-grid,
.quote-grid,
.criteria-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.spot-card,
.country-card,
.quote-card,
.stat-card,
.criteria-card,
.link-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(27, 67, 50, 0.1);
}

.spot-card h3,
.country-card h3,
.quote-card h3,
.criteria-card h3,
.link-card h3 {
  margin-bottom: 10px;
}

.spot-head,
.country-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.region-tag,
.type-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #745d16;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

.cta-strip {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(22, 52, 38, 0.98), rgba(45, 106, 79, 0.88)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
  color: #f8f5f0;
  box-shadow: var(--shadow);
}

.cta-strip p,
.cta-strip li {
  color: rgba(248, 245, 240, 0.9);
}

.cta-strip .button-row {
  margin-top: 4px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(27, 67, 50, 0.08);
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  vertical-align: top;
}

.data-table th {
  color: var(--green-deep);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(27, 67, 50, 0.1);
}

.faq-item h3 {
  margin-bottom: 8px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--green-deep);
}

.criteria-grid {
  margin-bottom: 22px;
}

.calculator {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(27, 67, 50, 0.1);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.calc-result {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(45, 106, 79, 0.12));
}

.calc-result strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-deep);
}

.small-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.small-links a {
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid,
  .card-grid,
  .two-up,
  .form-row,
  .spot-grid,
  .country-grid,
  .quote-grid,
  .criteria-grid,
  .link-grid,
  .stat-grid,
  .calc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-nav-inner,
  .site-links,
  .hero-actions,
  .button-row,
  .footer-card {
    flex-direction: column;
    align-items: stretch;
  }

  .site-links {
    gap: 12px;
  }

  .hero-copy,
  .hero-panel,
  .teaser-card,
  .info-card,
  .cta-banner,
  .footer-card,
  .article-card,
  .cta-strip,
  .spot-card,
  .country-card,
  .quote-card,
  .stat-card,
  .criteria-card,
  .link-card,
  .faq-item,
  .calculator {
    padding: 22px;
  }

  .hero {
    padding-top: 34px;
  }

  .article-main {
    padding-top: 24px;
  }
}
