/* ============================================================
   POP UP STAGE RENTALS CLT — Premium Redesign
   Primary: #253551 (Navy) · Secondary: #F0523D (Coral)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Primary — Navy */
  --navy:         #253551;
  --navy-mid:     #1C2D44;
  --navy-light:   #2D4A6B;
  --navy-dark:    #141E30;

  /* Secondary — Coral */
  --coral:        #F0523D;
  --coral-light:  #F4705E;
  --coral-dark:   #D43A27;
  --coral-subtle: rgba(240, 82, 61, 0.1);

  /* Light surfaces */
  --white:        #FFFEF7;
  --light:        #fffffc;
  --light-mid:    #EEF1F6;
  --light-dark:   #E5E9F0;

  /* Aliased for legacy inline references */
  --forest:       var(--navy);
  --forest-mid:   var(--navy-mid);
  --forest-light: var(--navy-light);
  --green:        var(--coral);
  --green-mid:    var(--coral);
  --green-light:  var(--coral-light);
  --sage:         #8BAAC4;
  --sage-light:   #B0C4D8;
  --cream:        var(--light);
  --cream-dark:   var(--light-mid);
  --parchment:    var(--light-dark);
  --ivory:        var(--white);
  --gold:         var(--coral);
  --gold-light:   var(--coral-light);
  --gold-subtle:  var(--coral-subtle);

  /* Text */
  --ink:          #2c2c2c;
  --ink-mid:      #253551;
  --body-text:    #445870;
  --muted:        #7A95B0;

  /* Functional */
  --border-dark:  rgba(255,255,255,0.08);
  --border-light: rgba(37,53,81,0.1);
  --border-card:  rgba(37,53,81,0.12);

  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body:    'Space Grotesk', 'Helvetica Neue', sans-serif;

  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.22);
  --shadow-coral: 0 8px 32px rgba(240,82,61,0.3);
  --shadow-coral-lg: 0 20px 60px rgba(240,82,61,0.2);
  --shadow-navy-lg: 0 20px 60px rgba(37,53,81,0.5);

  --transition:   0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height:   68px;
  --bar-height:   44px;
  --container:    1400px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: var(--font-body); border: none; outline: none; background: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 3px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--coral);
  height: var(--bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 200;
}

.announcement-bar p {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  text-align: center;
}

.announcement-bar a {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--navy);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }

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

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

.nav-logo-text span { color: var(--coral); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ── Nav Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-toggle .nav-chevron {
  font-size: 9px;
  opacity: 0.6;
  transition: transform var(--transition);
  display: inline-block;
}

.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

/* Bridge the gap so hover doesn't break when moving from toggle to menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.02em;
}

.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}

.nav-dropdown-item .nav-dropdown-icon {
  font-size: 15px;
  width: 20px;
  text-align: center;
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 4px;
}

.nav-dropdown-all {
  color: var(--coral) !important;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-dropdown-all:hover { background: rgba(240,82,61,0.1) !important; }

/* Mobile sub-links under Services */
.mobile-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
  border-left: 2px solid rgba(240,82,61,0.3);
  margin-top: -6px;
  margin-bottom: 4px;
}

.mobile-nav-sub-link {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.mobile-nav-sub-link:hover { color: var(--coral); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: left;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(-1px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(1px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--bar-height) + var(--nav-height));
  left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid var(--border-dark);
  z-index: 99;
  padding: 28px 32px 36px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color var(--transition);
}

.mobile-nav-link:hover { color: var(--coral); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  padding: 14px 28px;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(240,82,61,0.45);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,53,81,0.4);
}

.btn-gold {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}

.btn-gold:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(240,82,61,0.5);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--coral);
  border: 1.5px solid var(--coral);
}

.btn-outline-dark:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-coral);
}

.btn-text {
  background: transparent;
  color: var(--coral);
  padding: 0;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.btn-text:hover { color: var(--coral-light); gap: 14px; }
.btn-text::after { content: '→'; font-size: 15px; }

.btn-lg { padding: 18px 40px; font-size: 15px; }
.btn-sm { padding: 10px 22px; font-size: 12px; }

.btn-sms {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
  font-size: 15px;
  padding: 16px 36px;
}

.btn-sms:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(240,82,61,0.5);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.bg-navy    { background: var(--navy); }
.bg-forest  { background: var(--navy); }
.bg-light   { background: var(--light); }
.bg-cream   { background: var(--light); }
.bg-ivory   { background: var(--white); }
.bg-parchment { background: var(--light-mid); }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow-coral  { color: var(--coral); }
.eyebrow-gold   { color: var(--coral-light); }
.eyebrow-green  { color: var(--coral); }
.eyebrow-sage   { color: var(--sage); }
.eyebrow-light  { color: rgba(255,255,255,0.6); }

.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.section-heading.on-dark { color: var(--white); }
.section-heading.on-light { color: var(--ink); }

.section-sub {
  font-size: 17px;
  line-height: 1.72;
  max-width: 560px;
}

.section-sub.on-dark { color: rgba(255,255,255,0.6); }
.section-sub.on-light { color: var(--body-text); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(240,82,61,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,82,61,0.15);
  border: 1px solid rgba(240,82,61,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 20px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero-title span { color: var(--coral); }

.page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 75% at 5% 55%, rgba(240,82,61,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 95% 10%, rgba(255,255,255,0.04) 0%, transparent 55%);
  pointer-events: none;
}

/* ── Two-column hero ── */
.hero-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

/* Suppress the full-bleed gradient when using two-col layout */
.hero-2col::before { display: none; }

/* Left column */
.hero-col-left {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 72px 0;
}

/* Subtle coral glow bottom-left */
.hero-col-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at -5% 95%, rgba(240,82,61,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Navy texture grain */
.hero-col-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--navy-texture);
  background-size: var(--navy-texture-size);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.hero-col-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding: 0 48px 0 40px;
}

/* Right column */
.hero-col-right {
  position: relative;
  overflow: hidden;
}

.hero-col-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Left-edge blend: right col into left navy col */
.hero-col-right::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 80px;
  background: linear-gradient(to right, var(--navy), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Bottom dark scrim for badge legibility */
.hero-col-right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(10,16,26,0.65), transparent);
  z-index: 1;
  pointer-events: none;
}

/* ── Hero slideshow ── */
.hero-slideshow { position: relative; }

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slideshow .slide.active { opacity: 1; }

.hero-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(37,53,81,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(240,82,61,0.3);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.hero-badge-stars { color: var(--coral); font-size: 10px; letter-spacing: 1px; }

/* ── Hero eyebrow ── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 20px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: live-pulse 2s ease-in-out infinite;
}

/* ── Trust list ── */
.hero-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.hero-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}

.hero-trust-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(240,82,61,0.18);
  border: 1px solid rgba(240,82,61,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--coral-light);
  flex-shrink: 0;
}

/* ── Hero lead form ── */
.hero-form {
  margin-top: 0;
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-form-input {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--white);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.hero-form-row + .hero-form-row,
.hero-form-row + .hero-form-chips {
  margin-top: 10px;
}

.hero-form-input::placeholder {
  color: rgba(255,255,255,0.36);
}

.hero-form-input:focus {
  border-color: var(--coral);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(240,82,61,0.14);
  outline: none;
}

.hero-form-select {
  appearance: none;
  -webkit-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='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  color: rgba(255,255,255,0.36);
}

.hero-form-select.hero-form-select--filled {
  color: var(--white);
}

/* ── Date input — dark theme ── */
.hero-form-date {
  color-scheme: dark;
}

.hero-form-date:not([value=""]):valid {
  color: var(--white);
}

/* ── Service type chip multi-select ── */
.hero-form-chips {
  margin-bottom: 10px;
}

.hero-form-chips-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  margin-bottom: 8px;
}

.hero-form-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-chip input[type="checkbox"] {
  display: none;
}

.hero-chip:hover {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}

.hero-chip:has(input:checked) {
  background: rgba(240,82,61,0.18);
  border-color: var(--coral);
  color: var(--white);
}

.hero-form-select option {
  background: var(--navy-dark);
  color: var(--white);
}

.hero-form-btn {
  display: block;
  width: 100%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-sm);
  padding: 17px;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 8px 32px rgba(240,82,61,0.38);
  transition: all var(--transition);
}

.hero-form-btn:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(240,82,61,0.5);
}

.hero-form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  text-align: center;
  margin: 10px 0 0;
  letter-spacing: 0.02em;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,82,61,0.12);
  border: 1px solid rgba(240,82,61,0.28);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 24px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.6vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-title .highlight { color: var(--coral); }

.hero-body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 20px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}

.trust-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(240,82,61,0.2);
  border: 1px solid rgba(240,82,61,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--coral-light);
  flex-shrink: 0;
}

.hero-right {
  display: none;
}

.hero-img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-navy-lg);
  border: 1px solid rgba(255,255,255,0.07);
  aspect-ratio: 4/3;
  position: relative;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img-main:hover img { transform: scale(1.02); }

.hero-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-img-small {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/2;
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img-small:hover img { transform: scale(1.03); }

.hero-img-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), transparent);
  z-index: 2;
}

.hero-proof-pill {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(37,53,81,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(240,82,61,0.3);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.hero-proof-pill .stars { color: var(--coral); letter-spacing: 1px; font-size: 10px; }

/* ============================================================
   HERO CRO ENHANCEMENTS
   ============================================================ */

/* Price anchor chips — immediately below headline */
.hero-price-anchors {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-price-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

.hero-price-chip.accent {
  background: rgba(240,82,61,0.15);
  border-color: rgba(240,82,61,0.35);
  color: var(--coral-light);
}

/* Primary CTA — dominates. Full-width, larger */
.hero-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 20px 36px;
  box-shadow: 0 8px 40px rgba(240,82,61,0.45);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-cta-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-cta-primary:hover {
  background: var(--coral-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 52px rgba(240,82,61,0.55);
}

.hero-cta-primary:active { transform: translateY(-1px); }

/* Micro-review — sits between primary and secondary CTA */
.hero-micro-review {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  margin: 12px 0;
}

.hero-micro-review-stars {
  color: var(--coral);
  font-size: 11px;
  letter-spacing: 1px;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-micro-review-text {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
  font-style: italic;
}

.hero-micro-review-author {
  font-style: normal;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  display: block;
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* Secondary CTA — outlined button */
.hero-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
  padding: 16px 32px;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.hero-cta-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
  color: var(--white);
}

/* Urgency nudge line */
.hero-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 8px;
}

.hero-urgency::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

/* Availability card below hero images */
.hero-avail-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-avail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--coral-subtle);
  border: 1px solid rgba(240,82,61,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero-avail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}

.hero-avail-value {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* Updated trust bar — more readable */
.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0;
}

.trust-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(240,82,61,0.18);
  border: 1px solid rgba(240,82,61,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--coral-light);
  flex-shrink: 0;
}

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.proof-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}

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

.proof-strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}

.proof-strip-item:last-child { border-right: none; }
.proof-strip-item:hover { background: rgba(255,255,255,0.03); }

.proof-strip-num {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 0.02em;
  color: var(--coral);
  line-height: 1.1;
}

.proof-strip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: rgba(240,82,61,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.04); }

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(37,53,81,0.45) 0%, transparent 50%);
}

.service-card-body {
  padding: 28px 28px 32px;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--coral-subtle);
  border: 1px solid rgba(240,82,61,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
}

/* ============================================================
   SERVICES — ALTERNATING BLOCK LAYOUT
   ============================================================ */
.svc-intro {
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 36px;
  text-align: center;
}

.svc-intro .section-sub {
  margin: 0 auto;
}

#services.section {
  padding-top: 56px;
}

.svc-list {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-bottom: 1px solid var(--border-light);
}

.svc-block:last-child { border-bottom: none; }

/* Flip: image right, content left */
.svc-block--flip .svc-img { order: 2; }
.svc-block--flip .svc-body { order: 1; }

/* Image column */
.svc-img {
  position: relative;
  overflow: hidden;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.svc-block:hover .svc-img img { transform: scale(1.03); }

/* Body column */
.svc-body {
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.svc-block--flip .svc-body {
  padding: 64px 64px 64px 72px;
}

/* Meta row: number + price chip */
.svc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.svc-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.svc-price-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
  letter-spacing: 0.02em;
}

.svc-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.1;
}

.svc-desc {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.72;
  margin-bottom: 22px;
}

.svc-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-bullets li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  color: var(--body-text);
  font-weight: 500;
  line-height: 1.5;
}

.svc-arrow {
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
}

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

.svc-event-types {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Bottom CTA band */
.svc-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.svc-cta-band-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}

.svc-cta-band-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.svc-cta-band-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-step { position: relative; }

.process-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.process-icon-box {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--navy);
  border: 1px solid rgba(240,82,61,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,53,81,0.15);
}

.process-icon-box svg {
  width: 36px;
  height: 36px;
  color: var(--coral);
  stroke: var(--coral);
}

.process-icon-wrap .process-num-badge {
  position: absolute;
  top: -10px;
  right: -10px;
}

.process-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 24px;
  border: 1px solid var(--border-card);
  position: relative;
}

.process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-num-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.process-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.process-desc {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.72;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

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

.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }

.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}

.gallery-item:hover .gallery-img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(37,53,81,0.9) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-ig-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}

/* Gallery page — filterable */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--border-card);
  background: transparent;
  color: var(--body-text);
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.filter-btn.active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-page-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: all var(--transition);
}

.gallery-page-item.hidden {
  display: none;
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-page-item:hover img { transform: scale(1.05); }

.gallery-page-item .gallery-overlay {
  opacity: 0;
  background: linear-gradient(0deg, rgba(37,53,81,0.9) 0%, rgba(37,53,81,0.1) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.gallery-page-item:hover .gallery-overlay { opacity: 1; }

.gallery-info-tag {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.gallery-info-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
}

.gallery-info-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Placeholder gradient cards */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

/* ============================================================
   IS THIS RIGHT FOR YOU
   ============================================================ */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.fit-col { padding: 52px 48px; }

.fit-col-good { background: var(--navy); }
.fit-col-bad  { background: var(--navy-light); }

.fit-col-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 8px;
}

.fit-col-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  line-height: 1.6;
}

.fit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}

.fit-icon-good,
.fit-icon-bad {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

.fit-icon-good {
  background: rgba(240,82,61,0.2);
  border: 1px solid rgba(240,82,61,0.4);
  color: var(--coral-light);
}

.fit-icon-bad {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 24px 0;
}

.price-range {
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1;
}

.price-caveat {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}

.includes-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--body-text);
}

.includes-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--coral-subtle);
  border: 1px solid rgba(240,82,61,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--coral);
  flex-shrink: 0;
}

.pricing-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
}

.pricing-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pricing-img-small {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/2;
  border: 1px solid var(--border-card);
}

.pricing-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pricing-img-small:hover img { transform: scale(1.04); }

/* Package cards (services page) */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.package-card {
  background: var(--white);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
}

.package-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border-color: var(--coral);
  box-shadow: var(--shadow-coral);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.package-size {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: 0.02em;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 4px;
}

.package-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.package-price {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.package-price-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.5;
}

.package-feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral-subtle);
  border: 1px solid rgba(240,82,61,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Add-on grid */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.addon-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}

.addon-card:hover {
  border-color: rgba(240,82,61,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.addon-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.addon-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}

.addon-desc {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.stars-row {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star { color: var(--coral); font-size: 14px; }

.testimonial-quote {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.72;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid rgba(240,82,61,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--coral);
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.author-event {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 780px; }

.faq-item { border-bottom: 1px solid var(--border-light); }

.faq-item:first-child { border-top: 1px solid var(--border-light); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  text-align: left;
  transition: color var(--transition);
}

.faq-trigger:hover { color: var(--coral); }

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  transition: color var(--transition);
}

.faq-trigger:hover .faq-question { color: var(--coral); }

.faq-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.open .faq-arrow {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-body { max-height: 300px; }

.faq-answer {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.75;
  padding-bottom: 22px;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-chip {
  background: var(--coral-subtle);
  border: 1px solid rgba(240,82,61,0.18);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  transition: all var(--transition);
}

.area-chip:hover,
.area-chip.primary {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

/* ============================================================
   CONTACT / QUOTE FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--coral-subtle);
  border: 1px solid rgba(240,82,61,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--transition);
}

.contact-info-value:hover { color: var(--coral); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-md);
}

.form-field {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--light);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  font-family: var(--font-body);
}

.form-select {
  appearance: none;
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%228%22 viewBox=%220 0 12 8%22%3E%3Cpath d=%22M1 1l5 5 5-5%22 stroke=%22%237A95B0%22 stroke-width=%221.5%22 fill=%22none%22 stroke-linecap=%22round%22/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea { resize: vertical; line-height: 1.6; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-subtle);
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.form-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--light);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 14px;
  color: var(--body-text);
}

.form-checkbox-item:hover {
  border-color: var(--coral);
  color: var(--ink);
}

.form-checkbox-item input { display: none; }

.form-checkbox-item.checked {
  background: var(--coral-subtle);
  border-color: var(--coral);
  color: var(--ink);
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(240,82,61,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.cta-micro {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer-logo-text span { color: var(--coral); }

.footer-tagline-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.72;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-contact-item {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-contact-item:hover { color: var(--coral); }

.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-copy span { color: var(--coral); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
}

.footer-social-link:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-1px);
}

/* ============================================================
   FLOATING MOBILE CTA
   ============================================================ */
.mobile-cta-float {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  background: var(--coral);
  color: var(--white);
  border-radius: 100px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(240,82,61,0.5), 0 0 0 2px rgba(255,255,255,0.1);
  white-space: nowrap;
  cursor: pointer;
  animation: float-pulse 3s ease-in-out infinite;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  border: 1px solid var(--coral);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  z-index: 9999;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================================
   MISC UTILS
   ============================================================ */
.text-center { text-align: center; }
.text-coral  { color: var(--coral); }
.text-navy   { color: var(--navy); }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-coral {
  background: var(--coral-subtle);
  color: var(--coral);
  border: 1px solid rgba(240,82,61,0.2);
}

.badge-navy {
  background: rgba(37,53,81,0.1);
  color: var(--navy);
  border: 1px solid rgba(37,53,81,0.2);
}

/* Fade-up scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(240,82,61,0.5); }
  50%       { opacity: 0.65; box-shadow: 0 0 0 5px rgba(240,82,61,0); }
}

@keyframes float-pulse {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-4px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1440px) {
  :root { --container: 100%; }

  .hero-grid         { grid-template-columns: 1fr; gap: 40px; }
  .hero-right        { display: none; }
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .process-grid      { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .fit-grid          { grid-template-columns: 1fr; }
  .pricing-layout    { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .proof-strip-inner { flex-wrap: wrap; }
  .proof-strip-item  { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .gallery-grid      { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item      { grid-column: span 1 !important; grid-row: span 1 !important; }
  .package-grid      { grid-template-columns: 1fr; max-width: 460px; margin: 48px auto 0; }
  .addon-grid        { grid-template-columns: 1fr 1fr; }
  .contact-layout    { grid-template-columns: 1fr; gap: 48px; }
  .gallery-page-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-col-inner { padding: 0 36px 0 32px; }
  .hero-2col { min-height: 0; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .container    { padding: 0 20px; }
  .section      { padding: 72px 0; }
  .section-sm   { padding: 52px 0; }

  .nav-links    { display: none; }
  .nav-actions .btn:not(.btn-sms) { display: none; }
  .hamburger    { display: flex; }

  .services-grid      { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .footer-bottom      { flex-direction: column; gap: 12px; text-align: center; }
  .gallery-grid       { grid-template-columns: 1fr; }
  .gallery-item       { grid-column: auto !important; }
  .gallery-page-grid  { grid-template-columns: 1fr; }
  .hero-title         { font-size: clamp(36px, 9vw, 56px); }
  .hero-ctas          { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn     { width: 100%; }
  .proof-strip-item   { flex: 1 1 100%; }
  .cta-actions        { flex-direction: column; align-items: center; }
  .cta-actions .btn   { width: 100%; max-width: 320px; }
  .faq-list           { max-width: 100%; }
  .mobile-cta-float   { display: flex; }
  .pricing-img-row    { grid-template-columns: 1fr; }
  .addon-grid         { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .form-checkbox-grid { grid-template-columns: 1fr; }
  .form-card          { padding: 32px 24px; }
  .fit-col            { padding: 36px 28px; }
  .package-grid       { max-width: 100%; }
  .contact-layout     { grid-template-columns: 1fr; }

  /* Services alternating blocks — tablet */
  .svc-body,
  .svc-block--flip .svc-body { padding: 48px 40px; }

  /* Services alternating blocks — mobile stack */
  .svc-intro          { max-width: 100%; }
  .svc-block          { grid-template-columns: 1fr; min-height: 0; }
  .svc-block--flip .svc-img { order: -1; }
  .svc-img            { min-height: 260px; }
  .svc-body,
  .svc-block--flip .svc-body { padding: 40px 24px; }
  .svc-cta-band       { padding: 36px 28px; flex-direction: column; align-items: flex-start; }
  .svc-cta-band-actions { width: 100%; }
  .svc-cta-band-actions .btn { flex: 1; justify-content: center; }

  /* Hero two-col — mobile stack */
  .hero-2col          { grid-template-columns: 1fr; min-height: 0; }
  .hero-col-right     { height: 280px; order: -1; }
  .hero-col-right::before { width: 0; }
  .hero-col-left      { padding: 52px 0; }
  .hero-col-inner     { max-width: 100%; margin: 0; padding: 0 20px; }
  .hero-form-row      { grid-template-columns: 1fr; gap: 10px; }
  .hero-title         { font-size: clamp(30px, 8vw, 44px); }
}

@media (max-width: 480px) {
  .hero-trust   { gap: 14px; }
  .nav-actions .btn-sm { display: none; }
  .announcement-bar p  { display: none; }
  .hero-col-right { height: 220px; }
}

/* ============================================================
   NAVY TEXTURE — Grain + dot grid overlay on all navy surfaces
   Applied via background-image layering on top of solid color
   ============================================================ */

:root {
  --navy-texture:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E"),
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  --navy-texture-size: auto, 28px 28px;
}

.nav,
.mobile-nav,
.hero,
.page-hero,
.proof-strip,
.cta-section,
.footer,
.bg-navy,
.bg-forest {
  background-image: var(--navy-texture);
  background-size: var(--navy-texture-size);
}
