@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96E;
  --dark: #0E0E0E;
  --dark-2: #1A1A1A;
  --dark-3: #242424;
  --text: #F0EDE6;
  --text-muted: #9A9590;
  --accent: #4ECDC4;
  --white: #FAFAF8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-h: 72px;
  --max-w: 1240px;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p { max-width: 65ch; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
}
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-lang {
  display: flex; gap: 8px; align-items: center;
}
.lang-btn {
  background: none; border: 1px solid rgba(201,168,76,0.3);
  color: var(--text-muted); padding: 4px 10px;
  border-radius: 20px; cursor: pointer; font-size: 0.75rem;
  font-family: var(--font-body); font-weight: 500; letter-spacing: 0.05em;
  transition: all var(--transition);
}
.lang-btn:hover, .lang-btn.active { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.nav-cta {
  background: var(--gold); color: var(--dark);
  padding: 8px 20px; border-radius: 2px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: 
    linear-gradient(to bottom, rgba(14,14,14,0.3) 0%, rgba(14,14,14,0.6) 60%, var(--dark) 100%),
    url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=1800&q=80') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 1; text-align: center; padding: 0 24px; max-width: 900px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p { font-size: 1.15rem; color: rgba(240,237,230,0.8); margin: 0 auto 40px; max-width: 580px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: 14px 32px; border-radius: 2px;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-secondary {
  border: 1px solid rgba(240,237,230,0.3); color: var(--white);
  padding: 14px 32px; border-radius: 2px;
  font-weight: 500; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
  animation: bounce 2s infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark-2); border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 28px 0;
}
.stats-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--gold); display: block; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; padding: 4px 14px;
  border: 1px solid rgba(201,168,76,0.3); border-radius: 20px;
}
.section-title { color: var(--white); margin-bottom: 16px; }
.section-subtitle { color: var(--text-muted); max-width: 55ch; margin: 0 auto; }

/* ===== FEATURED CITIES GRID ===== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.city-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  cursor: pointer; background: var(--dark-2);
  transition: transform var(--transition);
}
.city-card:first-child { grid-column: span 2; }
.city-card:hover { transform: scale(0.99); }
.city-card-img {
  aspect-ratio: 16/10; width: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.city-card:first-child .city-card-img { aspect-ratio: 16/8; }
.city-card:hover .city-card-img { transform: scale(1.05); }
.city-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.95) 0%, rgba(14,14,14,0.2) 50%, transparent 100%);
}
.city-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
}
.city-tag {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px; margin-bottom: 8px;
}
.city-name { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); margin-bottom: 6px; }
.city-card:first-child .city-name { font-size: 2.2rem; }
.city-meta { display: flex; gap: 16px; color: var(--text-muted); font-size: 0.8rem; }
.city-meta span::before { margin-right: 4px; }

/* ===== CATEGORIES ===== */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.cat-card {
  background: var(--dark-2); border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  transition: all var(--transition); cursor: pointer;
}
.cat-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.cat-icon { font-size: 2.5rem; margin-bottom: 16px; }
.cat-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.cat-count { font-size: 0.8rem; color: var(--text-muted); }

/* ===== LATEST ARTICLES ===== */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.article-card {
  background: var(--dark-2); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255,255,255,0.04);
}
.article-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.article-img { aspect-ratio: 16/9; width: 100%; object-fit: cover; }
.article-body { padding: 24px; }
.article-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.article-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.article-excerpt { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-foot { display: flex; align-items: center; justify-content: space-between; }
.article-author { display: flex; align-items: center; gap: 8px; }
.author-avatar {
  width: 28px; height: 28px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--dark);
}
.author-name { font-size: 0.78rem; color: var(--text-muted); }
.article-date { font-size: 0.75rem; color: var(--text-muted); }
.read-more { font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.05em; display: flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.read-more:hover { gap: 8px; }

/* ===== YOUTUBE SECTION ===== */
.youtube-section { background: var(--dark-2); }
.yt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.yt-content { }
.yt-content p { color: var(--text-muted); margin: 16px 0 28px; max-width: 48ch; }
.yt-embed-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(201,168,76,0.2); }
.yt-embed-wrap iframe { display: block; width: 100%; aspect-ratio: 16/9; border: none; }
.yt-stats { display: flex; gap: 24px; margin-top: 20px; }
.yt-stat { font-size: 0.8rem; color: var(--text-muted); }
.yt-stat strong { color: var(--gold); font-size: 1.1rem; display: block; }

/* ===== NEWSLETTER ===== */
.newsletter { background: linear-gradient(135deg, #1a1500 0%, #0e0e0e 50%, #001a14 100%); }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter h2 { color: var(--gold); margin-bottom: 16px; }
.newsletter p { color: var(--text-muted); margin: 0 auto 32px; }
.nl-form { display: flex; gap: 12px; }
.nl-input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.3);
  color: var(--text); padding: 13px 18px; border-radius: 2px;
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color var(--transition);
}
.nl-input:focus { outline: none; border-color: var(--gold); }
.nl-input::placeholder { color: var(--text-muted); }

/* ===== SOCIAL BAR ===== */
.social-bar { background: var(--dark-2); padding: 48px 0; }
.social-bar-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.social-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.1); color: var(--text);
  font-size: 0.85rem; font-weight: 500;
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.social-icon { font-size: 1.2rem; }

/* ===== FOOTER ===== */
.footer {
  background: #080808; border-top: 1px solid rgba(201,168,76,0.15);
  padding: 80px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin: 16px 0 24px; max-width: 30ch; }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); }
.footer-logo span { color: var(--gold); }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== ARTICLE PAGE ===== */
.article-hero { padding: 160px 0 80px; background: linear-gradient(to bottom, var(--dark-2), var(--dark)); }
.article-hero-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.article-meta-top { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.article-page-tag { background: var(--gold); color: var(--dark); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; }
.article-read-time { font-size: 0.8rem; color: var(--text-muted); }
.article-page h1 { color: var(--white); margin-bottom: 20px; }
.article-page-excerpt { font-size: 1.15rem; color: var(--text-muted); max-width: 60ch; }
.article-cover { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 64px; }

.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
.article-content { }
.article-content h2 { font-size: 1.8rem; color: var(--white); margin: 48px 0 20px; }
.article-content h3 { font-size: 1.3rem; color: var(--white); margin: 32px 0 16px; }
.article-content p { color: rgba(240,237,230,0.82); margin-bottom: 20px; max-width: none; font-size: 1rem; line-height: 1.85; }
.article-content blockquote {
  border-left: 3px solid var(--gold); margin: 32px 0; padding: 16px 24px;
  background: rgba(201,168,76,0.05); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--gold);
}
.article-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.sidebar-card h4 { font-family: var(--font-display); font-size: 1rem; color: var(--white); margin-bottom: 16px; }
.toc-list { list-style: none; }
.toc-list li a { font-size: 0.83rem; color: var(--text-muted); display: block; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color var(--transition); }
.toc-list li a:hover { color: var(--gold); }

/* ===== ABOUT, CONTACT, PRIVACY PAGES ===== */
.page-hero { padding: 160px 0 80px; text-align: center; background: var(--dark-2); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); max-width: 50ch; margin: 0 auto; }
.page-content { padding: 80px 0; }
.page-content-inner { max-width: 800px; margin: 0 auto; }
.page-content h2 { color: var(--white); font-size: 1.8rem; margin: 48px 0 16px; }
.page-content h3 { color: var(--white); font-size: 1.3rem; margin: 32px 0 12px; }
.page-content p, .page-content li { color: rgba(240,237,230,0.8); line-height: 1.85; margin-bottom: 16px; }
.page-content ul { padding-left: 24px; }
.page-content a { color: var(--gold); }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { color: var(--white); margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; margin-top: 2px; }
.contact-detail-text strong { display: block; color: var(--white); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 2px; }
.contact-detail-text span { color: var(--text-muted); font-size: 0.88rem; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2);
  color: var(--text); padding: 12px 16px; border-radius: 2px;
  font-family: var(--font-body); font-size: 0.9rem; resize: vertical;
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { min-height: 140px; }

/* ===== SEARCH BAR ===== */
.search-section { padding: 48px 0; }
.search-wrap { max-width: 600px; margin: 0 auto; position: relative; }
.search-input {
  width: 100%; background: var(--dark-2); border: 1px solid rgba(201,168,76,0.3);
  color: var(--text); padding: 16px 56px 16px 20px;
  border-radius: 40px; font-family: var(--font-body); font-size: 0.95rem;
}
.search-input:focus { outline: none; border-color: var(--gold); }
.search-btn {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: var(--gold); border: none; color: var(--dark);
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--gold-light); }

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(14,14,14,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; color: var(--text); transition: color var(--transition); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--text); font-size: 2rem; cursor: pointer;
}

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ===== LOAD MORE ===== */
.load-more-wrap { text-align: center; margin-top: 48px; }

/* ===== LANGUAGE HIDDEN ===== */
[lang-content] { display: none; }
[lang-content].active { display: block; }
.inline-lang { display: none; }
.inline-lang.active { display: inline; }

/* ===== ADSENSE PLACEHOLDER ===== */
.ad-banner {
  background: rgba(255,255,255,0.03); border: 1px dashed rgba(201,168,76,0.2);
  border-radius: var(--radius); padding: 20px; text-align: center; margin: 32px 0;
  min-height: 100px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .city-card:first-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .yt-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-lang, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .cities-grid { grid-template-columns: 1fr; }
  .city-card:first-child { grid-column: span 1; }
  .nl-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  .section { padding: 64px 0; }
  .hero-btns { flex-direction: column; align-items: center; }
}
