/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --red:          #C0202A;
  --red-dark:     #9a1820;
  --red-light:    #fdf2f2;
  --red-mid:      #f5c6c8;
  --grey:         #555555;
  --grey-light:   #f5f5f5;
  --grey-mid:     #e0e0e0;
  --text:         #1a1a1a;
  --text-muted:   #666666;
  --text-light:   #999999;
  --white:        #ffffff;
  --border:       #e8e8e8;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.14);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --transition:   180ms ease;
  --font-heading: 'Figtree', system-ui, sans-serif;
  --font-body:    'Noto Sans', system-ui, sans-serif;
  --z-navbar:     50;
  --navbar-h:     68px;
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ─── ACCESSIBILITY ──────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--red); color: #fff;
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; z-index: 200;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── LAYOUT ─────────────────────────────────────── */
.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 1.5rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }
.section { padding: 5rem 0; }
@media (min-width: 768px)  { .section { padding: 6.5rem 0; } }

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700; line-height: 1.2; color: var(--text);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; }
p  { color: var(--text-muted); }

.text-red { color: var(--red); }

/* ─── SECTION HEADERS ────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { max-width: 560px; margin: 0 auto; font-size: 1.0625rem; }
.section-badge {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9375rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 16px rgba(192,32,42,0.30);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  background-size: 200% 100%;
  background-position: -200% center;
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: inherit;
  pointer-events: none;
}
.btn-primary:hover::after {
  opacity: 1;
  animation: shimmer 0.55s ease forwards;
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 28px rgba(192,32,42,0.40);
  transform: translateY(-1px);
}

.btn-red {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 16px rgba(192,32,42,0.30);
  position: relative; overflow: hidden;
}
.btn-red::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  background-size: 200% 100%;
  background-position: -200% center;
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: inherit;
  pointer-events: none;
}
.btn-red:hover::after {
  opacity: 1;
  animation: shimmer 0.55s ease forwards;
}
.btn-red:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 28px rgba(192,32,42,0.40);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-1px);
}

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

.btn-lg { padding: 0.9375rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── REVEAL ANIMATION ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
  transition-delay: var(--anim-delay, 0ms);
}
.reveal.from-left  { transform: translateX(-32px); }
.reveal.from-right { transform: translateX(32px); }
.reveal.visible    { opacity: 1; transform: none; }

/* ─── KEYFRAMES ──────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  to { background-position: 200% center; }
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(192,32,42,0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(192,32,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,32,42,0); }
}
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
.floating { animation: float 4s ease-in-out infinite; }

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: var(--z-navbar);
  background: rgba(255,255,255,0.96);
  animation: navSlideDown 0.5s cubic-bezier(0.22,1,0.36,1) both;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 68px;
}
.logo-img {
  height: 62px; width: auto; display: block;
}

.nav-links {
  display: none; align-items: center; gap: 0.25rem; margin-left: auto;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: var(--font-heading); font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted); padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text); background: var(--grey-light);
}

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 0.5rem; margin-left: auto; background: none; border: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger:hover { background: var(--grey-light); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 250ms ease, opacity 150ms ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: flex; flex-direction: column; gap: 0.25rem;
  background: var(--white); border-top: 1px solid var(--border);
  overflow: hidden; max-height: 0; padding: 0 1.5rem;
  transition: max-height 350ms ease, padding 250ms ease;
  pointer-events: none;
}
.mobile-menu.open {
  max-height: 500px; padding: 1rem 1.5rem 1.5rem;
  pointer-events: all;
}
@media (min-width: 1024px) { .mobile-menu { display: none; } }

.mobile-menu a {
  font-family: var(--font-heading); font-weight: 500; font-size: 1rem;
  color: var(--text-muted); padding: 0.625rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover { background: var(--grey-light); color: var(--red); }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: calc(100vh - var(--navbar-h));
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.05);
  will-change: transform;
}

/* ─── Hero entrance — above fold, CSS-driven ─── */
.hero-badge {
  animation: fadeInUp 0.55s cubic-bezier(0.22,1,0.36,1) both 0.15s;
}
.hero-content h1 {
  animation: fadeInUp 0.65s cubic-bezier(0.22,1,0.36,1) both 0.3s;
}
.hero-sub {
  animation: fadeInUp 0.6s cubic-bezier(0.22,1,0.36,1) both 0.45s;
}
.hero-actions {
  animation: fadeInUp 0.6s cubic-bezier(0.22,1,0.36,1) both 0.6s;
}
.hero-stats {
  animation: fadeInUp 0.6s cubic-bezier(0.22,1,0.36,1) both 0.75s;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.75) 42%,
    rgba(8,8,8,0.38) 72%,
    rgba(8,8,8,0.15) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  padding-top: 6rem; padding-bottom: 6rem;
  width: 100%;
}

.hero-content { max-width: 620px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.88); font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 0.45rem 1rem; border-radius: 100px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.hero-badge svg { color: #4ade80; }

.hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: #fff; margin-bottom: 1.5rem; line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: 1.125rem; color: rgba(255,255,255,0.80);
  line-height: 1.75; margin-bottom: 2.25rem; max-width: 500px;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.875rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: inline-flex; align-items: stretch; gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 1.5rem 2.25rem;
  backdrop-filter: blur(8px);
}
.stat-item {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 0 2.5rem 0 0;
}
.stat-item:last-child { padding-right: 0; }
.stat-num-row { display: flex; align-items: baseline; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-heading); font-size: 2.75rem; font-weight: 800;
  color: #fff; line-height: 1; letter-spacing: -0.03em;
}
.stat-suffix { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--red); }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 0.35rem; white-space: nowrap; }
.stat-divider { width: 1px; height: 56px; background: rgba(255,255,255,0.18); margin-right: 2.5rem; flex-shrink: 0; align-self: center; }

/* Floating rating card — absolutely positioned on the right */
.hero-rating-card {
  display: none;
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  flex-direction: column; align-items: center; gap: 0.35rem;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
@media (min-width: 900px) {
  .hero-rating-card {
    display: flex;
    animation: fadeInRight 0.7s cubic-bezier(0.22,1,0.36,1) both 0.95s,
               float 4s ease-in-out 1.65s infinite;
  }
}

.rating-stars { display: flex; gap: 3px; }
.rating-stars svg { width: 20px; height: 20px; }
.rating-text { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: #fff; margin-top: 0.35rem; }
.rating-source { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 0.1rem; }

/* ═══════════════════════════════════════════════════
   JOURNEY STRIP
═══════════════════════════════════════════════════ */
.journey {
  background: var(--grey-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.journey-inner {
  display: flex; align-items: flex-start; gap: 1.25rem;
  flex-wrap: wrap; justify-content: center;
}
.journey-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-size: 0.875rem; font-weight: 600; color: var(--grey);
  text-align: center; min-width: 70px;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  cursor: default;
}
.journey-step:hover { transform: translateY(-5px); }
.journey-step--active { color: var(--red); }
.journey-icon {
  width: 68px; height: 68px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.journey-icon--active {
  background: var(--red-light); border-color: var(--red-mid);
  animation: pulseRing 2.2s ease infinite;
}
/* padding-top aligns arrow center with icon center: (68px icon - 12px arrow) / 2 = 28px */
.journey-arrow { color: var(--red); display: none; padding-top: 28px; }
@media (min-width: 640px) { .journey-arrow { display: block; } }
.journey-tagline {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
  color: var(--text-muted); letter-spacing: 0.03em; margin-left: 1.25rem;
  display: none; align-self: center;
}
@media (min-width: 1024px) { .journey-tagline { display: block; } }

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card--featured {
  background: var(--red); border-color: var(--red);
  box-shadow: 0 8px 28px rgba(192,32,42,0.25);
}
.service-card--featured:hover {
  box-shadow: 0 16px 40px rgba(192,32,42,0.35);
}

.service-img {
  position: relative; height: 220px; overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.service-card:hover .service-img img { transform: scale(1.07); }

.service-featured-tag {
  position: absolute; top: 0.875rem; right: 0.875rem; z-index: 1;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.25rem 0.625rem; border-radius: 100px;
}

.service-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.service-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--red-light); display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 0.875rem;
}
.service-icon--white {
  background: rgba(255,255,255,0.15); color: #fff;
}

.service-body h3 { margin-bottom: 0.625rem; }
.service-card--featured .service-body h3 { color: #fff; }
.service-body p { font-size: 0.9375rem; margin-bottom: 1rem; flex: 1; }
.service-card--featured .service-body p { color: rgba(255,255,255,0.85); }

.service-list { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.25rem; }
.service-list li {
  font-size: 0.875rem; color: var(--text-muted); padding-left: 1rem; position: relative;
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 4px; height: 4px; border-radius: 50%; background: var(--red);
}
.service-list--white li { color: rgba(255,255,255,0.8); }
.service-list--white li::before { background: rgba(255,255,255,0.6); }

.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700;
  color: var(--red); margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 0.65rem; color: var(--red-dark); }
.service-link--white { color: rgba(255,255,255,0.9); }
.service-link--white:hover { color: #fff; gap: 0.65rem; }

/* Extra services */
.extra-services {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  padding: 1.75rem; background: var(--grey-light);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.extra-service-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  background: var(--white); border: 1px solid var(--border);
  padding: 0.5rem 0.875rem; border-radius: 100px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.extra-service-item:hover { border-color: var(--red-mid); color: var(--red); background: var(--red-light); }

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about { background: var(--grey-light); }

.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.about-text .section-badge { margin-bottom: 0.75rem; display: block; }
.about-text h2 { margin-bottom: 1rem; }
.about-lead {
  font-size: 1.0625rem; font-weight: 500; color: var(--text);
  margin-bottom: 1rem; line-height: 1.7;
}
.about-text > p { margin-bottom: 1.75rem; line-height: 1.75; }

.about-features { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; }
.about-feature { display: flex; align-items: flex-start; gap: 0.75rem; }
.about-feature-icon {
  width: 28px; height: 28px; border-radius: 6px; background: var(--red-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.1rem;
}
.about-feature strong { display: block; font-size: 0.9375rem; color: var(--text); font-weight: 600; }
.about-feature span { font-size: 0.875rem; color: var(--text-muted); }

.about-gallery { display: flex; flex-direction: column; gap: 0.75rem; }
.gallery-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4/3;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-main:hover img { transform: scale(1.03); }
.gallery-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.gallery-small {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); aspect-ratio: 4/3;
}
.gallery-small img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-small:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════════ */
.team { background: var(--white); }

/* Mobile-first: 1 column on tiny screens */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
/* 2 columns from 480px */
@media (min-width: 480px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
/* 3 columns from 768px */
@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 1.125rem; }
}
/* 4 columns from 1024px */
@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.125rem 1rem;
  display: flex; align-items: center; gap: 0.875rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  min-width: 0; /* prevent overflow */
}
@media (min-width: 768px) {
  .team-card { padding: 1.375rem 1.25rem; gap: 1rem; }
}
.team-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
  border-color: var(--red-mid);
}

/* Lead card always spans full width on small screens */
.team-card--lead {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-color: transparent;
  grid-column: 1 / -1;
  box-shadow: 0 8px 28px rgba(192,32,42,0.25);
  padding: 1.5rem 1.25rem;
}
/* On desktop (4 cols), lead card only spans 2 */
@media (min-width: 1024px) {
  .team-card--lead { grid-column: span 2; padding: 1.75rem 1.5rem; }
}
.team-card--lead:hover {
  box-shadow: 0 12px 36px rgba(192,32,42,0.35);
  border-color: transparent;
}

.team-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red-light); color: var(--red);
  font-family: var(--font-heading); font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 2px solid var(--red-mid);
}
@media (min-width: 768px) {
  .team-avatar { width: 50px; height: 50px; font-size: 0.95rem; }
}
.team-avatar--lead {
  width: 58px; height: 58px;
  background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: #fff;
  font-size: 1.1rem;
}
@media (min-width: 1024px) {
  .team-avatar--lead { width: 66px; height: 66px; }
}

.team-info { min-width: 0; } /* allow text truncation */
.team-info h3 { font-size: 0.9375rem; margin-bottom: 0.15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (min-width: 768px) { .team-info h3 { font-size: 1rem; } }
.team-card--lead .team-info h3 { color: #fff; white-space: normal; font-size: 1.05rem; }
.team-role { font-size: 0.8rem; color: var(--text-muted); display: block; }
.team-card--lead .team-role { color: rgba(255,255,255,0.75); font-size: 0.8125rem; }
.team-credential {
  display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.15); padding: 0.2rem 0.6rem; border-radius: 100px;
  margin-top: 0.4rem;
}
.team-rating {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted); margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials { background: var(--grey-light); }

.fresha-rating {
  display: flex; align-items: center; justify-content: center; gap: 0.625rem;
  margin-top: 0.875rem; font-size: 0.9375rem; color: var(--text-muted);
}
.fresha-stars { display: flex; gap: 2px; }

.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.testimonial-stars { display: flex; gap: 2px; }

.testimonial-card p {
  font-size: 0.9375rem; line-height: 1.7; color: var(--text-muted); flex: 1;
}
.testimonial-card footer {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-card footer strong { display: block; font-size: 0.9375rem; color: var(--text); }
.testimonial-card footer span { font-size: 0.8125rem; color: var(--text-muted); }

.test-cta { text-align: center; }

/* ═══════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════ */
.pricing { background: var(--white); }

.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(5, 1fr); } }

.price-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.price-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--red-mid);
}
.price-card--gesy {
  background: var(--red-light); border-color: var(--red-mid);
}

.price-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--red-light); display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 1rem;
}
.price-card--gesy .price-icon { background: rgba(192,32,42,0.1); }

.price-card h3 { font-size: 1rem; margin-bottom: 0.625rem; }
.price-amount {
  font-family: var(--font-heading); font-size: 1.875rem; font-weight: 800;
  color: var(--red); letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.625rem;
}
.price-unit { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.price-card p { font-size: 0.875rem; line-height: 1.6; }
.price-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; padding: 0.25rem 0.625rem; border-radius: 100px; margin-top: 0.75rem;
}
.gesy-label { color: var(--red); background: rgba(192,32,42,0.12); }
.pricing-note { text-align: center; font-size: 0.875rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact { background: var(--grey-light); }

.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }

/* Form */
.form-row {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem; font-size: 0.9375rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,32,42,0.12);
}
.form-group input.error, .form-group textarea.error { border-color: #ef4444; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-error { font-size: 0.8rem; color: #ef4444; font-weight: 500; min-height: 1rem; }

/* ─── intl-tel-input overrides ───────────────────── */
.iti { width: 100%; }
.iti__tel-input {
  width: 100% !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  padding-right: 1rem !important;
  font-size: 0.9375rem !important;
  background: var(--white) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  color: var(--text) !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
  outline: none !important;
  font-family: var(--font-body) !important;
}
.iti__tel-input:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(192,32,42,0.12) !important;
}
.iti__tel-input::placeholder { color: var(--text-light) !important; }
.iti__selected-country {
  background: var(--grey-light) !important;
  border-radius: var(--radius-md) 0 0 var(--radius-md) !important;
  padding: 0 0.5rem 0 0.75rem !important;
  gap: 0.35rem !important;
}
.iti__selected-country:hover,
.iti__selected-country[aria-expanded="true"] { background: var(--grey-mid) !important; }
.iti__selected-dial-code {
  font-size: 0.9rem !important;
  font-family: var(--font-body) !important;
  color: var(--text) !important;
  font-weight: 500 !important;
}
.iti__country-list {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-md) !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
}
.iti__country.iti__highlight,
.iti__country:hover {
  background: var(--red-light) !important;
}
.iti__dial-code { color: var(--text-muted) !important; }
.form-success {
  margin-top: 0.75rem; font-size: 0.9375rem; font-weight: 600;
  color: #16a34a; text-align: center;
}

/* Contact info */
.contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.75rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--red-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.contact-info-item a, .contact-info-item span, .contact-info-item address {
  display: block; font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
}
.contact-info-item a:hover { color: var(--red); }

.contact-booking-links { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.5rem; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer { background: #1a1a1a; color: rgba(255,255,255,0.6); }

.footer-inner {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-top: 4rem; padding-bottom: 3rem;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-logo { height: 40px; width: auto; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background var(--transition), color var(--transition);
}
.footer-social-link:hover { background: var(--red); color: #fff; }

.footer-col h4 {
  font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-bottom: 1.125rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }

.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 767px) {
  /* Darker uniform overlay on mobile — image is full bleed so text needs contrast */
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(8,8,8,0.88) 0%,
      rgba(8,8,8,0.72) 55%,
      rgba(8,8,8,0.82) 100%
    );
  }

  .hero { min-height: calc(100svh - var(--navbar-h)); }
  .hero-inner { padding-top: 5.5rem; padding-bottom: 2.5rem; }

  /* Badge: single line, smaller */
  .hero-badge {
    font-size: 0.7rem; padding: 0.35rem 0.75rem;
    margin-bottom: 1.25rem; white-space: nowrap;
  }

  /* Headline */
  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    margin-bottom: 1rem; line-height: 1.1;
  }

  /* Subtitle */
  .hero-sub { font-size: 0.9375rem; line-height: 1.65; margin-bottom: 1.75rem; }

  /* Button */
  .hero-actions { flex-direction: column; align-items: stretch; margin-bottom: 2rem; }
  .hero-actions .btn { justify-content: center; }

  /* Stats: 3-column grid — compact, clean */
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0.625rem 0.75rem;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
  }
  .stat-divider { display: none; }
  .stat-item {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 0.25rem 0.375rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    gap: 0.15rem;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num-row {
    display: flex; align-items: baseline;
    justify-content: center; gap: 0.1rem;
  }
  .stat-num { font-size: 1.25rem; line-height: 1; }
  .stat-suffix { font-size: 0.95rem; line-height: 1; }
  .stat-label {
    font-size: 0.6rem; text-align: center;
    line-height: 1.25; word-break: break-word;
    max-width: 100%;
  }

  /* Journey: 4-column grid so all steps fit in one row */
  .journey-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.375rem;
    justify-items: center;
  }
  .journey-step { min-width: 0; width: 100%; font-size: 0.7rem; gap: 0.3rem; }
  .journey-icon { width: 52px; height: 52px; }
  .journey-icon svg { max-width: 28px; max-height: 32px; width: 100%; height: auto; }
  .journey-tagline { display: none !important; }
}

input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); }
