@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Inter:wght@200;300;400;500;600&display=swap');

:root {
  --black:      #080808;
  --dark:       #111111;
  --card:       #181818;
  --card-h:     #202020;
  --gold:       #C9A96E;
  --gold-light: #E2C08A;
  --white:      #FFFFFF;
  --gray:       #666666;
  --text-dim:   #999999;
  --border:     rgba(201,169,110,0.12);
  --font-d: 'Manrope', sans-serif;
  --font-b: 'Inter', sans-serif;
  --nav-h: 76px;
  --max-w: 1320px;
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Typography ─── */

h1,h2,h3,h4 {
  font-family: var(--font-d);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 { font-size: clamp(2.4rem, 4.8vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: clamp(1rem, 1.6vw, 1.3rem); }

p { color: var(--text-dim); font-size: 1.05rem; line-height: 1.85; }

.label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

em, i { font-style: normal; color: var(--gold); }
strong { font-weight: 600; color: var(--white); }

/* ─── Layout ─── */

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
section { padding: 120px 0; }

/* ─── Nav ─── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.5s, border 0.5s;
}

.nav.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-d);
  font-size: 1.15rem; font-weight: 600; color: var(--white);
  text-decoration: none; letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  font-size: 0.85rem; font-weight: 400; letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }

/* ─── Buttons ─── */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-b); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gold); color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201,169,110,0.28);
}

.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* Nav CTA — high contrast against dark/transparent nav */
.btn-nav {
  background: var(--white);
  color: var(--black);
  border: none;
}
.btn-nav:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,169,110,0.3);
}

.btn .arrow { display: inline-block; transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(6px); }

/* ─── Hero ─── */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100vh;
  position: relative; overflow: hidden;
  padding: 0; /* neutralize section { padding: 120px 0 } */
}

.hero-left {
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: calc(var(--nav-h) + 80px) 60px 60px 48px;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

.hero h1 { margin-bottom: 28px; }
.hero h1 .gold { color: var(--gold); }

.hero-sub {
  font-size: 1.1rem; color: var(--text-dim);
  max-width: 460px; margin-bottom: 52px; line-height: 1.9;
}

.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.hero-footnote {
  margin-top: 40px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.78rem; color: var(--gray); letter-spacing: 0.04em;
}

.hero-footnote::before {
  content: ''; width: 24px; height: 1px; background: var(--gray);
}

/* Hero right */
.hero-right {
  position: relative; overflow: hidden;
  height: 100vh; /* force same height as left column */
}

.hero-right::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, var(--black) 0%, rgba(8,8,8,0.3) 40%, transparent 70%);
  z-index: 1;
}

.hero-right::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: 1;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
  transform-origin: center center;
  animation: slow-zoom 20s ease-in-out infinite alternate;
}

@keyframes slow-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-bg-text {
  position: absolute; bottom: 48px; right: -20px; z-index: 0;
  font-family: var(--font-d); font-size: 10rem; font-weight: 700;
  color: rgba(255,255,255,0.025); line-height: 1;
  pointer-events: none; white-space: nowrap; letter-spacing: -0.04em;
}

/* ─── Proof Bar ─── */

.proof-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.proof-bar-inner {
  display: flex; align-items: stretch;
}

.proof-item {
  flex: 1; padding: 36px 48px;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 20px;
  transition: background 0.3s;
}
.proof-item:last-child { border-right: none; }
.proof-item:hover { background: var(--card); }

.proof-num {
  font-family: var(--font-d); font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1; white-space: nowrap;
  letter-spacing: -0.03em;
}

.proof-label {
  font-size: 0.78rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.12em; line-height: 1.5;
}

/* ─── Ticker ─── */

.ticker-wrap {
  overflow: hidden; padding: 18px 0;
  background: var(--gold);
  position: relative;
}

.ticker-track {
  display: flex; animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--font-b);
  font-size: 0.78rem; font-weight: 600;
  color: var(--black); padding: 0 32px;
  letter-spacing: 0.14em; text-transform: uppercase; flex-shrink: 0;
}

.ticker-sep { color: rgba(0,0,0,0.3); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section header ─── */

.section-header { margin-bottom: 72px; }
.section-header .label { display: block; margin-bottom: 18px; }
.section-header p { max-width: 560px; margin-top: 20px; }

/* ─── Problem section ─── */

.problem-section { background: var(--dark); }

.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}

.problem-card {
  background: var(--dark); padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.problem-card:hover { background: var(--card); }

.problem-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.problem-card:hover::after { transform: scaleX(1); }

.problem-num {
  font-family: var(--font-b); font-size: 3.5rem; font-weight: 200;
  color: rgba(201,169,110,0.4); line-height: 1;
  margin-bottom: 20px; display: block; letter-spacing: -0.04em;
}

.problem-card h4 {
  font-family: var(--font-b); font-size: 0.95rem; font-weight: 600;
  color: var(--white); margin-bottom: 14px;
  letter-spacing: 0; line-height: 1.4;
}

.problem-card p { font-size: 0.9rem; line-height: 1.75; }

/* ─── About section ─── */

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-wrap img {
  width: 100%; height: 680px;
  object-fit: cover; object-position: center top;
  display: block; filter: contrast(1.05);
}

.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  width: 180px; height: 180px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
}

.about-badge-inner {
  font-family: var(--font-d);
  font-size: 0.8rem; font-weight: 600;
  color: var(--black); line-height: 1.4;
}

.about-badge-inner span {
  display: block; font-size: 1.8rem; font-weight: 700;
  margin-bottom: 4px; letter-spacing: -0.03em;
}

.about-content .label { display: block; margin-bottom: 18px; }
.about-content h2 { margin-bottom: 28px; }
.about-content > p { margin-bottom: 20px; }

.cred-list { list-style: none; margin: 36px 0; }
.cred-list li {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-dim);
  display: flex; align-items: flex-start; gap: 14px;
  line-height: 1.5;
}
.cred-list li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0; margin-top: 7px;
}

/* ─── Services ─── */

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}

.service-card {
  background: var(--dark); padding: 52px 44px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background 0.4s; text-decoration: none; color: inherit;
}

.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover { background: var(--card-h); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-b); font-size: 4rem; font-weight: 200;
  color: rgba(201,169,110,0.35); line-height: 1;
  margin-bottom: 28px; display: block; letter-spacing: -0.04em;
}

.service-card h3 { color: var(--white); margin-bottom: 16px; font-size: 2rem; }
.service-card p { font-size: 0.92rem; flex: 1; margin-bottom: 36px; }

.service-pill {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}

.pill {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 5px 12px;
}

.service-cta {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  transition: gap 0.3s;
}
.service-card:hover .service-cta { gap: 16px; }

/* ─── Transformation ─── */

.transform-section { background: var(--dark); }

.transform-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 72px;
}

.transform-intro img {
  width: 100%; height: 500px;
  object-fit: cover; object-position: center top;
  display: block;
}

.transform-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border);
}

.transform-item {
  background: var(--dark); padding: 36px 40px;
  display: flex; align-items: flex-start; gap: 20px;
  transition: background 0.3s;
}
.transform-item:hover { background: var(--card); }

.t-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; padding-top: 2px; }

.t-text h4 {
  font-family: var(--font-b); font-size: 0.95rem; font-weight: 600;
  color: var(--white); margin-bottom: 8px; letter-spacing: 0; line-height: 1.4;
}
.t-text p { font-size: 0.88rem; line-height: 1.7; }

/* ─── Testimonials ─── */

.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); margin-top: 72px;
}

.testi-card {
  background: var(--dark); padding: 52px 44px;
  display: flex; flex-direction: column;
}

.testi-q {
  flex: 1;
  padding-top: 32px; position: relative;
  font-family: var(--font-b); font-size: 1rem; font-weight: 400;
  color: var(--white); line-height: 1.8; margin-bottom: 36px;
  border-top: 2px solid var(--border);
}

.testi-q::before {
  content: '\201C';
  position: absolute; top: -16px; left: 0;
  font-size: 3rem; line-height: 1;
  color: var(--gold);
  font-family: var(--font-b); font-weight: 200;
}

.testi-author { display: flex; align-items: center; gap: 14px; }

.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1rem; font-weight: 800;
  color: var(--gold); flex-shrink: 0;
  letter-spacing: -0.02em;
}

.testi-meta h5 {
  font-family: var(--font-b); font-size: 0.88rem; font-weight: 600;
  color: var(--white);
}
.testi-meta span { font-size: 0.78rem; color: var(--gray); }

/* ─── Location ─── */

.location-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.location-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}

.location-visual {
  height: 480px; position: relative; overflow: hidden;
  display: flex; align-items: stretch;
  border: 1px solid var(--border);
}

.map-center {
  text-align: center; position: relative; z-index: 1;
}

.map-dot {
  width: 18px; height: 18px;
  background: var(--gold); border-radius: 50%;
  margin: 0 auto 24px;
  position: relative;
}
.map-dot::before,
.map-dot::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%; border: 1px solid var(--gold);
  animation: ripple 2.5s ease-out infinite;
}
.map-dot::before { width: 44px; height: 44px; animation-delay: 0s; opacity: 0.4; }
.map-dot::after  { width: 72px; height: 72px; animation-delay: 0.8s; opacity: 0.2; }

@keyframes ripple {
  0%   { transform: translate(-50%,-50%) scale(0.8); opacity: 0.5; }
  100% { transform: translate(-50%,-50%) scale(1.3); opacity: 0; }
}

.map-city {
  font-family: var(--font-d); font-size: 3rem; font-weight: 600;
  color: var(--gold); line-height: 1; letter-spacing: -0.03em;
}
.map-sub {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); margin-top: 8px;
}

.location-content .label { display: block; margin-bottom: 18px; }
.location-content h2 { margin-bottom: 24px; }
.location-content > p { margin-bottom: 20px; }

.location-facts { list-style: none; margin: 36px 0; }
.location-facts li {
  padding: 16px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-dim);
  display: flex; align-items: center; gap: 14px;
}
.location-facts li strong { color: var(--white); }

/* ─── CTA Section ─── */

.cta-section {
  text-align: center;
  padding: 120px 0;
  position: relative; overflow: hidden;
}

.cta-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-d); font-size: 14rem; font-weight: 700;
  color: rgba(255,255,255,0.022); white-space: nowrap;
  line-height: 1; pointer-events: none;
  letter-spacing: -0.04em;
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section .label { display: block; margin-bottom: 18px; }
.cta-section h2 { max-width: 680px; margin: 0 auto 28px; }
.cta-section > .container > p { max-width: 500px; margin: 0 auto 52px; }

.cta-row { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }

.cta-note {
  margin-top: 28px;
  font-size: 0.8rem; color: var(--gray);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cta-note::before { content: '✓'; color: var(--gold); }

/* ─── Footer ─── */

footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 60px; margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-d); font-size: 1.15rem; font-weight: 600;
  color: var(--white); text-decoration: none; display: block;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.footer-logo span { color: var(--gold); }

.footer-brand p { font-size: 0.88rem; max-width: 280px; margin-bottom: 28px; }

.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); text-decoration: none; font-size: 0.85rem;
  transition: all 0.3s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h5 {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: var(--text-dim); text-decoration: none;
  font-size: 0.88rem; transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact p { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 8px; line-height: 1.6; }
.footer-contact a { color: var(--text-dim); text-decoration: none; transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }
/* footer a-selector would override .btn-primary — reset explicitly */
.footer-contact a.btn { color: var(--black); }
.footer-contact a.btn:hover { color: var(--black); }

.footer-bottom {
  padding-top: 40px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { font-size: 0.8rem; color: var(--gray); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--white); }

/* ─── Subpage hero ─── */

.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.page-hero .label { display: block; margin-bottom: 20px; }
.page-hero h1 { max-width: 800px; margin-bottom: 24px; }
.page-hero p.lead { max-width: 560px; font-size: 1.15rem; }

/* ─── Mobile nav toggle ─── */

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

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-d); font-size: 2.4rem; font-weight: 600;
  color: var(--white); text-decoration: none; transition: color 0.3s;
  letter-spacing: -0.03em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute; top: 28px; right: 32px;
  font-size: 2rem; color: var(--white); cursor: pointer;
  background: none; border: none; font-family: var(--font-b);
}

/* ─── Animations ─── */

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */

@media (max-width: 1200px) {
  .hero { grid-template-columns: 1.1fr 0.9fr; }
  .hero-left { padding: calc(var(--nav-h) + 40px) 60px 60px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: 60vh auto; }
  .hero-left { padding: 60px 48px 80px; max-width: 100%; }
  .hero-right { height: 60vh; order: -1; }
  .hero-right::before {
    background: linear-gradient(to bottom, rgba(8,8,8,0.7) 0%, transparent 50%);
  }
  .hero-right::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .transform-intro { grid-template-columns: 1fr; }
  .transform-intro img { height: 360px; }
  .location-grid { grid-template-columns: 1fr; gap: 48px; }
  .proof-bar-inner { flex-wrap: wrap; }
  .proof-item { min-width: 50%; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .problem-grid { grid-template-columns: 1fr; }
  .transform-grid { grid-template-columns: 1fr; }
  .hero-bg-text { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .proof-item { min-width: 100%; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  .cta-section { padding: 100px 0; }
  .cta-bg-text { font-size: 8rem; }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
}
