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

:root {
  --red:    #C8102E;
  --white:  #FFFFFF;
  --navy:   #0A1628;
  --ocean:  #1A6B8A;
  --sand:   #F5F0E8;
  --text:   #1C1C1E;
  --muted:  #6B7280;
  --border: #E5E7EB;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: white; font-size: 18px;
  font-family: 'Playfair Display', serif;
}
.nav-logo-text { font-weight: 700; font-size: 18px; color: var(--navy); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--red); }

.nav-cta {
  background: var(--red); color: white;
  padding: 8px 20px; border-radius: 8px;
  text-decoration: none; font-size: 14px; font-weight: 600;
  transition: opacity .2s;
}
.nav-cta:hover { opacity: .85; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(10,22,40,.55) 0%, rgba(10,22,40,.25) 60%, rgba(10,22,40,.7) 100%),
    url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1600&q=80') center/cover no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 5% 80px;
  color: white;
}
.hero-tag {
  display: inline-block;
  background: rgba(200,16,46,.85);
  color: white; font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 20px;
  margin-bottom: 24px;
}
#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.08;
  margin-bottom: 24px; max-width: 800px;
}
#hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 560px; opacity: .9; margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  background: var(--red); color: white;
  padding: 14px 32px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; transition: opacity .2s;
}
.btn-primary:hover { opacity: .85; }
.btn-outline {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.6);
  color: white;
  padding: 14px 32px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; transition: background .2s;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,.25); }
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  flex-wrap: wrap; justify-content: center;
}
.hero-stat h3 { font-size: 2rem; font-weight: 700; }
.hero-stat p { font-size: 13px; opacity: .75; margin-top: 2px; }

/* ─── SECTIONS COMMON ─── */
section { padding: 96px 5%; }
.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--navy);
  margin-bottom: 16px; line-height: 1.15;
}
.section-sub {
  color: var(--muted); font-size: 1.05rem;
  max-width: 560px; line-height: 1.7;
}
.section-header { margin-bottom: 56px; }

/* ─── ABOUT ─── */
#about { background: var(--sand); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; border-radius: 16px;
  aspect-ratio: 4/3; object-fit: cover;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--red); color: white;
  padding: 20px 24px; border-radius: 12px;
  font-weight: 700; font-size: 14px; line-height: 1.4;
  box-shadow: 0 8px 24px rgba(200,16,46,.3);
}
.about-badge span { display: block; font-size: 24px; font-weight: 900; }
.facts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px;
}
.fact-card {
  background: white; border-radius: var(--radius);
  padding: 20px; border: 1px solid var(--border);
}
.fact-card h4 { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.fact-card p { font-size: 14px; color: var(--muted); }

/* ─── TOURISM ─── */
#tourism { background: white; }
.tourism-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.tourism-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.tourism-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.tourism-card-img { aspect-ratio: 16/9; overflow: hidden; }
.tourism-card-img img { width: 100%; height: 100%; object-fit: cover; }
.tourism-card-body { padding: 24px; }
.tourism-card-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ocean); margin-bottom: 8px;
}
.tourism-card-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tourism-card-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.travel-strip {
  margin-top: 48px; background: var(--navy); border-radius: 16px;
  padding: 40px; display: flex; gap: 40px; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
}
.travel-strip h3 { color: white; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.travel-strip p { color: rgba(255,255,255,.65); font-size: 14px; max-width: 400px; }
.strip-link {
  background: rgba(255,255,255,.1); color: white;
  padding: 12px 20px; border-radius: 8px;
  text-decoration: none; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.2); transition: background .2s;
}
.strip-link:hover { background: rgba(255,255,255,.2); }
.strip-link--red { background: var(--red); border-color: var(--red); }
.strip-link--red:hover { opacity: .85; background: var(--red); }

/* ─── NEWS ─── */
#news { background: var(--sand); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.news-card {
  background: white; border-radius: 16px;
  padding: 28px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow .25s;
}
.news-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.news-card-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
}
.news-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.news-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.4; }
.news-card p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.news-card a { font-size: 13px; font-weight: 600; color: var(--ocean); text-decoration: none; }
.news-card a:hover { text-decoration: underline; }

.news-sources {
  margin-top: 48px; background: white; border-radius: 16px;
  padding: 32px; border: 1px solid var(--border);
}
.news-sources h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.sources-list { display: flex; gap: 16px; flex-wrap: wrap; }
.source-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 8px;
  border: 1.5px solid var(--border);
  text-decoration: none; color: var(--text);
  font-size: 14px; font-weight: 500;
  transition: border-color .2s, color .2s;
}
.source-link:hover { border-color: var(--ocean); color: var(--ocean); }

/* ─── DIRECTORY ─── */
#directory { background: white; }
.dir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.dir-category h3 {
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.dir-links { display: flex; flex-direction: column; gap: 10px; }
.dir-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  font-size: 14px; font-weight: 500;
  transition: background .2s, border-color .2s;
}
.dir-link:hover { background: var(--sand); border-color: var(--ocean); }
.dir-link-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--sand); display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.dir-link span { flex: 1; }
.dir-link-arrow { color: var(--muted); font-size: 12px; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy); color: rgba(255,255,255,.7);
  padding: 64px 5% 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 28px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { color: rgba(255,255,255,.4); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0;
  background: white; z-index: 99;
  padding: 24px 5%;
  border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--text);
  font-size: 16px; font-weight: 500; padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 16px; bottom: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  nav .nav-links, nav .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 72px 5%; }
  .facts-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
}
