/* =============================================
   The Palm Beach Fixer — v2 Splash Page Styles
   Design: "The Neighbor" — Warm, personal, trust-forward
   Palette: Midnight Navy, Burnished Gold, Champagne White
   Fonts: Cinzel, Montserrat, Inter
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
  /* Core palette */
  --navy:             #0B162A;
  --navy-light:       #142240;
  --navy-lighter:     #1C2E52;
  --gold:             #D4AF37;
  --gold-alt:         #C5A059;
  --gold-dark:        #A8882B;
  --gold-light:       #E8CC6E;
  --champagne:        #F5F5F0;
  --champagne-dim:    #E8E8E0;
  --white:            #FFFFFF;

  /* Gradient */
  --gold-gradient:    linear-gradient(135deg, #A8882B 0%, #D4AF37 40%, #E8CC6E 60%, #C5A059 100%);
  --gold-gradient-btn: linear-gradient(135deg, #8B7023 0%, #C5A059 30%, #D4AF37 55%, #E8CC6E 80%, #D4AF37 100%);
  --gold-gradient-text: linear-gradient(135deg, #C5A059, #D4AF37, #E8CC6E, #D4AF37);

  /* Typography */
  --font-heading:  'Cinzel', Georgia, serif;
  --font-subhead:  'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad:    5rem 0;
  --section-pad-sm: 3rem 0;
  --container-max:  1100px;

  /* Borders & shadows */
  --radius:     10px;
  --radius-sm:  6px;
  --radius-lg:  16px;
  --shadow:     0 2px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);

  /* Emboss effect */
  --emboss-light: 1px 1px 0 rgba(255, 255, 255, 0.15);
  --emboss-dark:  -1px -1px 0 rgba(0, 0, 0, 0.3);
  --emboss:       var(--emboss-light), var(--emboss-dark);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--champagne);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Section Headers --- */
.section-label {
  font-family: var(--font-subhead);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--champagne);
  text-align: center;
  margin-bottom: 0.75rem;
  text-shadow: var(--emboss);
}

.section-sub {
  text-align: center;
  color: rgba(245, 245, 240, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Gold Horizontal Rule --- */
.gold-rule {
  height: 2px;
  background: var(--gold-gradient);
  border: none;
  margin: 1rem 0 1.5rem;
  border-radius: 1px;
}

.gold-rule--center {
  width: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.gold-rule--left {
  width: 60px;
  margin-bottom: 1.25rem;
}

.req { color: var(--gold); }
.optional { color: rgba(245, 245, 240, 0.5); font-weight: 400; font-size: 0.85rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-subhead);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.btn-gold {
  background: var(--gold-gradient-btn);
  color: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.4);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 -1px 0 rgba(0, 0, 0, 0.2) inset,
    0 4px 12px rgba(0, 0, 0, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 -1px 0 rgba(0, 0, 0, 0.2) inset,
    var(--shadow-gold),
    0 6px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.08);
}
.btn-gold:active {
  transform: translateY(0);
  box-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.1) inset,
    0 1px 0 rgba(0, 0, 0, 0.2) inset,
    0 2px 6px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  text-shadow: none;
}
.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-submit {
  width: 100%;
  padding: 1.05rem;
  font-size: 1rem;
}

.btn-arrow { font-size: 1.2rem; }

/* --- Sticky Bottom Bar (mobile only) --- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: calc(70px);
  z-index: 9997;
  padding: 8px 10px;
  background: var(--navy);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
  gap: 8px;
  align-items: center;
}

.mobile-bottom-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 8px;
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: center;
}

.mobile-btn-call {
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.mobile-btn-estimate {
  background: var(--gold-gradient-btn);
  border: none;
  color: var(--navy);
}

/* --- Language Bar --- */
.lang-bar {
  background: var(--navy-light);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 0.35rem 0;
  text-align: center;
}

/* Hide top lang bar on mobile, show in nav dropdown instead */
@media (max-width: 599px) {
  .lang-bar { display: none; }
}

.nav-translate {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

@media (max-width: 599px) {
  .nav-translate { display: flex; }
}

.lang-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.lang-label {
  font-size: 0.9rem;
}

/* Style Google Translate widget to match brand */
#google_translate_element {
  display: inline-block;
}

#google_translate_element select {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 0.25rem 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  outline: none;
}

#google_translate_element select:hover {
  border-color: var(--gold);
}

/* Hide Google Translate branding bar */
/* Hide Google Translate top banner bar but keep the dropdown working */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { font-size: 0 !important; line-height: 0 !important; }
.goog-te-gadget > span:not(:has(.goog-te-combo)) { display: none !important; }
.goog-te-gadget .goog-te-combo {
  font-size: 0.8rem !important;
  display: inline-block !important;
  visibility: visible !important;
}
body > .skiptranslate { display: none !important; }
.skiptranslate iframe { display: none !important; }
#goog-gt-tt { display: none !important; }
#google_translate_element .skiptranslate { display: block !important; }
#google_translate_element { display: inline-block !important; visibility: visible !important; }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(11, 22, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 44px;
  width: auto;
}

.logo-fallback {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  display: flex;
  align-items: center;
}

.header-brand-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.03em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-family: var(--font-subhead);
  font-weight: 600;
  font-size: 0.9rem;
}

.phone-icon { font-size: 1.1rem; }

/* Nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.main-nav {
  display: none;
  background: var(--navy);
  padding: 0.5rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.main-nav.open {
  display: flex;
  flex-direction: column;
}

.main-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--champagne);
  font-family: var(--font-subhead);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: color 0.2s;
}
.main-nav a:last-child { border-bottom: none; }
.main-nav a:hover { color: var(--gold); }

/* --- Hero --- */
.hero {
  background: var(--navy);
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind logo */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo-wrap {
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 354px;
  height: 354px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  border: 3px solid var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), 0 0 60px rgba(212, 175, 55, 0.08);
}

.hero .gold-rule {
  width: 80px;
  margin: 0 auto 1.5rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--champagne);
  margin-bottom: 1rem;
  text-shadow: var(--emboss);
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(245, 245, 240, 0.85);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hide-mobile { display: none; }

.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 3rem 0;
  background: var(--navy-light);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.trust-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.trust-icon-wrap {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  filter: grayscale(0.3);
}

.trust-card h3 {
  font-family: var(--font-subhead);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.trust-card p {
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.6);
}

/* --- About Jake --- */
.about {
  padding: var(--section-pad);
  background: var(--navy);
}

.about-grid-wide {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.about-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.about-photo {
  flex-shrink: 0;
}

.jake-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.about .section-label {
  text-align: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--champagne);
  text-shadow: var(--emboss);
}

.about-text p {
  color: rgba(245, 245, 240, 0.85);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--gold);
  text-shadow: var(--emboss);
}

.highlight-label {
  font-family: var(--font-subhead);
  font-size: 0.7rem;
  color: rgba(245, 245, 240, 0.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Services Grid --- */
.services {
  padding: var(--section-pad);
  background: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-tile {
  background: var(--navy-light);
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}

.service-tile:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
  transform: translateY(-3px);
}

.tile-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.service-tile h3 {
  font-family: var(--font-subhead);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  color: var(--gold);
}

.service-tile p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.75);
  line-height: 1.6;
}

/* --- Before/After Gallery --- */
.gallery {
  padding: var(--section-pad);
  background: var(--navy-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.gallery-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.gallery-placeholder {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.ba-img {
  background: var(--navy-lighter);
  padding: 3rem 1rem;
  text-align: center;
  color: rgba(245, 245, 240, 0.4);
  font-size: 0.85rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(11, 22, 42, 0.85);
  color: var(--champagne);
  font-family: var(--font-subhead);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.ba-after {
  background: var(--gold);
  color: var(--navy);
}

.gallery-caption {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.6);
  padding-top: 0.5rem;
}

/* --- Reviews / Testimonials --- */
.reviews {
  padding: var(--section-pad);
  background: var(--navy);
}

.reviews-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  background: var(--navy-light);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.review-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 3px;
}

.review-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--champagne);
  font-style: italic;
  margin-bottom: 1rem;
}

.review-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold-alt);
  font-weight: 500;
}

.review-source {
  font-style: normal;
  font-size: 0.7rem;
  color: rgba(212, 175, 55, 0.6);
  margin-left: 4px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-arrow {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: var(--gold);
  color: var(--navy);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* --- Lead Capture Form --- */
.booking {
  padding: var(--section-pad);
  background: var(--navy-light);
}

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-lg);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--champagne);
  margin-bottom: 0.75rem;
  text-shadow: var(--emboss);
}

.form-header p {
  color: rgba(245, 245, 240, 0.6);
  font-size: 0.95rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-subhead);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: var(--champagne);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--champagne);
  background: var(--navy-light);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 245, 240, 0.3);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--navy-light);
  color: var(--champagne);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Validation states */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #E74C3C;
}

.form-group .error-msg {
  color: #E74C3C;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error .error-msg {
  display: block;
}

/* Photo upload */
.photo-upload-area {
  border: 2px dashed rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.photo-upload-area:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.03);
}

.upload-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.25rem;
}

.upload-text {
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.5);
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.photo-preview {
  margin-top: 0.5rem;
}

.photo-preview img {
  max-height: 120px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.4);
  margin-top: 0.75rem;
}

.form-rush-note {
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.65);
  line-height: 1.6;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.gold-text {
  color: var(--gold);
  font-weight: 600;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--champagne);
}

.form-success p {
  color: rgba(245, 245, 240, 0.6);
  margin-bottom: 1.5rem;
}

.success-call {
  margin-bottom: 1rem;
}

/* --- Service Area --- */
.service-area {
  padding: var(--section-pad);
  background: var(--navy);
}

.service-area .section-title {
  color: var(--champagne);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.area-tag {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-subhead);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.2s;
}

.area-tag:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
}

.area-tag--primary {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  font-weight: 700;
}

.area-tag--secondary {
  background: rgba(245, 245, 240, 0.05);
  color: rgba(245, 245, 240, 0.6);
  border-color: rgba(245, 245, 240, 0.15);
}

.area-tag--secondary:hover {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.3);
}

.area-group-label {
  text-align: center;
  font-family: var(--font-subhead);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.area-note {
  text-align: center;
  color: rgba(245, 245, 240, 0.55);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 1.25rem;
}

/* --- Blog / Tips --- */
.blog {
  padding: var(--section-pad);
  background: var(--navy);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.blog-card {
  display: block;
  background: var(--navy-light);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.12);
}

.blog-tag {
  display: inline-block;
  font-family: var(--font-subhead);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--champagne);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.7);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.blog-read {
  font-family: var(--font-subhead);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 600px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Review CTA --- */
.review-cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.review-cta-stars {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 4px;
}

.review-cta-box h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--champagne);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.review-cta-sub {
  color: rgba(245, 245, 240, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-cta-btn {
  font-size: 1.1rem !important;
  padding: 14px 32px !important;
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
}

.review-cta-divider {
  width: 60px;
  height: 1px;
  background: rgba(212, 175, 55, 0.3);
  margin: 1.25rem auto;
}

.review-cta-also {
  color: rgba(245, 245, 240, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1877F2;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: var(--font-subhead);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-fb:hover {
  background: #1565C0;
  transform: translateY(-1px);
}

/* --- Social Sidebar --- */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.social-sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-sidebar-btn:hover {
  width: 52px;
}

.social-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-fb {
  background: #1877F2;
}

.social-google {
  background: #4285F4;
}

.social-nextdoor {
  background: #8ED500;
  color: #1a1a1a;
}

.social-phone {
  background: var(--gold);
  color: var(--navy);
}

@media (max-width: 768px) {
  .social-sidebar {
    display: none;
  }
}

/* --- Review Prep Modal --- */
.review-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.review-modal {
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: 2rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.review-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(245, 245, 240, 0.5);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.review-modal-close:hover {
  color: var(--champagne);
}

.review-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.review-modal-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 1rem;
  object-fit: cover;
}

.review-modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.review-modal-header p {
  color: rgba(245, 245, 240, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}

.review-modal-tips {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--navy-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.review-modal-tips h3 {
  font-family: var(--font-subhead);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.review-modal-tips p {
  color: rgba(245, 245, 240, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.review-modal-tips ul {
  list-style: none;
  padding: 0;
}

.review-modal-tips li {
  color: rgba(245, 245, 240, 0.8);
  font-size: 0.95rem;
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.review-modal-tips li::before {
  content: '✓';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.review-modal-suggestion {
  margin-bottom: 1.5rem;
  text-align: center;
}

.review-modal-suggestion h3 {
  font-family: var(--font-subhead);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.review-suggestion-box {
  background: var(--navy-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  color: var(--champagne);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  min-height: 80px;
  margin-bottom: 0.75rem;
}

.review-shuffle-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}

.review-shuffle-btn:hover {
  color: var(--gold-light);
}

.review-modal-go {
  display: block;
  text-align: center;
  font-size: 1.1rem !important;
  padding: 14px 24px !important;
  margin-bottom: 0.75rem;
}

.review-modal-note {
  text-align: center;
  color: rgba(245, 245, 240, 0.5);
  font-size: 0.8rem;
}

/* --- Instagram Gallery --- */
.ig-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-items: center;
}

.ig-embed-wrap {
  max-width: 500px;
  width: 100%;
}

.ig-embed-wrap .instagram-media {
  margin: 0 auto !important;
  border-radius: var(--radius) !important;
}

/* Collapse Instagram embed captions */
.ig-embed-wrap iframe {
  overflow: hidden !important;
}

@media (min-width: 600px) {
  .ig-embed-wrap {
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: var(--radius);
  }

  .ig-embed-wrap iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  .ig-embed-wrap .instagram-media {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
  }
}

.ig-follow {
  text-align: center;
  margin-top: 2rem;
  padding: 0 1rem;
  overflow: hidden;
}

.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  word-break: break-word;
  padding: 12px 20px !important;
}

@media (min-width: 600px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Chat Widget --- */
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-subhead);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.chat-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.5);
}

.chat-fab-icon {
  font-size: 1.4rem;
}

.chat-window {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9999;
  width: 380px;
  max-width: calc(100vw - 32px);
  max-height: 520px;
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--navy-light);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.chat-header strong {
  color: var(--champagne);
  font-family: var(--font-subhead);
  font-size: 0.85rem;
  display: block;
}

.chat-status {
  color: var(--gold);
  font-size: 0.7rem;
  font-family: var(--font-body);
}

.chat-close {
  background: none;
  border: none;
  color: rgba(245, 245, 240, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.chat-close:hover {
  color: var(--champagne);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  max-height: 340px;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: chatFadeIn 0.3s ease;
}

@keyframes chatFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg.jake {
  background: var(--navy-light);
  color: var(--champagne);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.chat-msg.visitor {
  background: var(--gold);
  color: var(--navy);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}

.chat-msg.typing {
  background: var(--navy-light);
  color: rgba(245, 245, 240, 0.5);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  font-style: italic;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.chat-input-wrap {
  display: flex;
  padding: 10px 12px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background: var(--navy-light);
  gap: 8px;
}

.chat-input {
  flex: 1;
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 8px 14px;
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.chat-input:focus {
  border-color: var(--gold);
}

.chat-input::placeholder {
  color: rgba(245, 245, 240, 0.35);
}

.chat-send {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.chat-send:hover {
  background: var(--gold-light);
}

.chat-choices {
  padding: 8px 12px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--navy-light);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.chat-choice-btn {
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.chat-choice-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.chat-done-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  animation: chatFadeIn 0.3s ease;
}

.chat-done-btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--font-subhead);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.chat-done-call {
  background: var(--gold);
  color: var(--navy);
}

.chat-done-restart {
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: rgba(245, 245, 240, 0.6);
}

.chat-done-restart:hover {
  border-color: var(--gold) !important;
  color: var(--gold);
}

@media (max-width: 599px) {
  .chat-fab-label { display: none; }
  .chat-fab {
    padding: 14px;
    border-radius: 50%;
    bottom: 70px;
    right: 12px;
  }
  .chat-window {
    bottom: 130px;
    right: 8px;
    left: 8px;
    width: auto;
    max-height: 60vh;
  }
}

/* --- Footer --- */
.site-footer {
  background: #070E1A;
  color: var(--champagne);
  padding: 3rem 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin: 0 auto 0.25rem;
}

.footer-logo-fallback {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  display: none;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.4);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-subhead);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 245, 240, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-contact a {
  color: rgba(245, 245, 240, 0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--gold); }

.footer-location {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.35);
}

.footer-banner {
  background: var(--gold-gradient-btn);
  padding: 2rem 1.5rem;
  text-align: center;
}

.footer-banner-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.footer-banner-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.85;
  margin-bottom: 0.3rem;
}

.footer-banner-cta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.footer-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: var(--font-subhead);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--navy);
  color: var(--gold);
  transition: all 0.2s;
}

.footer-banner-btn:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.footer-banner-btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.footer-banner-btn--outline:hover {
  background: var(--navy);
  color: var(--gold);
}

.footer-banner-sub {
  font-family: var(--font-subhead);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.footer-banner-copy {
  font-size: 0.7rem;
  color: var(--navy);
  opacity: 0.5;
}

/* =============================================
   RESPONSIVE — TABLET (600px+)
   ============================================= */
@media (min-width: 600px) {
  .hero h1 { font-size: 3.25rem; }
  .hide-mobile { display: inline; }
  .hero-actions { flex-direction: row; justify-content: center; }

  .hero-logo {
    width: 170px;
    height: 170px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .review-card { flex: 0 0 45%; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-wrapper {
    padding: 2.5rem;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-contact {
    align-items: flex-end;
  }
}

/* =============================================
   RESPONSIVE — DESKTOP (900px+)
   ============================================= */
@media (min-width: 900px) {
  .mobile-bottom-bar { display: none !important; }

  .nav-toggle { display: none; }

  .main-nav {
    display: flex !important;
    flex-direction: row;
    gap: 0;
    padding: 0;
    border-bottom: none;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
    padding-right: 400px;
  }

  .header-right {
    position: absolute;
    right: 420px;
    top: 50%;
    transform: translateY(-50%);
  }

  .main-nav a {
    padding: 0.5rem 1rem;
    border-bottom: none;
    font-size: 0.8rem;
  }

  .hero {
    padding: 5rem 0 5.5rem;
    text-align: left;
  }
  .hero h1 { font-size: 3.75rem; }

  .hero {
    text-align: left;
  }

  .hero-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }

  .hero-logo-wrap {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .hero-logo {
    width: 354px;
    height: 354px;
  }

  .hero-text {
    flex: 1;
    min-width: 0;
  }

  .hero .gold-rule {
    margin: 0 0 1.5rem;
  }

  .hero-sub {
    margin: 0 0 2rem;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .section-title { font-size: 2.25rem; }

  .about-grid-wide {
    flex-direction: row;
    align-items: stretch;
    gap: 2.5rem;
  }

  .about-left {
    flex: 1;
    text-align: left;
    align-items: flex-start;
  }

  .about-right {
    flex: 0 0 340px;
    align-items: center;
  }

  .about-right .review-cta-box {
    position: sticky;
    top: 100px;
  }

  .about-inner {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
  }

  .about .section-label {
    text-align: left;
  }

  .about-text .gold-rule--left {
    margin-left: 0;
  }

  .about-text p {
    margin-left: 0;
    margin-right: 0;
  }

  .about-highlights { justify-content: flex-start; }

  .review-card { flex: 0 0 32%; }
}

/* =============================================
   MOBILE CALL BAR — show below 600px
   ============================================= */
@media (max-width: 599px) {
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 60px; }

  .phone-text { display: none; }

  .form-row--half {
    grid-template-columns: 1fr;
  }

  .about-highlights { gap: 1.5rem; }

  .trust-grid { gap: 0; }

  .trust-card {
    padding: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  }
  .trust-card:last-child { border-bottom: none; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

/* Subtle gold shimmer on hero heading */
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero h1 {
  background: linear-gradient(
    90deg,
    var(--champagne) 0%,
    var(--champagne) 40%,
    var(--gold-light) 50%,
    var(--champagne) 60%,
    var(--champagne) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 6s ease-in-out infinite;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero h1 {
    background: none;
    -webkit-text-fill-color: var(--champagne);
  }
}
