/* =========================================================
SOLLUTE WEBSITE
========================================================= */

:root {
  --navy: #0b2f63;
  --navy-dark: #082550;
  --blue: #1e5ca8;
  --light-blue: #edf5ff;
  --text: #172033;
  --muted: #667085;
  --line: #e5eaf1;
  --white: #ffffff;
  --background: #f7f9fc;
  --shadow: 0 10px 30px rgba(13, 38, 76, 0.08);
  --radius: 16px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans KR", Arial, sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(15px);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo {
  display: block;
  width: auto;
  height: 58px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  padding: 12px 21px;
  color: white;
  background: var(--navy);
  border-radius: 8px;
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 16%, rgba(255,255,255,0.96) 0 8%, transparent 9%),
    linear-gradient(120deg, #f5fbff 0%, #e8f5ff 47%, #f7fbff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(22, 73, 129, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 73, 129, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.hero-decoration-one {
  width: 360px;
  height: 360px;
  top: -190px;
  left: -100px;
  background: rgba(98, 184, 239, 0.18);
}

.hero-decoration-two {
  width: 440px;
  height: 440px;
  right: -180px;
  bottom: -230px;
  background: rgba(255, 207, 120, 0.16);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  gap: 42px;
  align-items: center;
  padding: 68px 0 78px;
}

.hero-copy {
  min-width: 0;
}

.hero-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 9px 14px;
  border: 1px solid rgba(20, 80, 144, 0.13);
  border-radius: 999px;
  color: #315d8e;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(28, 87, 151, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2c80c9;
  box-shadow: 0 0 0 5px rgba(44, 128, 201, 0.1);
}

.hero h1 {
  width: max-content;
  max-width: none;
  margin: 0;
  color: #13243c;
  letter-spacing: -0.045em;
  font-weight: 800;
  word-break: keep-all;
}

.hero-message-line {
  display: block;
  width: max-content;
  white-space: nowrap;
}

.hero-message-small {
  color: #3b5878;
  font-size: clamp(21px, 1.85vw, 28px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-message-large {
  margin-top: 9px;
  color: #14518d;
  font-size: clamp(30px, 2.55vw, 39px);
  line-height: 1.38;
  font-weight: 800;
  background:
    linear-gradient(
      transparent 68%,
      rgba(130, 205, 247, 0.34) 68%
    );
}

.hero-description {
  max-width: 690px;
  margin: 25px 0 0;
  color: #52637a;
  font-size: 16px;
  line-height: 1.9;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn-hero-light {
  color: var(--navy);
  border: 1px solid rgba(19, 67, 117, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(31, 80, 131, 0.06);
}

.btn-hero-light:hover {
  background: white;
}

.hero-experience-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.hero-experience-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 10px;
  border: 1px solid rgba(19, 67, 117, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.76);
}

.hero-experience-icon {
  flex: 0 0 auto;
  font-size: 22px;
}

.hero-experience-item div {
  min-width: 0;
}

.hero-experience-item strong,
.hero-experience-item small {
  display: block;
}

.hero-experience-item strong {
  color: #173b66;
  font-size: 13px;
  white-space: nowrap;
}

.hero-experience-item small {
  margin-top: 1px;
  color: #748298;
  font-size: 10px;
  white-space: nowrap;
}


.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 500px;
}

.hero-gallery {
  position: absolute;
  inset: 8px 0 8px 18px;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.94);
  border-radius: 30px;
  background:
    linear-gradient(135deg, #dfeff8 0%, #f5f9fc 100%);
  box-shadow:
    0 28px 65px rgba(27, 75, 124, 0.18);
  isolation: isolate;
}

.hero-gallery-track {
  width: 100%;
  height: 100%;
  display: flex;
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-gallery-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  background: #dfe9f1;
}

.hero-gallery-bg {
  position: absolute;
  inset: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  object-fit: cover;
  filter: blur(24px);
  opacity: 0.5;
  transform: scale(1.08);
}

.hero-gallery-bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.12),
      rgba(10, 32, 61, 0.14)
    );
}

.hero-gallery-image {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 10px 18px rgba(14, 38, 65, 0.13));
}

.hero-gallery-empty {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: none;
  place-content: center;
  text-align: center;
  padding: 28px;
  color: #73839a;
}

.hero-gallery-empty.show {
  display: grid;
}

.hero-gallery-empty strong,
.hero-gallery-empty span {
  display: block;
}

.hero-gallery-empty strong {
  color: #365b82;
  font-size: 18px;
}

.hero-gallery-empty span {
  margin-top: 8px;
  font-size: 12px;
}

/* BUTTONS *//* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 8px;
  border: 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(11, 47, 99, 0.22);
}

.btn-primary:hover {
  background: #071f46;
}

.btn-secondary {
  color: var(--navy);
  background: #edf2f8;
}

.btn-outline-light {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}


/* =========================================================
BRAND INTRO
========================================================= */

.brand-intro-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 34px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfdff 100%
    );
}

.brand-intro-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: -180px;
  top: -80px;
  border-radius: 50%;
  background: rgba(85, 168, 225, 0.07);
  pointer-events: none;
}

.brand-intro-wrap {
  position: relative;
  padding: 38px 42px 40px;
  border: 1px solid rgba(26, 78, 133, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(245, 251, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.98) 58%,
      rgba(246, 250, 255, 0.96) 100%
    );
  box-shadow:
    0 18px 45px rgba(30, 74, 121, 0.07);
}

.brand-intro-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #4777a8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-intro-line {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: #4b8bc4;
}

.brand-intro-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.25fr);
  gap: 58px;
  align-items: start;
}

.brand-intro-mini {
  margin: 0 0 9px;
  color: #67809c;
  font-size: 13px;
  font-weight: 700;
}

.brand-intro-title h2 {
  margin: 0;
  color: #162840;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.34;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.brand-intro-title h2 span {
  color: var(--navy);
}

.brand-intro-copy {
  padding-top: 4px;
}

.brand-intro-copy p {
  margin: 0;
  color: #526177;
  font-size: 15px;
  line-height: 1.95;
  word-break: keep-all;
}

.brand-intro-copy p + p {
  margin-top: 13px;
}

.brand-intro-copy strong {
  color: #173f6b;
  font-weight: 700;
}

.brand-intro-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.brand-intro-keywords span {
  padding: 7px 11px;
  border: 1px solid rgba(40, 103, 164, 0.11);
  border-radius: 999px;
  color: #47739e;
  background: #f1f7fc;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* FEATURE */
.feature-strip {
  padding: 18px 0 46px;
  background: white;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 160px;
  padding: 25px 15px;
  text-align: center;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.feature-icon {
  margin-bottom: 10px;
  font-size: 34px;
}

.feature-card h3 {
  margin: 0;
  font-size: 16px;
  color: var(--navy);
}

.feature-card p {
  margin: 9px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* COMMON */
.section {
  padding: 80px 0;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.section-heading-row > div {
  max-width: 700px;
}

.section-heading.center {
  max-width: 700px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section-heading h2,
.section-heading-row h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.section-heading p,
.section-heading-row p {
  margin: 9px 0 0;
  color: var(--muted);
}

.text-button {
  flex-shrink: 0;
  padding: 11px 17px;
  color: var(--navy);
  border: 1px solid #a9bdd6;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
}

/* WINTER CAMP CARDS */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  box-shadow: 0 8px 24px rgba(18, 48, 86, 0.04);
  cursor: pointer;
  transition: all 0.25s ease;
}

.program-card:hover,
.program-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(18, 48, 86, 0.13);
}

.program-thumbnail {
  position: relative;
  height: 205px;
  overflow: hidden;
  background-color: #dfe8f3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* 썸네일 파일을 나중에 이 이름으로 넣으면 자동 표시 */
.thumb-canada3 {
  background-image: url("images/camp/ca.jpg");
}

.thumb-canada7 {
  background-image: url("images/camp/ca7.jpg?v=20260921");
}

.thumb-nz3 {
  background-image: url("images/camp/nz3.jpg");
}

.thumb-nz4 {
  background-image: url("images/camp/nz4.jpg?v=20260827-2");
}

.thumb-nz7 {
  background-image: url("images/camp/nz7.jpg");
}

.thumb-japan2 {
  background-image: url("images/camp/jp.jpg?v=20260921");
}

.badge {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  margin: 0;
  font-size: 18px;
}

.card-body p {
  min-height: 75px;
  margin: 10px 0 17px;
  color: var(--muted);
  font-size: 14px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #687386;
  font-size: 12px;
}

/* =========================================================
PROGRAM POPUP MODAL
========================================================= */

.program-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.program-modal.is-open {
  display: flex;
}

.program-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 42, 0.76);
  backdrop-filter: blur(4px);
}

.program-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 36px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  animation: modalPop 0.2s ease-out;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.program-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: #edf2f8;
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
}

.program-modal-kicker {
  margin: 0 55px 7px 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.program-modal-dialog h2 {
  margin: 0 55px 0 0;
  color: var(--navy);
  font-size: clamp(29px, 4vw, 41px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.program-modal-subtitle {
  margin: 10px 55px 0 0;
  color: #667085;
  font-size: 15px;
}

.program-modal-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 26px 0 20px;
}

.program-modal-info > div {
  padding: 16px;
  border: 1px solid #dfe7f0;
  border-radius: 12px;
  background: #f7faff;
}

.program-modal-info span {
  display: block;
  margin-bottom: 5px;
  color: #7b8798;
  font-size: 12px;
  font-weight: 700;
}

.program-modal-info strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.5;
}

.program-modal-details {
  display: grid;
  gap: 15px;
}

.program-modal-section {
  padding: 21px 23px;
  border: 1px solid #e3e9f1;
  border-radius: 14px;
  background: #fff;
}

.program-modal-section h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
}

.program-modal-section ul {
  margin: 0;
  padding-left: 20px;
}

.program-modal-section li {
  margin: 8px 0;
  color: #435065;
  font-size: 14px;
}

.program-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #e5eaf1;
}

.btn-secondary {
  color: var(--navy);
  border: 1px solid #a9bdd6;
  background: #fff;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

/* COUNTRIES */
.countries-section {
  background: var(--background);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.country-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 23px;
  color: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
}

.country-card:hover {
  transform: translateY(-5px);
}

.country-newzealand {
  background:
    linear-gradient(180deg, rgba(6, 46, 95, 0.04), rgba(6, 46, 95, 0.84)),
    url("images/newzealand-winter.jpg") center / cover;
}

.country-canada {
  background:
    linear-gradient(180deg, rgba(6, 46, 95, 0.04), rgba(6, 46, 95, 0.84)),
    url("images/canada.jpg") center / cover;
}

.country-uk {
  background:
    linear-gradient(180deg, rgba(6, 46, 95, 0.04), rgba(6, 46, 95, 0.84)),
    url("images/uk.jpg") center / cover;
}

.country-usa {
  background:
    linear-gradient(180deg, rgba(6, 46, 95, 0.04), rgba(6, 46, 95, 0.84)),
    url("images/usa.jpg") center / cover;
}

.country-card strong {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.country-card span {
  margin-top: 3px;
  font-size: 24px;
  font-weight: 800;
}

/* WHY */
.why-section {
  padding: 78px 0;
  color: white;
  background: linear-gradient(135deg, #0b2f63 0%, #082550 100%);
}

.section-heading.light .section-eyebrow {
  color: #9ac1f0;
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.74);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}
.why-icon {
  margin-bottom: 12px;
  font-size: 36px;
}

.why-item h3 {
  margin: 0 0 9px;
  font-size: 18px;
}

.why-item p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

/* REVIEWS */
.reviews-section {
  overflow: hidden;
}

.review-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.review-track {
  display: flex;
  gap: 19px;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 38px) / 3);
  min-width: 0;
  min-height: 252px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
}

.review-stars {
  color: #f0ad2c;
  letter-spacing: 0.1em;
  font-size: 18px;
}

.review-card p {
  flex: 1;
  margin: 18px 0 28px;
  color: #485467;
  font-size: 14px;
  line-height: 1.9;
  word-break: keep-all;
}

.review-card strong {
  color: var(--navy);
  font-size: 13px;
}

.review-nav {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #d7dfeb;
  border-radius: 50%;
  background: white;
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(13, 38, 76, 0.08);
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.review-nav:hover {
  color: white;
  background: var(--navy);
  transform: translateY(-1px);
}

.review-nav:focus-visible {
  outline: 3px solid rgba(30, 92, 168, 0.25);
  outline-offset: 2px;
}

.review-dots {
  min-height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
}

.review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c8d0dc;
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.review-dot.active {
  width: 24px;
  background: var(--navy);
}


/* CAMP SKETCH VIDEO */
.camp-sketch-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.camp-sketch-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -180px;
  right: -100px;
  border-radius: 50%;
  background: rgba(88, 176, 233, 0.09);
  pointer-events: none;
}

.camp-sketch-heading {
  position: relative;
  z-index: 1;
}

.camp-video-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.camp-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 36px rgba(23, 55, 94, 0.08);
}

.camp-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b1830;
}

.camp-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.camp-video-caption {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px 22px;
}

.camp-video-number {
  flex: 0 0 auto;
  min-width: 38px;
  padding-top: 1px;
  color: #2c6da8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.camp-video-caption strong {
  display: block;
  color: #172b47;
  font-size: 17px;
}

.camp-video-caption p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* =========================================================
CAMP REPLAY
========================================================= */

.blog-section,
.camp-replay-section {
  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #ffffff 100%
    );
}

.camp-replay-section .container {
  width: min(calc(100% - 28px), 1440px);
}

.camp-replay-heading {
  margin-bottom: 34px;
}

/* 캐나다 + 뉴질랜드를 한 행에 */
.camp-replay-country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.camp-replay-country {
  min-width: 0;
  padding: 18px;
  border: 1px solid #e4e9f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 12px 32px rgba(16, 48, 87, 0.055);
}

.camp-replay-country + .camp-replay-country {
  margin-top: 0;
}

.camp-replay-country-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 11px;
  border-bottom: 1px solid #edf1f6;
}

.camp-country-label {
  display: inline-block;
  margin-bottom: 2px;
  color: #bb2635;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.camp-country-label.nz-label {
  color: #176cb0;
}

.camp-replay-country-head h3 {
  margin: 0;
  color: #16243a;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.camp-country-description {
  color: #8792a1;
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
}


/* 각 국가 안에서: 왼쪽 큰 글 1 + 오른쪽 작은 글 3 */
.camp-replay-layout {
  min-width: 0;
  display: grid;
  grid-template-columns:
    minmax(0, 0.42fr)
    minmax(0, 0.58fr);
  gap: 12px;
  align-items: stretch;
}


/* LEFT FEATURE */
.camp-replay-feature {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: transparent;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.camp-replay-feature:hover {
  transform: translateY(-2px);
  box-shadow: none;
  opacity: 0.92;
}

.camp-replay-feature-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.93;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      #dae7f2,
      #edf4fa
    );
}

.camp-replay-feature-media.canada-bg {
  background:
    linear-gradient(
      135deg,
      #efe3e4,
      #e8f0f7
    );
}

.camp-replay-feature-media.nz-bg {
  background:
    linear-gradient(
      135deg,
      #d9ebf6,
      #eef5f9
    );
}

.camp-replay-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camp-replay-media-tag {
  display: none;
}

.camp-replay-feature-body {
  padding: 10px 2px 0;
}

.camp-replay-post-label {
  display: none;
}

.camp-replay-feature-body h4 {
  margin: 0;
  color: #18253a;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.02em;

  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.camp-replay-feature-body > p:not(.camp-replay-post-label) {
  min-height: 0;
  margin: 6px 0 5px;
  color: #6e7989;
  font-size: 10px;
  line-height: 1.5;

  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}


/* RIGHT 3 POSTS */
.camp-replay-side-list {
  min-width: 0;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.camp-replay-side-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 9px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid #edf1f5;
  border-radius: 0;
  background: transparent;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.camp-replay-side-item:last-child {
  border-bottom: 0;
}

.camp-replay-side-item:hover {
  transform: translateX(2px);
  box-shadow: none;
  opacity: 0.9;
}

.camp-replay-side-media {
  position: relative;
  width: 88px;
  height: 72px;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(
      135deg,
      #dce8f2,
      #f0f5f9
    );
}

.camp-replay-side-media.canada-bg {
  background:
    linear-gradient(
      135deg,
      #eee1e2,
      #e8f0f7
    );
}

.camp-replay-side-media.nz-bg {
  background:
    linear-gradient(
      135deg,
      #d7eaf5,
      #eff7fb
    );
}

.camp-replay-side-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camp-replay-side-body {
  min-width: 0;
  padding: 0 0 6px;
}

.camp-replay-side-number {
  display: none;
}

.camp-replay-side-body h4 {
  margin: 0;
  color: #1a293f;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: -0.015em;

  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.camp-replay-side-body p {
  margin: 3px 0 3px;
  color: #7b8493;
  font-size: 8.5px;
  line-height: 1.35;

  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.camp-replay-link {
  color: var(--navy);
  font-size: 8px;
  font-weight: 800;
}


/* 900px 이상에서는 계속 한 줄 2개 유지 */
@media (max-width: 900px) {
  .camp-replay-country-grid {
    grid-template-columns: 1fr;
  }

  .camp-replay-country {
    padding: 20px;
  }

  .camp-replay-layout {
    grid-template-columns:
      minmax(0, 0.42fr)
      minmax(0, 0.58fr);
    gap: 16px;
  }

  .camp-replay-side-item {
    grid-template-columns: 115px minmax(0, 1fr);
    gap: 12px;
  }

  .camp-replay-side-media {
    width: 115px;
    height: 88px;
  }

  .camp-replay-feature-body h4 {
    font-size: 16px;
  }

  .camp-replay-feature-body > p:not(.camp-replay-post-label) {
    font-size: 11px;
  }

  .camp-replay-side-body h4 {
    font-size: 13px;
  }

  .camp-replay-side-body p {
    font-size: 10px;
  }

  .camp-replay-link {
    font-size: 9px;
  }
}


@media (max-width: 620px) {
  .camp-replay-country {
    padding: 15px;
    border-radius: 15px;
  }

  .camp-replay-country-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .camp-country-description {
    white-space: normal;
  }

  .camp-replay-layout {
    grid-template-columns: 1fr;
  }

  .camp-replay-feature-media {
    aspect-ratio: 16 / 9;
  }

  .camp-replay-side-item {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .camp-replay-side-media {
    width: 105px;
    height: 82px;
  }
}

/* CONTACT *//* CONTACT */
.contact-section {
  padding: 58px 0;
  background: #eef3f9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.75fr;
  gap: 35px;
  align-items: center;
}

.contact-intro h2 {
  margin: 0 0 10px;
  color: var(--navy);
}

.contact-intro p,
.contact-location p {
  color: var(--muted);
  font-size: 14px;
}

.contact-intro p {
  margin-bottom: 22px;
}

.contact-info h3,
.contact-location h3 {
  margin-top: 0;
  color: var(--navy);
}

.contact-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info li {
  margin: 10px 0;
  color: #4a5568;
  font-size: 14px;
}

.contact-info li span {
  display: inline-block;
  width: 22px;
  color: var(--navy);
}

.small-btn {
  display: inline-block;
  margin-top: 7px;
  padding: 9px 14px;
  color: var(--navy);
  border: 1px solid #91a8c4;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.fake-map {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(100, 120, 145, 0.15) 49%, rgba(100, 120, 145, 0.15) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(100, 120, 145, 0.15) 49%, rgba(100, 120, 145, 0.15) 51%, transparent 52%),
    #fffdf7;
  background-size: 42px 42px;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ef4444;
  font-size: 32px;
}

/* FOOTER */
.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: white;
}

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

.footer-logo {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 10px;
  color: #697386;
  font-size: 12px;
}

.site-footer p {
  margin: 0;
  color: #7b8494;
  font-size: 12px;
}

.top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: 45px;
  height: 45px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(8, 46, 94, 0.24);
  cursor: pointer;
}

.top-btn.show {
  display: grid;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.85fr);
    gap: 38px;
  }

  .hero-experience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-gallery {
    inset: 6px 0 6px 10px;
  }
  .header-logo {
    height: 52px;
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .program-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

    .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .camp-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {

  .brand-intro-section {
    padding: 58px 0 28px;
  }

  .brand-intro-wrap {
    padding: 32px 30px 34px;
  }

  .brand-intro-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .brand-intro-title h2 {
    max-width: 650px;
  }


  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 58px 0 70px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(38px, 7vw, 54px);
  }

  .hero-description br {
    display: none;
  }

  .hero-visual {
    min-height: 440px;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-gallery {
    inset: 0;
    border-width: 6px;
    border-radius: 26px;
  }
.camp-video-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .review-card {
    flex-basis: calc((100% - 19px) / 2);
  }

  .review-nav {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }
  .header-inner {
    min-height: 72px;
  }

  .header-logo {
    height: 46px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

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

  .main-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid #eff2f6;
  }

  .main-nav .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .hero {
    min-height: 560px;
    background-position: 62% center;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(35px, 7vw, 48px);
  }

  .hero-description br {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

    .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {

  .brand-intro-section {
    padding: 42px 0 22px;
  }

  .brand-intro-wrap {
    padding: 27px 22px 28px;
    border-radius: 18px;
  }

  .brand-intro-label {
    margin-bottom: 17px;
  }

  .brand-intro-content {
    gap: 18px;
  }

  .brand-intro-title h2 {
    font-size: 29px;
    line-height: 1.42;
  }

  .brand-intro-copy p {
    font-size: 14px;
    line-height: 1.85;
  }

  .brand-intro-keywords {
    margin-top: 18px;
  }


  .hero-layout {
    padding: 44px 0 56px;
  }

  .hero-kicker {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 37px;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-experience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 25px;
  }

  .hero-experience-item {
    padding: 10px 8px;
  }

  .hero-experience-icon {
    font-size: 19px;
  }

  .hero-experience-item strong {
    font-size: 12px;
  }

  .hero-experience-item small {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-gallery {
    inset: 0;
    border-width: 5px;
    border-radius: 22px;
  }

  .hero-gallery-image {
    padding: 6px;
  }
.hero-photo-bottom strong {
    font-size: 19px;
  }
.camp-video-caption {
    padding: 17px 18px 19px;
  }

  .review-slider {
    gap: 8px;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 245px;
    padding: 24px 22px;
  }

  .review-nav {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.94);
  }

  .review-nav:hover {
    transform: translateY(-50%);
  }

  .review-prev {
    left: 8px;
  }

  .review-next {
    right: 8px;
  }

  .review-viewport {
    border-radius: 12px;
  }

  .review-card p {
    padding: 0 26px;
  }
  .container {
    width: calc(100% - 28px);
  }

  .header-logo {
    height: 42px;
  }

  .hero {
    min-height: 600px;
    background-position: 66% center;
  }

  .hero-content {
    padding: 68px 0;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.38;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-grid,
  .program-grid,
  .blog-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .program-thumbnail {
    height: 225px;
  }

  .blog-card img {
    height: 210px;
  }
.footer-logo {
    height: 38px;
  }

  .camp-modal {
    padding: 10px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .camp-modal-panel {
    margin: 12px 0;
    max-height: none;
    padding: 27px 18px 20px;
    border-radius: 14px;
  }

  .camp-info-grid {
    grid-template-columns: 1fr;
  }

  .camp-modal-actions {
    flex-direction: column-reverse;
  }

  .camp-modal-actions .btn {
    width: 100%;
  }
}

.program-card {
  width: 100%;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  border: 1px solid var(--line);
  appearance: none;
  -webkit-appearance: none;
}

@media (max-width: 760px) {
  .program-modal {
    padding: 12px;
  }

  .program-modal-dialog {
    max-height: calc(100vh - 24px);
    padding: 28px 18px 22px;
    border-radius: 14px;
  }

  .program-modal-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .program-modal-info {
    grid-template-columns: 1fr;
  }

  .program-modal-actions {
    flex-direction: column-reverse;
  }

  .program-modal-actions .btn {
    width: 100%;
  }
}


/* =========================================================
HERO MESSAGE RESPONSIVE OVERRIDE
========================================================= */

@media (min-width: 1181px) {
  .hero-message-line {
    white-space: nowrap;
  }
}

@media (max-width: 1180px) {
  .hero h1 {
    width: auto;
    max-width: 100%;
  }

  .hero-message-line {
    width: auto;
    white-space: normal;
  }

  .hero-message-small {
    font-size: clamp(20px, 2.4vw, 26px);
  }

  .hero-message-large {
    font-size: clamp(29px, 3.3vw, 36px);
  }
}

@media (max-width: 820px) {
  .hero-message-small {
    font-size: 21px;
    line-height: 1.45;
  }

  .hero-message-large {
    margin-top: 8px;
    font-size: clamp(30px, 6vw, 42px);
    line-height: 1.36;
  }
}

@media (max-width: 560px) {
  .hero-message-small {
    font-size: 18px;
  }

  .hero-message-large {
    font-size: 31px;
    line-height: 1.4;
  }
}


/* CONTACT INFO / MAP UPDATE */
.contact-info li a {
  color: inherit;
  text-decoration: none;
}

.contact-info li a:hover {
  color: var(--navy);
  text-decoration: underline;
}

.contact-map {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-map-image {
  display: block;
  width: 100%;
  max-width: 380px;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #d9e1eb;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(18, 52, 88, 0.08);
}

@media (max-width: 1100px) {
  .contact-map-image {
    max-width: 100%;
    height: 260px;
  }
}

@media (max-width: 620px) {
  .contact-map {
    justify-content: center;
  }

  .contact-map-image {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}


/* CONTACT ROUTE */
.contact-route {
  margin-top: 20px;
}

.contact-route h4 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-route p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}


/* =========================================================
LEGAL POLICY / TERMS IMAGE MODAL
========================================================= */
.legal-link {
  cursor: pointer;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.legal-modal.is-open {
  display: flex;
}

.legal-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.legal-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 94vw);
  max-height: 92vh;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid #e6ebf1;
  background: #ffffff;
}

.legal-modal-header h2 {
  margin: 0;
  color: #123e73;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.legal-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid #d8e0e9;
  border-radius: 50%;
  background: #ffffff;
  color: #123e73;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.legal-modal-close:hover {
  background: #f3f7fb;
}

.legal-modal-content {
  max-height: calc(92vh - 72px);
  overflow: auto;
  background: #f4f6f8;
}

.legal-modal-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: #ffffff;
}

body.legal-modal-open {
  overflow: hidden;
}

@media (max-width: 620px) {
  .legal-modal {
    padding: 10px;
  }

  .legal-modal-dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 14px;
  }

  .legal-modal-header {
    padding: 10px 12px;
  }

  .legal-modal-header h2 {
    font-size: 16px;
  }

  .legal-modal-close {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 27px;
  }

  .legal-modal-content {
    max-height: calc(94vh - 60px);
  }
}

/* =========================================================
MOBILE FEATURE CARDS V2 - FORCE 2 COLUMNS
========================================================= */
@media (max-width: 820px) {
  .feature-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .feature-grid .feature-card {
    width: auto !important;
    min-width: 0 !important;
    min-height: 190px !important;
    padding: 24px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .feature-grid .feature-card:last-child {
    grid-column: 1 / -1 !important;
    width: calc(50% - 7px) !important;
    justify-self: center !important;
  }
}

@media (max-width: 560px) {
  .feature-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .feature-grid .feature-card {
    min-height: 176px !important;
    padding: 20px 10px !important;
    border-radius: 12px !important;
  }

  .feature-grid .feature-card:last-child {
    grid-column: 1 / -1 !important;
    width: calc(50% - 6px) !important;
    justify-self: center !important;
  }

  .feature-grid .feature-icon {
    margin-bottom: 10px !important;
    font-size: 31px !important;
  }

  .feature-grid .feature-card h3 {
    font-size: 15px !important;
    line-height: 1.35 !important;
    word-break: keep-all !important;
  }

  .feature-grid .feature-card p {
    margin-top: 8px !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
    word-break: keep-all !important;
  }
}

@media (max-width: 390px) {
  .feature-grid {
    gap: 9px !important;
  }

  .feature-grid .feature-card {
    min-height: 164px !important;
    padding: 18px 8px !important;
  }

  .feature-grid .feature-card:last-child {
    width: calc(50% - 4.5px) !important;
  }

  .feature-grid .feature-icon {
    font-size: 28px !important;
  }

  .feature-grid .feature-card h3 {
    font-size: 14px !important;
  }

  .feature-grid .feature-card p {
    font-size: 11px !important;
  }
}


/* =========================================================
CONTACT CLEANUP OVERRIDE
========================================================= */
.contact-location p {
  line-height: 1.85;
}

.contact-location p strong {
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 1100px) and (min-width: 621px) {
  .contact-location {
    grid-column: 1 / -1;
  }
}


/* =========================================================
CONSULT NUMBER IMAGE MODAL
========================================================= */
.consult-image-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.consult-image-modal.is-open {
  display: flex;
}

.consult-image-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 42, 0.74);
  backdrop-filter: blur(4px);
}

.consult-image-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(560px, 94vw);
  max-height: 92vh;
}

.consult-image-modal-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.consult-image-modal-close {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(15, 40, 77, 0.82);
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
}

body.consult-image-modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .consult-image-modal {
    padding: 14px;
  }

  .consult-image-modal-dialog {
    width: min(100%, 520px);
  }

  .consult-image-modal-img {
    border-radius: 14px;
  }

  .consult-image-modal-close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }
}
