/* ============================================================
   INTERIOR DESIGN TEMPLATE 001
   Premium Design System
   ============================================================ */

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

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

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --cream:        #F5EFE6;
  --cream-mid:    #EDE5D8;
  --white:        #FFFFFF;
  --charcoal:     #1A1A1A;
  --charcoal-mid: #2E2E2E;
  --gold:         #B8905A;
  --gold-light:   #D4AF7F;
  --gold-pale:    #F0E6D3;
  --gray:         #6B6B6B;
  --gray-light:   #F8F6F3;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', sans-serif;

  --radius-sm: 3px;
  --radius:    6px;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
  --shadow:    0 12px 48px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 72px rgba(0,0,0,0.16);

  --nav-h: 76px;
  --max-w: 1200px;
  --section-py: 100px;
}

/* ── UTILITY ───────────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section { padding: var(--section-py) 0; }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.eyebrow-light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.1rem;
}

.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 520px;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head .section-sub { margin: 0 auto; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  transition: background 0.25s, transform 0.2s;
  width: 100%;
  justify-content: center;
}

.btn-primary:hover {
  background: #9a7840;
  transform: translateY(-1px);
}

.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-sm);
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── INSTAGRAM FLOAT ───────────────────────────────────────── */
.insta-float {
  position: fixed;
  bottom: 7rem;
  right: 2rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(220,39,67,0.45);
  z-index: 999;
  transition: transform 0.25s, box-shadow 0.25s;
}
.insta-float svg { width: 18px; height: 18px; }
.phone-float svg  { width: 18px; height: 18px; }
.wa-float svg     { width: 18px; height: 18px; }

.insta-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(220,39,67,0.6);
}

/* ── 5-SECOND LEAD POPUP ────────────────────────────────────── */
.lead-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.lead-popup-overlay.open {
  opacity: 1; visibility: visible;
}
.lead-popup-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.2rem 2rem 2rem;
  width: 100%; max-width: 420px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s;
  max-height: 90vh;
  overflow-y: auto;
}
.lead-popup-overlay.open .lead-popup-card {
  transform: translateY(0);
}
.lead-popup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: #f5f0ea; border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  font-size: 0.85rem; color: #555;
  display: flex; align-items: center; justify-content: center;
}
.lead-popup-title {
  font-size: 1.35rem; font-weight: 700;
  color: var(--dark); margin: 0.4rem 0 0.3rem;
}
.lead-popup-sub {
  font-size: 0.82rem; color: #888; margin-bottom: 1.2rem;
}
@media (max-width: 480px) {
  .lead-popup-card { padding: 1.8rem 1.2rem 1.5rem; }
  .lead-popup-title { font-size: 1.15rem; }
}

/* ── PHONE FLOAT ────────────────────────────────────────────── */
.phone-float {
  position: fixed;
  bottom: 4rem;
  right: 2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1a73e8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26,115,232,0.4);
  z-index: 999;
  transition: transform 0.25s, box-shadow 0.25s;
}
.phone-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(26,115,232,0.55);
}

/* ── WHATSAPP FLOAT ────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1rem;
  right: 2rem;
  width: 38px;
  height: 38px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.25s, box-shadow 0.25s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 900;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
  transition: background 0.35s, box-shadow 0.35s;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.35s;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

.navbar.scrolled .nav-logo { color: var(--charcoal); text-shadow: none; }

.nav-logo {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-img {
  height: 75px;
  width: 75px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  padding: 3px;
}
.navbar.scrolled .nav-logo-img {
  background: rgba(255,255,255,0.95);
}

@media (max-width: 900px) {
  .nav-logo-img { height: 48px; width: 48px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s;
  position: relative;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-light);
  transition: width 0.25s;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--white); }

.navbar.scrolled .nav-link { color: var(--gray); text-shadow: none; }
.navbar.scrolled .nav-link:hover { color: var(--charcoal); }
.navbar.scrolled .nav-link::after { background: var(--gold); }

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.25s, color 0.25s, transform 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.navbar.scrolled .nav-cta { background: var(--charcoal); color: var(--white); }
.navbar.scrolled .nav-cta:hover { background: var(--gold); }

.nav-wa-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-sm);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  white-space: nowrap;
}
.nav-wa-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-1px); }
.navbar.scrolled .nav-wa-btn { border-color: var(--charcoal); color: var(--charcoal); }
.navbar.scrolled .nav-wa-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 24px; }
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.35s;
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/homepage.jpg');
  background-size: cover;
  background-position: center 35%;
  background-color: #e8ddd0;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 14, 6, 0.38) 0%,
    rgba(20, 14, 6, 0.12) 42%,
    rgba(20, 14, 6, 0.0) 65%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 88%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
}

/* ── FORM CARD ─────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.form-heading {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.form-sub {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.field { margin-bottom: 0.9rem; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--gray-light);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.field input::placeholder,
.field textarea::placeholder { color: #aaa; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ── HERO RIGHT ────────────────────────────────────────────── */
.hero-right {
  color: var(--white);
  padding-top: 1rem;
  padding-left: 2rem;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.4rem;
  max-width: 380px;
}

.hero-scroll-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.hero-scroll-cta:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--charcoal);
  padding: 0;
}

.stats-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 3.5rem;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.stat-sep {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  margin: 1.2rem 0;
}

/* ── FORM DISCLAIMER ────────────────────────────────────────── */
.form-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: #999;
  margin-top: 0.8rem;
  line-height: 1.5;
}
.form-disclaimer a {
  color: #c0392b;
  text-decoration: none;
}
.form-disclaimer a:hover { text-decoration: underline; }

/* ── MOBILE HERO FORM ───────────────────────────────────────── */
@keyframes card-glow {
  0%, 100% {
    box-shadow: 0 0 16px rgba(201,169,110,0.3), 0 4px 24px rgba(201,169,110,0.15);
  }
  50% {
    box-shadow: 0 0 36px rgba(201,169,110,0.65), 0 6px 36px rgba(201,169,110,0.3);
  }
}
.mobile-hero-form {
  display: none;
  background: #f9f5ee;
  padding: 2rem 1.2rem 2.2rem;
  position: relative;
}
.mobile-form-inner {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid rgba(201,169,110,0.5);
  padding: 1.6rem 1.4rem;
  animation: card-glow 2.8s ease-in-out infinite;
}
.mobile-form-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.mobile-hero-cta {
  display: none;
  margin-top: 1.8rem;
  background: var(--gold);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
}

/* ── TRUSTED PARTNERS ──────────────────────────────────────── */
.partners-section {
  padding: 2.8rem 0;
  background: #fff;
  border-top: 1px solid #f0ebe4;
  border-bottom: 1px solid #f0ebe4;
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b0a090;
  margin-bottom: 1.8rem;
}
.partners-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: scroll-logos 25s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ede8e1;
  border-radius: 12px;
  padding: 1.2rem 2.2rem;
  min-width: 160px;
  height: 90px;
  flex-shrink: 0;
}
.partner-logo img {
  max-height: 60px;
  max-width: 130px;
  object-fit: contain;
  transition: transform 0.3s;
}
.partner-logo:hover img {
  transform: scale(1.08);
}
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ── SERVICES ──────────────────────────────────────────────── */
.services-section { background: var(--white); }

.svc-carousel-wrap { position: relative; overflow: hidden; }

.svc-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.svc-nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid #d4c9b8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.svc-nav-btn:hover { background: var(--accent); border-color: var(--accent); }

/* Pure CSS chevron — always renders on every device */
.svc-nav-btn::before {
  content: '';
  display: block;
  width: 9px; height: 9px;
  border-right: 2.5px solid #3a2e22;
  border-top: 2.5px solid #3a2e22;
  transition: border-color 0.2s;
}
.svc-btn-prev::before { transform: rotate(-135deg) translate(-1px,  1px); }
.svc-btn-next::before { transform: rotate(45deg)   translate(-2px,  1px); }
.svc-nav-btn:hover::before { border-color: #fff; }

/* hidden = fade out, keeps layout space so dots stay centred */
.svc-nav-btn.svc-hidden {
  opacity: 0;
  pointer-events: none;
}

.svc-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.svc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #d4c9b8;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.svc-dot.active { background: var(--accent); transform: scale(1.4); }

.services-grid {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.service-card {
  flex: 0 0 auto;
  position: relative;
  height: 460px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-mid);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.service-card:hover { transform: translateY(-6px); }

.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 7, 3, 0.92) 0%,
    rgba(10, 7, 3, 0.45) 45%,
    rgba(10, 7, 3, 0.08) 100%
  );
  transition: background 0.4s ease;
}

.service-card:hover .svc-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 7, 3, 0.95) 0%,
    rgba(10, 7, 3, 0.65) 55%,
    rgba(10, 7, 3, 0.15) 100%
  );
}

.svc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: var(--white);
}

.svc-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

.svc-icon svg { width: 18px; height: 18px; color: var(--gold-light); }

.svc-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.3;
  transition: margin-bottom 0.35s ease;
}

.service-card:hover .svc-content h3 { margin-bottom: 0.75rem; }

.svc-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.4s ease, opacity 0.35s ease, transform 0.35s ease;
}

.service-card:hover .svc-desc {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.08s ease, transform 0.3s 0.08s ease, letter-spacing 0.2s;
}

.service-card:hover .svc-link {
  opacity: 1;
  transform: translateY(0);
}

.svc-link:hover { letter-spacing: 0.15em; }

/* ── PROJECTS ──────────────────────────────────────────────── */
.projects-section { background: var(--gray-light); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.proj-card { border-radius: var(--radius); overflow: hidden; }

.proj-img {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-mid);
  transition: transform 0.5s;
  overflow: hidden;
}

.proj-card:hover .proj-img { transform: scale(1.03); }

.proj-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: var(--white);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.proj-card:hover .proj-info { transform: translateY(0); opacity: 1; }

.proj-cat {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.proj-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.proj-info p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

.proj-case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,127,0.4);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.proj-case-link:hover { color: #fff; border-color: rgba(255,255,255,0.6); }
.proj-case-link i { font-size: 12px; }

.proj-card { cursor: pointer; }

.proj-overlay-icon {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  z-index: 2;
}
.proj-overlay-icon i { font-size: 16px; color: #fff; }
.proj-card:hover .proj-overlay-icon { opacity: 1; background: rgba(184,144,90,0.7); }

/* ── LIGHTBOX ──────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(10, 8, 6, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }

.lb-inner {
  max-width: 860px; width: 100%;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.4rem;
}

.lb-img {
  max-height: 68vh; max-width: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lb-close {
  position: fixed; top: 1.4rem; right: 1.8rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 1.2rem;
  width: 42px; height: 42px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(184,144,90,0.6); }

.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 1.3rem;
  width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-arrow:hover { background: rgba(184,144,90,0.6); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

.lb-meta { text-align: center; }
.lb-cat {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.3rem;
}
.lb-title {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 400;
  color: #fff; margin: 0 0 0.5rem;
}
.lb-counter {
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

/* ── CONSULT CTA BANNER ─────────────────────────────────────── */
.consult-banner-wrap {
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 2.8rem 2rem;
}

.consult-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 2.4rem;
  background: linear-gradient(110deg, #1A5C4A 0%, #0e3d30 100%);
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s;
}
.consult-banner:hover {
  box-shadow: 0 8px 32px rgba(26,92,74,0.35);
  transform: translateY(-2px);
}

.consult-banner__text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}

.consult-banner__arrow {
  font-size: 18px;
  color: var(--gold-light);
  transition: transform 0.3s;
}
.consult-banner:hover .consult-banner__arrow { transform: translateX(5px); }

/* ── WHY CHOOSE US — 6 CARD GRID ───────────────────────────── */
.why-section { background: #fff; }

.why-grid-six {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  border: 1px solid var(--cream-mid);
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  background: #1A5C4A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: background 0.3s;
}

.why-card:hover .why-card-icon { background: var(--gold); }
.why-card-icon svg { width: 22px; height: 22px; color: #fff; }
.why-card-icon i { font-size: 24px; color: #fff; line-height: 1; }

.why-card-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.why-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ── BEFORE / AFTER SLIDER ──────────────────────────────────── */
.ba-section { background: var(--gray-light); }

.ba-wrap { max-width: 900px; margin: 0 auto; }

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 540px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 16px 60px rgba(0,0,0,0.15);
}

.ba-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  width: 100%; height: 100%;
}

.ba-before-img {
  background-color: #c9b89a;
}

.ba-after-img {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0s;
  background-color: #c9b89a;
}

@keyframes ba-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.ba-slider.loading .ba-img {
  background-image: linear-gradient(
    105deg,
    #d4c4a8 0%,
    #e8dcc8 30%,
    #f5efe3 50%,
    #e8dcc8 70%,
    #d4c4a8 100%
  ) !important;
  background-size: 400% 100% !important;
  animation: ba-shimmer 1.4s ease-in-out infinite;
}

.ba-label-left, .ba-label-right {
  position: absolute;
  top: 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  pointer-events: none;
  z-index: 3;
}
.ba-label-left  { left: 1.2rem; }
.ba-label-right { right: 1.2rem; }

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba-handle-btn {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  pointer-events: all;
  cursor: ew-resize;
  flex-shrink: 0;
}
.ba-handle-btn i { font-size: 14px; color: var(--charcoal); }

/* Navigation */
.ba-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.6rem;
}

.ba-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--cream-mid);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  color: var(--charcoal);
}
.ba-nav-btn:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.ba-nav-btn i { font-size: 16px; }

.ba-room-tags { display: flex; gap: 0.5rem; }
.ba-room-tag {
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  border: 1.5px solid var(--cream-mid);
  background: #fff;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}
.ba-room-tag.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

/* ── GALLERY MARQUEE ────────────────────────────────────────── */
.marquee-section { background: #fff; padding-bottom: 0; overflow: hidden; }
.marquee-section .container { padding-bottom: 0; }

.marquee-wrapper {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-row { overflow: hidden; }

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.marquee-left  { animation: mq-left  35s linear infinite; }
.marquee-right { animation: mq-right 35s linear infinite; }


@keyframes mq-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes mq-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.mq-img {
  width: 320px;
  height: 220px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-mid);
  flex-shrink: 0;
  transition: transform 0.4s, box-shadow 0.4s;
}
.mq-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  z-index: 1;
  position: relative;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-section { background: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.testi-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  border: 1px solid var(--cream-mid);
  transition: box-shadow 0.3s, transform 0.3s;
}

.testi-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.testi-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-section { background: var(--charcoal); }
.contact-section .eyebrow { color: var(--gold-light); }
.contact-section .section-sub { color: rgba(255,255,255,0.55); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-left { padding-top: 0.5rem; }

.contact-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-top: 1.2rem;
  margin-bottom: 2.4rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.contact-detail:hover { color: var(--gold-light); }
.contact-detail svg { flex-shrink: 0; color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.8rem;
  box-shadow: var(--shadow-lg);
}

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

.contact-form-wrap textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer { background: #0F0F0F; color: rgba(255,255,255,0.5); }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}

.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 220px;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.3);
  padding: 0.5rem 1.1rem;
  border-radius: 2rem;
  transition: background 0.2s, color 0.2s;
}

.footer-wa:hover { background: rgba(37,211,102,0.12); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-col li {
  font-size: 0.82rem;
  line-height: 1.5;
  transition: color 0.2s;
}

.footer-col li a:hover,
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.services-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

.projects-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.projects-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.projects-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.projects-grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.projects-grid .reveal:nth-child(6) { transition-delay: 0.30s; }

.testi-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testi-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.why-grid-six .reveal:nth-child(2) { transition-delay: 0.07s; }
.why-grid-six .reveal:nth-child(3) { transition-delay: 0.14s; }
.why-grid-six .reveal:nth-child(4) { transition-delay: 0.21s; }

/* ── IMAGE FADE-IN ──────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.img-wrap {
  background: linear-gradient(90deg, #ede8e0 25%, #f5f1eb 50%, #ede8e0 75%);
  background-size: 1200px 100%;
  animation: shimmer 1.6s infinite linear;
}

.lazy-img {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.lazy-img.img-loaded {
  opacity: 1;
}

/* Warm placeholder for background-image containers while loading */
.proj-img, .service-card, .mq-img {
  background-color: #ede8df;
}

/* ── PACKAGES PAGE ──────────────────────────────────────────── */

.page-banner {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-banner__bg {
  position: absolute; inset: 0;
  background-image: url('images/homepage.jpg');
  background-size: cover;
  background-position: center 40%;
}
.page-banner__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,12,8,0.72);
}
.page-banner__content {
  position: relative; z-index: 1;
  padding: 0 1.5rem;
}
.page-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  margin: 0.5rem 0 0.8rem;
  letter-spacing: 0.02em;
}
.page-banner__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.pkg-section { background: var(--gray-light); }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: start;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-mid);
  padding: 2.4rem 2rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pkg-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.pkg-card--featured {
  border-color: #1A5C4A;
  box-shadow: 0 8px 40px rgba(26,92,74,0.15);
  padding-top: 3rem;
}
.pkg-card--featured:hover {
  box-shadow: 0 16px 50px rgba(26,92,74,0.22);
}

.pkg-tag {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: #1A5C4A;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 0 0 6px 6px;
}

.pkg-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.pkg-tagline {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 1.4rem;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.pkg-currency {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
}
.pkg-amount {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pkg-unit {
  font-size: 0.75rem;
  color: var(--gray);
  margin-left: 0.3rem;
}

.pkg-divider {
  height: 1px;
  background: var(--cream-mid);
  margin: 1.6rem 0;
}

.pkg-features {
  list-style: none;
  padding: 0; margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pkg-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.83rem;
  line-height: 1.4;
}
.pkg-feature i { font-size: 14px; flex-shrink: 0; }
.pkg-feature--yes { color: var(--charcoal); }
.pkg-feature--yes i { color: #1A5C4A; }
.pkg-feature--no { color: #bbb; }
.pkg-feature--no i { color: #ddd; }

.pkg-cta {
  display: block;
  text-align: center;
  padding: 0.9rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.25s;
}
.pkg-cta--outline {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}
.pkg-cta--outline:hover {
  background: var(--charcoal);
  color: #fff;
}
.pkg-cta--fill {
  background: #1A5C4A;
  color: #fff;
  border: 1.5px solid #1A5C4A;
}
.pkg-cta--fill:hover {
  background: #0e3d30;
}

.pkg-common-section {
  background: var(--cream);
  padding: 2.8rem 0;
}
.pkg-common-title {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2rem;
}
.pkg-common-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
}
.pkg-common-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--charcoal);
  font-weight: 500;
}
.pkg-common-item i { font-size: 18px; color: #1A5C4A; }

@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .page-banner { height: 220px; }
}

/* ── QUOTE WIZARD MODAL ─────────────────────────────────────── */
.qmodal {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(10,8,6,0.72);
  backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.qmodal.open { display: flex; }

.qmodal-card {
  background: #fff; border-radius: 14px;
  width: 100%; max-width: 560px;
  padding: 2rem 2rem 1.8rem;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  max-height: 92vh; overflow-y: auto;
}

.qmodal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; font-size: 1rem;
  color: var(--gray); cursor: pointer;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.qmodal-close:hover { background: var(--cream); color: var(--charcoal); }

/* Step dots */
.qmodal-dots {
  display: flex; align-items: center;
  gap: 0; margin-bottom: 0.5rem;
}
.qmdot {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  flex-shrink: 0;
}
.qmdot span {
  width: 34px; height: 34px; border-radius: 50%;
  background: #e8e8e8; color: #aaa;
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.qmdot label {
  font-size: 0.62rem; color: #aaa;
  font-family: var(--font-sans); letter-spacing: 0.04em;
  white-space: nowrap;
}
.qmdot.active span  { background: var(--gold); color: #fff; }
.qmdot.active label { color: var(--gold); }
.qmdot.done span    { background: #1A5C4A; color: #fff; }
.qmdot.done label   { color: #1A5C4A; }

.qmdot-line {
  flex: 1; height: 2px;
  background: #e8e8e8; margin: 0 0.4rem;
  margin-bottom: 1.2rem;
}

.qmodal-progress-track {
  height: 3px; background: var(--cream-mid);
  border-radius: 2px; margin-bottom: 1.8rem; overflow: hidden;
}
.qmodal-progress-fill {
  height: 100%; background: #1A5C4A;
  width: 25%; transition: width 0.4s ease; border-radius: 2px;
}

/* Steps */
.qmodal-step { display: none; }
.qmodal-step.active { display: block; animation: qfade 0.22s ease; }
@keyframes qfade { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

.qmodal-q {
  font-family: var(--font-serif); font-size: 1.5rem;
  font-weight: 400; color: var(--charcoal);
  margin-bottom: 1.4rem; line-height: 1.3;
}

/* BHK grid */
.qmodal-bhk-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 0.7rem;
}
.qmodal-bhk-grid .qmt:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 50%; }

.qmt {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.2rem; padding: 1rem 1.1rem;
  border: 1.5px solid var(--cream-mid); border-radius: 8px;
  background: #fff; cursor: pointer;
  font-family: var(--font-sans); text-align: left;
  transition: all 0.2s; position: relative;
}
.qmt i { font-size: 20px; color: var(--gray); margin-bottom: 0.3rem; transition: color 0.2s; }
.qmt span { font-size: 0.92rem; font-weight: 600; color: var(--charcoal); }
.qmt small { font-size: 0.72rem; color: var(--gray); font-weight: 400; }
.qmt:hover { border-color: #1A5C4A; }
.qmt:hover i { color: #1A5C4A; }
.qmt.selected { background: #f0f8f5; border-color: #1A5C4A; }
.qmt.selected i { color: #1A5C4A; }
.qmt.selected span { color: #1A5C4A; }

/* Room counters */
.qmodal-rooms { display: flex; flex-direction: column; gap: 0; }
.qroom-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--cream-mid);
  font-family: var(--font-sans); font-size: 0.88rem;
  color: var(--charcoal);
}
.qroom-ctrl { display: flex; align-items: center; gap: 0.8rem; }
.qroom-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: #1A5C4A; color: #fff; border: none;
  font-size: 1.1rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.qroom-btn:hover { background: #0e3d30; }
.qroom-val { font-weight: 700; font-size: 0.95rem; min-width: 16px; text-align: center; }

/* Details form */
.qmodal-details-form { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.4rem; }
.qmodal-input {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-mid); border-radius: 8px;
  font-family: var(--font-sans); font-size: 0.9rem;
  color: var(--charcoal); outline: none; transition: border-color 0.2s;
  width: 100%;
}
.qmodal-input:focus { border-color: #1A5C4A; }

.qmodal-scope-label {
  font-size: 0.75rem; color: var(--gray);
  font-weight: 500; letter-spacing: 0.04em; margin-top: 0.3rem;
}
.qmodal-scope { display: flex; flex-direction: column; gap: 0.5rem; }
.qscope-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-mid); border-radius: 8px;
  cursor: pointer; font-size: 0.85rem; color: var(--charcoal);
  transition: border-color 0.2s;
}
.qscope-item:has(input:checked) { border-color: #1A5C4A; background: #f0f8f5; }
.qscope-item input { accent-color: #1A5C4A; }

/* Nav row */
.qmodal-nav-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.4rem;
}
.qmodal-back-btn {
  background: #f0f0f0; border: none;
  padding: 0.75rem 1.4rem; border-radius: 50px;
  font-family: var(--font-sans); font-size: 0.82rem;
  font-weight: 500; color: var(--charcoal);
  cursor: pointer; transition: background 0.2s;
}
.qmodal-back-btn:hover { background: #e0e0e0; }
.qmodal-next-btn {
  background: #1A5C4A; border: none;
  padding: 0.75rem 1.8rem; border-radius: 50px;
  font-family: var(--font-sans); font-size: 0.85rem;
  font-weight: 600; color: #fff;
  cursor: pointer; transition: background 0.2s;
}
.qmodal-next-btn:hover { background: #0e3d30; }
.qmodal-submit-btn { background: var(--gold); }
.qmodal-submit-btn:hover { background: var(--gold-light); }

/* Result screen */
.qmodal-result-screen { text-align: center; padding: 0.5rem 0; }
.qmodal-check-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: #1A5C4A; color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 28px;
}
.qmodal-result-ready {
  font-size: 0.85rem; color: var(--gray);
  margin-bottom: 0.8rem;
}
.qmodal-bhk-pill {
  display: inline-block;
  background: var(--gold); color: #fff;
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600;
  padding: 0.35rem 1.1rem; border-radius: 50px;
  margin-bottom: 1.4rem;
}
.qmodal-result-card {
  background: var(--cream); border: 1.5px solid var(--gold-pale);
  border-radius: 10px; padding: 1.5rem; margin-bottom: 1.4rem;
}
.qmodal-result-heading {
  font-size: 0.82rem; font-weight: 600; color: var(--charcoal);
  margin-bottom: 0.6rem; letter-spacing: 0.02em;
}
.qmodal-result-price {
  font-family: var(--font-sans); font-size: 2.4rem;
  font-weight: 800; color: #1A5C4A;
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.8rem;
}
.qmodal-result-note {
  background: #fff; border-radius: 6px;
  padding: 0.7rem 0.9rem;
  font-size: 0.77rem; color: var(--gray); text-align: left; line-height: 1.5;
}
.qmodal-studio-contact {
  width: 100%; background: #f8f6f2; border-radius: 12px;
  padding: 1rem 1.2rem; margin: 1rem 0 0.5rem; text-align: left;
}
.qmodal-studio-name {
  font-family: var(--font-serif); font-size: 1rem; font-weight: 600;
  color: var(--dark); margin-bottom: 0.5rem;
}
.qmodal-studio-row {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--accent); font-size: 0.83rem; text-decoration: none;
  font-family: var(--font-sans); margin-top: 0.35rem;
}
.qmodal-studio-row:hover { text-decoration: underline; }
.qmodal-wa-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2rem; background: #25D366; color: #fff;
  border-radius: 50px; text-decoration: none;
  font-family: var(--font-sans); font-size: 0.88rem; font-weight: 600;
  transition: background 0.2s;
}
.qmodal-wa-btn:hover { background: #1da851; }
.qmodal-wa-btn i { font-size: 20px; }

/* ── COST CALCULATOR ────────────────────────────────────────── */
.calc-section { background: #fff; }

.calc-card {
  background: var(--white);
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.calc-row { display: flex; flex-direction: column; gap: 0.8rem; }

.calc-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.calc-hint {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gray);
  font-size: 0.75rem;
}

.calc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.calc-opt {
  padding: 0.65rem 1.3rem;
  border: 1.5px solid var(--cream-mid);
  border-radius: 4px;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}
.calc-opt:hover { border-color: #1A5C4A; color: #1A5C4A; }
.calc-opt.selected { background: #1A5C4A; border-color: #1A5C4A; color: #fff; }

.calc-pkg-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.8rem 1.6rem;
}
.calc-pkg-opt small {
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.75;
}
.calc-pkg-opt.selected small { opacity: 0.9; }

.calc-area-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 220px;
}
.calc-area-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-mid);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}
.calc-area-input::-webkit-outer-spin-button,
.calc-area-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.calc-area-input:focus { border-color: #1A5C4A; }
.calc-area-unit {
  font-size: 0.82rem;
  color: var(--gray);
  white-space: nowrap;
}

.calc-result {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(110deg, #1A5C4A 0%, #0e3d30 100%);
  border-radius: 6px;
  padding: 1.8rem 2rem;
  flex-wrap: wrap;
}
.calc-result.active { display: flex; }

.calc-result-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
}
.calc-result-price {
  font-family: var(--font-sans);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.calc-result-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
}
.calc-result-cta {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.25s;
  flex-shrink: 0;
}
.calc-result-cta:hover { background: var(--gold-light); }

@media (max-width: 600px) {
  .calc-card { padding: 1.8rem 1.2rem; }
  .calc-result { flex-direction: column; align-items: flex-start; }
}

/* ── FORM SUCCESS STATE ────────────────────────────────────── */
.form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-success p { font-size: 0.85rem; color: var(--gray); }

/* ── MOBILE MENU ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hamburger  { display: flex; }
  .nav-cta    { display: none; }
  .nav-wa-btn { display: none; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s, opacity 0.35s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li { border-bottom: 1px solid var(--cream-mid); }

  .nav-link {
    display: block;
    padding: 1.1rem 6%;
    color: var(--charcoal) !important;
    font-size: 0.85rem;
    white-space: nowrap;
    text-align: center;
  }

  .nav-link::after { display: none; }
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-content  { grid-template-columns: 1fr 360px; gap: 2rem; }
}

@media (max-width: 900px) {
  :root { --section-py: 70px; }

  /* hero overlay: on mobile use a bottom-to-top dark fade instead of left-to-right */
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(20,14,6,0.10) 0%,
      rgba(20,14,6,0.30) 50%,
      rgba(20,14,6,0.55) 100%
    );
  }

  /* shrink hero to ~half screen on mobile */
  .hero { min-height: 52vh; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: calc(var(--nav-h) + 0.8rem);
    padding-bottom: 1.5rem;
    width: 92%;
  }

  /* mobile hero: text full width, form hidden inside hero */
  .hero-left  { display: none; }
  .hero-right {
    text-align: center;
    padding-left: 0;
    padding-top: 0;
    width: 100%;
  }
  .hero-tagline  { margin: 0 auto 0.6rem; font-size: 0.85rem; }
  .hero-headline { font-size: clamp(1.9rem, 7vw, 3rem); }
  .hero-eyebrow  { margin-bottom: 0.5rem; font-size: 0.62rem; }
  .hero-scroll-cta { margin-top: 0.8rem; font-size: 0.75rem; padding: 0.5rem 1.2rem; }
  .mobile-hero-cta { margin-top: 1rem; padding: 0.8rem 1.5rem; font-size: 0.9rem; }

  /* mobile form below hero */
  .mobile-hero-form { display: block; }
  .mobile-hero-cta  { display: flex; }

  /* service carousel on mobile: always show content, swipe-friendly */
  .service-card { height: 420px; }
  .service-card:hover { transform: none; }
  .service-card .svc-content h3 { margin-bottom: 0.6rem; }
  .service-card .svc-desc { max-height: 100px; opacity: 1; transform: translateY(0); }
  .service-card .svc-link  { opacity: 1; transform: translateY(0); }
  .svc-carousel-outer { gap: 0.6rem; }

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

  .why-grid-six { grid-template-columns: repeat(2, 1fr); }

  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .stats-inner { flex-wrap: wrap; }
  .stat { padding: 1.5rem 2rem; width: 50%; }
  .stat-sep:nth-child(4) { display: none; }

  /* smaller float buttons on tablet/mobile */
  .insta-float { width: 34px; height: 34px; bottom: 6.2rem; right: 1rem; }
  .phone-float  { width: 34px; height: 34px; bottom: 3.4rem; right: 1rem; }
  .wa-float     { width: 34px; height: 34px; bottom: 0.7rem; right: 1rem; }
  .insta-float svg, .phone-float svg, .wa-float svg { width: 17px; height: 17px; }
}

@media (max-width: 600px) {
  :root { --section-py: 55px; }

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

  .why-grid-six { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .why-card { padding: 1.2rem 1rem; }
  .why-card-icon { width: 40px; height: 40px; margin-bottom: 0.7rem; }
  .why-card-icon i { font-size: 18px; }
  .why-card-num { font-size: 1.8rem; }
  .why-card h4 { font-size: 0.88rem; margin-bottom: 0.4rem; }
  .why-card p { font-size: 0.75rem; line-height: 1.5; }

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

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }

  .stat { width: 100%; }
  .stat-sep { width: 80%; height: 1px; margin: 0 auto; }

  /* tighter form card on small phones */
  .form-card { padding: 1.6rem 1.4rem; }
  .form-heading { font-size: 1.35rem; }
  .field { margin-bottom: 0.7rem; }

  /* smaller float buttons on mobile */
  .insta-float { width: 34px; height: 34px; bottom: 6.2rem; right: 1rem; }
  .phone-float  { width: 34px; height: 34px; bottom: 3.4rem; right: 1rem; }
  .wa-float     { width: 34px; height: 34px; bottom: 0.7rem; right: 1rem; }
  .insta-float svg, .phone-float svg, .wa-float svg { width: 17px; height: 17px; }
}

/* ── VIDEO SECTION ──────────────────────────────────────────── */
.video-section { background: var(--cream); }
.video-section .section-title em { color: var(--gold); font-style: italic; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.video-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.showcase-video {
  width: 100%;
  height: auto;
  display: block;
  background: #111;
}

.video-placeholder {
  background: #1a1a1a;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-coming {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.video-coming svg { opacity: 0.4; }
.video-coming span { font-size: 0.85rem; letter-spacing: 0.05em; }

@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ── FAQ SECTION ────────────────────────────────────────────── */
.faq-section { background: var(--cream); }
.faq-section .section-title em { color: var(--gold); font-style: italic; }

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--cream-mid);
}
.faq-item:first-child { border-top: 1px solid var(--cream-mid); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.3rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
  color: var(--gold);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-a p {
  padding-bottom: 1.3rem;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.75;
  margin: 0;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ── BUDGET PACKAGES SECTION ───────────────────────────────── */
.budget-section { background: var(--cream); }
.budget-section .section-title em { color: var(--gold); font-style: normal; }

.budget-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.budget-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  flex: 1;
  padding: 0.5rem 0.2rem 1rem;
}
.budget-track::-webkit-scrollbar { display: none; }

.budget-card {
  flex: 0 0 calc(33.333% - 0.8rem);
  min-width: 260px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.28s, box-shadow 0.28s;
  background: #1a1a1a;
}
.budget-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(201,169,110,0.25);
}
.budget-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
  background-color: #c9b89a;
}
.budget-card:hover img { transform: scale(1.04); }


.budget-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(30,10,10,0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(201,169,110,0.4);
}

.budget-room {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1.4rem 1rem 0.9rem;
  letter-spacing: 0.03em;
}

.budget-arrow {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,169,110,0.5);
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.budget-arrow:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.budget-note {
  text-align: center;
  font-size: 0.78rem;
  color: #888;
  margin-top: 1.2rem;
}
.budget-note a { color: var(--gold); text-decoration: none; }
.budget-note a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .budget-card { flex: 0 0 calc(50% - 0.6rem); }
}
@media (max-width: 600px) {
  .budget-arrow { display: none; }
  .budget-carousel-wrap { gap: 0; }
  .budget-card { flex: 0 0 92%; }
  .budget-card img { height: 240px; }
}

/* ============================================================
   PROJECT DETAIL PAGE
   ============================================================ */

/* ── HERO ───────────────────────────────────────────────────── */
.proj-hero {
  background: var(--white);
  padding: calc(var(--nav-h) + 4rem) 6% 3rem;
  border-bottom: 1px solid var(--cream-mid);
}

.proj-hero-inner { max-width: 860px; }

.proj-hero-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.proj-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.proj-hero-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 2.8rem;
}

.proj-stats-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--cream-mid);
  padding-top: 2rem;
}

.proj-stat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0 2.5rem 0 0;
  margin-right: 2.5rem;
}

.proj-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--cream-mid);
  margin-right: 2.5rem;
  flex-shrink: 0;
}

.proj-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proj-stat-icon i {
  font-size: 18px;
  color: var(--gold);
}

.proj-stat-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.proj-stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
}

.proj-stat-val {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* ── GALLERY STRIP ──────────────────────────────────────────── */
.proj-gallery-strip {
  width: 100%;
  overflow: hidden;
  padding: 2.5rem 0;
  background: var(--white);
}

.proj-gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 6%;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.proj-gallery-track::-webkit-scrollbar { display: none; }
.proj-gallery-track.dragging { cursor: grabbing; }

.proj-gallery-img {
  flex: 0 0 440px;
  height: 300px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
  transition: transform 0.3s;
}

.proj-gallery-img:hover { transform: scale(1.015); }

/* ── DETAIL SECTION ─────────────────────────────────────────── */
.proj-detail-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
  padding: 0 6%;
  max-width: 1400px;
  margin: 0 auto;
}

/* left */
.proj-category-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.proj-info-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.proj-info-desc {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.proj-client-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
  border-top: 1px solid var(--cream-mid);
  border-bottom: 1px solid var(--cream-mid);
  padding: 1.6rem 0;
  margin-bottom: 2rem;
}

.proj-client-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.proj-client-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
}

.proj-client-val {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* review card */
.proj-review-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.8rem;
  border: 1px solid var(--cream-mid);
}

.proj-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.proj-review-stars {
  color: #F5A623;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.proj-review-completed {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}

.proj-rc-label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
}

.proj-rc-year {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.proj-review-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.proj-review-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.proj-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A5C4A, #2d8a6c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.proj-review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.proj-review-name {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
}

.proj-review-role {
  font-size: 0.75rem;
  color: #888;
}

/* right — highlights */
.proj-highlights { padding-top: 0.4rem; }

.proj-highlights-title {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.proj-hl-underline {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 2.2rem;
}

.proj-hl-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.proj-hl-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1A5C4A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.proj-hl-icon i {
  font-size: 20px;
  color: #fff;
}

.proj-hl-body h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.proj-hl-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.proj-hl-body ul li {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.proj-hl-body ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .proj-detail-inner { grid-template-columns: 1fr; gap: 3rem; }
  .proj-highlights { max-width: 600px; }
}

@media (max-width: 700px) {
  .proj-hero { padding: calc(var(--nav-h) + 2.5rem) 5% 2rem; }
  .proj-stats-row { gap: 1rem; }
  .proj-stat { padding-right: 0; margin-right: 0; }
  .proj-stat-divider { display: none; }
  .proj-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; border-top: 1px solid var(--cream-mid); padding-top: 1.5rem; }
  .proj-gallery-img { flex: 0 0 280px; height: 200px; }
  .proj-client-grid { grid-template-columns: 1fr; }
}
