/* ============================================================
   CAVMIR — MAIN STYLESHEET
   The Multi-Channel Revenue Engine
   ============================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  --burgundy:   #6B214B;
  --burgundy-80: rgba(107, 33, 75, 0.82);
  --burgundy-50: rgba(107, 33, 75, 0.50);
  --gold:       #D4AF37;
  --gold-light: rgba(212, 175, 55, 0.15);
  --orange:     #FF914D;
  --black:      #000000;
  --white:      #FFFFFF;
  --off-white:  #F8F5F0;
  --red:        #FF3131;
  --green:      #00BF63;

  --font-primary:   'Ubuntu', 'Open Sans', sans-serif;
  --font-editorial: 'Cormorant Garamond', serif;

  --nav-h: 72px;
  --section-pad: clamp(60px, 8vw, 120px);
  --container:  1280px;
  --radius:     4px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.editorial { font-family: var(--font-editorial); font-weight: 300; letter-spacing: 0.04em; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color var(--transition);
}
.nav.scrolled .nav-logo-text { color: var(--burgundy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition), opacity var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--black); }
.nav-links a:hover { opacity: 0.75; }

.nav-cta {
  padding: 10px 24px;
  background: var(--burgundy);
  color: var(--white) !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold); color: var(--black) !important; opacity: 1 !important; }

/* Mobile Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav.scrolled .nav-hamburger span { background: var(--black); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--burgundy);
  padding: calc(var(--nav-h) + 40px) 40px 40px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  letter-spacing: -0.01em;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--burgundy-80) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 4vw, 60px);
  max-width: 820px;
  margin: 0 auto 0 clamp(20px, 8vw, 120px);
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero h1 em {
  font-style: italic;
  font-family: var(--font-editorial);
  font-weight: 300;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Gold scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounceScroll 2s infinite;
}
.hero-scroll::before {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--burgundy); transform: translateY(-2px); }
.btn-burgundy {
  background: var(--burgundy);
  color: var(--white);
}
.btn-burgundy:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

/* ============================================================
   PLATFORMS STRIP
   ============================================================ */
.platforms-strip {
  background: var(--off-white);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 28px 0;
}
.platforms-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}
.platform-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  white-space: nowrap;
}
.platform-logos {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  flex-wrap: wrap;
  justify-content: center;
}
.platform-item {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--black);
  opacity: 0.7;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.platform-item:hover { opacity: 1; }
.platform-item .dot { color: var(--burgundy); }
.platform-item .airbnb-color { color: #FF5A5F; }
.platform-item .booking-color { color: #003580; }
.platform-item .expedia-color { color: #1D3C7C; }
.platform-item .vrbo-color { color: #1354B8; }
.platform-item .google-color { color: #4285F4; }

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--burgundy); color: var(--white); }
.section-off { background: var(--off-white); }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-dark .section-eyebrow { color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  font-family: var(--font-editorial);
  font-weight: 300;
  color: var(--gold);
}
.section-dark .section-title { color: var(--white); }
.section-body {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 620px;
  opacity: 0.8;
}
.section-dark .section-body { color: rgba(255,255,255,0.82); }

/* Gold divider */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}
.gold-divider-center { margin: 24px auto; }

/* ============================================================
   INTRO / ABOUT SPLIT
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.intro-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 2px solid var(--gold);
  z-index: -1;
}
.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat-item { flex: 1; min-width: 120px; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}

/* ============================================================
   12-STEP PROCESS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.2);
}
.step-card {
  background: var(--burgundy);
  padding: 40px 32px;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: rgba(212,175,55,0.06);
  border-radius: 50% 0 0 0;
}
.step-card:hover { background: #7D2757; }
.step-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.step-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}
.step-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.service-card:hover img { transform: scale(1.05); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--burgundy-80) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(107,33,75,0.95) 60%, rgba(107,33,75,0.4) 100%);
}
.service-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.service-card-arrow {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   LOCATIONS GRID
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.location-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.location-card:hover img { transform: scale(1.06); }
.location-card-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107,33,75,0.9) 35%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
}
.location-card-city {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.location-card-country {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   LOCATION STATS BOX
   ============================================================ */
.stats-box {
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.3);
  border-top: 3px solid var(--gold);
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.stats-box-item { text-align: center; }
.stats-box-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-box-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}
.stats-box-divider {
  width: 1px;
  background: rgba(212,175,55,0.3);
  align-self: stretch;
  display: none;
}

/* ============================================================
   PARALLAX IMAGE SECTION
   ============================================================ */
.parallax-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: var(--burgundy-80);
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--section-pad) clamp(20px,4vw,60px);
  width: 100%;
}
.parallax-content .section-title { color: var(--white); }
.parallax-content .section-body { color: rgba(255,255,255,0.82); margin: 0 auto 32px; }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px;
}
.team-card { text-align: center; }
.team-photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
  padding: 4px;
  background: var(--white);
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-bio {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.7;
}
.team-fun {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--burgundy);
  font-style: italic;
}

/* ============================================================
   CLIENT TYPES GRID
   ============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.client-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
}
.client-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.client-card:hover img { transform: scale(1.06); }
.client-card-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--burgundy-80) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--burgundy);
  padding: var(--section-pad) 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-section .gold-divider { background: var(--gold); margin: 20px auto 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0D0D0D;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .nav-logo-text {
  color: var(--white);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-contact-item {
  font-size: 0.85rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-h {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,175,55,0.25);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-locations-grid {
  column-count: 3;
  column-gap: 16px;
}
.footer-locations-grid a {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  padding: 3px 0;
  break-inside: avoid;
  transition: color var(--transition);
}
.footer-locations-grid a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom .ai-badge {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   PAGE INNER HEADER
   ============================================================ */
.page-header {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--burgundy) 0%, var(--burgundy-50) 60%, transparent 100%);
}
.page-header-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px,4vw,60px) 48px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.page-header-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: var(--white);
  max-width: 640px;
}
.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-top: 16px;
  line-height: 1.65;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--off-white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(0,0,0,0.5);
}
.breadcrumb-inner a { color: var(--burgundy); }
.breadcrumb-inner span { color: rgba(0,0,0,0.3); }

/* ============================================================
   LOCATION PAGE SPECIFIC
   ============================================================ */
.location-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.location-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin-bottom: 20px;
  color: var(--burgundy);
}
.location-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(0,0,0,0.7);
  margin-bottom: 16px;
}
.location-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.location-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   SERVICE PAGE SPECIFIC
   ============================================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.service-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.service-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.service-feature-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--burgundy);
}
.service-feature-text p {
  font-size: 0.88rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.6;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--black);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107,33,75,0.08);
}
.form-textarea { min-height: 140px; resize: vertical; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.contact-info-text p, .contact-info-text a {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.7);
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-burgundy { color: var(--burgundy); }
.text-orange { color: var(--orange); }
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .intro-grid, .location-intro, .service-detail-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-locations-grid { column-count: 2; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-locations-grid { column-count: 2; }
  .stats-box { grid-template-columns: 1fr; gap: 20px; }
  .service-detail-grid.reverse { direction: ltr; }
  .platforms-inner { gap: 16px; }
  .platform-item { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .footer-locations-grid { column-count: 1; }
  .team-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
