/* ============================================================
   Shivaz Hospitality — Main Stylesheet
   Premium hospitality brand: warm gold, deep navy, cream
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:           #C9A050;
  --gold-dark:      #9A7530;
  --gold-light:     #E8C876;
  --gold-pale:      #F7EDDA;
  --navy:           #1C1C2E;
  --navy-mid:       #2D2D42;
  --charcoal:       #3A3A4A;
  --white:          #FFFFFF;
  --cream:          #FFFCF5;
  --cream-alt:      #F5EDD8;
  --text:           #2A2A3A;
  --text-muted:     #686878;
  --text-light:     #9898A8;
  --border:         #E4D5B8;
  --border-light:   #F0E8D4;
  --shadow-xs:      0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:      0 2px 10px rgba(0,0,0,.08);
  --shadow-md:      0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:      0 12px 48px rgba(0,0,0,.15);
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --font-serif:     'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition:     0.28s ease;
  --container-max:  1220px;
  --section-py:     5rem;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

address { font-style: normal; }

/* ── Skip link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--navy); color: var(--white); padding: .5rem 1rem;
  border-radius: var(--radius-sm); font-size: .875rem;
  transition: top .2s;
}
.skip-link:focus { top: .75rem; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans); font-weight: 600; font-size: .9375rem;
  padding: .75rem 1.75rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  text-decoration: none; transition: all var(--transition);
  white-space: nowrap; line-height: 1.2;
}
.btn--sm  { padding: .55rem 1.25rem; font-size: .875rem; }
.btn--lg  { padding: .95rem 2.25rem; font-size: 1rem; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white); border-color: transparent;
  box-shadow: 0 4px 16px rgba(201,160,80,.35);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #7A5A20 100%);
  color: var(--white); box-shadow: 0 6px 24px rgba(201,160,80,.5);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent; color: var(--gold-dark);
  border-color: var(--gold-dark);
}
.btn--outline:hover { background: var(--gold-dark); color: var(--white); }

.btn--outline-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: var(--white); }

.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-mid); color: var(--white); }

/* ── Section labels ────────────────────────────────────────── */
.section-label {
  display: inline-block; font-family: var(--font-sans); font-size: .75rem;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: .5rem;
}
.section-label::before {
  content: ''; display: inline-block; width: 2rem; height: 2px;
  background: var(--gold); margin-right: .5rem; vertical-align: middle;
}

.section-intro { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; }
.section-intro--center { margin: 0 auto; text-align: center; }
.section-title { margin-bottom: .75rem; }

.text-center { text-align: center; }
.text-gold  { color: var(--gold-dark); }

/* ── Decorative divider ────────────────────────────────────── */
.gold-divider {
  width: 3.5rem; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  margin: 1rem 0 1.5rem;
}
.gold-divider--center { margin-left: auto; margin-right: auto; }

/* ── Top bar ───────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .8125rem;
  padding: .45rem 0;
}
.topbar__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.topbar__tagline { font-style: italic; color: var(--gold-light); }
.topbar__contact { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.topbar__link {
  display: flex; align-items: center; gap: .35rem;
  color: rgba(255,255,255,.75); transition: color var(--transition);
}
.topbar__link:hover { color: var(--gold-light); }

/* ── Site header ───────────────────────────────────────────── */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 1000;
}
.header__inner {
  display: flex; align-items: center; gap: 1rem;
  padding-top: .85rem; padding-bottom: .85rem;
}

.logo { flex-shrink: 0; }
.logo img { height: 50px; width: auto; }

/* Nav */
.main-nav { margin-left: auto; }
.nav-list {
  display: flex; align-items: center; gap: .25rem;
}
.nav-link {
  display: block; padding: .5rem .75rem;
  font-size: .9rem; font-weight: 500; color: var(--charcoal);
  border-radius: var(--radius-sm); transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link--active { color: var(--gold-dark); }
.nav-link--active { font-weight: 600; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + .5rem); left: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 210px; padding: .5rem 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-.5rem);
  transition: all var(--transition);
  z-index: 100;
}
.dropdown li a {
  display: block; padding: .55rem 1.25rem;
  font-size: .875rem; color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover { background: var(--gold-pale); color: var(--gold-dark); }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}

.header-cta { margin-left: 1rem; flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: .5rem;
  background: none; border: none; cursor: pointer; margin-left: auto;
}
.nav-toggle__bar {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Page header / Hero for inner pages ────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  min-height: 280px; display: flex; align-items: center;
  padding: 4rem 0 3rem;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35; z-index: 0;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  font-size: .8125rem; color: rgba(255,255,255,.65);
  margin-bottom: .75rem; display: flex; align-items: center; gap: .4rem;
  flex-wrap: wrap;
}
.page-hero__breadcrumb a { color: var(--gold-light); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb span { color: rgba(255,255,255,.4); }
.page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.page-hero__sub { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; }

/* ── Home Hero ─────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; align-items: center;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero__slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(28,28,46,.88) 0%, rgba(28,28,46,.55) 60%, rgba(28,28,46,.3) 100%);
}
.hero__slide.active { opacity: 1; }

.hero__content {
  position: relative; z-index: 2;
  max-width: 720px; padding: 2rem 0;
}
.hero__label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: .75rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  color: var(--white); line-height: 1.18; margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero__desc { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 560px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__indicators {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; gap: .6rem;
}
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer;
  transition: all var(--transition); padding: 0;
}
.hero__dot.active { background: var(--gold-light); width: 24px; border-radius: 4px; }

/* ── Stats strip ───────────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: 2.5rem 0;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
}
.stat-item__number {
  display: block; font-family: var(--font-serif); font-size: 2.5rem;
  font-weight: 700; color: var(--gold-light); line-height: 1;
  margin-bottom: .25rem;
}
.stat-item__label {
  font-size: .8125rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
}

/* ── How We Work ───────────────────────────────────────────── */
.how-we-work { padding: var(--section-py) 0; background: var(--cream); }
.how-we-work__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.process-card {
  text-align: center; padding: 2.5rem 2rem;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition), transform var(--transition);
}
.process-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-4px);
}
.process-card__step {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white); font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.process-card h3 { margin-bottom: .75rem; }
.process-card p { color: var(--text-muted); font-size: .9375rem; }

/* ── About section ─────────────────────────────────────────── */
.about-section { padding: var(--section-py) 0; }
.about-section__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-section__images {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  height: 480px;
}
.about-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img--main {
  grid-column: 1; grid-row: 1 / span 2;
}
.about-img--accent {
  grid-column: 2; grid-row: 1;
}
.about-img--secondary {
  grid-column: 2; grid-row: 2;
}
.about-section__text .section-label { margin-bottom: .75rem; }
.about-section__text h2 { margin-bottom: .75rem; }
.about-section__text p { color: var(--text-muted); margin-bottom: 1.25rem; }

.about-mini-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem; margin: 1.75rem 0;
}
.mini-stat {
  padding: 1rem 1.25rem;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.mini-stat__num {
  font-family: var(--font-serif); font-size: 1.75rem;
  font-weight: 700; color: var(--gold-dark); line-height: 1;
}
.mini-stat__label {
  font-size: .8rem; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
}

/* ── Services overview ─────────────────────────────────────── */
.services-overview { padding: var(--section-py) 0; background: var(--cream-alt); }
.services-overview .section-header { text-align: center; margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-4px);
}
.service-card__icon {
  width: 3rem; height: 3rem;
  background: var(--gold-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--gold-dark);
}
.service-card h3 { margin-bottom: .6rem; font-size: 1.125rem; }
.service-card p {
  color: var(--text-muted); font-size: .9rem; flex: 1;
  margin-bottom: 1.25rem;
}
.service-card__link {
  font-size: .875rem; font-weight: 600; color: var(--gold-dark);
  display: inline-flex; align-items: center; gap: .35rem;
}
.service-card__link::after { content: '→'; transition: transform var(--transition); }
.service-card:hover .service-card__link::after { transform: translateX(4px); }

/* ── Gallery preview ───────────────────────────────────────── */
.gallery-preview { padding: var(--section-py) 0; }
.gallery-preview .section-header { text-align: center; margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.gallery-grid__item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
  background: var(--cream-alt);
}
.gallery-grid__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-grid__item:hover img { transform: scale(1.06); }
.gallery-grid__overlay {
  position: absolute; inset: 0;
  background: rgba(28,28,46,.5);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.gallery-grid__item:hover .gallery-grid__overlay { opacity: 1; }
.gallery-preview__cta { text-align: center; margin-top: 2.5rem; }

/* ── Founder section ───────────────────────────────────────── */
.founder-strip {
  padding: var(--section-py) 0;
  background: var(--navy);
}
.founder-strip__grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 4rem; align-items: center;
}
.founder-strip__img {
  border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 4px solid rgba(201,160,80,.3);
}
.founder-strip__img img { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; }
.founder-strip__text .section-label { color: var(--gold-light); }
.founder-strip__text .section-label::before { background: var(--gold-light); }
.founder-strip__text h2 { color: var(--white); margin-bottom: .5rem; }
.founder-strip__text .gold-divider { background: linear-gradient(90deg,var(--gold-light),transparent); }
.founder-strip__text p { color: rgba(255,255,255,.78); margin-bottom: 1rem; }
.founder-strip__text .role-badge {
  display: inline-block; background: rgba(201,160,80,.15);
  border: 1px solid rgba(201,160,80,.3); color: var(--gold-light);
  padding: .35rem .9rem; border-radius: 2rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  margin-bottom: 1.25rem;
}
.founder-strip__prev h4 { color: var(--gold-light); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .5rem; }
.founder-strip__prev ul { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.founder-strip__prev li {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75); padding: .25rem .75rem;
  border-radius: 2rem; font-size: .8125rem;
}

/* ── Clients section ───────────────────────────────────────── */
.clients-section { padding: var(--section-py) 0; background: var(--cream); }
.clients-section .section-header { text-align: center; margin-bottom: 3rem; }
.clients-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem; align-items: center;
}
.client-logo-item {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.client-logo-item:hover {
  box-shadow: var(--shadow-sm); border-color: var(--gold);
}
.client-logo-item img {
  max-height: 52px; width: auto; max-width: 100%;
  filter: grayscale(30%); transition: filter var(--transition);
}
.client-logo-item:hover img { filter: grayscale(0%); }

/* ── Why Us section ────────────────────────────────────────── */
.why-us { padding: var(--section-py) 0; }
.why-us__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.why-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card__img {
  height: 200px; overflow: hidden;
}
.why-card__img img { width: 100%; height: 100%; object-fit: cover; }
.why-card__body { padding: 1.75rem; }
.why-card h3 { margin-bottom: .75rem; }
.why-card p { color: var(--text-muted); font-size: .9375rem; }

.usp-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-top: 2rem; }
.usp-item {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}
.usp-item__check {
  flex-shrink: 0; width: 1.4rem; height: 1.4rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; margin-top: .1rem;
}
.usp-item p { margin: 0; font-size: .9rem; color: var(--text-muted); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #2A2A50 100%);
  padding: 5rem 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,80,.12) 0%, transparent 70%);
  top: -200px; left: -100px; pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,80,.08) 0%, transparent 70%);
  bottom: -150px; right: 50px; pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner__title {
  font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white); margin-bottom: 1rem;
}
.cta-banner__subtitle { color: rgba(255,255,255,.75); max-width: 580px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Service detail page ───────────────────────────────────── */
.service-detail { padding: var(--section-py) 0; }
.service-detail__grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 4rem; align-items: start;
}
.service-detail__sidebar {
  position: sticky; top: 6rem;
}
.sidebar-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h3 { margin-bottom: 1.25rem; font-size: 1.1rem; }
.sidebar-links li { border-bottom: 1px solid var(--border-light); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 0; font-size: .9rem; color: var(--text);
  transition: color var(--transition);
}
.sidebar-links a:hover, .sidebar-links a.active { color: var(--gold-dark); font-weight: 600; }
.sidebar-links a::after { content: '→'; color: var(--gold); }
.contact-sidebar { margin-top: 1.5rem; background: var(--navy); border-color: transparent; }
.contact-sidebar h3 { color: var(--white); }
.contact-sidebar p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1.25rem; }

.service-sub-items {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  margin: 2rem 0;
}
.sub-item {
  background: var(--cream); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 1.5rem;
}
.sub-item__icon { font-size: 1.5rem; margin-bottom: .75rem; }
.sub-item h4 { margin-bottom: .5rem; font-size: 1rem; }
.sub-item p { color: var(--text-muted); font-size: .875rem; margin: 0; }

.feature-list { margin: 1.5rem 0; }
.feature-list li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .6rem 0; border-bottom: 1px solid var(--border-light);
  font-size: .9375rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✦'; color: var(--gold); flex-shrink: 0; font-size: .7rem; margin-top: .35rem;
}

/* ── Founder page ──────────────────────────────────────────── */
.founder-page { padding: var(--section-py) 0; }
.founder-page__grid {
  display: grid; grid-template-columns: 360px 1fr; gap: 4rem; align-items: start;
}
.founder-photo {
  position: sticky; top: 6rem;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-photo img { width: 100%; display: block; }
.founder-bio h2 { margin-bottom: .25rem; }
.founder-bio .role { color: var(--gold-dark); font-weight: 600; margin-bottom: 1.5rem; }
.founder-bio p { color: var(--text-muted); margin-bottom: 1.25rem; }
.founder-prev-roles h3 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-muted); margin: 1.75rem 0 .75rem; font-weight: 700;
}
.founder-prev-roles ul { display: flex; flex-wrap: wrap; gap: .5rem; }
.founder-prev-roles li {
  background: var(--gold-pale); border: 1px solid var(--border);
  color: var(--gold-dark); padding: .35rem .9rem;
  border-radius: 2rem; font-size: .8125rem; font-weight: 500;
}

/* ── Gallery page ──────────────────────────────────────────── */
.gallery-page { padding: var(--section-py) 0; }
.gallery-masonry {
  columns: 3; column-gap: .75rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: .75rem;
  border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; position: relative;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(28,28,46,.5);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.93); display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius-sm); }
.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.15); border: none; border-radius: 50%;
  width: 2.5rem; height: 2.5rem; color: var(--white); cursor: pointer;
  font-size: 1.25rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox__close:hover { background: rgba(255,255,255,.3); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: none; border-radius: 50%;
  width: 3rem; height: 3rem; color: var(--white); cursor: pointer;
  font-size: 1.25rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* ── Clients page ──────────────────────────────────────────── */
.clients-page { padding: var(--section-py) 0; }
.clients-page__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-top: 3rem;
}
.client-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 2rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4/3;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.client-card:hover { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.client-card img { max-height: 70px; width: auto; max-width: 100%; object-fit: contain; }

/* ── Contact page ──────────────────────────────────────────── */
.contact-page { padding: var(--section-py) 0; }
.contact-page__grid {
  display: grid; grid-template-columns: 1fr 480px;
  gap: 4rem; align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2.5rem; }
.contact-items { display: grid; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); box-shadow: var(--shadow-xs);
}
.contact-item__icon {
  flex-shrink: 0; width: 2.75rem; height: 2.75rem;
  background: var(--gold-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
}
.contact-item__label {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: .25rem;
}
.contact-item__value {
  font-size: 1rem; color: var(--text);
}
.contact-item__value a { color: var(--text); }
.contact-item__value a:hover { color: var(--gold-dark); }

/* Contact form */
.contact-form-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-md); position: sticky; top: 6rem;
}
.contact-form-card h2 { margin-bottom: .5rem; font-size: 1.5rem; }
.contact-form-card > p { color: var(--text-muted); margin-bottom: 2rem; font-size: .9rem; }

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: .875rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: .4rem;
}
.form-label .required { color: var(--gold-dark); margin-left: .15rem; }
.form-control {
  width: 100%; padding: .75rem 1rem;
  font-family: var(--font-sans); font-size: .9375rem; color: var(--text);
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-control:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,160,80,.15);
}
textarea.form-control { resize: vertical; min-height: 110px; }

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

.form-notice {
  font-size: .8rem; color: var(--text-muted); margin-top: 1rem;
  padding-top: 1rem; border-top: 1px solid var(--border-light);
}

.alert {
  padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  margin-bottom: 1.25rem; font-size: .9rem;
}
.alert--success { background: #F0FDF4; border: 1px solid #86EFAC; color: #166534; }
.alert--error   { background: #FFF1F2; border: 1px solid #FDA4AF; color: #9F1239; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); }

.footer-upper { padding: 4.5rem 0 3rem; }
.footer-upper__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-about-text { font-size: .875rem; line-height: 1.7; margin: 1rem 0 1.5rem; }
.footer-logo img { filter: brightness(0) invert(1); }

.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--white); }

.footer-heading {
  font-family: var(--font-serif); font-size: 1rem; font-weight: 600;
  color: var(--white); margin-bottom: 1.25rem;
}
.footer-nav { display: grid; gap: .5rem; }
.footer-nav a {
  font-size: .875rem; color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-address p {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .875rem; margin-bottom: .85rem;
  color: rgba(255,255,255,.65);
}
.footer-address svg { flex-shrink: 0; margin-top: .2rem; color: var(--gold); }
.footer-address a { color: rgba(255,255,255,.65); }
.footer-address a:hover { color: var(--gold-light); }

.footer-lower {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
}
.footer-lower__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.4);
}

/* ── Float contact ─────────────────────────────────────────── */
.float-contact {
  position: fixed; bottom: 2rem; right: 1.5rem; z-index: 500;
  display: flex; flex-direction: column; gap: .6rem;
}
.float-contact__btn {
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem 1.1rem; border-radius: 2rem;
  font-size: .8125rem; font-weight: 600; color: var(--white);
  text-decoration: none; box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-contact__btn:hover { transform: translateY(-2px); color: var(--white); }
.float-contact__btn--phone { background: var(--gold-dark); }
.float-contact__btn--whatsapp { background: #25D366; }

/* ── Vision/Mission cards ──────────────────────────────────── */
.vm-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem;
}
.vm-card {
  padding: 2.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); background: var(--white);
}
.vm-card--vision { border-top: 4px solid var(--gold); }
.vm-card--mission { border-top: 4px solid var(--navy); }
.vm-card h2 { font-size: 1.4rem; margin-bottom: 1rem; }
.vm-card ul { display: grid; gap: .75rem; }
.vm-card ul li {
  padding-left: 1.25rem; position: relative;
  color: var(--text-muted); font-size: .9375rem; line-height: 1.6;
}
.vm-card ul li::before {
  content: ''; position: absolute; left: 0; top: .65rem;
  width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--gold);
}

/* ── Quote block ───────────────────────────────────────────── */
.quote-block {
  background: var(--gold-pale); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.75rem 2rem; margin: 2rem 0;
}
.quote-block p {
  font-family: var(--font-serif); font-size: 1.125rem;
  color: var(--navy); font-style: italic; margin: 0;
}

/* ── Legal pages ───────────────────────────────────────────── */
.legal-page { padding: var(--section-py) 0; }
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 1.25rem; margin: 2rem 0 .75rem; }
.legal-content p, .legal-content ul { color: var(--text-muted); margin-bottom: 1rem; font-size: .9375rem; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; }
.legal-content ul li { margin-bottom: .4rem; }

/* ── 404 page ──────────────────────────────────────────────── */
.not-found {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 1rem;
}
.not-found__code {
  font-family: var(--font-serif); font-size: 8rem; font-weight: 700;
  color: var(--gold-pale); line-height: 1; margin-bottom: .5rem;
  text-shadow: 0 2px 0 var(--border);
}
.not-found h1 { color: var(--navy); margin-bottom: .75rem; }
.not-found p { color: var(--text-muted); margin-bottom: 2rem; }

/* ── FAQ section ───────────────────────────────────────────── */
.faq-section { padding: var(--section-py) 0; background: var(--cream-alt); }
.faq-section .section-header { margin-bottom: 3rem; }
.faq-list { max-width: 800px; display: grid; gap: 1rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; font-family: var(--font-sans); font-size: 1rem;
  font-weight: 600; color: var(--text); transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question .faq-icon {
  flex-shrink: 0; width: 1.5rem; height: 1.5rem;
  background: var(--gold-pale); border-radius: 50%; color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: transform var(--transition);
}
.faq-item.open .faq-question { color: var(--gold-dark); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.5rem 1.25rem; }
.faq-answer p { color: var(--text-muted); font-size: .9375rem; margin: 0; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-logos { grid-template-columns: repeat(4, 1fr); }
  .footer-upper__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .founder-strip__grid { grid-template-columns: 1fr; gap: 2.5rem; max-width: 600px; margin: 0 auto; }
  .founder-strip__grid > :first-child { max-width: 340px; margin: 0 auto; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .service-detail__sidebar { position: static; }
}

@media (max-width: 900px) {
  :root { --section-py: 3.5rem; }
  .about-section__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-section__images { height: 340px; }
  .how-we-work__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-us__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .vm-grid { grid-template-columns: 1fr; }
  .contact-page__grid { grid-template-columns: 1fr; }
  .contact-form-card { position: static; }
  .founder-page__grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 320px; }
  .clients-page__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { columns: 2; }
  .usp-list { grid-template-columns: 1fr; }
  .service-sub-items { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar__tagline { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: min(320px, 85vw); height: 100vh;
    background: var(--white); padding: 5rem 1.5rem 2rem;
    box-shadow: var(--shadow-lg); z-index: 999;
    transition: right var(--transition); overflow-y: auto;
    margin-left: 0;
  }
  .main-nav.open { right: 0; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-link { padding: .75rem 0; border-bottom: 1px solid var(--border-light); border-radius: 0; width: 100%; }
  .has-dropdown { width: 100%; }
  .dropdown {
    position: static; opacity: 1; visibility: visible;
    pointer-events: auto; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    padding: 0; display: none;
    background: var(--gold-pale);
    border-left: 3px solid var(--gold);
    margin: .25rem 0 .5rem;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { padding: .6rem 1.25rem; border-bottom: 1px solid rgba(201,160,80,.2); }
  .header-cta { display: none; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-logos { grid-template-columns: repeat(3, 1fr); }
  .clients-page__grid { grid-template-columns: repeat(2, 1fr); }
  .footer-upper__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-lower__inner { flex-direction: column; text-align: center; }
  .about-mini-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .page-hero { min-height: 200px; }
}

@media (max-width: 480px) {
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .clients-logos { grid-template-columns: repeat(2, 1fr); }
  .clients-page__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 1; }
  .hero { min-height: 80vh; }
  .float-contact { bottom: 1rem; right: 1rem; }
  .float-contact__btn span { display: none; }
  .float-contact__btn { padding: .75rem; border-radius: 50%; }
}

/* ── Utility ───────────────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mb-0  { margin-bottom: 0; }
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }

/* Animate on scroll */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Scrolled header state ─────────────────────────────────── */
.site-header.header--scrolled { box-shadow: var(--shadow-md); }
.site-header.header--scrolled .header__inner { padding-top: .5rem; padding-bottom: .5rem; }
.site-header.header--scrolled .logo img { height: 40px; }

/* ── Services main row ─────────────────────────────────────── */
.services-main-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .services-main-row { grid-template-columns: 1fr; }
}
