:root {
  --bg: #ffffff;
  --surface: #f0f8f5;
  --surface2: #e8f4f0;
  --gold: #2d9966;
  --gold-light: #4ab385;
  --cream: #1a1a1a;
  --muted: #666666;
  --accent: #2d9966;
  --text: #333333;
  --border: rgba(45,153,102,0.15);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

.site-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
}
.site-header .flag { font-size: 26px; }
.site-header .brand {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  padding: 72px 40px 56px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 60%, #faf9f7 100%);
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 40%, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 auto 22px;
  font-weight: 600;
  max-width: 980px;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--cream);
  max-width: 980px;
  margin: 0 auto 32px;
  text-align: center;
}
h1 em { font-style: normal; color: var(--cream); }

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto 36px;
  max-width: 980px;
}
.seo-tag {
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  font-size: 11.5px;
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: .05em;
  font-family: 'Source Serif 4', serif;
}

.widget-wrap {
  width: 100%;
  margin: 36px 0;
  min-height: 180px;
  padding: 0 40px;
}
.widget-wrap iframe { width: 100%; max-width: 100%; }

.hero-image {
  width: 100%;
  max-width: 980px;
  margin: 40px auto 0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(45,153,102,0.15);
  overflow: hidden;
}
.hero-image img { width: 100%; height: auto; display: block; }

.llm-box {
  background: var(--surface2);
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  padding: 28px 36px;
  max-width: 980px;
  position: relative;
  margin: 0 auto;
}
.llm-box::before {
  content: 'DIRECT ANSWER';
  position: absolute;
  top: -11px; left: 24px;
  background: var(--bg);
  padding: 0 10px;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--gold);
  font-weight: 700;
}
.llm-box p {
  color: var(--cream);
  font-size: 17px;
  line-height: 1.72;
  margin-bottom: 14px;
}
.llm-box p:last-child { margin-bottom: 0; }
.llm-box strong { color: var(--gold-light); }

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 60px 80px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 33px);
  font-weight: 700;
  color: var(--cream);
  margin: 64px 0 20px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
h2:first-child { margin-top: 0; }
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold-light);
  margin: 36px 0 13px;
  font-weight: 700;
}
p { margin-bottom: 20px; color: var(--text); }
p:last-child { margin-bottom: 0; }

.callout {
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.06);
  padding: 18px 24px;
  margin: 28px 0;
  border-radius: 0 3px 3px 0;
}
.callout p { margin: 0; color: var(--cream); font-size: 16.5px; }
.callout strong { color: var(--gold-light); }
.callout-warn { border-left-color: #d9534f; background: rgba(217,83,79,0.06); }
.callout-warn p { color: #8b4545; }
.callout-warn strong { color: #d9534f; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 18px;
}
.card-icon { font-size: 24px; margin-bottom: 8px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 14.5px; color: var(--gold-light); margin-bottom: 6px; }
.card-body { font-size: 14px; color: var(--muted); line-height: 1.6; }
.card-body strong { color: var(--text); }

.price-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.price-table th {
  background: var(--surface2);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--gold);
  font-size: 12.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.price-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.price-table tr:hover td { background: rgba(201,168,76,0.04); }
.price-table .price { color: var(--gold-light); font-weight: 600; white-space: nowrap; }

.checklist { list-style: none; margin: 16px 0 22px; }
.checklist li {
  padding: 9px 0 9px 30px;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  font-size: 16px;
  color: var(--text);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  top: 10px;
}
.checklist.warn li::before { content: '⚠'; color: var(--accent); }
.checklist.num { counter-reset: li; }
.checklist.num li::before {
  content: counter(li);
  counter-increment: li;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 13px;
  top: 10px;
}

.faq-item { border-top: 1px solid var(--border); padding: 20px 0; }
.faq-q { font-family: 'Playfair Display', serif; font-size: 17.5px; color: var(--cream); margin-bottom: 10px; font-weight: 700; }
.faq-a { color: var(--text); font-size: 15.5px; line-height: 1.75; }
.faq-a strong { color: var(--gold-light); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
  font-size: 14px;
  background: var(--surface);
}
.footer-content {
  max-width: 1000px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.footer-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-disclaimer p,
.footer-contact p,
.footer-links li,
.footer-languages .language-selector {
  color: var(--text);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer-disclaimer p { text-align: justify; }
.footer-contact p { margin-bottom: 12px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); text-decoration: underline; }
.language-selector { display: flex; flex-direction: column; gap: 8px; }
.lang-active { color: var(--gold); font-weight: 600; }
.lang-inactive { color: var(--muted); cursor: not-allowed; }

.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.footer-bottom p { margin: 8px 0; }

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(45,153,102,0.3);
}
.scroll-to-top:hover { background: var(--gold-light); box-shadow: 0 6px 16px rgba(45,153,102,0.4); transform: translateY(-3px); }
.scroll-to-top.show { display: flex; }

.site-nav { background: var(--surface); border-bottom: 1px solid var(--border); padding: 8px 40px; display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center; justify-content: center; }
.site-nav a { color: var(--cream); text-decoration: none; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.site-nav a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.site-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

.breadcrumb { max-width: 1000px; margin: 0 auto; padding: 18px 60px 0; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--gold); text-decoration: none; }

.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; margin: 24px 0; }
.city-tile { display:block; background: var(--surface); border:1px solid var(--border); border-radius:4px; padding:20px; text-decoration:none; transition: border-color .2s, box-shadow .2s; }
.city-tile:hover { border-color: var(--gold); box-shadow: 0 8px 20px rgba(45,153,102,.1); }
.city-tile .ct-name { font-family:'Playfair Display',serif; font-weight:700; color: var(--gold-light); font-size:18px; margin-bottom:6px; }
.city-tile .ct-desc { color: var(--muted); font-size:14px; line-height:1.6; }

@media (min-width: 768px) {}

@media (max-width: 768px) {
  h1 { font-size: clamp(20px, 5vw, 32px); line-height: 1.2; margin-bottom: 24px; }
  h2 { font-size: clamp(18px, 4vw, 26px); margin: 48px 0 16px; padding-top: 16px; }
  h3 { font-size: 18px; margin: 28px 0 12px; }
  .site-header { padding: 12px 16px; }
  .hero { padding: 36px 16px 32px; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 10px; }
  .container { padding: 36px 16px 48px; }
  .breadcrumb { padding: 14px 16px 0; }
  .seo-tags { gap: 6px; }
  .seo-tag { font-size: 10px; padding: 3px 8px; }
  .llm-box { padding: 18px 16px; max-width: 100%; }
  .llm-box::before { font-size: 9px; left: 16px; top: -10px; padding: 0 8px; }
  .llm-box p { font-size: 15px; line-height: 1.65; margin-bottom: 12px; }
  .cards { grid-template-columns: 1fr; gap: 12px; margin: 18px 0; }
  .card { padding: 16px 14px; }
  .card-icon { font-size: 22px; margin-bottom: 6px; }
  .card-title { font-size: 14px; margin-bottom: 5px; }
  .card-body { font-size: 13.5px; }
  .price-table { font-size: 12px; width: 100%; display: block; overflow-x: auto; }
  .price-table thead, .price-table tbody, .price-table tr { display: block; }
  .price-table th { font-size: 11px; padding: 8px 6px; display: block; width: 100%; }
  .price-table td { padding: 8px 6px; font-size: 12px; display: inline-block; width: 48%; }
  .price-table .price { font-size: 13px; }
  .callout { padding: 14px 16px; margin: 20px -16px; border-radius: 0; }
  .callout p { font-size: 15px; }
  .checklist { margin: 14px 0 18px; }
  .checklist li { padding: 8px 0 8px 26px; font-size: 15px; }
  .faq-item { padding: 16px 0; }
  .faq-q { font-size: 16px; margin-bottom: 8px; }
  .faq-a { font-size: 14.5px; }
  .widget-wrap { padding: 0 20px; margin: 20px 0; }
  .hero-image { margin: 28px auto 0; border-radius: 6px; }
  p { margin-bottom: 16px; font-size: 15px; }
  .site-footer { padding: 40px 20px 20px; }
  .footer-content { grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
  .footer-section h3 { font-size: 12px; }
  .footer-disclaimer p, .footer-contact p, .footer-links li { font-size: 12px; }
  .footer-bottom { padding-top: 20px; }
  .scroll-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; font-size: 20px; }
  .site-nav { padding: 8px 16px; gap: 6px 16px; }
  .site-nav a { font-size: 12px; padding: 5px 0; }
}

@media (max-width: 374px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(18px, 5vw, 28px); }
  h2 { font-size: clamp(16px, 4vw, 22px); }
  .hero { padding: 28px 12px 24px; }
  .container { padding: 28px 12px 40px; }
  .site-header { padding: 10px 12px; }
  .seo-tag { font-size: 10px; padding: 3px 8px; }
  .llm-box { padding: 14px 12px; }
  .card { padding: 12px 10px; }
  .callout { padding: 12px 12px; margin-left: -12px; margin-right: -12px; }
  .checklist li { padding: 6px 0 6px 22px; font-size: 14px; }
}
