/* ==========================================================================
   GrowBizDigitals (GBD) — Global Stylesheet
   Theme: Deep navy + gold, modern agency, dark hero sections
   ========================================================================== */

:root {
  /* Palette derived directly from the GBD logo */
  --navy-900: #10192b;
  --navy-800: #1a2740;
  --navy-700: #223353;
  --navy-600: #2d3d56;   /* exact logo navy */
  --ink: #2d3d56;        /* exact logo navy */
  --gold: #e8b415;       /* exact logo gold */
  --gold-bright: #f1bb16;
  --gold-deep: #dfad14;
  --gold-soft: rgba(232, 180, 21, 0.14);
  --cream: #f8f5ea;
  --paper: #ffffff;
  --muted: #6b7688;
  --muted-light: #9aa4b4;
  --line: #e6e3da;
  --line-dark: rgba(232, 180, 21, 0.24);
  --shadow: 0 18px 50px -20px rgba(16, 25, 43, 0.38);
  --shadow-gold: 0 14px 40px -16px rgba(232, 180, 21, 0.48);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--navy-900); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); display: inline-block; }

.text-muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); background: var(--gold-bright); }
.btn-outline { border-color: var(--navy-600); color: var(--navy-600); }
.btn-outline:hover { border-color: var(--gold-deep); color: var(--gold-deep); transform: translateY(-3px); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-3px); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--navy-900); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 46px; height: 46px; border-radius: 50%; background: #fff; padding: 2px; }
.nav-brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand .brand-name { font-family: var(--font-display); font-weight: 800; color: var(--navy-600); font-size: 1.15rem; letter-spacing: 0.02em; }
.nav-brand .brand-sub { font-size: 0.6rem; letter-spacing: 0.25em; color: var(--gold-deep); text-transform: uppercase; margin-top: 3px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li > a {
  color: var(--navy-700);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  display: inline-block;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--gold-deep); }

/* Dropdown */
.has-drop { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s ease;
  box-shadow: var(--shadow);
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(6px); }
.dropdown li a {
  display: block;
  padding: 10px 14px;
  color: var(--navy-700);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.18s ease;
}
.dropdown li a:hover { background: var(--gold-soft); color: var(--gold-deep); padding-left: 18px; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--navy-600); transition: all 0.3s ease; display: block; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1100px 560px at 72% -10%, rgba(232,180,21,0.16), transparent 60%), linear-gradient(160deg, #ffffff, var(--cream));
  color: var(--ink);
  padding: 90px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  opacity: 0.6;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero h1 { color: var(--navy-600); margin: 18px 0 20px; }
.hero h1 .accent { color: var(--gold-deep); font-style: italic; }
.hero p.lead { font-size: 1.12rem; color: var(--muted); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.hero-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--navy-600);
  color: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge .num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.hero-badge .lbl { font-size: 0.78rem; color: #c3ccdb; font-weight: 600; line-height: 1.3; }

/* page hero (inner pages) */
.page-hero {
  background: radial-gradient(900px 420px at 80% -20%, rgba(232,180,21,0.15), transparent 55%), linear-gradient(160deg, #ffffff, var(--cream));
  color: var(--ink);
  padding: 72px 0 76px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { color: var(--navy-600); margin: 16px 0 14px; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { font-size: 0.82rem; color: var(--muted-light); margin-top: 20px; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb span { color: var(--gold-deep); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 660px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { margin: 14px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.04rem; }

.bg-cream { background: var(--cream); }
.bg-navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy .section-head p { color: #c3ccdb; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold);
  display: grid; place-items: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card .card-link { color: var(--navy-900); font-weight: 700; font-size: 0.88rem; margin-top: 16px; display: inline-flex; gap: 6px; align-items: center; }
.card .card-link:hover { color: var(--gold); gap: 10px; }

/* service card variant on navy */
.card-dark { background: rgba(255,255,255,0.04); border-color: var(--line-dark); }
.card-dark:hover { border-color: var(--gold); background: rgba(255,255,255,0.06); }
.card-dark h3 { color: #fff; }
.card-dark p { color: #b4bdcd; }
.card-dark .card-link { color: var(--gold); }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split .split-body h2 { margin: 14px 0 18px; }
.split ul.checks { margin-top: 22px; display: grid; gap: 14px; }
.split ul.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.split ul.checks li::before { content: "✓"; color: var(--gold); font-weight: 800; flex-shrink: 0; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--gold); }
.stat .lbl { color: #c3ccdb; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { position: relative; padding-top: 10px; }
.step .step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-soft);
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--gold); position: relative; box-shadow: var(--shadow-gold); }
.price-card.featured::before {
  content: "Most Popular";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy-900);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
}
.price-card .plan-name { font-weight: 700; font-size: 1.15rem; color: var(--navy-900); }
.price-card .plan-desc { color: var(--muted); font-size: 0.9rem; margin: 6px 0 20px; }
.price-card .price { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--navy-900); }
.price-card .price span { font-size: 1rem; font-weight: 500; color: var(--muted); font-family: var(--font-body); }
.price-card ul { margin: 24px 0 28px; display: grid; gap: 13px; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--ink); }
.price-card ul li::before { content: "✓"; color: var(--gold); font-weight: 800; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ---------- Portfolio ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.folio {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.folio img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.folio:hover img { transform: scale(1.08); }
.folio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,18,36,0.92), transparent 65%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  opacity: 0; transition: opacity 0.3s ease;
}
.folio:hover .folio-overlay { opacity: 1; }
.folio-overlay .cat { color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.folio-overlay h3 { color: #fff; font-size: 1.2rem; margin-top: 6px; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px;
}
.quote-card .stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 3px; }
.quote-card p { color: var(--ink); font-size: 1rem; font-style: italic; margin-bottom: 20px; }
.quote-card .who { display: flex; align-items: center; gap: 14px; }
.quote-card .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quote-card .who .name { font-weight: 700; color: var(--navy-900); font-size: 0.94rem; }
.quote-card .who .role { color: var(--muted); font-size: 0.82rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: radial-gradient(700px 300px at 20% 20%, rgba(232,180,21,0.20), transparent 60%), linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: #c3ccdb; max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-band .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.86rem; margin-bottom: 7px; color: var(--navy-900); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--muted); }

/* contact split */
.contact-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
.contact-info-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #fff; border-radius: var(--radius); padding: 38px 34px;
}
.contact-info-card h3 { color: #fff; margin-bottom: 8px; }
.contact-info-card p.sub { color: #b4bdcd; font-size: 0.94rem; margin-bottom: 28px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-item .ci-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.contact-item .ci-label { font-size: 0.75rem; color: var(--muted-light); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-item .ci-value { color: #fff; font-weight: 600; font-size: 0.98rem; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px; }

/* ---------- Blog list (for blog-writing sample cards) ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.28s ease, box-shadow 0.28s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.blog-card .blog-body { padding: 24px; }
.blog-card .blog-cat { color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.blog-card h3 { font-size: 1.15rem; margin: 10px 0; }
.blog-card p { color: var(--muted); font-size: 0.92rem; }
.blog-card .meta { margin-top: 16px; font-size: 0.8rem; color: var(--muted-light); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 0; font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; color: var(--navy-900); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-q .plus { color: var(--gold); font-size: 1.5rem; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; color: var(--muted); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding-bottom: 22px; }

/* ---------- Logo strip ---------- */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px; opacity: 0.85; }
.logo-strip span { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--muted-light); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #c3ccdb; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; background: #fff; padding: 2px; }
.footer-brand .brand-name { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.2rem; }
.footer-brand .brand-sub { font-size: 0.58rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: #a7b1c2; font-size: 0.92rem; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-about p { font-size: 0.92rem; color: #a7b1c2; margin-bottom: 20px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: #c3ccdb; transition: all 0.22s ease; }
.footer-social a:hover { background: var(--gold); color: var(--navy-900); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 0.85rem; color: #8b95a7; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .portfolio-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px;
    gap: 2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding-top: 0; padding-bottom: 0;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { max-height: 560px; padding: 16px; overflow-y: auto; }
  .nav-menu > li > a { display: block; padding: 14px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: var(--cream); margin: 4px 0 8px; display: none; }
  .has-drop.open .dropdown { display: block; }
  .nav-cta .btn-nav-hide { display: none; }
  .hero-grid, .split, .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .cta-band { padding: 46px 26px; }
}

@media (max-width: 560px) {
  section { padding: 60px 0; }
  .hero { padding: 60px 0 76px; }
  .grid-2, .grid-3, .grid-4, .steps, .stats, .portfolio-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-about { grid-column: 1 / -1; }
  .hero-badge { left: 0; }
  .container { padding: 0 18px; }
}

/* ==========================================================================
   ANIMATIONS — logo-themed motion layer
   ========================================================================== */

/* --- Keyframes --- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes floatSlow { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-22px) rotate(6deg); } }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulseGold { 0%,100% { box-shadow: 0 0 0 0 rgba(232,180,21,0.5); } 50% { box-shadow: 0 0 0 12px rgba(232,180,21,0); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes underlineGrow { from { width: 0; } to { width: 100%; } }
@keyframes badgePop { 0% { opacity: 0; transform: scale(0.7) translateY(20px); } 60% { transform: scale(1.05); } 100% { opacity: 1; transform: scale(1) translateY(0); } }

/* --- Animated hero background gradient --- */
.hero, .page-hero {
  background-size: 180% 180%;
  animation: gradientShift 16s ease infinite;
}

/* --- Floating ambient shapes in hero --- */
.hero::before {
  content: "";
  position: absolute;
  top: 12%;
  right: 22%;
  width: 120px;
  height: 120px;
  border: 2px solid var(--line-dark);
  border-radius: 50%;
  animation: floatSlow 9s ease-in-out infinite;
  pointer-events: none;
}
.hero::after { animation: floatY 11s ease-in-out infinite; }
.page-hero::after {
  content: "";
  position: absolute;
  left: -80px; top: -80px;
  width: 240px; height: 240px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  opacity: 0.5;
  animation: floatSlow 12s ease-in-out infinite;
  pointer-events: none;
}

/* --- Hero staggered entrance --- */
.hero-copy .eyebrow { opacity: 0; animation: fadeUp 0.7s ease forwards 0.1s; }
.hero-copy h1 { opacity: 0; animation: fadeUp 0.8s ease forwards 0.28s; }
.hero-copy p.lead { opacity: 0; animation: fadeUp 0.8s ease forwards 0.46s; }
.hero-copy .hero-actions { opacity: 0; animation: fadeUp 0.8s ease forwards 0.62s; }
.hero-visual img { opacity: 0; animation: fadeUp 0.9s ease forwards 0.4s; }
.hero-badge { opacity: 0; animation: badgePop 0.7s cubic-bezier(.2,.8,.3,1.2) forwards 0.9s; }

/* accent word gets a soft glow pulse */
.hero h1 .accent {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-deep));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* --- Page-hero inner entrance --- */
.page-hero .eyebrow { opacity: 0; animation: fadeUp 0.6s ease forwards 0.1s; }
.page-hero h1 { opacity: 0; animation: fadeUp 0.7s ease forwards 0.24s; }
.page-hero p { opacity: 0; animation: fadeUp 0.7s ease forwards 0.4s; }
.page-hero .breadcrumb { opacity: 0; animation: fadeIn 0.7s ease forwards 0.6s; }

/* --- Logo gentle life --- */
.nav-brand img { transition: transform 0.4s ease; }
.nav-brand:hover img { transform: rotate(-8deg) scale(1.06); }
.footer-brand img { animation: floatY 6s ease-in-out infinite; }

/* --- Eyebrow line draws in on reveal --- */
.section-head.visible .eyebrow::before { animation: underlineGrow 0.6s ease forwards; }

/* --- Section-head heading shimmer underline --- */
.section-head h2 { position: relative; display: inline-block; }
.section-head h2::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -12px;
  width: 0; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transform: translateX(-50%);
  transition: width 0.6s ease 0.2s;
}
.section-head.visible h2::after { width: 64px; }

/* --- Cards: richer hover with gold glow --- */
.card, .price-card, .blog-card, .quote-card { position: relative; overflow: hidden; }
.card::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(232,180,21,0.10), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.card:hover::after { left: 130%; }
.card .icon { transition: transform 0.35s ease, background 0.35s ease; }
.card:hover .icon { transform: translateY(-4px) scale(1.08) rotate(-6deg); background: var(--gold); color: #fff; }

/* --- Stat count-up numbers pop --- */
.stat.visible .num { animation: fadeUp 0.7s ease forwards; }

/* --- Step number float --- */
.step:hover .step-num { animation: floatY 1.6s ease-in-out infinite; }

/* --- Buttons: shine sweep --- */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }
.btn-gold { animation: none; }
.hero-actions .btn-gold, .cta-actions .btn-gold { animation: pulseGold 2.8s ease-in-out infinite 1.4s; }

/* --- Folio zoom already there; add caption slide --- */
.folio-overlay h3 { transform: translateY(12px); transition: transform 0.35s ease 0.05s; }
.folio:hover .folio-overlay h3 { transform: translateY(0); }
.folio-overlay .cat { transform: translateY(12px); transition: transform 0.35s ease; }
.folio:hover .folio-overlay .cat { transform: translateY(0); }

/* --- CTA band floating glow --- */
.cta-band::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,180,21,0.22), transparent 70%);
  border-radius: 50%;
  animation: floatSlow 10s ease-in-out infinite;
  pointer-events: none;
}

/* --- Nav links underline slide --- */
.nav-menu > li > a { position: relative; }
.nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.nav-menu > li > a:hover::after, .nav-menu > li > a.active::after { transform: scaleX(1); }

/* --- Reveal stagger for grids --- */
.grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.grid .reveal:nth-child(6) { transition-delay: 0.40s; }

/* --- Scroll progress bar --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  z-index: 2000;
  transition: width 0.1s linear;
}

/* --- Respect reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-copy .eyebrow, .hero-copy h1, .hero-copy p.lead, .hero-copy .hero-actions,
  .hero-visual img, .hero-badge, .page-hero .eyebrow, .page-hero h1, .page-hero p, .page-hero .breadcrumb {
    opacity: 1 !important;
  }
}
