:root {
  --navy: #1b3a6b;
  --navy-deep: #0f2347;
  --navy-mid: #2c5098;
  --sky: #5ba4cf;
  --sky-light: #a8d4f0;
  --sky-wash: #e8f4fd;
  --teal: #2e9e9c;
  --sand: #f5c842;
  --white: #ffffff;
  --pearl: #f7f9fc;
  --fog: #eff3f8;
  --steel: #8fa3bc;
  --ink: #1a2b3c;
  --ink-light: #4a637d;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-family: inherit;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  height: 80px;
  background: var(--navy-deep);
  border-bottom: 3px solid var(--sky);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--sky);
  color: white;
  border-radius: 4px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
}

.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--sky-light);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  padding: 12px 24px;
  background: var(--sky);
  color: white;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(91, 164, 207, 0.3);
}

.nav-cta:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-toggle {
  z-index: 1100;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 80px);
  padding: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #1e4080 55%, #1b3a6b 100%);
  color: white;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(91, 164, 207, 0.1) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  grid-template-areas:
    "promo promo"
    "content visual";
  flex: 1;
  gap: 44px;
  align-items: center;
  padding: 12px 30px 60px;
}

.hero-content {
  grid-area: content;
}

.hero-visual {
  grid-area: visual;
}

.hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(91, 164, 207, 0.15);
  border: 1px solid rgba(91, 164, 207, 0.3);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky-light);
}

.hero-title {
  margin-bottom: 20px;
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.95;
}

.hero-title em {
  font-style: italic;
  color: var(--sky-light);
}

.hero-accent {
  width: 60px;
  height: 4px;
  margin-bottom: 30px;
  background: var(--sand);
}

.hero-desc {
  max-width: 540px;
  margin-bottom: 40px;
  font-size: 18px;
  color: white;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.btn-primary {
  padding: 18px 36px;
  background: var(--sky);
  color: white;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(91, 164, 207, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(91, 164, 207, 0.5);
}

.btn-ghost {
  padding: 16px 32px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-weight: 600;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: white;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 16px;
  gap: 16px;
  background: rgba(15, 35, 71, 0.35);
  border: 1px solid rgba(168, 212, 240, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.visual-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sky-light);
  text-align: center;
  opacity: 0.7;
}

.hover-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px;
  background: var(--navy-deep);
  border: 1px solid rgba(168, 212, 240, 0.1);
  color: var(--sky-light);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hover-hint::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sky);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--sky);
  animation: hintPulse 1.5s infinite;
}

@keyframes hintPulse {
  0% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  flex: 0 0 auto;
  gap: 10px;
  padding: 10px;
  background: rgba(15, 35, 71, 0.25);
  border: 1px solid rgba(168, 212, 240, 0.12);
  border-radius: 10px;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .hero-visual {
    padding: 12px;
    gap: 12px;
  }

  .hero-gallery {
    gap: 8px;
    padding: 8px;
  }
}

.ba-card {
  position: relative;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.ba-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

.ba-image.after {
  opacity: 0;
}

.ba-card:hover .ba-image.after {
  opacity: 1;
}

.ba-label {
  position: absolute;
  bottom: 6px;
  z-index: 2;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 2px;
  pointer-events: none;
}

.before-label {
  left: 6px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
}

.after-label {
  right: 6px;
  background: var(--sky);
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}

.ba-card:hover .after-label {
  opacity: 1;
}

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */

.trust-bar {
  padding: 30px 0;
  background: var(--sky);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.trust-item {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item:last-child {
  border: none;
}

.trust-num {
  margin-bottom: 4px;
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* ── LIMITED TIME OFFER BANNER ── */

.s-promo {
  grid-area: promo;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border-top: none;
  border-bottom: none;
}

.s-promo-mobile {
  display: none;
}

.s-promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0;
}

.s-promo-badge {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 6px 14px;
  background: var(--sand);
  color: var(--navy-deep);
  border-radius: 3px;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(245, 200, 66, 0.4);
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 2px 12px rgba(245, 200, 66, 0.4);
  }
  50% {
    box-shadow: 0 2px 28px rgba(245, 200, 66, 0.85);
  }
}

.s-promo-divider {
  flex-shrink: 0;
  width: 1px;
  height: 52px;
  background: rgba(168, 212, 240, 0.2);
}

.s-promo-offers {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
}

.s-promo-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.s-promo-size {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sky-light);
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.s-promo-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  line-height: 1.2;
}

.s-promo-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.s-promo-price {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--sand);
  line-height: 1;
  animation: priceFlash 1.8s ease-in-out infinite;
}

.s-promo-asterisk {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--sand);
  position: relative;
  top: -0.45em;
  line-height: 1;
  animation: priceFlash 1.8s ease-in-out infinite;
}

@keyframes priceFlash {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(245, 200, 66, 0);
  }
  30% {
    opacity: 1;
    text-shadow: 0 0 18px rgba(245, 200, 66, 0.9), 0 0 32px rgba(245, 200, 66, 0.5);
  }
  60% {
    opacity: 0.7;
    text-shadow: 0 0 6px rgba(245, 200, 66, 0.4);
  }
}

.s-promo-conditions {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.3px;
  font-style: italic;
}

.s-promo-sep {
  flex-shrink: 0;
  width: 1px;
  height: 60px;
  background: rgba(168, 212, 240, 0.15);
}

.s-promo-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin-left: auto;
}

.s-promo-cta {
  padding: 12px 24px;
  background: var(--sky);
  color: white;
  border: none;
  border-radius: 5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.s-promo-cta:hover {
  background: var(--navy-mid);
}

.s-promo-fine {
  font-size: 10px;
  color: white;
  font-style: italic;
  text-align: right;
  letter-spacing: 0.2px;
}

/* ══════════════════════════════════════════
   MISSION & VALUES
══════════════════════════════════════════ */

@media (min-width: 769px) {
  .s-promo-top {
    width: auto;
    justify-self: center;
  }

  .s-promo-top .s-promo-inner {
    justify-content: center;
    width: auto;
  }

  .s-promo-top .s-promo-offers {
    justify-content: center;
  }
}

.s-mission {
  padding: 100px 0;
  background: var(--sky-wash);
}

.s-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.sm-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--sky);
}

.sm-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--sky);
}

.sm-h2 {
  margin-bottom: 20px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--navy-deep);
  line-height: 1.1;
}

.sm-rule {
  width: 40px;
  height: 4px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--sky), var(--teal));
}

.sm-text {
  padding-left: 24px;
  border-left: 4px solid var(--sky);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-light);
  line-height: 1.7;
}

.sm-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(91, 164, 207, 0.2);
}

.sm-stat-val {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--navy);
  line-height: 1;
}

.sm-stat-lbl {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--steel);
}

.sm-divider {
  width: 1px;
  background: rgba(91, 164, 207, 0.2);
}

.sv-sub {
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--steel);
}

.sv-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sv-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(91, 164, 207, 0.1);
  border-left: 4px solid var(--sky);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(27, 58, 107, 0.03);
  transition: 0.3s;
}

.sv-item:hover {
  border-left-color: var(--teal);
  box-shadow: 0 8px 24px rgba(27, 58, 107, 0.08);
  transform: translateX(10px);
}

.sv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--sky-wash);
  border: 1px solid rgba(91, 164, 207, 0.15);
  border-radius: 8px;
  font-size: 20px;
}

.sv-name {
  margin-bottom: 4px;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sv-desc {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */

.services-section {
  padding: 100px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  padding: 40px 30px;
  background: white;
  border: 1px solid var(--fog);
  border-radius: 12px;
  text-align: left;
  transition: 0.4s;
}

.service-card:hover {
  border-top: 6px solid var(--sky);
  box-shadow: 0 20px 40px rgba(27, 58, 107, 0.1);
  transform: translateY(-10px);
}

.service-num {
  margin-bottom: 20px;
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--sky-wash);
  line-height: 1;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-deep);
}

.service-card p {
  font-size: 15px;
  color: var(--ink-light);
}

/* ══════════════════════════════════════════
   CTA & FOOTER
══════════════════════════════════════════ */

.cta-banner {
  padding: 80px 0;
  background: var(--sky-wash);
  text-align: center;
}

.footer {
  padding: 60px 0;
  background: var(--navy-deep);
  color: white;
  border-top: 4px solid var(--sky);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-logo-wrap {
  max-width: 300px;
}

.footer-contact {
  text-align: right;
}

.footer-contact div {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(168, 212, 240, 0.6);
}

.footer-contact strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(168, 212, 240, 0.4);
}

/* ══════════════════════════════════════════
   MODAL & FORMS
══════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(11, 30, 60, 0.7);
  backdrop-filter: blur(6px);
}

.modal-overlay.open {
  display: flex;
  animation: mFadeIn 0.25s ease;
}

@keyframes mFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  max-height: 90vh; 
  background: white;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(11, 30, 60, 0.4);
  overflow: hidden;
  animation: mSlideUp 0.3s ease;
}

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

.modal-head {
  position: relative;
  flex-shrink: 0;
  padding: 26px 30px 22px;
  background: var(--navy-deep);
}

.mh-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.modal-eyebrow {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--sky-light);
  opacity: 0.7;
}

.modal-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 24px;
  color: white;
  line-height: 1.15;
}

.modal-title em {
  font-style: italic;
  color: var(--sky-light);
}

.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  margin-top: 2px;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.mh-rule {
  height: 2px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--sky), var(--teal));
}

.modal-body {
  padding: 24px 30px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mf-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mf-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mf-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mf-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
}

.mf-req {
  color: var(--sky);
}

.mf-inp,
.mf-sel {
  width: 100%;
  padding: 11px 13px;
  background: white;
  border: 2px solid var(--sky-light);
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.mf-inp:focus,
.mf-sel:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(91, 164, 207, 0.12);
}

.mf-inp::placeholder {
  color: var(--steel);
}

.mf-sel {
  max-width: 100%;
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath fill='%238FA3BC' d='M5 7L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  appearance: none;
  cursor: pointer;
}

.mf-hint {
  font-size: 10.5px;
  color: var(--steel);
}

.mf-submit {
  flex-shrink: 0;
  width: 100%;
  margin-top: 2px;
  padding: 14px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.mf-submit:hover {
  background: var(--navy-mid);
}

.mf-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--fog);
}

.mf-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
  cursor: pointer;
  user-select: none;
}

.mf-checkbox input[type='checkbox'] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--sky);
}

.mf-checkbox-label {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-light);
}

.g-recaptcha-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78px;
  margin: 8px 0;
  padding: 0 20px;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  color: var(--steel);
  font-size: 13px;
  text-align: center;
}

.mft {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--steel);
}

.mft::before {
  content: '✓';
  font-weight: 700;
  color: var(--teal);
}

.modal-success {
  display: none;
  padding: 36px 30px;
  text-align: center;
}

.ms-icon {
  margin-bottom: 14px;
  font-size: 44px;
}

.ms-h {
  margin-bottom: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-deep);
}

.ms-p {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   GALLERY STYLES
══════════════════════════════════════════ */

.gallery-hero {
  position: relative;
  padding: 100px 0 60px;
  background: var(--navy-deep);
  color: white;
  text-align: center;
  overflow: hidden;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(168, 212, 240, 0.1) 1px, transparent 0);
  background-size: 32px 32px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 24px;
  background: white;
  border: 1px solid var(--sky-light);
  border-radius: 30px;
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--sky);
  color: white;
  border-color: var(--sky);
  box-shadow: 0 4px 15px rgba(91, 164, 207, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.gallery-item {
  background: white;
  border: 1px solid var(--fog);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 35, 71, 0.08);
  overflow: hidden;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gi-content {
  padding: 20px;
}

.gi-tag {
  margin-bottom: 8px;
  color: var(--sky);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.gi-title {
  margin-bottom: 4px;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--navy-deep);
}

.gi-loc {
  font-size: 13px;
  color: var(--steel);
}

/* RESPONSIVE */

@media (min-width: 1800px) {
  .container {
    max-width: 1500px;
  }

  body {
    font-size: 18px;
  }

  .hero-title {
    font-size: 80px;
  }

  .section-title,
  .sm-h2 {
    font-size: 48px;
  }
}

@media (max-width: 1100px) {
  .hero-title {
    font-size: clamp(32px, 5vw, 54px);
  }

  .hero-grid {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .hero-grid,
  .mission-grid,
  .s-mission-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "promo"
      "content"
      "visual";
  }

  .hero-visual {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100vh - 80px);
    padding: 40px;
    background: var(--navy-deep);
    gap: 40px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: white;
    font-size: 24px;
  }

  .hero {
    min-height: auto;
    padding: 12px 0 80px;
  }

  .s-mission {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 12px;
  }

  .hero-grid {
    padding-top: 12px;
  }

  .s-promo-desktop {
    display: none;
  }

  .s-promo-mobile {
    display: block;
    grid-area: unset;
    border-top: 3px solid var(--sand);
    border-bottom: 3px solid var(--sand);
    border-radius: 12px;
  }

  .container {
    padding: 0 20px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .trust-item {
    border: none;
  }

  .s-promo {
    padding: 0;
    text-align: center;
  }

  .s-promo-inner {
    flex-direction: column;
    padding-top: 0;
  }

  .s-promo-offers {
    flex-direction: column;
    gap: 30px;
  }

  .s-promo-sep {
    display: none;
  }

  .s-promo-right {
    align-items: center;
    margin-left: 0;
  }

  .s-promo-fine {
    text-align: center;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .footer-logo-wrap {
    margin: 0 auto;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .sm-stats {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sm-divider {
    width: 100%;
    height: 1px;
  }

  .modal-box {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 40px);
  }

  .modal-body {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mf-field {
    min-width: 0;
  }

  .mf-sel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .modal-close,
  .mf-inp,
  .mf-sel,
  .mf-submit {
    min-height: 44px;
  }

  .mf-submit {
    position: sticky;
    bottom: 0;
    z-index: 2;
  }

  .modal-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .header {
    height: 70px;
  }

  .nav-links {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .logo-badge {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .logo-text {
    font-size: 18px;
  }

  .hero-title {
    font-size: 36px;
  }

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

  .modal-box {
    padding: 10px;
  }

  .mf-2col {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   CUSTOM SELECT STYLES
══════════════════════════════════════════ */

.custom-select {
  position: relative;
  width: 100%;
  font-size: 14px;
}

.cs-selected {
  position: relative;
  padding: 11px 13px;
  background: white;
  border: 2px solid var(--sky-light);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
}

.cs-selected::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  width: 10px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath fill='%238FA3BC' d='M5 7L0 0h10z'/%3E%3C/svg%3E") no-repeat center;
  transform: translateY(-50%);
  transition: 0.3s;
}

.custom-select.open .cs-selected {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(91, 164, 207, 0.12);
}

.custom-select.open .cs-selected::after {
  transform: translateY(-50%) rotate(180deg);
}

.cs-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  max-height: 260px;
  background: white;
  border: 1px solid var(--fog);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.custom-select.open .cs-dropdown {
  display: block;
}

.cs-group {
  padding: 12px 12px 6px;
  font-size: 10px;
  font-weight: 800;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cs-option {
  padding: 10px 12px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s;
}

.cs-option:hover {
  background: var(--sky-wash);
}

.cs-option.selected {
  background: var(--sky-wash);
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 480px) {

  .mf-sel {
    padding-left: 8px; 
    padding-right: 24px; 
    background-position: right 6px center; 
    background-size: 8px 6px; 
    font-size: 13px; 
  }


  .modal-body {
    padding: 16px 16px 12px;
  }
}
@media (max-width: 768px) {

  .s-promo {
    padding: 20px 16px;
    margin-top: 60px;
    border-radius: 12px;
  }

  .s-promo .container {
    padding: 0;
  }


  .s-promo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .s-promo-offers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .s-promo-item {
    gap: 2px;
  }

  .s-promo-sep,
  .s-promo-divider {
    display: none;
  }

  .s-promo-right {
    align-items: center;
    margin-left: 0;
    gap: 10px;
  }

  .s-promo-fine {
    text-align: center;
  }


  .s-promo-cta {
    width: 100%;
    max-width: 320px;
  }
}
