/* ══════════════════════════════════════════
   AffordableLuxury.com — Main Stylesheet
   ══════════════════════════════════════════ */

:root {
  --black: #0a0a0a;
  --deep: #111111;
  --surface: #161616;
  --card: #1c1c1c;
  --border: #2a2a2a;
  --gold: #c9a84c;
  --gold-light: #e8c97e;
  --gold-dim: rgba(201,168,76,0.15);
  --white: #f5f0e8;
  --muted: #888880;
  --text: #d4cfc6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.4;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.15; color: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; letter-spacing: 0.12em; color: var(--white); text-transform: uppercase; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links a { color: var(--muted); transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--gold); color: var(--gold); padding: 8px 20px; transition: all 0.3s; }
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ── BUTTONS ── */
.btn-primary { background: var(--gold); color: var(--black); padding: 14px 32px; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; font-weight: 500; transition: all 0.3s; border: 1px solid var(--gold); display: inline-block; cursor: pointer; }
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-ghost { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s; }
.btn-ghost:hover { color: var(--white); }

/* ── SECTION SHARED ── */
section { padding: 100px 64px; }
.section-tag { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.section-title { font-size: clamp(2.4rem, 4vw, 3.8rem); margin-bottom: 20px; }
.section-sub { color: var(--muted); max-width: 540px; font-size: 1rem; line-height: 1.8; margin-bottom: 60px; }

/* ── AD SLOTS ── */
.ad-strip { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; text-align: center; position: relative; }
.ad-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--border); display: block; margin-bottom: 8px; }
.ad-slot { min-height: 90px; max-width: 728px; margin: 0 auto; }
.ad-slot-rect { min-height: 250px; max-width: 300px; }
.ad-slot-leaderboard { min-height: 90px; width: 100%; }

/* ── HERO ── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 120px 64px 80px 64px; position: relative; }
.hero-tag { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.hero-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-headline { font-size: clamp(3.2rem, 5.5vw, 5.8rem); line-height: 1.05; margin-bottom: 28px; color: var(--white); }
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 420px; margin-bottom: 48px; line-height: 1.8; font-weight: 300; }
.hero-btns { display: flex; gap: 16px; align-items: center; }
.hero-right { position: relative; overflow: hidden; }
.hero-img-grid { position: absolute; inset: 0; display: grid; grid-template-rows: 1fr 1fr; gap: 2px; }
.hero-img { background-size: cover; background-position: center; position: relative; overflow: hidden; }
.hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.3) 0%, transparent 60%); }
.hero-img-1 { background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=900&q=80'); }
.hero-img-2 { background-image: url('https://images.unsplash.com/photo-1528360983277-13d401cdc186?w=900&q=80'); }
.hero-scroll { position: absolute; bottom: 40px; left: 64px; display: flex; align-items: center; gap: 12px; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── FEATURED POSTS ── */
.featured { background: var(--deep); }
.posts-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2px; }
.post-card { position: relative; overflow: hidden; cursor: pointer; background: var(--card); }
.post-card:hover .post-img-inner { transform: scale(1.05); }
.post-card:hover .post-read { color: var(--gold); }
.post-img { overflow: hidden; }
.post-img-inner { width: 100%; aspect-ratio: 4/3; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.post-card-large .post-img-inner { aspect-ratio: 3/2; }
.post-body { padding: 24px 28px 28px; }
.post-cat { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.post-title { font-size: 1.45rem; line-height: 1.25; margin-bottom: 10px; color: var(--white); }
.post-card:not(.post-card-large) .post-title { font-size: 1.1rem; }
.post-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; }
.post-read { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); transition: color 0.3s; display: flex; align-items: center; gap: 6px; }

/* ── CATEGORIES ── */
.categories { background: var(--deep); padding: 64px; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
.cat-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; }
.cat-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); transition: opacity 0.4s; }
.cat-card:hover::after { opacity: 0.7; }
.cat-card:hover .cat-img-inner { transform: scale(1.06); }
.cat-img-inner { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.cat-label { position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 2; }
.cat-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--white); line-height: 1.1; margin-bottom: 4px; }
.cat-count { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.cat-card-1 .cat-img-inner { background-image: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=600&q=80'); }
.cat-card-2 .cat-img-inner { background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=600&q=80'); }
.cat-card-3 .cat-img-inner { background-image: url('https://images.unsplash.com/photo-1449505278894-297fdb3edbc1?w=600&q=80'); }
.cat-card-4 .cat-img-inner { background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=600&q=80'); }

/* ── QUOTE ── */
.quote-section { background: var(--black); text-align: center; padding: 80px 64px; position: relative; overflow: hidden; }
.quote-section::before { content: '\201C'; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); font-family: 'Cormorant Garamond', serif; font-size: 20rem; color: var(--gold-dim); line-height: 1; pointer-events: none; }
.quote-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-style: italic; color: var(--white); max-width: 720px; margin: 0 auto 24px; line-height: 1.4; position: relative; z-index: 1; }
.quote-author { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.gold-divider { width: 48px; height: 1px; background: var(--gold); margin: 0 auto 24px; }

/* ── ARTICLES ── */
.articles { background: var(--black); }
.articles-layout { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
.article-list { display: flex; flex-direction: column; }
.article-item { display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: opacity 0.3s; text-decoration: none; }
.article-item:hover { opacity: 0.8; }
.article-item:first-child { border-top: 1px solid var(--border); }
.article-thumb { aspect-ratio: 4/3; background-size: cover; background-position: center; overflow: hidden; }
.article-info { display: flex; flex-direction: column; justify-content: center; }
.article-cat { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.article-title { font-size: 1.5rem; line-height: 1.2; margin-bottom: 10px; color: var(--white); }
.article-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-meta { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; display: flex; gap: 16px; }

/* ── SIDEBAR ── */
.sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: var(--surface); border: 1px solid var(--border); padding: 28px; margin-bottom: 24px; }
.widget-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); letter-spacing: 0.04em; }
.popular-item { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: opacity 0.2s; }
.popular-item:hover { opacity: 0.7; }
.popular-item:last-child { border-bottom: none; }
.popular-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--border); line-height: 1; min-width: 28px; }
.popular-text { font-size: 0.85rem; color: var(--text); line-height: 1.4; }
.popular-cat { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--border); padding: 6px 12px; color: var(--muted); cursor: pointer; transition: all 0.2s; }
.tag:hover { border-color: var(--gold); color: var(--gold); }

/* ── ABOUT ── */
.about { background: var(--surface); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrapper { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; background-size: cover; background-position: center; background-image: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=800&q=80'); }
.about-img-accent { position: absolute; bottom: -24px; right: -24px; width: 160px; height: 160px; border: 1px solid var(--gold); z-index: -1; }
.about-stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin: 48px 0; }
.about-stat { border-top: 1px solid var(--gold); padding-top: 16px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--white); line-height: 1; margin-bottom: 4px; }
.stat-num span { color: var(--gold); font-size: 1.8rem; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ── BLOG PAGE ── */
.page-hero { padding: 160px 64px 80px; background: var(--deep); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(3rem, 5vw, 5rem); margin-bottom: 16px; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 560px; }
.blog-grid { background: var(--black); padding: 80px 64px; }
.blog-grid-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 64px; }
.blog-card { background: var(--card); overflow: hidden; cursor: pointer; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-img { width: 100%; aspect-ratio: 16/10; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.blog-card-body { padding: 24px; }
.blog-card-cat { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.blog-card-title { font-size: 1.25rem; line-height: 1.2; margin-bottom: 10px; color: var(--white); }
.blog-card-excerpt { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-meta { font-size: 0.7rem; color: var(--muted); display: flex; justify-content: space-between; align-items: center; }
.blog-card-read { color: var(--muted); transition: color 0.3s; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.blog-card:hover .blog-card-read { color: var(--gold); }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.pagination a, .pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); font-size: 0.8rem; color: var(--muted); transition: all 0.2s; }
.pagination a:hover, .pagination .current { border-color: var(--gold); color: var(--gold); }

/* ── SINGLE ARTICLE ── */
.article-hero { padding: 140px 64px 60px; background: var(--deep); }
.article-hero-cat { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.article-hero-cat::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.article-hero h1 { font-size: clamp(2.4rem, 4.5vw, 4.2rem); max-width: 860px; margin-bottom: 24px; }
.article-hero-meta { font-size: 0.78rem; color: var(--muted); display: flex; gap: 20px; }
.article-featured-img { width: 100%; max-height: 520px; object-fit: cover; background-size: cover; background-position: center; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 64px; padding: 64px; background: var(--black); align-items: start; }
.article-content { max-width: 720px; }
.article-content p { font-size: 1.05rem; line-height: 1.9; color: var(--text); margin-bottom: 24px; }
.article-content h2 { font-size: 2rem; margin: 48px 0 20px; }
.article-content h3 { font-size: 1.5rem; margin: 36px 0 16px; }
.article-content blockquote { border-left: 2px solid var(--gold); padding-left: 24px; margin: 36px 0; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; color: var(--white); line-height: 1.5; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 24px; color: var(--text); font-size: 1rem; line-height: 2; }

/* ── ABOUT PAGE ── */
.about-page-hero { padding: 160px 64px 80px; background: var(--deep); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-page-img { width: 100%; aspect-ratio: 4/3; background-size: cover; background-position: center; background-image: url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?w=800&q=80'); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.team-card { background: var(--card); overflow: hidden; }
.team-img { width: 100%; aspect-ratio: 1; background-size: cover; background-position: center top; }
.team-body { padding: 24px; }
.team-name { font-size: 1.4rem; margin-bottom: 4px; }
.team-role { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.team-bio { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.value-card { border-top: 1px solid var(--gold); padding-top: 24px; }
.value-icon { font-size: 1.8rem; margin-bottom: 16px; }
.value-title { font-size: 1.3rem; margin-bottom: 10px; }
.value-text { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ── FOOTER ── */
footer { background: var(--deep); border-top: 1px solid var(--border); padding: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--muted); letter-spacing: 0.08em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(32px); animation: fadeUp 0.8s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* ── LEGAL PAGES ── */
.legal-page { padding: 140px 64px 80px; max-width: 860px; }
.legal-page h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); margin-bottom: 12px; }
.legal-page .updated { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 48px; }
.legal-page h2 { font-size: 1.6rem; margin: 36px 0 14px; }
.legal-page p { font-size: 1rem; color: var(--text); line-height: 1.9; margin-bottom: 20px; }
.legal-page ul { padding-left: 24px; margin-bottom: 20px; color: var(--text); line-height: 2; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 50vw; min-height: 300px; }
  .hero-left { padding: 120px 32px 60px; }
  section { padding: 72px 32px; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .post-card-large { grid-column: span 2; }
  .articles-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .about { grid-template-columns: 1fr; padding: 72px 32px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .categories { padding: 72px 32px; }
  footer { padding: 48px 32px; }
  .blog-grid-layout { grid-template-columns: 1fr 1fr; }
  .blog-grid { padding: 60px 32px; }
  .article-layout { grid-template-columns: 1fr; padding: 48px 32px; }
  .about-page-hero { grid-template-columns: 1fr; padding: 140px 32px 60px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .legal-page { padding: 140px 32px 80px; }
  .page-hero { padding: 140px 32px 60px; }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-left { padding: 96px 20px 48px; }
  section { padding: 56px 20px; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-card-large { grid-column: auto; }
  .article-item { grid-template-columns: 120px 1fr; gap: 16px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .about-stat-row { grid-template-columns: 1fr 1fr; }
  .categories { padding: 56px 20px; }
  footer { padding: 40px 20px; }
  .blog-grid-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
