/* ─── Variables ─── */
:root {
  --bg: #0c1425;
  --bg-2: #111c33;
  --card: #162040;
  --card-2: #1c2a50;
  --line: rgba(255,255,255,0.08);
  --primary: #f59e0b;
  --primary-2: #fbbf24;
  --gold: #d4a017;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --accent: #38bdf8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --radius: 16px;
  --transition: 0.3s ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p { color: var(--muted); }

/* ─── Utility ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.section { padding: 5rem 0; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-heading { margin-bottom: 0.5rem; }
.section-sub {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 20, 37, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.site-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.site-brand span { color: var(--primary); }
.header-nav { display: flex; gap: 0.25rem; }
.header-nav a {
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}
.header-nav a:hover { color: var(--text); background: var(--card); }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.mobile-toggle svg { width: 24px; height: 24px; stroke: var(--text); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12,20,37,0.3) 0%, rgba(12,20,37,0.95) 70%),
    var(--img-hero) center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--primary-2);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 { max-width: 780px; margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--primary); }
.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  color: rgba(241,245,249,0.75);
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #0c1425;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--primary-2); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* ─── Intro Section ─── */
.intro-section { padding: 4rem 0; border-bottom: 1px solid var(--line); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.intro-img-wrap { border-radius: var(--radius); overflow: hidden; }
.intro-img-wrap img { width: 100%; height: 360px; object-fit: cover; }
.intro-tag { color: var(--primary); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; display: block; }
.intro-content h2 { margin-bottom: 1rem; }
.intro-content p { margin-bottom: 1.25rem; font-size: 1rem; }
.intro-list { margin: 1.5rem 0; }
.intro-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  color: var(--text);
  font-size: 0.95rem;
}
.intro-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  fill: var(--primary);
}

/* ─── Attractions Grid ─── */
.attractions-section { background: var(--bg-2); }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.article-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: var(--transition);
  cursor: pointer;
}
.article-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-4px); }
.article-img { height: 200px; overflow: hidden; }
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.article-card:hover .article-img img { transform: scale(1.05); }
.article-body { padding: 1.25rem; }
.article-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.article-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.article-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.85rem; }
.article-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.article-toggle:hover { gap: 0.5rem; }
.article-toggle svg { width: 14px; height: 14px; transition: transform 0.3s; }
.article-card.open .article-toggle svg { transform: rotate(180deg); }
.article-full {
  display: none;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
  padding-top: 0.85rem;
}
.article-card.open .article-full { display: block; }

/* ─── Visitor Info ─── */
.visitor-section { background: var(--bg); }
.visitor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.visitor-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}
.visitor-card h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.visitor-card h3 svg { width: 22px; height: 22px; stroke: var(--primary); flex-shrink: 0; }
.visitor-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.visitor-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.visitor-card li:last-child { border-bottom: none; }
.visitor-card li span:first-child { color: var(--muted); }
.visitor-card li span:last-child { color: var(--text); font-weight: 500; }
.visitor-highlight {
  background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(251,191,36,0.06));
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.25rem;
}
.visitor-highlight p { color: var(--primary-2); font-size: 0.88rem; font-weight: 500; }

/* ─── Tips Section ─── */
.tips-section { background: var(--bg-2); }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.tip-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
}
.tip-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(245,158,11,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tip-icon svg { width: 22px; height: 22px; stroke: var(--primary); }
.tip-content h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.4rem; }
.tip-content p { font-size: 0.88rem; }

/* ─── Seasonal Guide ─── */
.seasonal-section { background: var(--bg); }
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.season-card {
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  color: #fff;
}
.season-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #fff;
}
.season-card h3 svg { width: 18px; height: 18px; opacity: 0.8; }
.season-card .period { font-size: 0.78rem; opacity: 0.75; margin-bottom: 1rem; display: block; }
.season-card ul { display: flex; flex-direction: column; gap: 0.45rem; }
.season-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.83rem;
  opacity: 0.9;
}
.season-card ul li::before {
  content: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  opacity: 0.8;
}
.season-spring { background: linear-gradient(135deg, #1a6b3c, #2e8b57); }
.season-summer { background: linear-gradient(135deg, #8b3a00, #d9620e); }
.season-wet { background: linear-gradient(135deg, #1a4a6e, #2e7aa8); }
.season-peak { background: linear-gradient(135deg, #5a2d82, #8b47b5); }

/* ─── Newsletter ─── */
.newsletter-section {
  background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, transparent 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-inner h2 { margin-bottom: 0.75rem; }
.newsletter-inner p { margin-bottom: 2rem; font-size: 0.95rem; }
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 240px;
  padding: 0.75rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form button {
  background: var(--primary);
  color: #0c1425;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--primary-2); }
.newsletter-consent {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.85rem;
  opacity: 0.7;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.footer-brand span { color: var(--primary); }
.footer-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--primary); }
.footer-social a svg { width: 16px; height: 16px; stroke: var(--muted); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a { font-size: 0.88rem; color: var(--muted); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: var(--muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: var(--muted); transition: var(--transition); }
.footer-legal a:hover { color: var(--text); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-toggle { display: block; }
  .articles-grid { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; }
  .visitor-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .season-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  h1 { font-size: 2rem; }
}