:root {
  --primary: #020617;
  --secondary: #52525C;
  --border-strong: #E4E4E7;
  --border-subtle: #F4F4F5;
  --white: #ffffff;
  --accent: #8B1A1A;
  --accent-light: #c4574a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--primary);
  overflow-x: hidden;
}

/* ─── NAV ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(2,6,23,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
}
.logo span { color: var(--accent-light); font-style: italic; }

nav ul { list-style: none; display: flex; gap: 0; }
nav ul li { position: relative; }
nav ul li a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 26px 20px;
  display: block;
  transition: color 0.2s;
}
nav ul li a:hover { color: var(--white); }
nav ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--primary);
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 160px;
  padding: 8px 0;
}
nav ul li:hover .sub-menu { display: block; }
nav ul li .sub-menu li a {
  padding: 10px 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
nav ul li .sub-menu li a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--primary);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(139,26,26,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent-light);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

.hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--border-strong); }

.btn-ghost {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '→'; }

.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(30%);
  display: block;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 40%);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  z-index: 2;
}
.scroll-line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.6);
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline { 0%{left:-100%} 100%{left:100%} }

/* ─── SECTION INTROS ─── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--border-strong);
}

/* ─── COUNTRIES ─── */
.countries-section {
  padding: 120px 48px;
  background: var(--border-subtle);
}

.countries-header {
  max-width: 560px;
  margin-bottom: 72px;
}
.countries-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--primary);
}
.countries-header p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.7;
  font-weight: 300;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.country-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--border-strong);
  text-decoration: none;
  display: block;
}
.country-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(40%) brightness(0.7);
}
.country-card:hover img {
  transform: scale(1.06);
  filter: grayscale(10%) brightness(0.8);
}
.country-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,0.88) 0%, transparent 60%);
  transition: background 0.4s;
}
.country-card:hover .country-card-overlay {
  background: linear-gradient(to top, rgba(2,6,23,0.92) 0%, rgba(139,26,26,0.2) 100%);
}
.country-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
}
.country-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}
.country-card-link {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.country-card:hover .country-card-link { color: var(--accent-light); }

.country-card.no-link { cursor: default; }
.country-card.no-link img { filter: grayscale(60%) brightness(0.55); }

/* ─── ABOUT ─── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.about-visual {
  position: relative;
  overflow: hidden;
  background: var(--border-strong);
}
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  opacity: 0.9;
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,6,23,0.3) 0%, transparent 60%);
}
.about-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 32px;
}
.about-text h2 em { font-style: italic; color: var(--secondary); }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--accent-light);
  min-width: 24px;
  padding-top: 2px;
  font-style: italic;
}
.feature-content h4 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.feature-content p {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── STATS ─── */
.stats-bar {
  background: var(--primary);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat {
  padding: 56px 48px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ─── FOOTER ─── */
footer {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 72px 48px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-col .logo {
  font-size: 18px;
  display: block;
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-item {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}
.contact-item strong {
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-item a { color: rgba(255,255,255,0.4); text-decoration: none; }
.contact-item a:hover { color: var(--white); }

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* ─── DELIVERY ─── */
.delivery-section {
  background: var(--border-subtle);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
.delivery-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  white-space: nowrap;
  padding-right: 40px;
  border-right: 1px solid var(--border-strong);
}
.delivery-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.delivery-partner {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  opacity: 0.6;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text > * { animation: fadeUp 0.7s ease both; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-desc { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; }
  .about-visual { min-height: 400px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  header { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 120px 24px 60px; }
  .hero-visual { height: 340px; }
  .countries-section { padding: 72px 24px; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .about-text { padding: 56px 24px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid, footer { padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .delivery-section { padding: 40px 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .delivery-label { border-right: none; padding-right: 0; }
}
