/* ============================================
   WOOD AGENCY — SHARED STYLESHEET
   Dark luxury · Metallic gold · Cinzel + Lato
   ============================================ */

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

/* ---- CSS VARIABLES ---- */
:root {
  --bg-deep:        #06090d;
  --bg-mid:         #0b1219;
  --bg-card:        #0f1a24;
  --bg-card-hover:  #131f2c;
  --bg-glass:       rgba(15, 26, 36, 0.8);

  /* Metallic gold palette */
  --gold:           #d4b860;
  --gold-light:     #e8cb7e;
  --gold-bright:    #f5d98a;
  --gold-dark:      #9a7a2e;
  --gold-dim:       rgba(201, 168, 76, 0.12);
  --gold-dim-mid:   rgba(201, 168, 76, 0.2);
  --gold-glow:      rgba(201, 168, 76, 0.25);

  /* Gold gradient (use for text/borders/fills) */
  --gold-gradient:  linear-gradient(135deg, #9a7a2e 0%, #c9a84c 35%, #e8cb7e 60%, #c9a84c 80%, #9a7a2e 100%);
  --gold-gradient-h: linear-gradient(90deg, #9a7a2e 0%, #e8cb7e 50%, #9a7a2e 100%);
  --gold-gradient-simple: linear-gradient(135deg, #c9a84c, #e8cb7e);

  --cream:          #f5f0e8;
  --text-primary:   #f0ebe3;
  --text-muted:     #9dbdd6;
  --text-dim:       #7a95ac;

  --border:         rgba(201, 168, 76, 0.22);
  --border-subtle:  rgba(255, 255, 255, 0.055);
  --border-card:    rgba(255, 255, 255, 0.07);

  --shadow-gold:    0 0 50px rgba(201, 168, 76, 0.14), 0 8px 30px rgba(0,0,0,0.4);
  --shadow-gold-lg: 0 0 80px rgba(201, 168, 76, 0.18), 0 20px 60px rgba(0,0,0,0.5);
  --shadow-deep:    0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-card:    0 4px 24px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.04) inset;

  --radius:         6px;
  --radius-lg:      14px;
  --radius-xl:      20px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h:          80px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle noise + ambient gradient overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 80% -10%, rgba(201,168,76,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at -10% 80%, rgba(201,168,76,0.025) 0%, transparent 50%),
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
}

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }

p { font-weight: 400; }

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-gradient-simple);
  flex-shrink: 0;
}

.gold { color: var(--gold); }
.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.italic { font-family: 'Playfair Display', serif; font-style: italic; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section {
  padding: clamp(5rem, 9vw, 9rem) 0;
  position: relative;
}

/* ---- GOLD LINE DIVIDER ---- */
.gold-line {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold-gradient-simple);
  margin: 1.75rem 0;
  border-radius: 1px;
}
.gold-line.centered { margin: 1.75rem auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  white-space: nowrap;
}

/* Shine sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}
.btn:hover::after { left: 150%; }

.btn-primary {
  background: var(--gold-gradient-simple);
  color: #0a0e12;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
  filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-card);
}
.btn-ghost:hover {
  border-color: var(--border);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}
.nav.scrolled {
  background: rgba(6, 9, 13, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border), 0 4px 40px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.12em;
  line-height: 1.2;
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--gold-light); }
.nav-logo small {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.32em;
  color: var(--text-dim);
  font-weight: 400;
  margin-top: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-gradient-simple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 13, 0.97);
  backdrop-filter: blur(40px) saturate(1.2);
  -webkit-backdrop-filter: blur(40px) saturate(1.2);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.nav-mobile-close:hover { color: var(--gold); }

/* ---- CARDS ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

/* Gradient border card (wrap in a div with .gradient-border) */
.gradient-border {
  position: relative;
  border-radius: var(--radius-xl);
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--border), transparent 40%, var(--border) 80%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---- GLASS CARD ---- */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.section-header .eyebrow {
  justify-content: center;
}
.section-header .eyebrow::before {
  display: none;
}
.section-header .gold-line { margin: 1.75rem auto; }

/* ---- GRID UTILITIES ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1), transform 0.85s cubic-bezier(0.4,0,0.2,1);
}
.reveal.from-left  { transform: translateX(-48px); }
.reveal.from-right { transform: translateX(48px); }
.reveal.scale-in   { transform: scale(0.93); }
.reveal.visible    { opacity: 1; transform: none; }

/* Stagger delays */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }

/* ---- GOLD COUNTER/STAT ---- */
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* ---- QUOTE / TESTIMONIAL ---- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card);
}
.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.25rem;
  left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}
.testimonial-stars span {
  color: var(--gold);
  font-size: 0.85rem;
  filter: drop-shadow(0 0 4px rgba(201,168,76,0.5));
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* ---- FORM ---- */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  color: var(--text-primary);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group select option { background: var(--bg-mid); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2.5rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: var(--gold-gradient-h);
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}
.footer-brand .nav-logo-footer {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand small {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.32em;
  color: var(--text-dim);
  font-weight: 400;
  margin-top: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: 'Lato', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.85rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
  font-weight: 300;
}
.footer-col ul li a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.75rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.2);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4.5rem;
  padding-top: calc(var(--nav-h) + 4rem);
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 130%, rgba(201, 168, 76, 0.09) 0%, transparent 65%),
    linear-gradient(180deg, transparent 20%, rgba(6,9,13,0.5) 100%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent 5%, rgba(0,0,0,0.35) 30%, rgba(0,0,0,0.35) 75%, transparent);
}

/* ---- PILL BADGE ---- */
.pill {
  display: inline-block;
  padding: 0.32rem 1.1rem;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ---- NOTIFICATION TOAST ---- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 1.1rem 1.6rem;
  max-width: 340px;
  box-shadow: var(--shadow-gold-lg);
  transform: translateX(150%);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.show { transform: translateX(0); }
.toast-title {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}
.toast-msg { font-size: 0.82rem; color: var(--text-muted); }

/* ---- CARRIER / TAG STRIP ---- */
.carrier-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.carrier-tag {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  transition: var(--transition);
}
.carrier-tag:hover {
  border-color: var(--border);
  color: var(--gold);
}

/* ---- FAQ ACCORDION ---- */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  transition: color var(--transition);
  gap: 1rem;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 1.4rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ---- PAGE TRANSITIONS ---- */
body {
  animation: pageFadeIn 0.35s ease both;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.page-exit {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

/* ---- CTA BUTTON GLOW PULSE ---- */
@keyframes btnGoldPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,0.15); }
  50%       { box-shadow: 0 4px 32px rgba(201,168,76,0.45), 0 0 0 3px rgba(201,168,76,0.12); }
}
.btn-primary {
  animation: btnGoldPulse 3.5s ease-in-out infinite;
}
.btn-primary:hover, .btn-primary:focus {
  animation: none; /* stop pulse on hover so hover style takes over cleanly */
}

/* ---- CARD HOVER GLOW ---- */
.service-block,
.testimonial-card,
.office-card,
.perk-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-block:hover,
.testimonial-card:hover,
.office-card:hover,
.perk-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.15), 0 4px 20px rgba(201,168,76,0.12);
}

/* ---- SECTION TITLE SCROLL SHIMMER ---- */
.title-shimmer-ready {
  background: linear-gradient(
    105deg,
    var(--text, #f0ece4) 0%,
    var(--text, #f0ece4) 25%,
    #c9a84c 38%,
    #fff5c0 47%,
    #c9a84c 56%,
    var(--text, #f0ece4) 69%,
    var(--text, #f0ece4) 100%
  );
  background-size: 280% 100%;
  background-position: 150% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-shimmer-ready.title-shimmer-go {
  animation: titleGoldWave 1.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes titleGoldWave {
  from { background-position: 150% center; }
  to   { background-position: -60% center; }
}
@media (prefers-reduced-motion: reduce) {
  .title-shimmer-ready { background: none; -webkit-text-fill-color: inherit; }
  .title-shimmer-ready.title-shimmer-go { animation: none; }
}

/* ---- STAT COUNTER SHIMMER ---- */
@keyframes statFlash {
  0%   { color: var(--text); text-shadow: none; }
  40%  { color: #fff5c0; text-shadow: 0 0 20px rgba(201,168,76,0.9), 0 0 40px rgba(201,168,76,0.5); }
  100% { color: var(--gold); text-shadow: none; }
}
.stat-flash {
  animation: statFlash 0.6s ease-out forwards;
}

/* ---- BUTTON PRESS EFFECT ---- */
.btn:active {
  transform: translateY(1px) scale(0.98);
  transition: transform 0.08s ease;
}

/* ---- PHOSPHOR ICONS ---- */
/* Base: all ph icons inherit gold unless overridden */
.ph-fill, .ph-duotone, .ph-thin, .ph-light, .ph-bold, .ph-regular {
  color: var(--gold);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Size helpers */
.ph-xl  { font-size: 3rem; }
.ph-lg  { font-size: 2.25rem; }
.ph-md  { font-size: 1.75rem; }
.ph-sm  { font-size: 1.25rem; }
.ph-xs  { font-size: 1rem; }

/* Icon containers that currently hold emojis */
.value-icon, .service-icon, .hiw-icon, .why-icon,
.value-card-icon, .sf-icon, .method-icon, .perk-icon,
.lq-card-icon, .check-icon, .sidebar-cta-icon {
  font-size: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Success check icon (replaces ✅) */
.success-check-icon {
  font-size: 3rem;
  color: #5cb85c;
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

/* Trust strip icons */
.survey-trust-item .ph-fill,
.survey-trust-item .ph-bold {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Inline phone icon in CTAs */
a .ph-fill, a .ph-bold {
  vertical-align: middle;
}

/* Method cards — larger icons */
.method-icon .ph-fill,
.method-icon .ph-duotone {
  font-size: 1.5rem;
}

/* Duotone secondary color for large decorative icons */
.ph-duotone {
  --ph-duotone-color: rgba(201,168,76,0.25);
}
