/* =====================================================================
   VE DE SUKSHMA HOSPITALITY CONSULTANTS — brand stylesheet
   ===================================================================== */

:root {
  --navy: #0f1f3b;
  --navy-deep: #0a1526;
  --navy-soft: #1c2f52;
  --gold: #b8904a;
  --gold-light: #d8b478;
  --gold-pale: #f1e4cd;
  --cream: #fbf8f2;
  --cream-dim: #f2ece0;
  --charcoal: #2a2a2a;
  --ink-muted: #5b6472;
  --white: #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius: 4px;
  --shadow-soft: 0 10px 40px -14px rgba(15, 31, 59, 0.25);
  --shadow-card: 0 2px 18px rgba(15, 31, 59, 0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.15;
}
p { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.overflow-guard { overflow-x: hidden; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--cream-dim { background: var(--cream-dim); }
.section--navy { background: var(--navy); color: rgba(251,248,242,.85); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section-head { max-width: 680px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: clamp(28px, 3.6vw, 42px); }
.lede { font-size: 18px; color: var(--ink-muted); font-weight: 300; }
.section--navy .lede { color: rgba(251,248,242,.72); }

.rule-gold {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { border-color: rgba(15,31,59,.3); color: var(--navy); }
.btn-outline:hover { border-color: var(--navy); background: rgba(15,31,59,.04); }
.btn-outline-light { border-color: rgba(251,248,242,.45); color: var(--cream); }
.btn-outline-light:hover { border-color: var(--cream); background: rgba(251,248,242,.08); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251,248,242,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,31,59,.08);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(15,31,59,.08); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 96px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links > li { position: relative; }
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--gold); }

.nav-caret { width: 10px; height: 10px; margin-left: 4px; transition: transform .2s ease; vertical-align: -1px; }
.has-dropdown:hover .nav-caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 260px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-soft);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 13.5px;
  color: var(--navy);
  border-radius: 2px;
}
.dropdown-link:hover { background: var(--cream-dim); color: var(--gold); }
.dropdown-link svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }

/* ---------- Nested "Restaurants" flyout (multi-level dropdown) ---------- */
.has-subdropdown { position: relative; }
.dropdown-link--parent { cursor: pointer; justify-content: space-between; }
.subdropdown-caret { width: 10px; height: 10px; margin-left: auto; transform: rotate(-90deg); transition: transform .2s ease; }
.has-subdropdown:hover > .dropdown-link--parent .subdropdown-caret { transform: rotate(0deg); }
.subdropdown {
  position: absolute;
  top: -10px;
  left: 100%;
  margin-left: 6px;
  min-width: 230px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-soft);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all .2s ease;
}
.has-subdropdown:hover .subdropdown { opacity: 1; visibility: visible; transform: translateX(0); }

.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 26px;
  height: 20px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: all .25s ease;
}
.nav-toggle span { top: 9px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero slider ---------- */
.hero-slider {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.3s ease, visibility 0s linear 1.3s;
  z-index: 0;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition: opacity 1.3s ease, visibility 0s linear 0s;
}
.hero-slide-media { position: absolute; inset: 0; z-index: 0; }
.hero-slide-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 6s ease;
}
.hero-slide.is-active .hero-slide-media img { transform: scale(1); }
.hero-slide-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(10,21,38,.78) 20%, rgba(10,21,38,.56) 55%, rgba(10,21,38,.32) 100%);
}
.hero-content { position: relative; z-index: 1; width: 100%; text-align: left; }
.hero-content .eyebrow { color: var(--gold-light); }
.hero-slide-inner {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease .35s, transform 1s ease .35s;
}
.hero-slide.is-active .hero-slide-inner { opacity: 1; transform: translateY(0); }
.hero-title { font-size: clamp(38px, 5.6vw, 68px); color: var(--white); max-width: 920px; }
.hero-title em { color: var(--gold-light); font-style: normal; }
.hero-sub { font-size: 18px; color: rgba(251,248,242,.82); max-width: 760px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(251,248,242,.55);
  padding: 0;
  cursor: pointer;
  transition: all .3s ease;
}
.hero-dot.is-active { width: 26px; border-radius: 5px; background: var(--gold); border-color: var(--gold); }

.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(251,248,242,.08);
  border: 1px solid rgba(251,248,242,.25);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.hero-arrow svg { width: 19px; height: 19px; }
.hero-arrow-prev { left: 26px; }
.hero-arrow-next { right: 26px; }

/* ---------- Page header (interior pages) ---------- */
.page-header {
  position: relative;
  padding: 150px 0 70px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(184,144,74,.18), transparent 55%);
}
.page-header .container { position: relative; }
.page-header h1 { color: var(--white); font-size: clamp(32px, 4.4vw, 50px); }
.breadcrumb { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(251,248,242,.55); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { margin: 0 8px; opacity: .5; }

/* ---------- Brand intro / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.split-media-frame {
  position: absolute;
  top: 22px; left: 22px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  z-index: -1;
}
.split--reverse .split-media { order: -1; }

/* ---------- Service breakdown accordion + media tag (Services listing page) ---------- */
.svc-accordion { margin-top: 24px; }
.svc-more-btn { margin-top: 34px; }
.svc-media-tag {
  position: absolute;
  left: 24px; bottom: -18px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}
.svc-media-tag svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.split-media-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.split-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 0s linear 1s;
}
.split-media-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition: opacity 1s ease, visibility 0s linear 0s;
}
.split-media-slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; box-shadow: none; }

.split-caption {
  max-width: 92%;
  margin-top: 24px;
  transition: opacity .25s ease, transform .25s ease;
}
.split-caption.is-fading { opacity: 0; transform: translateY(4px); }
.split-caption-text {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}
.split-media-dots {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 3;
  display: flex;
  gap: 6px;
}
.split-media-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transition: all .3s ease;
}
.split-media-dot.is-active { width: 20px; border-radius: 4px; background: var(--gold); }

.about-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.stat-row { display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-serif); font-size: 40px; color: var(--gold); font-weight: 600; }
.stat-label { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); }

/* ---------- Vertical / service cards ---------- */
.grid-5 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vertical-card {
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.vertical-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.vertical-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.vertical-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vertical-card:hover .vertical-card-media img { transform: scale(1.06); }
.vertical-card-icon {
  position: relative;
  z-index: 2;
  margin: -22px 0 0 24px;
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(15,31,59,.25);
}
.vertical-card-icon svg { width: 28px; height: 28px; }
.vertical-card-body { padding: 20px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.vertical-card-body h3 { font-size: 24px; }
.vertical-card-body p { color: var(--ink-muted); font-size: 15px; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--gold); margin-top: 10px;
}
.card-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.vertical-card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Deliverables grid (Points to be Highlighted) ---------- */
.grid-deliverables {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(15,31,59,.08);
  border: 1px solid rgba(15,31,59,.08);
}
.grid-deliverables.cols-3 { grid-template-columns: repeat(3, 1fr); }
.deliverable {
  background: var(--white);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.deliverable-num { font-family: var(--font-serif); font-size: 30px; color: var(--gold-pale); font-weight: 700; }
.deliverable h4 { font-size: 15.5px; margin: 0; letter-spacing: .01em; }

.deliverable-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.deliverable-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(15,31,59,.1);
  box-shadow: var(--shadow-card);
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.deliverable-pill svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ---------- Process cards (How We Work) ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-card {
  background: var(--white);
  box-shadow: var(--shadow-card);
  padding: 36px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.process-card-step { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.process-card h4 { font-size: 19px; margin-bottom: 10px; }
.process-card p { font-size: 14.5px; color: var(--ink-muted); margin: 0; }

/* ---------- Highlights split (Points to be Highlighted, image + accordion) ---------- */
.highlight-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: stretch; }
.highlight-media { position: relative; min-height: 480px; }
.highlight-media::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  z-index: -1;
}
.highlight-media img { width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow-soft); }

.accordion { margin-top: 30px; border-top: 1px solid rgba(15,31,59,.12); }
.accordion-item { border-bottom: 1px solid rgba(15,31,59,.12); }
.accordion-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-family: inherit;
}
.accordion-num { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--gold); width: 30px; flex-shrink: 0; }
.accordion-title { flex: 1; font-size: 16px; font-weight: 500; color: var(--navy); }
.accordion-caret { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; transition: transform .25s ease; }
.accordion-item.is-open .accordion-caret { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-item.is-open .accordion-body { max-height: 220px; }
.accordion-body p { margin: 0; padding: 0 26px 22px 48px; font-size: 14.5px; color: var(--ink-muted); }

/* ---------- Objectives (spec panel) ---------- */
.objectives-panel {
  background: var(--white);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.objectives-col { position: relative; padding: 40px 30px; }
.objectives-col::after {
  content: '';
  position: absolute;
  top: 25%; right: 0;
  height: 50%; width: 1px;
  background: rgba(15,31,59,.1);
}
.objectives-col:last-child::after { content: none; }
.objectives-col svg { width: 40px; height: 40px; color: var(--gold); stroke-width: 1.2; }
.objectives-col h4 { font-family: var(--font-serif); font-weight: 600; font-size: 18px; margin: 18px 0 10px; color: var(--navy); }
.objectives-col p { font-size: 13.5px; line-height: 1.6; color: var(--ink-muted); margin: 0; }

/* ---------- Service detail page ---------- */
.service-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.service-hero-media { position: absolute; inset: 0; }
.service-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,21,38,.80) 10%, rgba(10,21,38,.28) 70%, rgba(10,21,38,.10));
}
.service-hero-content { position: relative; z-index: 1; padding-bottom: 56px; width: 100%; }
.service-hero-content h1 { color: var(--white); font-size: clamp(32px, 4.6vw, 52px); }

/* ---------- Service intro (badge/headline/desc + image collage) ---------- */
.service-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-collage { position: relative; height: 460px; }
.service-collage-a {
  position: absolute;
  top: 0; left: 0;
  width: 76%; height: 76%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  z-index: 1;
}
.service-collage-b {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%; height: 54%;
  object-fit: cover;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

/* ---------- Service points (full-width two-column cards) ---------- */
.service-points-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-point-card {
  background: var(--white);
  box-shadow: var(--shadow-card);
  padding: 38px 36px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-point-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-point-num { font-family: var(--font-serif); font-size: 42px; font-weight: 700; color: var(--gold-pale); line-height: 1; margin-bottom: 16px; }
.service-point-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-point-card p { color: var(--ink-muted); margin: 0; }

.service-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(15,31,59,.1);
}
.service-row:first-child { padding-top: 0; }
.service-row-index { font-family: var(--font-serif); font-size: 32px; color: var(--gold); font-weight: 600; }
.service-row h3 { font-size: 21px; margin-bottom: 6px; }
.service-row p { color: var(--ink-muted); margin: 0; }

.other-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.other-service-link {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  padding: 18px 16px;
  box-shadow: var(--shadow-card);
  font-size: 14px; font-weight: 500; color: var(--navy);
}
.other-service-link:hover { color: var(--gold); }
.other-service-link svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(184,144,74,.16), transparent 50%),
              radial-gradient(circle at 85% 75%, rgba(184,144,74,.12), transparent 50%);
}
.cta-banner .container { position: relative; }
.cta-banner h2 { color: var(--white); max-width: 620px; margin: 0 auto 14px; }
.cta-banner p { color: rgba(251,248,242,.72); max-width: 520px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Our Story (About page) ---------- */
.story-section {
  position: relative;
  background: var(--navy-deep);
  padding: 130px 0;
  overflow: hidden;
  text-align: center;
  scroll-margin-top: 108px;
}
.story-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 8% 8%, rgba(184,144,74,.22), transparent 42%),
              radial-gradient(circle at 94% 92%, rgba(184,144,74,.16), transparent 48%);
}
.story-container { position: relative; max-width: 760px; }
.story-headline {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.28;
}
.story-body { text-align: left; max-width: 640px; margin: 0 auto; }
.story-body p { font-size: 17px; line-height: 1.85; color: rgba(251,248,242,.78); margin-bottom: 22px; }
.story-body p:last-child { margin-bottom: 0; }
.story-body strong { color: var(--gold-light); font-weight: 600; }

.story-mantra-intro {
  margin-top: 58px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: rgba(251,248,242,.6);
}
.story-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 26px;
}
.story-flow-step {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
}
.story-flow-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.story-flow-text {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}
.story-flow-arrow {
  position: relative;
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(216,180,120,.55), rgba(216,180,120,.12));
}
.story-flow-arrow svg {
  position: absolute;
  left: 50%; bottom: -4px;
  transform: translate(-50%, 0);
  width: 18px; height: 18px;
  color: var(--gold);
  animation: storyFlowPulse 1.8s ease-in-out infinite;
}
@keyframes storyFlowPulse {
  0%, 100% { transform: translate(-50%, 0); opacity: .55; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}

.story-closing {
  max-width: 620px;
  margin: 56px auto 0;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(251,248,242,.7);
}

.story-signature-rule { width: 56px; height: 2px; background: var(--gold); margin: 48px auto 20px; }
.story-signature {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; }
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  padding: 44px 36px;
}
.contact-info-card h3 { color: var(--white); font-size: 22px; }
.contact-info-row {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(251,248,242,.14);
}
.contact-info-row:last-of-type { border-bottom: none; }
.contact-info-row svg { width: 20px; height: 20px; color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.contact-info-row .label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em; color: rgba(251,248,242,.5); margin-bottom: 4px; }
.contact-info-row a, .contact-info-row span { font-size: 15px; color: rgba(251,248,242,.92); }
.contact-info-row a:hover { color: var(--gold-light); }

.contact-map { margin-top: 26px; border: 1px solid rgba(251,248,242,.14); }
.contact-map iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

.form-card { background: var(--white); box-shadow: var(--shadow-card); padding: 44px 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 12.5px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(15,31,59,.18);
  background: var(--cream);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--charcoal);
  border-radius: 2px;
  transition: border-color .2s ease, background .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { color: #b3413a; font-size: 12.5px; margin-top: 6px; }
.alert-success {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 24px;
}

/* ---------- Success page ---------- */
.success-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 56px 48px;
  text-align: center;
}
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
}
.success-icon svg { width: 34px; height: 34px; }
.success-ref {
  display: inline-block;
  background: var(--cream-dim);
  padding: 8px 18px;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  letter-spacing: .04em;
  margin: 6px 0 26px;
}
.success-detail-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(15,31,59,.08); font-size: 14.5px; text-align: left; }
.success-detail-row .k { color: var(--ink-muted); }
.success-detail-row .v { color: var(--navy); font-weight: 500; text-align: right; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(251,248,242,.72); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(251,248,242,.1); }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; background: var(--cream); padding: 12px 18px; }
.footer-logo img { height: 78px; }
.footer-desc { font-size: 14.5px; line-height: 1.75; max-width: 320px; }
.footer-heading { color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 22px; font-family: var(--font-sans); }
.footer-links li { margin-bottom: 13px; }
.footer-links a { font-size: 14.5px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.footer-contact-item svg { width: 17px; height: 17px; color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.footer-social-block { margin-top: 30px; }
.footer-social-block .footer-heading { margin-bottom: 16px; }
.footer-social { display: flex; gap: 14px; }
.footer-social-link {
  width: 46px; height: 46px;
  border: 1px solid rgba(251,248,242,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(251,248,242,.85);
  transition: all .25s ease;
}
.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(184,144,74,.35);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; font-size: 13px; color: rgba(251,248,242,.5); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 500;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; color: var(--white); }
.whatsapp-float::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse-ring 2.2s cubic-bezier(.4,0,.6,1) infinite;
  z-index: -1;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.9); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  font-size: 13px;
  white-space: nowrap;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all .2s ease;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; transform: translateX(0); }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.gallery-filter-btn {
  background: var(--white);
  border: 1px solid rgba(15,31,59,.14);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all .2s ease;
}
.gallery-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.gallery-filter-btn.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--cream-dim);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,21,38,.78), transparent 55%);
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-caption {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 500;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: all .25s ease;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; transform: translateY(0); }

.gallery-empty { max-width: 480px; margin: 0 auto; text-align: center; padding: 40px 20px 60px; color: var(--ink-muted); }
.gallery-empty > svg { width: 44px; height: 44px; color: var(--gold); margin-bottom: 18px; }
.gallery-empty h3 { color: var(--navy); font-size: 22px; margin-bottom: 10px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(10,21,38,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 88vw; text-align: center; }
.lightbox-content img { max-width: 88vw; max-height: 76vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-caption { color: rgba(251,248,242,.85); font-size: 14px; margin-top: 18px; }
.lightbox-counter { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(251,248,242,.5); font-size: 13px; letter-spacing: .05em; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(251,248,242,.08);
  border: 1px solid rgba(251,248,242,.2);
  color: var(--cream);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ---------- Testimonials ---------- */
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tm-card {
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-card);
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
}
.tm-card-quote { position: absolute; top: 26px; right: 28px; width: 30px; height: 30px; color: var(--gold-pale); }
.tm-stars { display: flex; gap: 3px; margin-bottom: 16px; font-size: 16px; line-height: 1; }
.tm-star-filled { color: var(--gold); }
.tm-star-empty { color: var(--cream-dim); }
.tm-card-text { font-size: 15px; color: var(--charcoal); flex: 1; margin-bottom: 24px; }
.tm-card-author { display: flex; align-items: center; gap: 14px; }
.tm-avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; }
.tm-avatar-img { object-fit: cover; }
.tm-avatar-initial {
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.tm-card-name { font-size: 15px; font-weight: 600; color: var(--navy); }
.tm-card-caption { font-size: 13px; color: var(--ink-muted); }

.tm-empty { max-width: 480px; margin: 0 auto; text-align: center; padding: 40px 20px 60px; color: var(--ink-muted); }
.tm-empty svg { width: 44px; height: 44px; color: var(--gold); margin-bottom: 18px; }
.tm-empty h3 { color: var(--navy); font-size: 22px; margin-bottom: 10px; }
.tm-empty .btn { margin-top: 22px; }

/* ---------- Misc ---------- */
.badge-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.badge-icon svg { width: 26px; height: 26px; }

.mv-list { display: flex; flex-direction: column; gap: 14px; margin: 26px 0; }
.mv-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--charcoal); }
.mv-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-deliverables { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .tm-grid { grid-template-columns: repeat(2, 1fr); }
  .objectives-panel { grid-template-columns: repeat(2, 1fr); }
  .objectives-col:nth-child(2)::after { content: none; }
  .objectives-col { border-bottom: 1px solid rgba(15,31,59,.1); }
  .objectives-col:nth-child(3), .objectives-col:nth-child(4) { border-bottom: none; }
  .other-services { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split-media { order: 0; }
  .highlight-split { grid-template-columns: 1fr; gap: 40px; }
  .highlight-media { min-height: 320px; }
  .service-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-collage { height: 380px; order: -1; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-logo img { height: 58px; }
}

@media (max-width: 780px) {
  .nav-links {
    position: fixed;
    top: 108px; left: 0; right: 0;
    height: calc(100vh - 108px);
    height: calc(100dvh - 108px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links > li { width: 100%; }
  .nav-link { display: block; padding: 14px 0; font-size: 15px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; display: none; padding-left: 14px; }
  .has-dropdown.is-open .dropdown { display: block; }
  .subdropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; margin-left: 0; display: none; padding-left: 14px; }
  .has-subdropdown.is-open .subdropdown { display: block; }
  .has-subdropdown.is-open .subdropdown-caret { transform: rotate(0deg); }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .process-grid { grid-template-columns: 1fr; }
  .grid-deliverables { grid-template-columns: repeat(2, 1fr); }
  .tm-grid { grid-template-columns: 1fr; }
  .objectives-panel { grid-template-columns: 1fr; }
  .objectives-col:nth-child(1)::after,
  .objectives-col:nth-child(2)::after,
  .objectives-col:nth-child(3)::after,
  .objectives-col:nth-child(4)::after { content: none; }
  .objectives-col { border-bottom: 1px solid rgba(15,31,59,.1); }
  .objectives-col:last-child { border-bottom: none; }
  .other-services { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .service-row { grid-template-columns: 44px 1fr; }
  .service-points-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 16px; right: 16px; }
  .hero-arrow { display: none; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .story-section { padding: 76px 0; }
  .story-flow-step { padding: 6px 0; gap: 10px; }
  .story-flow-text { white-space: normal; }
  .story-flow-arrow { height: 36px; }
  .grid-5 { grid-template-columns: 1fr; }
  .grid-deliverables { grid-template-columns: 1fr 1fr; }
  .hero-slider { min-height: 92vh; }
  .service-collage { height: 300px; }
  .service-point-card { padding: 30px 26px; }
  .contact-info-card, .form-card { padding: 32px 24px; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
