

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --navy:       #191919;
  --navy-light: #262626;
  --teal:       #2a7f7f;
  --teal-light: #3a9898;
  --gold:       #c9a84c;
  --gold-light: #e0c070;
  --cream:      #f7f4ef;
  --off-white:  #fdfbf8;
  --light-gray: #eceae5;
  --mid-gray:   #9a9590;
  --dark-gray:  #3c3a36;
  --text:       #2c2a27;
  --text-light: #6b6760;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', 'Segoe UI', sans-serif;

  --shadow-sm:  0 2px 12px rgba(26,43,74,0.08);
  --shadow-md:  0 6px 30px rgba(26,43,74,0.12);
  --shadow-lg:  0 16px 60px rgba(26,43,74,0.16);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:  1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 2000;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

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

img[loading="lazy"] {
  content-visibility: auto;
}

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(24, 24, 24, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}

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

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 12px;
  min-width: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1.1;
  min-width: 0;
  flex: 1 1 auto;
}

.nav-logo-mark {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.18) contrast(1.12);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.nav-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.nav-logo .logo-sub {
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

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

.hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

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

@media (max-width: 860px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }

  .nav-links li {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-links.open {
    max-height: 360px;
    padding: 12px 0 20px;
    border-bottom: 2px solid var(--gold);
  }

  .nav-links a {
    padding: 13px 28px;
    width: 100%;
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin: 10px auto 0 !important;
    text-align: center;
    border-radius: var(--radius-sm) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: min(220px, calc(100% - 56px)) !important;
    min-height: 52px;
    padding: 12px 22px !important;
    white-space: nowrap;
  }

  .nav-logo {
    gap: 10px;
  }

  .nav-logo-mark {
    width: 54px;
    height: 54px;
  }

  .nav-logo .logo-main {
    font-size: 1.2rem;
  }

  .nav-logo .logo-sub {
    font-size: 0.56rem;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .nav-inner {
    height: 78px;
    gap: 8px;
  }

  .nav-logo {
    gap: 8px;
    max-width: calc(100% - 52px);
  }

  .nav-logo-mark {
    width: 42px;
    height: 42px;
  }

  .nav-logo .logo-main {
    font-size: 1rem;
    white-space: nowrap;
  }

  .nav-logo .logo-sub {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .hamburger {
    flex: 0 0 auto;
    padding: 4px;
  }

  .nav-links {
    top: 78px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20,35,62,0.88) 0%,
    rgba(20,35,62,0.62) 55%,
    rgba(20,35,62,0.38) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 22px;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 42px;
  max-width: 520px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.38);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.52);
  color: #fff;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,127,127,0.32);
}

section { padding: 96px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--teal);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

.section-sub {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.78;
}

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.text-center .section-label::after {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--teal);
}

.overview {
  background: var(--navy);
  padding: 72px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
}

.overview-item {
  padding: 38px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}

.overview-item:last-child { border-right: none; }
.overview-item:hover { background: rgba(255,255,255,0.04); }

.overview-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(201,168,76,0.25);
}

.overview-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

.overview-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.overview-num-text {
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.overview-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.services-preview { background: var(--cream); }

.services-carousel {
  position: relative;
  margin-top: 56px;
}

.services-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, calc((100% - 56px) / 3));
  gap: 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 6px 2px 18px;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

.svc-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  scroll-snap-align: start;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.svc-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.svc-card:hover .svc-img img { transform: scale(1.07); }

.svc-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.svc-body { padding: 28px 26px 30px; }

.svc-icon {
  width: 44px; height: 44px;
  background: rgba(42,127,127,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.svc-icon svg {
  width: 22px; height: 22px;
  stroke: var(--teal); fill: none; stroke-width: 1.8;
}

.svc-body h3 {
  font-family: var(--font-serif);
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.72;
  margin-bottom: 18px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  transition: gap var(--transition), color var(--transition);
}

.svc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.svc-link:hover { gap: 10px; color: var(--navy); }

.services-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(26,43,74,0.12);
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform var(--transition), background var(--transition), color var(--transition), opacity var(--transition);
}

.services-nav:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-50%) scale(1.03);
}

.services-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.services-nav svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

.services-nav-prev { left: -26px; }
.services-nav-next { right: -26px; }

.experience {
  background: var(--off-white);
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.exp-images {
  position: relative;
  height: 520px;
}

.exp-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 78%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.exp-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 52%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--off-white);
}

.exp-img-main img,
.exp-img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.exp-floater {
  position: absolute;
  top: 48%;
  left: 58%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
  z-index: 3;
  min-width: 130px;
}

.exp-floater .f-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.exp-floater .f-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.exp-text .section-sub { max-width: 100%; }

.exp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.exp-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
}

.exp-feat svg {
  width: 20px; height: 20px; min-width: 20px;
  stroke: var(--teal); fill: none; stroke-width: 2;
  margin-top: 2px;
}

.exp-feat span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-gray);
}

@media (max-width: 900px) {
  .experience-inner { grid-template-columns: 1fr; gap: 48px; }
  .exp-images { height: 360px; }
}

.gallery-preview { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 14px;
  margin-top: 52px;
}

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

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,43,74,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
}

.testimonials { background: var(--navy); }

.testimonials .section-title { color: #fff; }
.testimonials .section-sub { color: rgba(255,255,255,0.6); }
.testimonials .section-label { color: var(--gold); }
.testimonials .section-label::before { background: var(--gold); }
.testimonials .section-label::after { background: var(--gold); }

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

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition);
}

.testi-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testi-stars svg {
  width: 16px; height: 16px;
  fill: var(--gold);
  stroke: none;
}

.testi-text {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

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

.testi-author-info .name {
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
}

.testi-author-info .role {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(201,168,76,0.07);
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-text .section-title { color: #fff; }
.cta-text .section-sub { color: rgba(255,255,255,0.72); margin-top: 12px; }

.cta-btns { display: flex; flex-direction: column; gap: 14px; }

@media (max-width: 700px) {
  .cta-inner { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: row; flex-wrap: wrap; }
}

.page-hero {
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,35,62,0.6), rgba(20,35,62,0.85));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-top: 14px;
  max-width: 540px;
}

.about-story { background: var(--off-white); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-img {
  position: relative;
  height: 500px;
}

.story-img-main {
  width: 82%; height: 88%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.story-badge {
  position: absolute;
  bottom: 24px; right: 0;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
}

.story-badge .big { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700; display: block; line-height: 1; }
.story-badge .small { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

.story-text p {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.82;
  margin-bottom: 18px;
}

.story-text .highlight {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  color: var(--navy);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 28px 0;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-img { height: 320px; }
}

.mission-vision { background: var(--cream); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
}

.mv-card {
  padding: 40px 36px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.mv-card.mission { background: var(--navy); }
.mv-card.vision  { background: var(--teal); }

.mv-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.mv-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.mv-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; }

.mv-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.mv-card p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.78; }

@media (max-width: 700px) { .mv-grid { grid-template-columns: 1fr; } }

.why-choose { background: var(--off-white); }

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

.reason-card {
  padding: 32px 28px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.reason-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.reason-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(42,127,127,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--transition);
}

.reason-card:hover .reason-icon { background: rgba(42,127,127,0.18); }
.reason-icon svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; stroke-width: 1.8; }

.reason-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.reason-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.72; }

.facilities { background: var(--navy); overflow: hidden; }

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-top: 52px;
}

.fac-item {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
}

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

.fac-item:hover img { transform: scale(1.1); }

.fac-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,43,74,0.85) 0%, rgba(26,43,74,0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--transition);
}

.fac-item:hover .fac-overlay {
  background: linear-gradient(to top, rgba(42,127,127,0.85) 0%, rgba(42,127,127,0.2) 60%);
}

.fac-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

.services-section { background: var(--off-white); }

.services-category {
  margin-bottom: 72px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.cat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cat-icon.navy { background: var(--navy); }
.cat-icon.teal { background: var(--teal); }
.cat-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.8; }

.cat-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
}

.cat-sub { font-size: 0.88rem; color: var(--text-light); margin-top: 3px; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.s-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.s-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--light-gray);
  transition: background var(--transition);
}

.s-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.s-card:hover::before { background: var(--gold); }

.s-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.s-card-icon.bg-navy { background: rgba(26,43,74,0.1); }
.s-card-icon.bg-teal { background: rgba(42,127,127,0.1); }
.s-card-icon.bg-gold { background: rgba(201,168,76,0.12); }

.s-card-icon.bg-navy svg { stroke: var(--navy); }
.s-card-icon.bg-teal svg { stroke: var(--teal); }
.s-card-icon.bg-gold svg { stroke: var(--gold); }

.s-card-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.8; }

.s-card h4 {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.s-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.72; }

.s-card ul {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.s-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-light);
}

.s-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.pricing-strip {
  background: var(--navy);
  padding: 72px 0;
}

.pricing-strip .section-title { color: #fff; }
.pricing-strip .section-sub   { color: rgba(255,255,255,0.6); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.p-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.p-card.featured {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-8px);
}

.p-card:not(.featured):hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}

.p-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.p-card.featured .p-badge { background: rgba(26,43,74,0.2); color: var(--navy); }

.p-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.p-card.featured .p-name { color: var(--navy); }

.p-price {
  margin: 18px 0;
}

.p-price .amount {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
}

.p-card.featured .p-price .amount { color: var(--navy); }

.p-price .period {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.p-card.featured .p-price .period { color: rgba(26,43,74,0.65); }

.p-features {
  list-style: none;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.p-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
}

.p-card.featured .p-features li { color: rgba(26,43,74,0.82); }

.p-features li svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.p-card.featured .p-features li svg { stroke: var(--navy); }

.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.78;
  margin-bottom: 36px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.c-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.c-item-icon {
  width: 44px; height: 44px;
  background: rgba(42,127,127,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-item-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; }

.c-item-text .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 3px;
}

.c-item-text .value {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--navy);
}

.social-links { display: flex; gap: 12px; }

.social-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.social-btn:hover { background: var(--teal); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.8; }

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-sub { font-size: 0.9rem; color: var(--text-light); margin-bottom: 30px; }

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

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-gray);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,127,127,0.12);
  background: #fff;
}

.form-group input.error,
.form-group textarea.error { border-color: #e05252; box-shadow: 0 0 0 3px rgba(224,82,82,0.1); }

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

.error-msg {
  font-size: 0.76rem;
  color: #e05252;
  margin-top: 5px;
  display: none;
}

.error-msg.show { display: block; }

.form-group input.error + .error-msg,
.form-group textarea.error + .error-msg { display: block; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,127,127,0.28);
}

.form-success {
  display: none;
  text-align: center;
  padding: 28px;
}

.form-success.show { display: block; }

.form-success svg {
  width: 56px; height: 56px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 14px;
}

.form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p { font-size: 0.95rem; color: var(--text-light); }

.map-section { background: var(--cream); padding: 72px 0; }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-wrap iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; }
}

.footer {
  background: #111a2e;
  padding: 72px 0 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-grid {
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
}

.footer-brand .logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  display: block;
}

.footer-brand .logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.78;
  margin-bottom: 22px;
}

.footer-social { display: flex; gap: 10px; justify-content: center; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col ul li a::before { content: '›'; color: var(--teal); font-size: 1rem; }

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

.footer-contact-items .item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-contact-items .item svg {
  width: 15px; height: 15px;
  stroke: var(--teal); fill: none; stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}


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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin: 18px 0;
}

.divider.centered { margin: 18px auto; }

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag-gold { background: rgba(201,168,76,0.15); color: var(--gold); }
.tag-teal { background: rgba(42,127,127,0.12); color: var(--teal); }

.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.19s; }
.stagger > *:nth-child(4) { transition-delay: 0.26s; }
.stagger > *:nth-child(5) { transition-delay: 0.33s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }

@media (max-width: 580px) {
  section { padding: 64px 0; }
  .hero-content { padding: 100px 0 60px; }

  .services-carousel {
    margin-top: 44px;
  }

  .services-grid {
    grid-auto-columns: 88%;
    gap: 18px;
    padding-bottom: 10px;
  }

  .services-nav {
    display: none;
  }

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

@media (min-width: 581px) and (max-width: 900px) {
  .services-grid {
    grid-auto-columns: minmax(280px, calc((100% - 28px) / 2));
  }

  .services-nav {
    width: 46px;
    height: 46px;
  }

  .services-nav-prev { left: -12px; }
  .services-nav-next { right: -12px; }
}
