/* ═══════════════════════════════════════════════════════════════
   VKV STUDIO INTERIORS — Editorial Dark Theme (Toroid-inspired)
═══════════════════════════════════════════════════════════════ */

:root {
  --bg:           #0F0F0E;
  --bg-2:         #161614;
  --bg-3:         #1C1C19;
  --line:         rgba(232,226,214,0.10);
  --line-2:       rgba(232,226,214,0.18);
  --ink:          #E8E2D6;
  --ink-soft:     rgba(232,226,214,0.72);
  --ink-mute:     rgba(232,226,214,0.50);
  --ink-faint:    rgba(232,226,214,0.30);
  --gold:         #B8A581;
  --gold-soft:    #C9B894;
  --gold-dim:     rgba(184,165,129,0.55);
  --wa:           #25D366;

  --ff-head:      'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --ff-body:      'Inter', 'Outfit', -apple-system, system-ui, sans-serif;

  --wrap:         1280px;
  --gutter:       clamp(20px, 4vw, 48px);
  --radius:       2px;
  --radius-lg:    4px;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--gold); color: var(--bg); }

.skip-link {
  position: absolute; top: -100px; left: 0; padding: 8px 16px;
  background: var(--gold); color: var(--bg); z-index: 99999;
}
.skip-link:focus { top: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* ─── HEADER ─── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  background: rgba(15,15,14,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), background 0.35s var(--ease);
}
#site-header.scrolled {
  padding: 12px 0;
  background: rgba(15,15,14,0.92);
}
.hdr {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  width: 100%; max-width: var(--wrap);
  margin: 0 auto; padding: 0 var(--gutter);
}

/* Wordmark */
.site-logo a { display: inline-flex; align-items: baseline; text-decoration: none; }
.logo-name {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1;
}
.logo-dot {
  color: var(--gold);
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  line-height: 1;
  margin-left: 1px;
}
.logo-sub {
  display: block;
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* Desktop nav */
.nav-d > ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 38px;
}
.nav-d a {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 0;
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav-d a:hover, .nav-d a.cur { color: var(--ink); }
.nav-d a.cur::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
}

.has-drop { position: static; }
.has-drop > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  margin-left: 8px;
  opacity: 0.6;
  transition: transform 0.3s var(--ease);
}
.has-drop:hover > a::after,
.has-drop.is-open > a::after {
  transform: rotate(225deg) translateY(0px);
}

/* Services image-tile mega dropdown */
.mega-services {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: rgba(15,15,14,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0 44px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  z-index: 999;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  pointer-events: none;
}
.mega-services::-webkit-scrollbar { width: 8px; }
.mega-services::-webkit-scrollbar-track { background: rgba(15,15,14,0.4); }
.mega-services::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 4px; }
.has-drop:hover .mega-services,
.has-drop.is-open .mega-services {
  opacity: 1; visibility: visible; transform: translateY(0);
  pointer-events: auto;
}
.mega-services-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.mega-services-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px;
  gap: 24px; flex-wrap: wrap;
}
.mega-services-head h3 {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  color: var(--ink);
}
.mega-services-head h3 em { font-style: italic; color: var(--gold-soft); }
.mega-services-head p {
  margin: 0;
  font-size: 12px;
  color: var(--ink-mute);
  max-width: 380px;
  line-height: 1.5;
}
.mega-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.mega-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  transition: transform 0.5s var(--ease);
}
.mega-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  filter: brightness(0.62) saturate(0.9);
}
.mega-card:hover .mega-card-img {
  transform: scale(1.05);
  filter: brightness(0.78) saturate(1);
}
.mega-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,14,0) 30%, rgba(15,15,14,0.85) 100%);
}
.mega-card-text {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  z-index: 2;
}
.mega-card-eyebrow {
  font-family: var(--ff-body);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.mega-card-title {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0.005em;
}

.nav-r { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line-2);
  background: transparent;
  transition: all 0.3s var(--ease);
  border-radius: var(--radius);
}
.nav-cta:hover { border-color: var(--gold); color: var(--gold); }
.nav-cta svg { width: 14px; height: 14px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn-gold { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { background: transparent; color: var(--ink-soft); border-color: transparent; padding: 12px 0; }
.btn-ghost:hover { color: var(--gold); }
.btn-ghost::after { content: '→'; margin-left: 6px; transition: transform 0.3s var(--ease); }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-wa { background: var(--wa); color: #fff; border-color: var(--wa); }
.btn-wa:hover { background: #1dba56; color: #fff; border-color: #1dba56; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p  { margin: 0 0 16px; color: var(--ink-soft); }
em, .italic { font-style: italic; color: var(--gold-soft); }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 20px;
}
.section-title em { font-style: italic; color: var(--gold-soft); }
.section-lead { font-size: 1rem; color: var(--ink-mute); max-width: 600px; line-height: 1.7; }
.divider { width: 48px; height: 1px; background: var(--gold); margin: 20px 0 32px; }
.divider-center { margin-left: auto; margin-right: auto; }
.gold { color: var(--gold); }

/* ─── SECTIONS ─── */
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section-dark { background: var(--bg-2); }
.section-darker { background: #0A0A09; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 72px); }
.section-head .divider { margin-left: auto; margin-right: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.45) saturate(0.85);
  z-index: 0;
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(15,15,14,0.4), rgba(15,15,14,0.85) 70%),
    linear-gradient(180deg, rgba(15,15,14,0.5) 0%, rgba(15,15,14,0.95) 100%);
  z-index: 1;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-content { max-width: 880px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line-2);
  padding: 10px 18px;
  border-radius: var(--radius);
  margin-bottom: 32px;
  background: rgba(15,15,14,0.4);
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  max-width: 600px;
  color: var(--ink-mute);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 720px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-stat span {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat p {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.scroll-ind {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  z-index: 3;
  writing-mode: vertical-rl;
}
.scroll-ind::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: var(--gold-dim);
  margin: 16px auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%      { transform: scaleY(0.4); opacity: 1; }
}

/* ─── BRAND STRIP ─── */
.brand-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.brand-strip-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
.strip-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.strip-icon { color: var(--gold); }

/* ─── WORK / PROJECTS GRID ─── */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
/* (Old overlay-style work-card / work-card-text / work-card-overlay removed —
   we now use the new card pattern with .work-card-body sitting below the image.) */

/* ─── SERVICES GRID ─── */
/* Base grid only — card styling defined in supplement section below */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
/* (Old overlay-style svc-card / svc-card-text / svc-card-overlay removed —
   we now use the new card pattern with .svc-card-body sitting below the image.) */

/* ─── PAGE HERO ─── */
/* (Old page-hero CSS removed — superseded by the unified definition
   in the supplement section below which handles .page-hero-bg and
   .page-hero-inner correctly.) */
.breadcrumb {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.breadcrumb a { color: var(--ink-mute); transition: color 0.25s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:not(:first-child) { color: var(--gold-dim); }

/* ─── ABOUT IMG ─── */
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  filter: brightness(0.85);
}

/* ─── PROCESS ─── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process-step {
  position: relative;
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
}
.process-num {
  font-family: var(--ff-head);
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.process-step h3 { font-family: var(--ff-head); font-size: 1.25rem; margin: 0 0 10px; color: var(--ink); }
.process-step p { font-size: 13px; color: var(--ink-mute); line-height: 1.6; margin: 0; }

/* ─── FEATURES ─── */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}
.feature-list li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 11px;
  padding-top: 4px;
}

/* ─── TESTIMONIALS ─── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.testi-card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.testi-quote {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 24px;
}
.testi-quote::before { content: '"'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testi-stars { color: var(--gold); margin-bottom: 14px; font-size: 13px; letter-spacing: 0.1em; }
.testi-name {
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.testi-role { font-size: 12px; color: var(--ink-mute); margin-top: 4px; }

/* ─── GALLERY ─── */
.gallery-filter {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px;
  margin-bottom: 48px;
}
.gallery-filter button {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.gallery-filter button:hover { color: var(--gold); border-color: var(--gold-dim); }
.gallery-filter button.active { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  cursor: zoom-in;
}
.gallery-item-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.78);
  transition: transform 0.7s var(--ease), filter 0.4s var(--ease);
}
.gallery-item:hover .gallery-item-img { transform: scale(1.06); filter: brightness(0.95); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,10,9,0.96);
  display: none;
  align-items: center; justify-content: center;
  z-index: 9999;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 90vh; max-width: 90vw; }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: var(--ink);
  font-size: 2rem; cursor: pointer;
}

/* ─── PACKAGES ─── */
.pkg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pkg-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.pkg-card::before {
  content: '';
  position: absolute; left: 0; top: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.pkg-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.pkg-card:hover::before { opacity: 1; }
.pkg-card .pkg-eyebrow {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.pkg-card h3 { font-family: var(--ff-head); font-size: 1.7rem; margin: 0 0 12px; color: var(--ink); }
.pkg-card .pkg-desc { color: var(--ink-mute); font-size: 14px; margin-bottom: 24px; }
.pkg-card .pkg-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  border-top: 1px solid var(--line);
}
.pkg-card .pkg-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  display: flex; align-items: flex-start; gap: 10px;
}
.pkg-card .pkg-features li::before { content: '✦'; color: var(--gold); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-info-card {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}
.contact-info-card h4 {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.contact-info-card p, .contact-info-card a {
  font-size: 15px;
  color: var(--ink);
  margin: 0;
  line-height: 1.6;
}
.contact-info-card a:hover { color: var(--gold); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--bg-3); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
#form-msg { padding: 14px 18px; border-radius: var(--radius); margin-top: 12px; font-size: 14px; display: none; }
#form-msg.ok { display: block; background: rgba(184,165,129,0.15); color: var(--gold-soft); border: 1px solid var(--gold-dim); }
#form-msg.err { display: block; background: rgba(192,57,43,0.18); color: #ff9a8c; border: 1px solid rgba(192,57,43,0.35); }

.map-embed {
  width: 100%;
  height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-top: 24px;
  filter: grayscale(0.6) brightness(0.85);
}

/* ─── BLOG / SINGLE ─── */
.post-list { display: grid; gap: 24px; }
.post-card {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s var(--ease);
}
.post-card:hover { border-color: var(--line-2); }
.post-thumb { aspect-ratio: 4 / 3; background-size: cover; background-position: center; border-radius: var(--radius); }
.post-card h2 { font-family: var(--ff-head); font-size: 1.5rem; margin: 12px 0 10px; }
.post-meta { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.post-excerpt { color: var(--ink-mute); font-size: 14px; margin-bottom: 16px; }

.single-content { max-width: 760px; margin: 0 auto; }
.single-content h2, .single-content h3 { margin-top: 32px; }
.single-content p { font-size: 16px; color: var(--ink-soft); line-height: 1.8; }
.single-content img { border-radius: var(--radius-lg); margin: 24px 0; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ─── CTA BAND ─── */
.cta-band {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  margin: 0 auto 20px;
  max-width: 800px;
  line-height: 1.1;
}
.cta-band h2 em { font-style: italic; color: var(--gold-soft); }
.cta-band p { max-width: 580px; margin: 0 auto 36px; color: var(--ink-mute); }
.cta-band .hero-btns { justify-content: center; }

/* ─── FOOTER ─── */
#site-footer {
  background: #08080A;
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.ftr-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.ftr-brand .logo-name { font-size: 1.8rem; }
.ftr-brand p {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 20px;
  line-height: 1.7;
  max-width: 340px;
}
.ftr-col h5 {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 22px;
}
.ftr-col ul { list-style: none; padding: 0; margin: 0; }
.ftr-col li { margin-bottom: 12px; }
.ftr-col a { font-size: 13px; color: var(--ink-mute); transition: color 0.25s var(--ease); letter-spacing: 0.02em; }
.ftr-col a:hover { color: var(--gold); }
.ftr-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}
.ftr-social { display: flex; gap: 16px; }
.ftr-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-mute);
  transition: all 0.3s var(--ease);
}
.ftr-social a:hover { border-color: var(--gold); color: var(--gold); }
.ftr-social svg { width: 15px; height: 15px; }

/* ─── FLOATING WHATSAPP ─── */
.wa-float {
  position: fixed; right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 998;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  animation: waPulse 2.4s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(37,211,102,0.4); }
  50%      { transform: scale(1.05); box-shadow: 0 10px 40px rgba(37,211,102,0.6); }
}
.wa-float svg { width: 28px; height: 28px; }

/* ─── ANIMATIONS ─── */
/* Fade-up reveal — only hidden if JS has confirmed it can animate them */
.fade-up { opacity: 1; transform: translateY(0); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
html.js-ready .fade-up,
body.js-ready .fade-up { opacity: 0; transform: translateY(30px); }
html.js-ready .fade-up.is-visible,
body.js-ready .fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .work-grid, .svc-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .mega-services-grid { grid-template-columns: repeat(3, 1fr); }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 1024px) {
  .nav-d, .nav-r { display: none !important; }
  .grid-2, .grid-3, .pkg-grid, .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .post-card { grid-template-columns: 1fr; }
  .post-thumb { aspect-ratio: 16/9; }
  .form-row { grid-template-columns: 1fr; }
  .ftr-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .work-grid, .svc-grid, .gallery-grid, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 60px; min-height: auto; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr; gap: 36px; }
  .wa-float { right: 14px; bottom: 14px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
  .brand-strip-inner { justify-content: center; gap: 14px; }
  .strip-item { font-size: 9px; }
}

/* ──────────────────────────────────────────────────────────────
   SUPPLEMENT — page-template classes (front-page, about, services,
   gallery, packages, contact, blog, 404, service & package detail)
   ────────────────────────────────────────────────────────────── */

/* SECTION HEAD / FOOT */
.sec-head { text-align: center; margin: 0 auto 56px; max-width: 760px; }
.sec-head .eyebrow { display: block; margin-bottom: 14px; }
.sec-head h2 { font-family: var(--ff-head); font-weight: 400; font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 14px; color: var(--ink); }
.sec-head h2 em { font-style: italic; color: var(--gold-soft); }
.sec-head .sec-sub, .sec-sub { color: var(--ink-mute); font-size: 15px; line-height: 1.7; margin: 0 auto; max-width: 620px; }
.sec-foot { text-align: center; margin-top: 56px; }

/* HERO scroll cue */
.hero-scroll { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 4; }
.hero-scroll span { display: block; width: 1px; height: 56px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* BRAND STRIP — front page numbers */
.bs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bs-grid > div { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 4px 8px; border-left: 1px solid var(--line); }
.bs-grid > div:first-child { border-left: 0; }
.bs-grid strong { font-family: var(--ff-head); font-weight: 400; font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--gold-soft); line-height: 1; margin-bottom: 8px; letter-spacing: -0.01em; }
.bs-grid span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); }

/* LEDE / LINK ARROW */
.lede { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 18px; }
.link-arrow { display: inline-block; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); text-decoration: none; padding: 4px 0; border-bottom: 1px solid var(--gold-dim); transition: color .25s var(--ease), border-color .25s var(--ease); }
.link-arrow:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* GRID HELPERS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.grid-2.align-c { align-items: center; }
.about-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; display: block; }

/* PAGE HERO (about, services, gallery, packages, contact, single, blog, 404) */
.page-hero { position: relative; min-height: 60vh; display: flex; align-items: center; padding: 180px 0 100px; overflow: hidden; }
.page-hero.page-hero-sm { min-height: 40vh; padding: 160px 0 70px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.02); animation: heroZoom 20s ease-in-out infinite alternate; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,15,14,0.55) 0%, rgba(15,15,14,0.75) 100%); }
.page-hero-inner { position: relative; z-index: 2; text-align: center; max-width: 880px; margin: 0 auto; }
.page-hero-inner .eyebrow { display: block; margin-bottom: 18px; color: var(--gold-soft); }
.page-hero-inner h1 { font-family: var(--ff-head); font-weight: 400; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.08; letter-spacing: -0.015em; margin: 0 0 22px; color: var(--ink); }
.page-hero-inner h1 em { font-style: italic; color: var(--gold-soft); }
.page-hero-sub { max-width: 640px; margin: 0 auto; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

/* SVC GRID — image cards with text overlay inside image (Toroid-style) */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.svc-grid.svc-grid-3 { grid-template-columns: repeat(3, 1fr); }
.svc-card { position: relative; display: block; text-decoration: none; color: inherit; overflow: hidden; background: var(--bg-2); aspect-ratio: 4/5; }
.svc-card-img { position: absolute; inset: 0; overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .6s var(--ease); display: block; }
.svc-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,14,0) 25%, rgba(15,15,14,0.65) 60%, rgba(15,15,14,0.95) 100%);
  pointer-events: none;
}
.svc-card:hover .svc-card-img img { transform: scale(1.05); filter: brightness(0.95); }
.svc-card-body { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.svc-card-body .svc-num { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-soft); display: inline-block; margin-bottom: 10px; }
.svc-card-body h3 { font-family: var(--ff-body); font-weight: 500; font-size: 14px; line-height: 1.3; letter-spacing: 0.2em; text-transform: uppercase; margin: 0; color: #fff; }
.svc-card-body p { font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,0.78); margin: 10px 0 0; opacity: 0; transform: translateY(6px); transition: opacity .35s var(--ease), transform .35s var(--ease); max-height: 0; overflow: hidden; }
.svc-card:hover .svc-card-body p { opacity: 1; transform: translateY(0); max-height: 100px; }

/* WORK CARDS (front-page featured work) — overlay-on-image style */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.work-card { position: relative; display: block; text-decoration: none; color: inherit; overflow: hidden; background: var(--bg-2); aspect-ratio: 4/5; }
.work-card-img { position: absolute; inset: 0; overflow: hidden; }
.work-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .6s var(--ease); display: block; }
.work-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,14,0) 30%, rgba(15,15,14,0.55) 65%, rgba(15,15,14,0.92) 100%);
  pointer-events: none;
}
.work-card:hover .work-card-img img { transform: scale(1.05); filter: brightness(0.95); }
.work-card-body { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; }
.work-card-body .work-cat { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-soft); display: inline-block; margin-bottom: 10px; }
.work-card-body h3 { font-family: var(--ff-head); font-weight: 400; font-size: 1.45rem; line-height: 1.2; letter-spacing: -0.005em; margin: 0 0 6px; color: var(--ink); }
.work-card-body .work-meta { font-size: 11px; color: var(--ink-mute); margin: 0; letter-spacing: 0.06em; }

/* PROCESS GRID — numbered */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process-step { padding: 32px 0 0; border-top: 1px solid var(--line); }
.process-step .ps-num { display: block; font-family: var(--ff-head); font-style: italic; font-size: 1.8rem; color: var(--gold-soft); margin-bottom: 14px; line-height: 1; }
.process-step h3 { font-family: var(--ff-head); font-weight: 400; font-size: 1.2rem; margin: 0 0 10px; color: var(--ink); }
.process-step p { font-size: 13px; color: var(--ink-mute); line-height: 1.65; margin: 0; }

/* VALUES GRID (about page) */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card { padding: 30px 0 0; border-top: 1px solid var(--line); }
.value-card .v-num { display: block; font-family: var(--ff-head); font-style: italic; font-size: 1.6rem; color: var(--gold-soft); margin-bottom: 12px; line-height: 1; }
.value-card h3 { font-family: var(--ff-head); font-weight: 400; font-size: 1.25rem; margin: 0 0 10px; color: var(--ink); }
.value-card p { font-size: 13.5px; color: var(--ink-mute); line-height: 1.65; margin: 0; }

/* STATS GRID (about page) */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat-card { text-align: center; padding: 40px 18px; background: var(--bg-2); border: 1px solid var(--line); }
.stat-card .stat-num { font-family: var(--ff-head); font-weight: 400; font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--gold-soft); line-height: 1; letter-spacing: -0.02em; display: inline-block; }
.stat-card .stat-plus { font-family: var(--ff-head); font-style: italic; font-size: 1.6rem; color: var(--gold-soft); margin-left: 2px; }
.stat-card p { margin: 14px 0 0; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }

/* FEATURE LIST */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 32px; max-width: 900px; margin-left: auto; margin-right: auto; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; padding: 14px 0; border-bottom: 1px solid var(--line); }
.feat-mark { color: var(--gold-soft); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

/* TESTIMONIAL CARDS */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--bg-2); border: 1px solid var(--line); padding: 36px 30px; margin: 0; }
.testi-card p { font-family: var(--ff-head); font-style: italic; font-size: 1.05rem; line-height: 1.65; color: var(--ink-soft); margin: 0 0 24px; }
.testi-card footer { display: flex; flex-direction: column; padding-top: 18px; border-top: 1px solid var(--line); }
.testi-card footer strong { font-family: var(--ff-head); font-weight: 400; font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.testi-card footer span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }

/* GALLERY FILTER & GRID */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }
.gf-btn { background: transparent; border: 1px solid var(--line); color: var(--ink-mute); padding: 10px 20px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: all .25s var(--ease); font-family: var(--ff-body); }
.gf-btn:hover { color: var(--gold-soft); border-color: var(--gold-dim); }
.gf-btn.is-active, .gf-btn.active { background: var(--gold-soft); color: var(--bg); border-color: var(--gold-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; background: var(--bg-2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.92); }
.gi-overlay { position: absolute; left: 20px; bottom: 20px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; background: rgba(15,15,14,0.6); padding: 8px 14px; backdrop-filter: blur(4px); opacity: 0; transform: translateY(8px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.gallery-item:hover .gi-overlay { opacity: 1; transform: translateY(0); }
.gallery-item.is-hidden { display: none; }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(15,15,14,0.94); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; display: block; }
.lb-close { position: absolute; top: 24px; right: 28px; background: transparent; border: 1px solid var(--line-2); color: var(--ink); width: 44px; height: 44px; font-size: 22px; line-height: 1; cursor: pointer; transition: all .25s var(--ease); }
.lb-close:hover { background: var(--gold-soft); color: var(--bg); border-color: var(--gold-soft); }

/* PACKAGE GRID & CARDS */
.pkg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pkg-card { display: block; text-decoration: none; color: inherit; background: var(--bg-2); border: 1px solid var(--line); transition: border-color .3s var(--ease), transform .3s var(--ease); }
.pkg-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.pkg-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.pkg-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.pkg-card:hover .pkg-card-img img { transform: scale(1.05); }
.pkg-card-body { padding: 32px 32px 34px; }
.pkg-card-body .eyebrow { display: block; margin-bottom: 14px; }
.pkg-card-body h3 { font-family: var(--ff-head); font-weight: 400; font-size: 1.6rem; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 14px; color: var(--ink); }
.pkg-card-body h3 em { font-style: italic; color: var(--gold-soft); }
.pkg-card-body p { font-size: 14px; line-height: 1.65; color: var(--ink-mute); margin: 0 0 20px; }
.pkg-feat { list-style: none; padding: 0; margin: 0 0 22px; }
.pkg-feat li { padding: 8px 0; font-size: 13px; color: var(--ink-soft); border-bottom: 1px solid var(--line); display: flex; align-items: flex-start; gap: 10px; }
.pkg-feat li::before { content: '✦'; color: var(--gold-soft); flex-shrink: 0; }

/* CONTACT GRID */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info > .eyebrow { display: block; margin-bottom: 14px; }
.contact-info h2 { font-family: var(--ff-head); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 8px; color: var(--ink); letter-spacing: -0.01em; }
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 32px 0; }
.info-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px 20px; background: var(--bg-2); border: 1px solid var(--line); text-decoration: none; color: inherit; transition: border-color .3s var(--ease); }
.info-card:hover { border-color: var(--gold-dim); }
.info-card .ic-icon { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex-shrink: 0; background: var(--bg-3); color: var(--gold-soft); border: 1px solid var(--line); }
.info-card .ic-icon svg { width: 18px; height: 18px; }
.info-card > div { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.info-card strong { font-family: var(--ff-head); font-weight: 400; font-size: 1rem; color: var(--ink); letter-spacing: 0; }
.info-card span { font-size: 13px; color: var(--ink-mute); word-break: break-word; }
.info-card .ic-link { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); margin-top: 4px; }
.contact-map { margin-top: 8px; aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.6) brightness(0.9); }

/* CONTACT FORM */
.contact-form-wrap { background: var(--bg-2); border: 1px solid var(--line); padding: 40px 36px; }
.contact-form-wrap > .eyebrow { display: block; margin-bottom: 14px; }
.contact-form-wrap h2 { font-family: var(--ff-head); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 28px; color: var(--ink); letter-spacing: -0.01em; }
.contact-form-wrap h2 em { font-style: italic; color: var(--gold-soft); }
.vkv-form .form-row { margin-bottom: 18px; display: block; }
.vkv-form .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vkv-form label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; }
.vkv-form input, .vkv-form select, .vkv-form textarea {
  width: 100%; background: var(--bg-3); border: 1px solid var(--line);
  color: var(--ink); padding: 13px 14px; font-family: var(--ff-body); font-size: 14px;
  border-radius: 0; transition: border-color .25s var(--ease), background .25s var(--ease);
  margin-top: 6px;
}
.vkv-form input:focus, .vkv-form select:focus, .vkv-form textarea:focus { outline: none; border-color: var(--gold-dim); background: var(--bg-2); }
.vkv-form textarea { resize: vertical; min-height: 110px; font-family: var(--ff-body); }
.btn-block { width: 100%; display: inline-flex; justify-content: center; }
.form-msg { margin-top: 16px; font-size: 13px; min-height: 20px; color: var(--ink-mute); }
.form-msg.is-ok { color: #8ad48a; }
.form-msg.is-err { color: #d48a8a; }

/* SINGLE / PAGE CONTENT */
.single-content { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.8; color: var(--ink-soft); }
.single-content h1, .single-content h2, .single-content h3, .single-content h4 { font-family: var(--ff-head); font-weight: 400; color: var(--ink); letter-spacing: -0.005em; margin: 1.8em 0 0.6em; }
.single-content h2 { font-size: 1.8rem; }
.single-content h3 { font-size: 1.4rem; }
.single-content p { margin: 0 0 1.2em; }
.single-content a { color: var(--gold-soft); border-bottom: 1px solid var(--gold-dim); text-decoration: none; }
.single-content a:hover { color: var(--gold); }
.single-content blockquote { margin: 1.8em 0; padding: 0 0 0 28px; border-left: 2px solid var(--gold-dim); font-family: var(--ff-head); font-style: italic; font-size: 1.2rem; color: var(--ink); }
.single-content ul, .single-content ol { margin: 0 0 1.2em 1.4em; }
.single-content li { margin-bottom: 0.4em; }
.single-content img { max-width: 100%; height: auto; margin: 1.8em 0; display: block; }

/* POST NAV */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 760px; margin: 64px auto 0; padding-top: 32px; border-top: 1px solid var(--line); }
.post-nav > div:last-child { text-align: right; }
.post-nav a { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); text-decoration: none; }
.post-nav a:hover { color: var(--gold-soft); }

/* BLOG LIST */
.post-list { display: grid; gap: 28px; max-width: 980px; margin: 0 auto; }
.post-card { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding: 24px; border: 1px solid var(--line); background: var(--bg-2); transition: border-color .3s var(--ease); }
.post-card:hover { border-color: var(--gold-dim); }
.post-card-img { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-3); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-body { display: flex; flex-direction: column; justify-content: center; }
.post-card-body .eyebrow { margin-bottom: 10px; }
.post-card-body h2 { font-family: var(--ff-head); font-weight: 400; font-size: 1.6rem; line-height: 1.25; margin: 0 0 12px; }
.post-card-body h2 a { color: var(--ink); text-decoration: none; }
.post-card-body h2 a:hover { color: var(--gold-soft); }
.post-card-body p { font-size: 14px; color: var(--ink-mute); line-height: 1.65; margin: 0 0 14px; }

/* EMPTY STATE */
.empty-state { max-width: 540px; margin: 60px auto; text-align: center; }
.empty-state .eyebrow { display: block; margin-bottom: 14px; }
.empty-state h2 { font-family: var(--ff-head); font-weight: 400; font-size: 2rem; margin: 0 0 14px; color: var(--ink); }
.empty-state p { color: var(--ink-mute); margin: 0 0 24px; }

/* PAGINATION */
.vkv-pagination { display: flex; justify-content: center; gap: 8px; margin: 56px 0 0; }
.vkv-pagination a, .vkv-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line); font-size: 13px; color: var(--ink-mute); text-decoration: none; transition: all .25s var(--ease); }
.vkv-pagination a:hover { border-color: var(--gold-dim); color: var(--gold-soft); }
.vkv-pagination .current { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--bg); }

/* CTA BAND extra */
.cta-band { padding: 100px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-inner .eyebrow { display: block; margin-bottom: 18px; }
.cta-inner h2 { font-family: var(--ff-head); font-weight: 400; font-size: clamp(1.8rem, 3.8vw, 2.8rem); line-height: 1.15; margin: 0 0 16px; color: var(--ink); letter-spacing: -0.01em; }
.cta-inner h2 em { font-style: italic; color: var(--gold-soft); }
.cta-inner p { color: var(--ink-mute); margin: 0 0 32px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* 404 */
.sec-404 { padding: 60px 0 100px; }

/* RESPONSIVE — supplement breakpoints */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid.svc-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .bs-grid { grid-template-columns: repeat(2, 1fr); }
  .bs-grid > div:nth-child(3) { border-left: 0; }
  .pkg-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .info-cards { grid-template-columns: 1fr; }
  .vkv-form .form-row-2 { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 1fr; }
  .post-card-img { aspect-ratio: 16/9; max-width: 100%; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav > div:last-child { text-align: left; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-grid, .svc-grid.svc-grid-3, .work-grid, .gallery-grid { grid-template-columns: 1fr; }
  .values-grid, .stats-grid, .bs-grid { grid-template-columns: 1fr; }
  .bs-grid > div { border-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
  .bs-grid > div:first-child { border-top: 0; padding-top: 0; }
  .contact-form-wrap { padding: 28px 22px; }
  .page-hero { padding: 140px 0 70px; min-height: auto; }
  .page-hero.page-hero-sm { padding: 130px 0 50px; }
  .cta-band { padding: 70px 0; }
  .info-card { padding: 18px 16px; }
  .gallery-filter { gap: 6px; }
  .gf-btn { padding: 8px 14px; font-size: 10px; }
}

/* ──────────────────────────────────────────────────────────────
   ALIASES — make new class names from page templates resolve
   to the existing base tokens & components
   ────────────────────────────────────────────────────────────── */

/* Container alias */
.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* Section alias */
.sec { padding: clamp(72px, 10vw, 130px) 0; }
.sec-dark { background: var(--bg-2); }

/* Eyebrow (kicker label used everywhere in new templates) */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  display: inline-block;
}

/* Button primary alias (= existing .btn-gold) */
.btn-primary { background: var(--gold-soft); color: var(--bg); border-color: var(--gold-soft); }
.btn-primary:hover { background: transparent; color: var(--gold-soft); border-color: var(--gold-soft); }

/* Hero-inner / hero-cta aliases (new front-page uses these names) */
.hero-inner { position: relative; z-index: 2; max-width: 880px; padding: 0 var(--gutter); margin: 0 auto; text-align: center; }
.hero-inner .eyebrow { margin-bottom: 22px; color: var(--gold-soft); }
.hero-inner h1 {
  font-family: var(--ff-head);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero-inner h1 em { font-style: italic; color: var(--gold-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 14px; }
.hero .hero-sub { max-width: 620px; margin: 0 auto 8px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; text-align: center; }

/* HERO container — ensure dark gradient overlay on the bg image */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 140px 0 100px; }
.hero .hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.02);
  animation: heroZoom 24s ease-in-out infinite alternate;
}
.hero .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,14,0.45) 0%, rgba(15,15,14,0.75) 70%, rgba(15,15,14,0.95) 100%);
}
@keyframes heroZoom { 0% { transform: scale(1.02); } 100% { transform: scale(1.08); } }

/* Brand strip — wrapper override so .container works inside */
.brand-strip { padding: 56px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Align responsive override: ensure .container is wide enough on small */
@media (max-width: 640px) {
  .hero { min-height: 88vh; padding: 130px 0 80px; }
  .hero-inner h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
}

/* ──────────────────────────────────────────────────────────────
   SCROLL SAFETY — prevent horizontal overflow page-wide
   ────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; position: relative; width: 100%; max-width: 100vw; }

/* ──────────────────────────────────────────────────────────────
   IMAGE LOADING — ensure cards have a dark placeholder before
   images load, and images fade in smoothly when ready
   ────────────────────────────────────────────────────────────── */
.svc-card-img, .work-card-img, .pkg-card-img, .post-card-img, .gallery-item, .about-img {
  background-color: var(--bg-3);
}
img {
  transition: opacity 0.4s ease;
}
img[loading="lazy"] {
  opacity: 1;
}
/* When image is broken or 0-size, gradient overlay still shows readable content */
.svc-card-img img[src=""], .work-card-img img[src=""] {
  opacity: 0;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE FIXES v1.0.9 — ensure consistent mobile experience
   across every page template (front, services, gallery, contact,
   service-detail, package-detail, blog, single, 404)
   ══════════════════════════════════════════════════════════════ */

/* Force burger to always be visible on mobile, even if other CSS tries to hide it */
@media (max-width: 1024px) {
  html body header#site-header #vkv-nav-btn,
  body #vkv-nav-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1002 !important;
  }
  html body header#site-header .nav-d,
  html body header#site-header .nav-r {
    display: none !important;
  }
  /* Ensure header always has space for the burger */
  #site-header .hdr {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
  }
  #site-header .site-logo {
    flex: 0 1 auto;
    min-width: 0;
  }
}

/* Mobile page-hero — ensure full-width, no horizontal leak */
@media (max-width: 768px) {
  .page-hero,
  .hero {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-hero-bg,
  .hero-bg {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background-position: center center !important;
    background-size: cover !important;
  }
  .page-hero-inner,
  .hero-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }
  /* Reduce hero heights on mobile for better proportions */
  .page-hero { min-height: 50vh !important; padding-top: 120px !important; padding-bottom: 60px !important; }
  .page-hero.page-hero-sm { min-height: 32vh !important; padding-top: 110px !important; padding-bottom: 40px !important; }
  .hero { min-height: 82vh !important; padding-top: 110px !important; padding-bottom: 70px !important; }
}

/* Mobile sections — equal horizontal padding everywhere */
@media (max-width: 768px) {
  .container,
  .wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .sec, .section { padding-top: 56px !important; padding-bottom: 56px !important; }
  .sec-head { margin-bottom: 32px !important; }
  .sec-head h2,
  .sec-head h1 { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }

  /* Stack all grids on mobile */
  .svc-grid,
  .work-grid,
  .gallery-grid,
  .pkg-grid,
  .values-grid,
  .stats-grid,
  .testi-grid,
  .feature-list,
  .grid-2,
  .contact-grid,
  .info-cards { grid-template-columns: 1fr !important; gap: 16px !important; }

  .process-grid { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Larger touch targets */
  .btn { padding: 14px 22px !important; font-size: 13px !important; }
  .nav-cta { padding: 12px 18px !important; }

  /* CTAs stack vertically on small screens */
  .cta-actions,
  .hero-cta { flex-direction: column !important; gap: 12px !important; }
  .cta-actions .btn,
  .hero-cta .btn { width: 100% !important; max-width: 320px !important; }

  /* Body text size for readability */
  body { font-size: 15px !important; }
  .lede { font-size: 15.5px !important; }

  /* Hero typography on mobile */
  .hero-inner h1 { font-size: clamp(2rem, 9vw, 2.8rem) !important; line-height: 1.1 !important; }
  .page-hero-inner h1 { font-size: clamp(1.8rem, 8vw, 2.4rem) !important; line-height: 1.1 !important; }
  .hero-sub,
  .page-hero-sub { font-size: 14px !important; line-height: 1.65 !important; }

  /* Footer */
  .ftr-grid { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* Floating WhatsApp — smaller, lower */
  .floating-wa,
  .wa-float { width: 50px !important; height: 50px !important; bottom: 20px !important; right: 20px !important; }
}

/* Very narrow phones */
@media (max-width: 400px) {
  .container, .wrap {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .page-hero-inner h1 { font-size: 1.7rem !important; }
  .hero-inner h1 { font-size: 1.9rem !important; }
}

/* Ensure NOTHING extends beyond viewport horizontally on mobile */
@media (max-width: 1024px) {
  html, body { max-width: 100vw !important; overflow-x: hidden !important; }
  * { max-width: 100vw; }
  img, video, iframe, svg { max-width: 100%; height: auto; }
}
