/* ============ FONTS ============ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============ VARIABLES ============ */
:root {
  --teal-deep: #006774;
  --teal: #159EB5;
  --aqua: #96D5D2;
  --amber: #FC9200;
  --orange: #FF6B01;
  --paper: #F4FBFC;
  --paper-warm: #E6F3F4;
  --ink: #003840;
  --ink-soft: #0B5C68;
  --muted: #5A8187;
  --accent: var(--orange);
  --accent-dark: #D95400;
  --gold: var(--amber);
  --border: rgba(0, 56, 64, 0.12);
  --border-strong: rgba(0, 56, 64, 0.25);
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1400px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.00 0 0 0 0 0.22 0 0 0 0 0.25 0 0 0 0.1 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

em { font-style: italic; font-family: var(--serif); color: var(--accent); }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
img { max-width: 100%; display: block; }

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem var(--pad);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 45, 52, 0.12);
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

/* Transparent state — home page hero overlay */
nav.nav-transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
nav.nav-transparent .nav-links a { color: rgba(255,255,255,0.9); }
nav.nav-transparent .nav-links a:hover,
nav.nav-transparent .nav-links a.active { color: #fff; }
nav.nav-transparent .menu-toggle { color: #fff; }
nav.nav-transparent .nav-cta {
  background: var(--amber);
  color: #fff;
}

/* Logo image — mix-blend-mode:screen makes the black bg disappear on the dark nav */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(1.05) saturate(1.1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 0.3rem 0;
  color: var(--ink);
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--amber);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 0.65rem 1.35rem;
  background: var(--amber);
  color: var(--ink);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-cta:hover { background: var(--orange); color: #fff; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: rgba(0,45,52,0.9); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  padding: calc(var(--pad) + 6.5rem) var(--pad) 3.5rem;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--border);
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.page-hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.page-hero p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.7;
}

/* ============ HERO SLIDER (home) ============ */
/* ---- Hero slider: fixed 16/9 aspect ratio, no cropping ---- */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  margin-top: 96px;          /* clear fixed white navbar */
  overflow: hidden;
  background-color: #1c1408; /* warm dark fill for letterbox bars */
}

/* Each slide: contain so entire image is always visible */
.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #1c1408; /* same warm fill on every slide */
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slider .slide.active { opacity: 1; }

/* Overlay only behind the text area (bottom third) — not the full image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.45) 28%,
    transparent 52%
  );
  z-index: 1;
  pointer-events: none;
}

/* Text block — bottom-left, always inside the container */
.hero-slider-content {
  position: absolute;
  bottom: 8%;
  left: var(--pad);
  right: var(--pad);
  z-index: 2;
  max-width: 640px;
}
.hero-eyebrow-slider {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.8rem;
}
.hero-slider-content h1 {
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.hero-slider-content h1 em { font-style: italic; color: var(--amber); }
.hero-slider-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--amber);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-hero:hover { background: var(--orange); transform: translateX(4px); }

/* Slider controls — percentage-based so they scale with container */
.slider-arrows {
  position: absolute;
  bottom: 8%;
  right: var(--pad);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.slider-prev, .slider-next {
  width: 42px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s ease, border-color 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.slider-prev:hover, .slider-next:hover {
  background: var(--amber);
  border-color: var(--amber);
}
.slider-dots {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.sdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.sdot.active { background: var(--amber); transform: scale(1.3); }

/* ============ SERVICES STRIP ============ */
.services-strip {
  display: flex;
  align-items: stretch;
  background: var(--ink);
  overflow-x: auto;
  scrollbar-width: none;
}
.services-strip::-webkit-scrollbar { display: none; }
.strip-item {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.4rem 1rem;
  color: rgba(255,255,255,0.75);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--amber); color: #fff; }
.strip-icon { font-size: 1.6rem; line-height: 1; }
.strip-item span { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; text-align: center; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.8rem;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 560px;
}

.meta-item .num {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}
.meta-item .num span { color: var(--accent); }
.meta-item .label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.45rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.8rem;
  background: var(--teal-deep);
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid var(--teal-deep);
}
.btn span { transition: transform 0.3s ease; }
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn:hover span { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.8rem;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-ghost:hover { background: var(--teal-deep); color: var(--paper); border-color: var(--teal-deep); }

.hero-visual {
  position: relative;
  height: 600px;
}
.hero-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 78%; height: 78%;
  background-image: url('https://images.unsplash.com/photo-1512632578888-169bbbc64f33?w=900&q=80');
  background-size: cover;
  background-position: center;
  filter: grayscale(15%) contrast(1.05);
}
.hero-img-sub {
  position: absolute;
  bottom: 0; left: 0;
  width: 52%; height: 45%;
  background-image: url('https://images.unsplash.com/photo-1562602833-0f4ab2fc46e3?w=700&q=80');
  background-size: cover;
  background-position: center;
  border: 8px solid var(--paper);
  box-shadow: 0 20px 50px -10px rgba(20, 16, 11, 0.25);
}
.hero-label {
  position: absolute;
  bottom: 14%; right: -2rem;
  transform: rotate(-90deg);
  transform-origin: right center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ============ SCENIC BANNER ============ */
.scenic-banner {
  position: relative;
  height: 480px;
  background-image: url('https://images.unsplash.com/photo-1539650116574-75c0c6d73f6e?w=1800&q=85');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}
.scenic-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,45,52,0.82) 0%, rgba(0,45,52,0.35) 100%);
}
.scenic-overlay {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  padding: 0 var(--pad);
}
.scenic-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.scenic-overlay h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--paper);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.25;
}

/* ============ DMC GALLERY ============ */
.dmc-gallery-section {
  padding: 5rem 0 6rem;
  background: var(--paper-warm);
}
.dmc-gallery-section .section-header {
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto 3rem;
}
.dmc-gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 0.6rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.dmc-photo {
  position: relative;
  overflow: hidden;
}
.dmc-photo--large {
  grid-row: span 2;
}
.dmc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.93);
}
.dmc-photo:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.dmc-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(0,30,36,0.78) 0%, transparent 100%);
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============ DESTINATIONS SCROLL ============ */
.destinations-section {
  padding: 5rem 0 6rem;
}
.destinations-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto 2.5rem;
}
.destinations-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  margin-top: 0.5rem;
}
.destinations-scroll {
  display: flex;
  gap: 1rem;
  padding: 0 var(--pad) 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.destinations-scroll::-webkit-scrollbar { display: none; }
.dest-card {
  position: relative;
  flex: 0 0 280px;
  height: 380px;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  scroll-snap-align: start;
}
.dest-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-img { transform: scale(1.06); }
.dest-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem 1.25rem;
}
.dest-label span {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============ PARTNERS CAROUSEL ============ */
.partners-section {
  padding: 3rem 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.partners-inner { overflow: hidden; }
.partners-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  width: max-content;
  animation: partnersScroll 22s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
.partner-logo {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.6rem 2rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  white-space: nowrap;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.partner-logo:hover { color: var(--ink); border-color: var(--ink-soft); }
@keyframes partnersScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
  background: var(--ink);
  padding: 5rem var(--pad);
}
.newsletter-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.newsletter-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 0.6rem;
}
.newsletter-text p {
  font-size: 0.95rem;
  color: rgba(244,251,252,0.6);
  max-width: 420px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 520px;
  min-width: 280px;
}
.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--paper);
  font-size: 0.9rem;
  border-radius: 4px 0 0 4px;
  outline: none;
  transition: border-color 0.3s ease;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--amber); }
.newsletter-btn {
  padding: 0.9rem 1.8rem;
  background: var(--amber);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter-btn:hover { background: var(--orange); }

/* Trust line */
.trust-line {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.trust-line strong { color: var(--ink); font-weight: 600; }
.trust-line .divider { width: 4px; height: 4px; background: var(--teal); border-radius: 50%; }

/* ============ SECTIONS ============ */
section {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 10vh, 8rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.section-number {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.section-header { max-width: 780px; margin-bottom: 4.5rem; }
.section-header h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 400; }
.section-header p {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.7;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background-image: url('https://images.unsplash.com/photo-1539650116574-75c0c6d73f6e?w=800&q=80');
  background-size: cover;
  background-position: center;
  filter: grayscale(20%);
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--paper);
  pointer-events: none;
}

.about-content h2 { font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 1.75rem; }
.about-content p { color: var(--ink-soft); margin-bottom: 1.25rem; font-size: 1.02rem; line-height: 1.75; }

.credentials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.credential {
  padding: 0.5rem 1rem;
  background: var(--paper-warm);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.credential.highlight { background: var(--teal-deep); color: var(--paper); border-color: var(--teal-deep); }

/* ============ TK FEATURE ============ */
.tk-feature {
  background: var(--teal-deep);
  color: var(--paper);
  max-width: none;
  margin: 0;
  padding: clamp(4rem, 8vh, 7rem) var(--pad);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--aqua);
}
.tk-feature::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 1, 0.22) 0%, transparent 70%);
  pointer-events: none;
}
.tk-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.tk-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.tk-feature h2 { color: var(--paper); font-size: clamp(2.2rem, 4.5vw, 3.8rem); margin-bottom: 2rem; }
.tk-feature h2 em { color: var(--accent); }
.tk-feature p { color: rgba(244,251,252,0.75); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.25rem; }
.tk-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(244,251,252,0.15);
}
.tk-stat .num { font-family: var(--serif); font-size: 2.5rem; color: var(--paper); line-height: 1; margin-bottom: 0.5rem; }
.tk-stat .num em { color: var(--amber); font-style: normal; }
.tk-stat .label { font-size: 0.8rem; color: rgba(244,251,252,0.6); letter-spacing: 0.05em; text-transform: uppercase; }
.tk-visual {
  position: relative;
  aspect-ratio: 3/4;
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=800&q=80');
  background-size: cover;
  background-position: center;
  filter: grayscale(30%);
}
.tk-visual::after {
  content: 'OFFICIAL PARTNER';
  position: absolute;
  bottom: 2rem; left: 2rem;
  padding: 0.8rem 1.25rem;
  background: var(--accent);
  color: var(--paper);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.service {
  padding: 2.75rem 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--paper);
  transition: background 0.35s ease;
}
.service:hover { background: rgba(150,213,210,0.18); }
.service:hover .service-link { color: var(--accent); }
.service:hover .service-link span { transform: translateX(5px); }

.service-icon {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.service-icon-symbol { font-size: 1.4rem; color: var(--accent); }
.service h3 { font-size: 1.55rem; margin-bottom: 1rem; font-weight: 500; }
.service p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.5rem; }

.service-features { list-style: none; margin-bottom: 1.5rem; }
.service-features li {
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  position: relative;
  padding-left: 1.1rem;
}
.service-features li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
}
.service-link span { transition: transform 0.3s ease; }

.view-all-wrap { text-align: center; margin-top: 3rem; }

/* ============ SECTOR CARDS (Transportation / Ticketing) ============ */
.sector-intro {
  max-width: 680px;
  margin-bottom: 3.5rem;
}
.sector-intro p { font-size: 1.08rem; color: var(--ink-soft); line-height: 1.7; margin-top: 1.25rem; }

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 0;
}

.sector-card {
  padding: 2.25rem 2rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: 2px;
  transition: all 0.35s ease;
  position: relative;
}
.sector-card:hover {
  border-top-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 103, 116, 0.14);
}

.sector-card-icon {
  width: 54px; height: 54px;
  background: rgba(21, 158, 181, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--teal-deep);
  transition: background 0.3s ease;
}
.sector-card:hover .sector-card-icon { background: rgba(21, 158, 181, 0.2); }
.sector-card-icon svg { width: 26px; height: 26px; }

.sector-card h3 { font-size: 1.25rem; margin-bottom: 0.65rem; font-weight: 500; }
.sector-card p { font-size: 0.93rem; color: var(--ink-soft); line-height: 1.65; }

.sector-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.sector-stat {
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-right: 1px solid var(--border);
}
.sector-stat:last-child { border-right: none; padding-left: 1.5rem; padding-right: 0; }
.sector-stat .num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.04em;
}
.sector-stat .num span { color: var(--accent); }
.sector-stat .label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* Sector highlight band */
.sector-band {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #005060 100%);
  max-width: none;
  margin: 0;
  padding: clamp(4rem, 8vh, 6rem) var(--pad);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.sector-band::before {
  content: '';
  position: absolute;
  right: -10%; top: -40%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(150,213,210,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.sector-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.sector-band h2 { color: var(--paper); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.25rem; }
.sector-band h2 em { color: var(--amber); }
.sector-band p { color: rgba(244,251,252,0.78); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.25rem; }
.sector-band-list { list-style: none; margin-top: 1.75rem; }
.sector-band-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(244,251,252,0.12);
  font-size: 0.95rem;
  color: rgba(244,251,252,0.82);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sector-band-list li::before { content: '→'; color: var(--amber); font-size: 0.9rem; }

/* ============ CLIENTS ============ */
.clients-section {
  background: var(--paper-warm);
  max-width: none;
  margin: 0;
  padding: clamp(4rem, 8vh, 6rem) var(--pad);
}
.clients-inner { max-width: var(--max); margin: 0 auto; }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.client {
  padding: 2.2rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
  transition: background 0.3s ease;
}
.client:hover { background: var(--paper); }
.client-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--ink); margin-bottom: 0.3rem; }
.client-sector { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

.industries { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.industry-tag {
  padding: 0.55rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ============ METRICS ============ */
.metrics-section {
  background: var(--teal-deep);
  color: var(--paper);
  max-width: none;
  margin: 0;
  padding: clamp(4rem, 8vh, 7rem) var(--pad);
}
.metrics-inner { max-width: var(--max); margin: 0 auto; }
.metrics-section h2 { color: var(--paper); }
.metrics-section h2 em { color: var(--accent); }
.metrics-section .section-header p { color: rgba(244,251,252,0.7); }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(244,251,252,0.15);
}
.metric { padding: 2.5rem 1.5rem 0 0; border-right: 1px solid rgba(244,251,252,0.15); }
.metric:last-child { border-right: none; }
.metric .num { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; margin-bottom: 0.75rem; font-weight: 400; }
.metric .num em { color: var(--accent); font-style: normal; }
.metric .label { font-size: 0.85rem; color: rgba(244,251,252,0.65); letter-spacing: 0.05em; line-height: 1.4; max-width: 200px; }

.case-highlight {
  margin-top: 4rem;
  padding: 2.5rem;
  border: 1px solid rgba(244,251,252,0.2);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}
.case-label { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.case-highlight p { font-family: var(--serif); font-size: 1.35rem; line-height: 1.45; color: var(--paper); font-weight: 400; }
.case-highlight p em { color: var(--accent); font-style: italic; }

/* ============ PARTNERS ============ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.partner {
  padding: 2rem;
  background: var(--paper);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.partner:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 15px 30px -10px rgba(20,16,11,0.15); }
.partner-symbol { font-family: var(--serif); font-size: 1.8rem; color: var(--accent); margin-bottom: 1rem; font-weight: 500; }
.partner h4 { font-size: 1.15rem; margin-bottom: 0.5rem; font-weight: 500; }
.partner p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* ============ WHY US ============ */
.why-section {
  background: var(--paper-warm);
  max-width: none;
  margin: 0;
  padding: clamp(4rem, 8vh, 7rem) var(--pad);
}
.why-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.why-points { display: flex; flex-direction: column; gap: 0; }
.why-point {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: padding 0.3s ease;
}
.why-point:first-child { border-top: 1px solid var(--border); }
.why-point:hover { padding-left: 0.5rem; }
.why-num { font-family: var(--serif); font-size: 1.1rem; color: var(--accent); font-style: italic; }
.why-point h4 { font-size: 1.2rem; margin-bottom: 0.4rem; font-weight: 500; }
.why-point p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: clamp(5rem, 10vh, 8rem) var(--pad);
  text-align: center;
  max-width: var(--max);
  margin: 0 auto;
}
.cta-banner .section-number { margin-bottom: 1.5rem; }
.cta-banner h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.75rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.cta-banner p { font-size: 1.08rem; color: var(--ink-soft); max-width: 620px; margin: 0 auto 3rem; line-height: 1.7; }
.cta-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3.5rem;
}
.cta-option {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--paper);
  text-align: left;
  transition: all 0.3s ease;
  display: block;
}
.cta-option:hover { border-color: var(--teal-deep); transform: translateY(-3px); }
.cta-option-num { font-family: var(--serif); font-size: 0.9rem; color: var(--accent); font-style: italic; margin-bottom: 0.75rem; }
.cta-option h4 { font-size: 1.15rem; margin-bottom: 0.5rem; font-weight: 500; }
.cta-option p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; margin: 0; text-align: left; }

/* ============ CONTACT ============ */
.contact {
  background: var(--teal-deep);
  color: var(--paper);
  max-width: none;
  margin: 0;
  padding: clamp(5rem, 10vh, 8rem) var(--pad);
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact h2 { color: var(--paper); font-size: clamp(2.2rem, 4.5vw, 3.5rem); margin-bottom: 1.75rem; }
.contact h2 em { color: var(--accent); }
.contact p { color: rgba(244,251,252,0.75); font-size: 1.02rem; line-height: 1.7; margin-bottom: 2.5rem; }

.contact-methods { display: flex; flex-direction: column; gap: 0; }
.contact-method {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(244,251,252,0.15);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: center;
}
.contact-method:first-child { border-top: 1px solid rgba(244,251,252,0.15); }
.contact-method .label { font-size: 0.75rem; color: rgba(244,251,252,0.5); letter-spacing: 0.12em; text-transform: uppercase; }
.contact-method a, .contact-method span.value { color: var(--paper); font-size: 1rem; transition: color 0.3s ease; }
.contact-method a:hover { color: var(--amber); }

/* ============ FOOTER ============ */
footer {
  background: #002A30;
  color: rgba(244,251,252,0.7);
  padding: 4rem var(--pad) 2rem;
  position: relative;
  z-index: 2;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244,251,252,0.1);
}
.footer-logo-img {
  height: 90px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0.92;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 1rem; }
.footer-address { font-size: 0.85rem; color: rgba(244,251,252,0.5); }
.footer-col h4 {
  color: var(--paper);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--sans);
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 0.4rem 0; }
.footer-col ul a { font-size: 0.9rem; color: rgba(244,251,252,0.6); transition: color 0.3s ease; }
.footer-col ul a:hover { color: var(--amber); }

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(244,251,252,0.4);
}
.footer-socials { display: flex; gap: 1.75rem; }
.footer-socials a { color: rgba(244,251,252,0.5); transition: color 0.3s ease; }
.footer-socials a:hover { color: var(--amber); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav-links { gap: 1.4rem; }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding-top: 9rem; min-height: auto; }
  .hero-visual { height: 500px; }
  .about-grid, .tk-inner, .why-inner, .contact-inner, .sector-band-inner { grid-template-columns: 1fr; gap: 3rem; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric { border-right: 1px solid rgba(244,251,252,0.15) !important; padding: 2rem 1.25rem 2rem 0; border-bottom: 1px solid rgba(244,251,252,0.15); }
  .metric:nth-child(2n) { border-right: none !important; }
  .case-highlight { grid-template-columns: 1fr; gap: 1rem; padding: 2rem; }
  .cta-options { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sector-stats { grid-template-columns: 1fr 1fr; }
  .sector-stat:nth-child(2) { border-right: none; }
  .sector-stat:last-child { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .meta-item .num { font-size: 1.7rem; }
  .meta-item .label { font-size: 0.68rem; }
  .hero h1 { font-size: 2.3rem; }
  .hero-img-main { width: 85%; height: 75%; }
  .hero-img-sub { width: 50%; height: 40%; }
  .hero-label { display: none; }
  /* Tablet: slightly taller ratio */
  .hero-slider { aspect-ratio: 4 / 3; min-height: 340px; }
  .hero-slider-content { bottom: 7%; }
  .slider-arrows { bottom: 7%; }
  .strip-item span { font-size: 0.65rem; }
  .destinations-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .dest-card { flex: 0 0 220px; height: 300px; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .scenic-banner { background-attachment: scroll; height: 380px; }
  .dmc-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dmc-photo--large { grid-row: span 1; }
  .dmc-photo { height: 280px; }
  .destinations-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .dest-card--large { grid-row: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 2rem 1.5rem; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-method { grid-template-columns: 1fr; gap: 0.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-line { justify-content: center; text-align: center; }
  .case-highlight p { font-size: 1.1rem; }
  .page-hero { padding-top: calc(var(--pad) + 5rem); }
  .sector-stats { grid-template-columns: 1fr; }
  .sector-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
  .logo-img { height: 62px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-slot.featured { grid-column: span 2; aspect-ratio: 16/9; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .photo-slot.featured { grid-column: span 1; aspect-ratio: 4/3; }
  /* Mobile portrait: 4/5 ratio so image fills nicely */
  .hero-slider { aspect-ratio: 4 / 5; min-height: 300px; }
  .hero-slider-content { bottom: 6%; }
  .slider-arrows { bottom: 6%; }
  .hero-slider-content h1 { font-size: 1.5rem; }
  .hero-slider-content p { font-size: 0.88rem; }
}

/* ============ SERVICE MODAL ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 40, 46, 0.78);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }

.modal-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.97);
  width: min(880px, calc(100vw - 2rem));
  max-height: 88vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 18px;
  z-index: 301;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 100px -20px rgba(0, 40, 46, 0.45);
}
.modal-panel.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
body.modal-open { overflow: hidden; }

.modal-close {
  position: sticky;
  top: 1.25rem;
  float: right;
  margin: 1.25rem 1.25rem 0 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--paper);
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.modal-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.modal-content { padding: 0 2.5rem 3rem; clear: both; }

.modal-eyebrow {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.modal-title {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.5vw, 2.3rem);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.modal-title em { color: var(--teal-deep); font-style: italic; }

.modal-desc {
  color: var(--ink-soft);
  line-height: 1.78;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 68ch;
}

.modal-sub-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.875rem;
}

.modal-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem 2.5rem;
  margin-bottom: 2.5rem;
}
.modal-features li {
  list-style: none;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.modal-features li::before { content: '—'; position: absolute; left: 0; color: var(--teal); }

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.modal-photo {
  aspect-ratio: 4/3;
  background: var(--paper-warm);
  border: 2px dashed rgba(0,103,116,0.22);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s;
}
.modal-photo.wide { grid-column: span 2; aspect-ratio: 16/9; }
.modal-photo:hover { border-color: var(--teal); }
.modal-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.modal-photo img:hover { transform: scale(1.04); }
.modal-photo-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.modal-photo-ph svg { opacity: 0.35; color: var(--muted); }
.modal-photo-ph span { font-size: 0.67rem; letter-spacing: 0.04em; color: var(--muted); opacity: 0.6; }

.modal-cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 640px) {
  .modal-content { padding: 0 1.25rem 2.5rem; }
  .modal-gallery { grid-template-columns: repeat(2, 1fr); }
  .modal-photo.wide { grid-column: span 2; aspect-ratio: 3/2; }
  .modal-features { grid-template-columns: 1fr; }
}

/* ============ PHOTO GALLERY ============ */
.photo-gallery-section {
  padding: clamp(4rem, 8vh, 7rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.gallery-set { margin-bottom: 4rem; }
.gallery-set:last-child { margin-bottom: 0; }

.gallery-set-label {
  font-size: 0.78rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}

.photo-slot {
  aspect-ratio: 4/3;
  background: var(--paper-warm);
  border: 2px dashed var(--border-strong);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.photo-slot:hover { border-color: var(--teal); background: rgba(21, 158, 181, 0.05); }

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.photo-slot img:hover { transform: scale(1.04); }

.photo-slot.featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.photo-slot-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--muted);
  pointer-events: none;
}

.photo-slot-inner svg { opacity: 0.45; }

.photo-slot-inner .slot-name {
  font-size: 0.72rem;
  font-family: var(--sans);
  letter-spacing: 0.05em;
  color: var(--muted);
  opacity: 0.7;
}
