/* ══════════════════════════════════════════════════════
   SUVIJ KIDS PHOTOGRAPHY — MAIN STYLESHEET
   Sober / Minimal system
   ══════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────── */
:root {
  --ink:         #262420;
  --slate:       #5C5850;
  --slate-light: #8B857A;
  --clay:        #A9694E;
  --clay-dark:   #8A5540;
  --clay-rgb:      169,105,78;
  --clay-dark-rgb: 138,85,64;

  --bg:          #FAF8F5;
  --bg-alt:      #F1ECE4;
  --surface:     #FFFFFF;
  --border:      #E5DFD3;
  --white:       #FFFFFF;

  /* legacy names kept so every rule below stays simple — both now resolve to flat, muted colors, not gradients */
  --gradient:    var(--clay);
  --gradient-2:  var(--clay-dark);
  --pink:        var(--clay);
  --pink-light:  var(--clay);
  --purple:      var(--slate);

  --shadow-sm:   0 1px 3px rgba(38,36,32,.07);
  --shadow-md:   0 6px 20px rgba(38,36,32,.08);
  --shadow-lg:   0 16px 40px rgba(38,36,32,.10);

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   12px;
  --radius-xl:   16px;

  --font-display:'Poppins', sans-serif;
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Poppins', sans-serif;

  --transition:  all .25s ease;
  --ease-premium: ease;
  --nav-h:       76px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

/* ── Container ─────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Typography helpers ────────────────────────────── */
.gradient-text { color: var(--clay); }

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--clay); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.section-desc { font-size: 1rem; color: var(--slate); max-width: 520px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 56px; }

.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  font-family: var(--font-head);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.btn--primary {
  background: var(--ink);
  color: var(--white);
}
.btn--primary:hover { background: var(--clay); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--outline:hover { border-color: var(--ink); }

.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s, visibility .5s;
  animation: autoHidePreloader .5s ease 2.5s forwards;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes autoHidePreloader { to { opacity: 0; visibility: hidden; pointer-events: none; } }

.preloader__inner { text-align: center; color: var(--white); }
.preloader__camera { font-size: 2.4rem; color: var(--white); margin-bottom: 16px; opacity: .9; }
.preloader__dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 12px; }
.preloader__dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); animation: dotFade 1s ease-in-out infinite; }
.preloader__dots span:nth-child(2) { animation-delay: .15s; }
.preloader__dots span:nth-child(3) { animation-delay: .3s; }
@keyframes dotFade { 0%,100% { opacity: .3; } 50% { opacity: 1; } }
.preloader p { font-family: var(--font-head); font-size: .92rem; color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════════════
   FAB BUTTONS
   ══════════════════════════════════════════════════════ */
.fab-btn {
  position: fixed;
  z-index: 1000;
  right: 24px;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.fab-btn:hover { transform: translateY(-2px); }
.fab-whatsapp { bottom: 100px; background: #25D366; }
.fab-call     { bottom: 36px; background: var(--ink); }

/* ══════════════════════════════════════════════════════
   HEADER / NAVBAR
   ══════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }

.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 16px; }

.header__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--white);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.logo-sub { font-size: .62rem; font-weight: 600; color: var(--clay); letter-spacing: .05em; text-transform: uppercase; }

.nav__list { display: flex; gap: 4px; align-items: center; }
.nav__link {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--ink); background: var(--bg-alt); }
.nav__link--highlight { background: var(--ink); color: var(--white) !important; }
.nav__link--highlight:hover { background: var(--clay); }

.header__actions { display: flex; align-items: center; gap: 12px; }
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  color: var(--slate-light);
  transition: var(--transition);
  border: 1px solid transparent;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active { background: var(--ink); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; width: 40px; }
.hamburger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   HERO SECTION — plain, contained, two columns
   ══════════════════════════════════════════════════════ */
.hero {
  min-height: 88vh;
  padding: calc(var(--nav-h) + 48px) 0 56px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg);
}

.hero__blobs, .confetti { display: none; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 22px;
}
.hero__badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--clay); }

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__sub { font-size: 1rem; color: var(--slate); max-width: 460px; margin-bottom: 30px; line-height: 1.75; }

.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero__stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat { text-align: left; }
.stat__num { display: inline-block; font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--ink); line-height: 1; }
.stat__num + span { display: inline-block; font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--clay); }
.stat__label { display: block; font-size: .73rem; color: var(--clay); font-weight: 700; margin-top: 3px; }
.stat__divider { width: 1px; height: 34px; background: var(--border); }

/* Hero image — one plain framed photo */
.hero__visual { position: relative; }
.hero__collage { position: relative; width: 100%; max-width: 440px; margin-left: auto; }

.collage-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.collage-card img { width: 100%; height: 100%; object-fit: cover; }

.collage-card--main { width: 100%; aspect-ratio: 4 / 5; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.collage-card--sm1, .collage-card--sm2, .collage-badge { display: none; }

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  color: var(--slate-light);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-indicator__mouse { width: 20px; height: 32px; border: 1.5px solid var(--border); border-radius: 10px; position: relative; display: flex; justify-content: center; }
.scroll-indicator__wheel { width: 3px; height: 6px; background: var(--clay); border-radius: 2px; margin-top: 5px; animation: scrollWheel 1.8s ease-in-out infinite; }
@keyframes scrollWheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

/* ══════════════════════════════════════════════════════
   MARQUEE BANNER — plain ticker line
   ══════════════════════════════════════════════════════ */
.marquee-banner { background: var(--ink); overflow: hidden; padding: 13px 0; position: relative; z-index: 1; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 34s linear infinite; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 9px; padding: 0 30px;
  font-family: var(--font-head); font-size: .8rem; font-weight: 500;
  color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .05em;
  border-right: 1px solid rgba(255,255,255,.14);
}
.marquee-track span i { font-size: .74rem; color: var(--clay); opacity: .9; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-banner:hover .marquee-track { animation-play-state: paused; }

/* ══════════════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════════════ */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.about__img-wrap { position: relative; padding-bottom: 14%; }
.about__img--main { width: 84%; height: 420px; border-radius: var(--radius-lg); object-fit: cover; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.about__img--accent {
  position: absolute; width: 44%; height: 200px; bottom: 0; right: 0;
  border-radius: var(--radius); border: 4px solid var(--bg);
  object-fit: cover; box-shadow: var(--shadow-sm);
}

.about__experience-badge {
  position: absolute; top: 16px; right: 4px;
  background: var(--ink); color: var(--white);
  border-radius: var(--radius); padding: 14px 18px; text-align: center;
}
.about__experience-badge .num { display: block; font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; line-height: 1; }
.about__experience-badge .txt { font-size: .68rem; font-weight: 500; opacity: .85; text-transform: uppercase; letter-spacing: .04em; }

.about__content p { color: var(--slate); margin-bottom: 14px; font-size: .96rem; }
.about__features { display: flex; flex-direction: column; gap: 18px; margin: 26px 0 32px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-item__icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--border); color: var(--clay);
  display: flex; align-items: center; justify-content: center; font-size: .92rem;
}
.feature-item h4 { font-family: var(--font-head); font-weight: 600; font-size: .93rem; color: var(--ink); margin-bottom: 3px; }
.feature-item p { font-size: .865rem; margin: 0; color: var(--slate); }

/* ══════════════════════════════════════════════════════
   SERVICES SECTION — plain photo-topped cards
   ══════════════════════════════════════════════════════ */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  user-select: none;
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--slate-light); }

.service-card__img { aspect-ratio: 5 / 4; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card__img img { transform: scale(1.03); }

.service-card__overlay { padding: 22px 22px 24px; }
.service-card__icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--border); color: var(--clay);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 14px;
}
.service-card__overlay h3 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.service-card__overlay p { font-size: .84rem; color: var(--slate); }

/* ══════════════════════════════════════════════════════
   GALLERY SECTION
   ══════════════════════════════════════════════════════ */
.gallery__filters { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  font-family: var(--font-head); font-size: .82rem; font-weight: 500;
  padding: 7px 18px; border-radius: 99px; color: var(--slate);
  border: 1px solid var(--border); background: transparent; transition: var(--transition);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 12px; }
.gallery__item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; border: 1px solid var(--border); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item__overlay {
  position: absolute; inset: 0; background: rgba(38,36,32,.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  color: var(--white); opacity: 0; transition: var(--transition);
}
.gallery__item__overlay i { font-size: 1.3rem; }
.gallery__item__overlay span { font-family: var(--font-head); font-size: .8rem; font-weight: 600; }
.gallery__item:hover .gallery__item__overlay { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 9000; background: rgba(20,18,15,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox__img-wrap { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); overflow: hidden; }
.lightbox__img-wrap img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: fixed; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); border-radius: 50%; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem; transition: var(--transition);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.2); }
.lightbox__close { top: 24px; right: 24px; font-size: 1.2rem; }
.lightbox__prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }
.gallery__item.hidden { display: none; }

/* ══════════════════════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════════════════════ */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  user-select: none;
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--slate-light); }

.why-card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.why-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.why-card:hover .why-card__img img { transform: scale(1.03); }

.why-card__overlay { padding: 20px 18px 22px; text-align: left; }
.why-card__num { font-family: var(--font-head); font-size: .76rem; font-weight: 700; color: var(--clay); letter-spacing: .05em; margin-bottom: 8px; }
.why-card__icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--border); color: var(--clay);
  font-size: .9rem; display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.why-card h3 { font-family: var(--font-head); font-size: .92rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.why-card p { font-size: .8rem; color: var(--slate); }

/* ══════════════════════════════════════════════════════
   PACKAGES SECTION
   ══════════════════════════════════════════════════════ */
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.packages__grid--4 { grid-template-columns: repeat(4, 1fr); }

.price-amount { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.pkg-card--featured .price-amount { color: var(--white); }
.price-note { display: block; font-size: .71rem; color: var(--slate-light); line-height: 1.4; }
.pkg-card--featured .price-note { color: rgba(255,255,255,.55); }
.pkg-note { text-align: center; margin-top: 28px; font-size: .8rem; color: var(--slate-light); }
.pkg-no { color: var(--slate-light) !important; }

.pkg-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover { box-shadow: var(--shadow-md); }

.pkg-card--featured { background: var(--ink); border-color: var(--ink); }

.pkg-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--clay); color: var(--white);
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  padding: 4px 16px; border-radius: 99px; white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
}

.pkg-card__header { margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--border); text-align: center; }
.pkg-card--featured .pkg-card__header { border-bottom-color: rgba(255,255,255,.12); }

.pkg-card__icon {
  width: 54px; height: 54px; border-radius: var(--radius);
  background: var(--bg-alt); border: 1px solid var(--border); color: var(--clay);
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.pkg-card--featured .pkg-card__icon { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: var(--white); }

.pkg-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.pkg-card--featured h3 { color: var(--white); }
.pkg-card__price { font-family: var(--font-head); font-size: .86rem; color: var(--slate-light); }
.pkg-card--featured .pkg-card__price { color: rgba(255,255,255,.55); }

.pkg-card__rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 6px; }
.pkg-row { display: flex; align-items: flex-start; gap: 11px; }
.pkg-row__num {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 5px;
  background: var(--bg-alt); border: 1px solid var(--border); color: var(--slate);
  font-family: var(--font-head); font-size: .64rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.pkg-card--featured .pkg-row__num { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.8); }

.pkg-row__body h4 { font-family: var(--font-head); font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.pkg-card--featured .pkg-row__body h4 { color: var(--white); }
.pkg-row__body p { font-size: .79rem; line-height: 1.55; color: var(--slate); }
.pkg-card--featured .pkg-row__body p { color: rgba(255,255,255,.55); }

.pkg-row__icon {
  font-size: .64rem; margin-right: 5px; display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; border-radius: 50%; vertical-align: -2px;
}
.pkg-row__icon--check { color: #5C7A5E; background: rgba(92,122,94,.12); }
.pkg-row__icon--cross { color: var(--clay-dark); background: rgba(var(--clay-dark-rgb),.12); }
.pkg-row__icon--clock { color: var(--slate); background: rgba(92,88,80,.1); }
.pkg-row__icon--money { color: var(--clay-dark); background: rgba(var(--clay-dark-rgb),.12); }
.pkg-row__icon--info  { color: var(--slate); background: rgba(92,88,80,.1); }
.pkg-card--featured .pkg-row__icon--check { color: #8FBB92; background: rgba(143,187,146,.15); }
.pkg-card--featured .pkg-row__icon--cross { color: #D69A80; background: rgba(214,154,128,.15); }
.pkg-card--featured .pkg-row__icon--clock,
.pkg-card--featured .pkg-row__icon--info { color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); }
.pkg-card--featured .pkg-row__icon--money { color: #D69A80; background: rgba(214,154,128,.15); }

.pkg-card__moreWrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.pkg-card__moreWrap.expanded { grid-template-rows: 1fr; }
.pkg-card__moreInner { overflow: hidden; min-height: 0; }
.pkg-card__moreWrap .pkg-card__rows { padding-top: 14px; }

.pkg-card__moreBtn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; margin: 12px 0 22px; padding: 7px 0;
  font-family: var(--font-head); font-size: .76rem; font-weight: 600; color: var(--clay);
  transition: var(--transition);
}
.pkg-card--featured .pkg-card__moreBtn { color: rgba(255,255,255,.75); }
.pkg-card__moreBtn i { font-size: .66rem; transition: transform .3s ease; }
.pkg-card__moreBtn.expanded i { transform: rotate(180deg); }
.pkg-card > .btn { margin-top: auto; }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════ */
.testimonials__track-wrap { overflow: hidden; }
.testimonials__track { display: flex; gap: 24px; transition: transform .5s ease; }

.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1px solid var(--border);
}

.testi-card__stars { color: var(--clay); margin-bottom: 16px; font-size: .85rem; gap: 3px; display: flex; }
.testi-card p { font-size: .89rem; color: var(--ink); line-height: 1.7; margin-bottom: 20px; }
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; flex-shrink: 0;
}
.testi-card__author strong { display: block; font-family: var(--font-head); font-size: .88rem; color: var(--ink); }
.testi-card__author span { font-size: .77rem; color: var(--slate-light); }

.testimonials__dots { display: flex; justify-content: center; gap: 7px; margin-top: 28px; }
.testi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); border: none; transition: var(--transition); cursor: pointer; }
.testi-dot.active { background: var(--ink); width: 20px; border-radius: 4px; }

/* ══════════════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════════════ */
.contact__inner { display: flex; justify-content: center; }
.contact__info { max-width: 780px; width: 100%; text-align: center; }
.contact__info .contact__details { text-align: left; }
.contact__info .contact__social { justify-content: center; }
.contact__details { display: flex; flex-direction: row; align-items: flex-start; justify-content: center; width: fit-content; gap: 56px; margin: 28px auto 28px; }
.contact__details-col { display: flex; flex-direction: column; gap: 22px; }
.contact__detail-item { display: flex; gap: 15px; align-items: flex-start; }
.contact__detail-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--border); color: var(--clay);
  display: flex; align-items: center; justify-content: center; font-size: .92rem;
}
.contact__detail-item h4 { font-family: var(--font-head); font-weight: 600; font-size: .86rem; color: var(--ink); margin-bottom: 4px; }
.contact__detail-item a { display: block; font-size: .88rem; color: var(--slate); transition: color .2s; }
.contact__detail-item a:hover { color: var(--clay); }
.contact__detail-item p { font-size: .86rem; color: var(--slate); }
.contact__time { display: block; font-size: .76rem; color: var(--slate-light); margin-top: 2px; }
.contact__map-link { display: inline-flex !important; align-items: center; gap: 4px; font-size: .8rem !important; color: var(--clay) !important; font-weight: 600; margin-top: 4px; }

.contact__social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--white); transition: var(--transition);
}
.social-btn:hover { transform: translateY(-2px); }
.social-btn--ig { background: linear-gradient(135deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn--fb { background: #1877F2; }
.social-btn--wa { background: #25D366; }


/* ══════════════════════════════════════════════════════
   OFFICES & BRANCHES
   ══════════════════════════════════════════════════════ */
.branches__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 940px;
  margin: 0 auto;
}

.branch-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: var(--transition);
}
.branch-card:hover { box-shadow: var(--shadow-sm); border-color: var(--slate-light); }

.branch-card__head { display: flex; align-items: center; gap: 12px; }
.branch-card__icon {
  width: 36px; height: 36px; min-width: 36px; border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--border); color: var(--clay);
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
}
.branch-card__title { display: flex; flex-direction: column; }
.branch-card__city { font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--ink); line-height: 1.25; }
.branch-card__tag {
  font-size: .6rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--slate-light); margin-top: 3px;
}

.branch-card__body {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border);
}
.branch-card__body address {
  font-style: normal; font-size: .84rem; color: var(--slate); line-height: 1.6;
}
.branch-card__body address + address {
  margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--border);
}

/* highlight the main office */
.branch-card--main { background: rgba(var(--clay-rgb), .045); border-color: var(--clay); }
.branch-card--main .branch-card__icon { background: var(--clay); border-color: var(--clay); color: var(--white); }
.branch-card--main .branch-card__body { border-top-color: rgba(var(--clay-rgb), .25); }
.branch-card--main .branch-card__tag {
  align-self: flex-start;
  color: var(--white); background: var(--clay);
  border-radius: 99px; padding: 3px 9px; margin-top: 4px;
}
.branch-card--main .branch-card__tag i { margin-right: 4px; }


/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer { background: var(--ink); color: rgba(255,255,255,.65); }
.footer__top { padding: 64px 0 40px; }
.footer__top-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.footer__brand .header__logo { margin-bottom: 15px; }
.footer__brand .logo-icon { background: var(--white); color: var(--ink); }
.footer__brand .logo-name { color: var(--white); }
.footer__brand p { font-size: .86rem; line-height: 1.7; max-width: 280px; margin-bottom: 18px; }
.footer__social { display: flex; gap: 9px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: .86rem; color: rgba(255,255,255,.65); transition: var(--transition);
}
.footer__social a:hover { background: rgba(255,255,255,.14); color: var(--white); }
.footer__links h4, .footer__contact h4 {
  font-family: var(--font-head); font-size: .82rem; font-weight: 600; color: var(--white);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: .86rem; color: rgba(255,255,255,.58); transition: color .2s; }
.footer__links a:hover { color: var(--white); }
.footer__contact ul { display: flex; flex-direction: column; gap: 11px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 9px; font-size: .83rem; }
.footer__contact li i { color: var(--clay); margin-top: 2px; flex-shrink: 0; }
.footer__contact a { color: rgba(255,255,255,.58); transition: color .2s; }
.footer__contact a:hover { color: var(--white); }
.footer__bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: .8rem; color: rgba(255,255,255,.4); }
.footer__bottom a { color: rgba(255,255,255,.6); }
.footer__bottom i { color: var(--clay); }

/* ══════════════════════════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 32px; left: 24px; width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  box-shadow: var(--shadow-md); transition: var(--transition);
  opacity: 0; transform: translateY(16px); pointer-events: none; z-index: 500;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--clay); }

/* Story dot-nav belonged to the scroll-snap layout — not used here */
.story-nav { display: none; }

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS — small, quiet
   ══════════════════════════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up    { transform: translateY(16px); }
.reveal-left  { transform: translateX(-16px); }
.reveal-right { transform: translateX(16px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0, 0); }

/* ══════════════════════════════════════════════════════
   MARQUEE TEXT HOOK
   ══════════════════════════════════════════════════════ */
.marquee-track span em { font-style: normal; }

/* ══════════════════════════════════════════════════════
   PACKAGES — CITY PROMPT / INDICATOR
   ══════════════════════════════════════════════════════ */
.pkg-prompt {
  max-width: 460px; margin: 0 auto 44px; text-align: center;
  background: var(--surface); border: 1px dashed var(--border); border-radius: var(--radius-lg); padding: 44px 30px;
}
.pkg-prompt__icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--bg-alt); border: 1px solid var(--border); color: var(--clay);
  font-size: 1.35rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.pkg-prompt h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.pkg-prompt p { font-size: .88rem; color: var(--slate); margin-bottom: 22px; }

.pkg-city-indicator { display: none; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; text-align: center; margin-bottom: 36px; font-size: .9rem; color: var(--slate); }
.pkg-city-indicator strong { color: var(--ink); font-family: var(--font-head); font-weight: 600; }
.pkg-city-indicator button {
  font-family: var(--font-head); font-size: .76rem; font-weight: 600; color: var(--ink);
  background: var(--bg-alt); border: 1px solid var(--border); padding: 5px 13px; border-radius: 99px; transition: var(--transition);
}
.pkg-city-indicator button:hover { background: var(--ink); color: var(--white); }

#packagesGrid { display: none; }
#packagesGrid .pkg-card { animation: pkgCardIn .4s ease both; animation-delay: var(--delay, 0s); }
@keyframes pkgCardIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.pkg-note { display: none; }

/* ══════════════════════════════════════════════════════
   CITY SELECTION MODAL
   ══════════════════════════════════════════════════════ */
.city-modal { position: fixed; inset: 0; z-index: 9500; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.city-modal.active { opacity: 1; visibility: visible; }
.city-modal__overlay { position: absolute; inset: 0; background: rgba(38,36,32,.5); }
.city-modal__panel {
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 36px 36px 28px; max-width: 540px; width: 100%; max-height: 86vh; overflow-y: auto;
  transform: translateY(16px); opacity: 0; transition: transform .3s ease, opacity .25s ease;
}
.city-modal.active .city-modal__panel { transform: translateY(0); opacity: 1; }
.city-modal__close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-alt); color: var(--slate); display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.city-modal__close:hover { background: var(--ink); color: var(--white); }
.city-modal__header { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.city-modal__flag { font-size: 1.7rem; line-height: 1; }
.city-modal__header h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.city-modal__header p { font-size: .82rem; color: var(--clay); font-weight: 500; }
.city-modal__instruction { font-size: .87rem; color: var(--ink); margin-bottom: 22px; line-height: 1.6; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.city-modal__instruction-sub { display: block; color: var(--slate-light); font-size: .83rem; margin-top: 2px; }
.city-modal__grid { display: grid; grid-template-rows: repeat(4, auto); grid-auto-flow: column; column-gap: 28px; row-gap: 20px; }
.city-modal__city-main { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--ink); cursor: pointer; transition: var(--transition); }
.city-modal__city-main i { color: var(--clay); font-size: .88rem; }
.city-modal__city-main:hover { color: var(--clay); }
.city-modal__sub { margin: 7px 0 0 24px; display: flex; flex-direction: column; gap: 6px; }
.city-modal__sub li { font-size: .83rem; color: var(--slate-light); cursor: pointer; transition: color .2s; width: fit-content; }
.city-modal__sub li:hover { color: var(--clay); text-decoration: underline; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__btns { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__collage { max-width: 380px; margin: 0 auto; }

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__img--main { width: 100%; }
  .about__img-wrap { padding-bottom: 18%; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }
  .gallery__item--wide { grid-column: span 2; }

  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .packages__grid, .packages__grid--4 { grid-template-columns: repeat(2, 1fr); }

  /* keep the 7-item nav from crowding between tablet and desktop */
  .nav__list { gap: 2px; }
  .nav__link { padding: 8px 10px; }

  .testi-card { flex: 0 0 calc(50% - 12px); width: calc(50% - 12px); }

  .footer__top-inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav {
    position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--bg);
    padding: 14px 24px 20px; transform: translateY(-16px); opacity: 0; visibility: hidden;
    transition: var(--transition); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
  }
  .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; gap: 4px; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 32px); padding-bottom: 48px; }

  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 2; }

  .why__grid { grid-template-columns: 1fr; }
  .packages__grid--4 { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 100%; width: 100%; }

  .branches__grid { grid-template-columns: 1fr; }

  .footer__top-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }

  .contact__details { flex-direction: column; gap: 32px; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  .about__img--accent { display: none; }
  .about__experience-badge { top: 10px; right: 10px; }

  .city-modal__panel { padding: 28px 20px 22px; }
  .city-modal__grid { grid-template-rows: none; grid-auto-flow: row; grid-template-columns: 1fr; row-gap: 18px; }
  .pkg-prompt { padding: 32px 18px; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .hero__stats { gap: 14px; }
  .stat__divider { height: 26px; }
  .lang-switcher { display: none; }
}
