

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

:root {
  --navy:      #1d3769;
  --navy-mid:  #162d58;
  --navy-dark: #0f1f3d;
  --navy-deep: #0a1628;
  --gold:      #C9A84C;
  --gold-light:#e0c06a;
  --white:     #ffffff;
  --off-white: #f4f2ee;
  --text:      #1a1a1a;
  --text-mid:  #4a4a4a;
  --text-light:#7a7a7a;
  --border:    rgba(0,0,0,0.08);
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ── HEADER ── */
.site-header {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 78px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo img { height: 44px; width: auto; max-width: 180px; object-fit: contain; }
.logo-text .name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); display: block; letter-spacing: -0.3px;
}
.logo-text .tagline {
  font-size: 10px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.14em;
  font-family: 'Outfit', sans-serif;
}
.header-right { display: flex; align-items: center; gap: 24px; }
.header-contact { text-align: right; color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.4; }
.header-contact .phone { font-size: 17px; font-weight: 700; color: var(--white); display: block; font-family: 'Outfit', sans-serif; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 13px 28px;
  transition: all 0.25s; cursor: pointer;
  white-space: nowrap; border: 2px solid transparent;
  border-radius: 8px;
}
.btn-gold  { background: var(--gold);  color: var(--navy-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: var(--white); color: var(--navy-dark); border-color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 15px 36px; font-size: 13px; }

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  cursor: pointer; width: 44px; height: 44px; flex-shrink: 0;
}
.burger span {
  display: block; width: 22px; height: 2px; min-height: 2px;
  background: var(--white); border-radius: 1px;
  pointer-events: none; flex-shrink: 0; transition: all 0.3s;
}

/* ── NAV ── */
.site-nav {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 52px;
  position: fixed;
  top: 78px; left: 0; right: 0;
  z-index: 9998;
}
.nav-links { display: flex; align-items: center; }
.nav-links a {
  display: block; padding: 13px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); border-bottom-color: var(--gold); }

/* page content offset for fixed header+nav */
.page-body { padding-top: 122px; }

/* ── SHARED SECTION STYLES ── */
.section { padding: 88px 52px; }
.section-dark  { background: var(--navy-dark); }
.section-deep  { background: var(--navy-deep); }
.section-navy  { background: var(--navy); }
.section-light { background: var(--off-white); }
.section-white { background: var(--white); }

.section-header { text-align: center; margin-bottom: 64px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before, .eyebrow::after { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; line-height: 1.1; letter-spacing: -1px;
}
.title-light { color: var(--white); }
.title-dark  { color: var(--navy-dark); }
.section-sub { font-size: 16px; max-width: 520px; margin: 14px auto 0; line-height: 1.75; }
.sub-light { color: rgba(255,255,255,0.45); }
.sub-dark  { color: var(--text-light); }

/* ── STATS STRIP ── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
}
.stat { padding: 36px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px; font-weight: 800; color: var(--gold);
  line-height: 1; margin-bottom: 8px; letter-spacing: -1px;
}
.stat-num sup { font-size: 0.45em; font-weight: 600; vertical-align: super; }
.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── SERVICE CARDS GRID ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--navy-deep);
}
.service-card {
  position: relative; overflow: hidden;
  background: var(--navy-dark); aspect-ratio: 4/3; cursor: pointer;
}
.service-card-img { position: absolute; inset: 0; background: var(--navy-mid); }
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.82; transition: transform 0.6s ease, opacity 0.4s ease;
  aspect-ratio: 4/3;
}
.service-card:hover .service-card-img img { transform: scale(1.05); opacity: 0.65; }
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.3) 55%, rgba(10,22,40,0.0) 100%);
  z-index: 1; transition: background 0.4s;
}
.service-card:hover::before {
  background: linear-gradient(to top, rgba(10,22,40,0.96) 0%, rgba(10,22,40,0.55) 60%, rgba(10,22,40,0.15) 100%);
}
.service-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 26px; z-index: 2; }
.card-num {
  font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--gold); opacity: 0.7;
  margin-bottom: 8px; transition: opacity 0.3s;
}
.service-card:hover .card-num { opacity: 1; }
.service-card-body h3 {
  font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--white); line-height: 1.2; letter-spacing: -0.3px; transition: margin 0.3s;
}
.service-card:hover .service-card-body h3 { margin-bottom: 10px; }
.service-card-body p {
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.service-card:hover .service-card-body p { max-height: 100px; opacity: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  margin-top: 12px; max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease 0.1s;
}
.card-link::after { content: '→'; font-size: 13px; }
.service-card:hover .card-link { max-height: 40px; opacity: 1; }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(255,255,255,0.05); }
.why-item { background: var(--navy-dark); padding: 44px 48px; transition: background 0.3s; }
.why-item:hover { background: var(--navy-mid); }
.why-num {
  font-family: 'Outfit', sans-serif; font-size: 44px; font-weight: 800;
  color: var(--gold); opacity: 0.25; line-height: 1;
  margin-bottom: 18px; letter-spacing: -2px; transition: opacity 0.3s;
}
.why-item:hover .why-num { opacity: 0.55; }
.why-item h3 {
  font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 12px; letter-spacing: -0.3px;
}
.why-item p { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.8; }

/* ── PROMO BAND ── */
.promo-band {
  background: var(--navy-deep); padding: 96px 52px;
  text-align: center; position: relative; overflow: hidden;
}
.promo-band::before, .promo-band::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.promo-band::before { top: 0; }
.promo-band::after  { bottom: 0; }
.promo-band h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 5vw, 54px); font-weight: 800;
  color: var(--white); letter-spacing: -2px; margin-bottom: 16px; line-height: 1.05;
}
.promo-band p { font-size: 17px; color: rgba(255,255,255,0.45); max-width: 480px; margin: 0 auto 40px; line-height: 1.75; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy-deep); padding: 72px 52px;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, var(--gold), transparent 60%);
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: ''; display: block; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.page-hero-eyebrow span {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 800;
  color: var(--white); letter-spacing: -2px; line-height: 1.05;
  margin-bottom: 18px; max-width: 700px;
  margin-left: auto; margin-right: auto; text-align: center;
}
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.5);
  max-width: 520px; line-height: 1.75;
  margin-left: auto; margin-right: auto;
}

/* ── CONTENT PROSE ── */
.prose h2 {
  font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 700;
  color: var(--navy-dark); letter-spacing: -0.5px; margin-bottom: 16px;
}
.section-dark .prose h2,
.section-deep .prose h2,
.section-navy .prose h2 { color: var(--white); }
.section-dark .prose h3,
.section-deep .prose h3,
.section-navy .prose h3 { color: var(--gold); }
.section-dark .prose p,
.section-deep .prose p { color: rgba(255,255,255,0.55); }
.section-dark .prose ul li,
.section-deep .prose ul li { color: rgba(255,255,255,0.55); }
.prose h3 {
  font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.prose p { color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.prose ul { padding-left: 20px; margin-bottom: 18px; }
.prose ul li { color: var(--text-mid); line-height: 1.8; margin-bottom: 8px; }
.prose ul li::marker { color: var(--gold); }

/* ── REVIEW BAND ── */
.review-band { background: var(--off-white); padding: 72px 52px; text-align: center; }
.review-band h2 {
  font-family: 'Outfit', sans-serif; font-size: 34px; font-weight: 700;
  color: var(--navy-dark); margin-bottom: 12px; letter-spacing: -1px;
}
.review-band p { font-size: 16px; color: var(--text-light); max-width: 460px; margin: 0 auto 28px; line-height: 1.75; }
.review-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); border-bottom: 1px solid var(--navy); padding-bottom: 3px;
  transition: all 0.2s;
}
.review-link::after { content: '→'; font-size: 14px; }
.review-link:hover { color: var(--gold); border-color: var(--gold); gap: 16px; }

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); padding: 64px 52px 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  max-width: 1200px; margin: 0 auto;
}
.footer-brand .brand-name {
  font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 6px; letter-spacing: -0.3px;
}
.footer-brand .brand-rule { width: 32px; height: 2px; background: var(--gold); margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.4); margin-bottom: 20px; max-width: 260px; }
.footer-brand .cl { font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,0.45); }
.footer-brand .cl a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-brand .cl a:hover { color: var(--gold); }
.footer-col h4 {
  font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.45);
  font-size: 14px; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom-wrap { background: rgba(0,0,0,0.25); margin: 0 -52px; padding: 0 52px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; max-width: 1200px; margin: 0 auto;
  font-size: 12px; color: rgba(255,255,255,0.25);
  flex-wrap: wrap; gap: 10px; letter-spacing: 0.04em;
}
.footer-bottom a { color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ── PRICE TABLE ── */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); padding: 14px 20px; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.price-table td { padding: 14px 20px; font-size: 15px; color: rgba(255,255,255,0.65); border-bottom: 1px solid rgba(255,255,255,0.05); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: rgba(255,255,255,0.03); color: var(--white); }
.price-table td:last-child { color: var(--gold); font-weight: 700; font-family: 'Outfit', sans-serif; text-align: right; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); padding: 14px 16px; font-family: 'Nunito', sans-serif;
  font-size: 15px; transition: border-color 0.2s; outline: none; width: 100%;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: none; min-height: 130px; }
.form-group select option { background: var(--navy-dark); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 600;
  color: var(--white); transition: color 0.2s; gap: 20px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px; color: var(--gold); transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; }

/* ── TWO COLUMN GRID ── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.two-col-grid--contact {
  grid-template-columns: 1fr 1.4fr;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-header { padding: 0 20px; height: 64px; }
  .header-contact, .btn-quote { display: none; }
  .burger { display: flex; }

  /* Nav: hidden by default, JS adds .open to show it */
  .site-nav { top: 64px; padding: 0; border: none; }
  .nav-links { display: none; flex-direction: column; width: 100%; }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 15px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin: 0; white-space: normal;
  }

  .page-body { padding-top: 64px; }
  .section { padding: 64px 24px; }
  .page-hero { padding: 56px 24px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { aspect-ratio: 16/9; }
  .why-grid { grid-template-columns: 1fr; }
  .promo-band, .review-band { padding: 64px 24px; }
  .site-footer { padding: 52px 24px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom-wrap { margin: 0 -24px; padding: 0 24px; }
  .form-row { grid-template-columns: 1fr; }
  .two-col-grid,
  .two-col-grid--contact { grid-template-columns: 1fr; gap: 36px; }
}

/* ── HERO ACTIONS ── */
.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 3/2; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .page-hero h1 { font-size: 36px; }
  .btn:not(.btn-quote) { display: block; text-align: center; width: 100%; box-sizing: border-box; }
  .prose { text-align: center; }
  .prose ul { text-align: left; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-divider { display: none; }
}

.faq-question { text-align: left; }
.faq-answer { text-align: left; }

/* ── QUICK NAV ── */
.quick-nav-item {
  display: flex; align-items: center; justify-content: center;
  text-align: center; height: 52px;
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  transition: all 0.2s;
}
.quick-nav-item:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
@media (max-width: 900px) {
  .quick-nav-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 600px) {
  .quick-nav-grid { grid-template-columns: repeat(2,1fr) !important; }
}

/* ── MOBILE SERVICE ACCORDION ── */
@media (max-width: 600px) {
  .service-prose-wrap {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .service-prose-wrap.open { max-height: 1000px; }
  .service-prose-toggle {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; padding: 4px 0 16px;
    font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gold);
  }
  .service-prose-toggle .toggle-icon { font-size: 20px; transition: transform 0.3s; }
  .service-prose-toggle.open .toggle-icon { transform: rotate(45deg); }
}
@media (min-width: 601px) {
  .service-prose-toggle { display: none; }
  .service-prose-wrap { max-height: none !important; overflow: visible !important; }
}

/* ── SINGLE CARD SERVICE BANNERS (services page) ── */
.services-grid:has(> article:only-child) {
  grid-template-columns: 1fr;
}
.services-grid:has(> article:only-child) .service-card {
  aspect-ratio: 21/6;
}
@media (max-width: 900px) {
  .services-grid:has(> article:only-child) .service-card {
    aspect-ratio: 16/7;
  }
}
@media (max-width: 600px) {
  .services-grid:has(> article:only-child) .service-card {
    aspect-ratio: 3/2;
  }
}

/* ── FORM RESPONSE HIDDEN STATE ── */
#form-response:empty { display: none !important; }

/* ── CONTACT PAGE MOBILE PADDING ── */
@media (max-width: 900px) {
  .contact-form { padding-bottom: 32px; }
}

/* ── CONTACT FORM MOBILE ── */
@media (max-width: 900px) {
  .contact-form {
    width: 100%;
    box-sizing: border-box;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    max-width: calc(100vw - 48px);
    box-sizing: border-box;
  }
  .cf-turnstile,
  .cf-turnstile iframe {
    max-width: calc(100vw - 48px) !important;
    overflow: hidden;
  }
}

/* ── REVIEWS CAROUSEL ── */
.reviews-track-wrap {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  min-width: calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
.review-stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-mid); line-height: 1.75; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.review-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy-dark); }
.review-date { font-size: 12px; color: var(--text-light); }
.review-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.15); cursor: pointer;
  transition: background 0.2s;
}
.review-dot.active { background: var(--navy); }
@media (max-width: 900px) {
  .review-card { min-width: calc(50% - 12px); max-width: calc(50% - 12px); }
}
@media (max-width: 600px) {
  .review-card { min-width: 100%; max-width: 100%; }
  section[style*="off-white"] { padding: 64px 24px; }
}

/* ── SERVICE CARDS MOBILE TAP ── */
@media (max-width: 900px) {
  .service-card-body p { max-height: none; opacity: 1; }
  .card-link { max-height: 40px; opacity: 1; }
  .service-card-body h3 { margin-bottom: 8px; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 20px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 99999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  flex-wrap: wrap;
}
.cookie-banner p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.cookie-banner p a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--gold);
  color: var(--navy-dark);
  border: 2px solid var(--gold);
  padding: 10px 24px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-accept:hover { background: var(--gold-light); border-color: var(--gold-light); }
.cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 2px solid rgba(255,255,255,0.2);
  padding: 10px 24px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-reject:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
@media (max-width: 600px) {
  .cookie-banner { padding: 20px 24px; }
  .cookie-banner-btns { width: 100%; }
  .cookie-accept, .cookie-reject { flex: 1; text-align: center; }
}

/* ── PROSE MOBILE LEFT ALIGN ── */
@media (max-width: 900px) {
  .prose { text-align: left; }
  .prose h2, .prose h3, .prose p, .prose ul { text-align: left; }
}

/* ── STEPS GRID ── */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr !important; }
}

/* ── STEPS GRID ── */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr !important; }
}

/* ── WEDDING DRESS CALCULATOR ── */
.calc-group { margin-bottom: 32px; }
.calc-legend {
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.calc-options {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.calc-options--two { grid-template-columns: repeat(2, 1fr); }
.calc-option {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 16px; cursor: pointer;
  transition: all 0.2s; display: block;
}
.calc-option input[type="radio"] { display: none; }
.calc-option:hover { border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.07); }
.calc-option.active {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.calc-option-title {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.calc-option.active .calc-option-title { color: var(--gold); }
.calc-option-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }
@media (max-width: 600px) {
  .calc-options { grid-template-columns: 1fr; }
  .calc-options--two { grid-template-columns: 1fr; }
}

/* ── CALCULATOR BUTTON MOBILE ── */
@media (max-width: 600px) {
  #pricing .btn-lg {
    font-size: 10px;
    padding: 13px 12px;
    letter-spacing: 0.05em;
    white-space: normal;
    text-align: center;
  }
}

/* ── CALCULATOR RESULT BOX MOBILE ── */
@media (max-width: 600px) {
  #pricing > div { padding-left: 0; padding-right: 0; }
  #pricing .btn-gold {
    max-width: calc(100vw - 48px);
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
  }
}
