/* ═══════════════════════════════════════
   INDIMODULAR — Main Stylesheet
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0D0B09;
  --dark: #1A1510;
  --charcoal: #1A1510;
  --walnut: #2C1A0E;
  --walnut-2: #4A2E18;
  --walnut-3: #8B5E3C;
  --gold: #C9A44A;
  --gold-lt: #E2C47A;
  --ivory: #FAF8F4;
  --cream: #F2EDE4;
  --white: #FFFFFF;
  --muted: #9A8878;
  --ok: #2A6B3C;
  --err: #B83232;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--ivory);
  color: var(--walnut);
  overflow-x: hidden;
}

/* ── UTILS ── */
.eyebrow {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--walnut);
  letter-spacing: -.01em;
}

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

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-up.in {
  opacity: 1;
  transform: none;
}

/* ── NAV ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 1.6rem 5rem;
  transition: all .35s;
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(44, 26, 14, 0.07);
}

.nav.solid {
  padding: 1rem 5rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1360px;
  margin: 0 auto;
}

.logo {
  text-decoration: none;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--walnut);
  letter-spacing: -.02em;
}

.logo-main span {
  color: var(--gold);
}

.logo-sub {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .1rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--walnut-2);
  text-decoration: none;
  transition: color .25s;
}

.nav-links a:hover {
  color: var(--walnut);
}

.nav-cta {
  background: var(--walnut) !important;
  color: var(--ivory) !important;
  padding: .6rem 1.4rem !important;
  border-radius: 2px;
  font-size: .75rem !important;
  transition: background .25s !important;
}

.nav-cta:hover {
  background: var(--walnut-2) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--walnut);
  display: block;
}

.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--ivory);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mob-menu.open {
  display: flex;
}

.mob-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--walnut);
  text-decoration: none;
}

.mob-menu a:hover {
  color: var(--gold);
}

.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--walnut);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 4rem 6rem 8rem;
  background: var(--ivory);
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--cream);
  border: 1px solid rgba(201, 164, 74, .3);
  padding: .4rem 1rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  width: fit-content;
}

.hero-badge span {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-badge::before {
  content: '●';
  color: var(--gold);
  font-size: .5rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--walnut);
  letter-spacing: -.02em;
  margin-bottom: 1.8rem;
}

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

.hero-sub {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .28s ease;
  border-radius: 2px;
}

.btn-dark {
  background: var(--walnut);
  color: var(--ivory);
  padding: .9rem 2.4rem;
  font-size: .8rem;
  border: 1.5px solid var(--walnut);
}

.btn-dark:hover {
  background: transparent;
  color: var(--walnut);
}

.btn-ghost {
  background: transparent;
  color: var(--walnut);
  padding: .9rem 2rem;
  font-size: .8rem;
  border-bottom: 1px solid var(--walnut-3);
  border-radius: 0;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44, 26, 14, .1);
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--walnut);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .2rem;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
}

.hero-img-ph {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #3D2510, #2C1A0E, #1A1008);
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}

.hero-card {
  background: rgba(250, 248, 244, .08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 164, 74, .2);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
}

.hero-card p {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-lt);
  margin-bottom: .3rem;
}

.hero-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--ivory);
  font-weight: 600;
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--walnut);
  padding: .85rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  white-space: nowrap;
}

.marquee-item span {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, .5);
}

.marquee-item::after {
  content: '◆';
  color: var(--gold);
  font-size: .5rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── PACKAGES ── */
.packages {
  padding: 8rem 5rem;
  background: var(--cream);
}

.packages-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.packages-intro {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 1rem;
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.pkg-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(44, 26, 14, .08);
  transition: all .35s;
  position: relative;
   display: flex;          /* ADD */
  flex-direction: column; /* ADD */
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(44, 26, 14, .12);
}

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

.pkg-popular {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gold);
  color: var(--walnut);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 20px;
  z-index: 1;
}

.pkg-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.05);
}

.pkg-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(44, 26, 14, .25);
}

.pkg-1 .pkg-img-ph {
  background: linear-gradient(145deg, #E8DDD0, #C4A882);
}

.pkg-2 .pkg-img-ph {
  background: linear-gradient(145deg, #D4C4B0, #A08060);
}

.pkg-3 .pkg-img-ph {
  background: linear-gradient(145deg, #C4B4A0, #8B6040);
}

.pkg-body {
  padding: 2rem;
  display: flex;          /* ADD */
  flex-direction: column; /* ADD */
  flex: 1;
}

.pkg-type {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .5rem;
}

.pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--walnut);
  margin-bottom: .4rem;
}

.pkg-area {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--walnut);
  line-height: 1;
  margin-bottom: .25rem;
}

.pkg-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  font-family: 'Outfit', sans-serif;
}

.pkg-note {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pkg-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}

.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--walnut-2);
  line-height: 1.5;
}

.pkg-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.pkg-btn {
  width: 100%;
  padding: .9rem;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s;
}

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

.pkg-btn-outline:hover {
  background: var(--walnut);
  color: var(--ivory);
}

.pkg-btn-fill {
  background: var(--walnut);
  color: var(--ivory);
  border: 1.5px solid var(--walnut);
}

.pkg-btn-fill:hover {
  background: var(--walnut-2);
}

/* ── PROJECTS ── */

/* == HORIZONTAL SCROLL GALLERY == */
.proj-scroll-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.psg-row {
  margin-bottom: 36px;
}

.psg-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.psg-row-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.psg-icon {
  font-size: 1.2rem;
}

.psg-count {
  font-size: 0.72rem;
  font-weight: 500;
  color: #888;
  background: #f2f2f0;
  padding: 3px 10px;
  border-radius: 999px;
}

.psg-scroll-hint {
  font-size: 0.72rem;
  color: #bbb;
  letter-spacing: 0.04em;
}

.psg-divider {
  height: 1px;
  background: #f0f0ee;
  margin-bottom: 36px;
}

.psg-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.psg-track::-webkit-scrollbar {
  height: 3px;
}

.psg-track::-webkit-scrollbar-track {
  background: #f0f0ee;
  border-radius: 2px;
}

.psg-track::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.psg-card {
  flex: 0 0 230px;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  border: 1.5px solid #f0f0ee;
  background: #f8f8f6;
  transition: transform 0.2s, border-color 0.2s;
}

.psg-card.wide {
  flex: 0 0 360px;
}

.psg-card:hover {
  transform: translateY(-3px);
  border-color: #ddd;
}

.psg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.psg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, transparent 55%);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.psg-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.psg-card-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 3px;
}

.psg-zoom {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.psg-card:hover .psg-zoom {
  opacity: 1;
}

/* == PROJECT LIGHTBOX == */
.proj-lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.proj-lb-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.proj-lb-box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  max-width: 580px;
  width: 100%;
  position: relative;
  transform: scale(0.93);
  transition: transform 0.25s;
}

.proj-lb-overlay.open .proj-lb-box {
  transform: scale(1);
}

.proj-lb-img-area {
  width: 100%;
  height: 360px;
  background: #f5f5f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.proj-lb-img-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.proj-lb-ph {
  font-size: 4rem;
  opacity: 0.15;
}

.proj-lb-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.proj-lb-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.proj-lb-arr {
  position: absolute;
  top: calc(360px / 2);
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.proj-lb-arr:hover {
  background: rgba(0, 0, 0, 0.75);
}

.proj-lb-arr.left {
  left: 10px;
}

.proj-lb-arr.right {
  right: 10px;
}

.proj-lb-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.plb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.plb-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.proj-lb-info {
  padding: 18px 22px 22px;
}

.proj-lb-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.proj-lb-sub {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 16px;
  line-height: 1.5;
}

.proj-lb-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: #25D366;
  color: #fff;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.proj-lb-wa:hover {
  opacity: 0.88;
}

@media(max-width: 600px) {
  .psg-card {
    flex: 0 0 180px;
    height: 140px;
  }

  .psg-card.wide {
    flex: 0 0 280px;
  }

  .proj-lb-img-area {
    height: 260px;
  }

  .proj-lb-arr {
    top: calc(260px / 2);
  }
}

.projects {
  padding: 8rem 0;
}

.proj-head {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 5rem 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.filter-wrap {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: .45rem 1.15rem;
  border: 1px solid var(--walnut-3);
  background: transparent;
  color: var(--muted);
  font-family: 'Outfit', sans-serif;
  font-size: .75rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  transition: all .25s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--walnut);
  color: var(--ivory);
  border-color: var(--walnut);
}

.proj-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 1.25rem;
}

.proj-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
  background: var(--cream);
}

.proj-item.wide {
  grid-column: span 2;
}

.proj-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.proj-item:hover img {
  transform: scale(1.06);
}

.proj-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(44, 26, 14, .25);
}

.ph-1 .proj-ph {
  background: linear-gradient(140deg, #D4B896, #8C6045);
}

.ph-2 .proj-ph {
  background: linear-gradient(140deg, #C8D0BC, #6B7855);
}

.ph-3 .proj-ph {
  background: linear-gradient(140deg, #D0C4B0, #907060);
}

.ph-4 .proj-ph {
  background: linear-gradient(140deg, #B8A898, #5C4033);
}

.ph-5 .proj-ph {
  background: linear-gradient(140deg, #C4A888, #7A5540);
}

.ph-6 .proj-ph {
  background: linear-gradient(140deg, #D8D0BB, #9B8060);
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 18, 16, .9) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.proj-item:hover .proj-overlay {
  opacity: 1;
}

.proj-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ivory);
}

.proj-overlay p {
  font-size: .72rem;
  color: var(--gold-lt);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .35rem;
}

.proj-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(250, 248, 244, .92);
  padding: .25rem .7rem;
  border-radius: 1px;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--walnut);
}

/* ── WHY US ── */
.why {
  padding: 8rem 5rem;
  background: var(--walnut);
}

.why-inner {
  max-width: 1360px;
  margin: 0 auto;
}

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

.why .eyebrow::before {
  background: var(--gold-lt);
}

.why .section-title {
  color: var(--ivory);
}

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

.why-card {
  padding: 2rem;
  border: 1px solid rgba(250, 248, 244, .08);
  border-radius: 4px;
  transition: border-color .3s;
}

.why-card:hover {
  border-color: rgba(201, 164, 74, .3);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: .75rem;
}

.why-card p {
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(250, 248, 244, .45);
  font-weight: 300;
}

/* ── PROCESS ── */

.step-list {
  list-style: none;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
.step-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.process {
  padding: 8rem 5rem;
}

.process-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 3rem;
  right: 3rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 164, 74, .3), rgba(201, 164, 74, .3), transparent);
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
}

.step-dot {
  width: 11px;
  height: 11px;
  background: var(--gold);
  border-radius: 50%;
  margin: .75rem auto 1.5rem;
  position: relative;
}

.step-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(201, 164, 74, .3);
  border-radius: 50%;
}

.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: .6rem;
}

.step p {
  font-size: .83rem;
  line-height: 1.72;
  color: var(--muted);
  font-weight: 300;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 8rem 5rem;
  background: var(--cream);
}

.testimonials-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.t-wrap {
  overflow: hidden;
  margin-top: 3.5rem;
}

.t-track {
  display: flex;
  gap: 1.75rem;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.t-card {
  min-width: calc(50% - .875rem);
  flex-shrink: 0;
  background: var(--white);
  padding: 3rem;
  border-radius: 4px;
  position: relative;
}

.t-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  color: var(--gold);
  opacity: .12;
  position: absolute;
  top: -.75rem;
  left: 1.75rem;
  line-height: 1;
  pointer-events: none;
}

.t-stars {
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}

.t-review {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.78;
  color: var(--walnut);
  position: relative;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--walnut-3), var(--walnut-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  flex-shrink: 0;
}

.t-author h4 {
  font-size: .9rem;
  font-weight: 500;
  color: var(--walnut);
}

.t-author p {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .1rem;
}

.t-controls {
  display: flex;
  gap: .75rem;
  margin-top: 2.5rem;
}

.t-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--walnut-3);
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--walnut);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}

.t-btn:hover {
  background: var(--walnut);
  color: var(--ivory);
  border-color: var(--walnut);
}

/* ── CONTACT ── */
.contact {
  padding: 8rem 5rem;
}

.contact-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  color: var(--walnut);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--gold);
}

.contact-info>p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.c-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.c-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--walnut);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.c-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

.c-value {
  font-size: .95rem;
  color: var(--walnut);
  font-weight: 500;
  margin-top: .05rem;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #25D366;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: opacity .25s;
}

.wa-btn:hover {
  opacity: .88;
}

.c-form {
  background: var(--cream);
  padding: 3rem;
  border-radius: 4px;
}

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

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--walnut-2);
  margin-bottom: .55rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  color: var(--walnut);
  background: var(--white);
  border: 1px solid rgba(44, 26, 14, .14);
  border-radius: 2px;
  outline: none;
  transition: border .25s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1.05rem;
  background: var(--walnut);
  color: var(--ivory);
  border: none;
  border-radius: 2px;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
  font-weight: 500;
}

.submit-btn:hover {
  background: var(--walnut-2);
}

.form-note {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
  margin-top: .75rem;
}

.form-status {
  margin-top: 1rem;
  padding: .8rem 1rem;
  border-radius: 2px;
  font-size: .88rem;
  display: none;
}

.form-status.ok {
  display: block;
  background: #d4edda;
  color: var(--ok);
}

.form-status.err {
  display: block;
  background: #fce8e8;
  color: var(--err);
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  padding: 4.5rem 5rem 2rem;
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: -.02em;
  display: block;
  margin-bottom: .25rem;
}

.footer-logo span {
  color: var(--gold);
}

.footer-logo-sub {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.8;
  color: rgba(250, 248, 244, .35);
  max-width: 250px;
  font-weight: 300;
  margin-top: 1rem;
}

.footer-col h5 {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 1.3rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: .8rem;
}

.footer-col a {
  font-size: .85rem;
  color: rgba(250, 248, 244, .38);
  text-decoration: none;
  transition: color .25s;
}

.footer-col a:hover {
  color: var(--ivory);
}

.footer-bot {
  border-top: 1px solid rgba(250, 248, 244, .06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bot p {
  font-size: .78rem;
  color: rgba(250, 248, 244, .22);
}

.socials {
  display: flex;
  gap: 1rem;
}

.social-a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(250, 248, 244, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: .78rem;
  color: rgba(250, 248, 244, .38);
  font-weight: 600;
  transition: all .25s;
}

.social-a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .38);
  transition: transform .25s;
}

.wa-float:hover {
  transform: scale(1.1);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {

  .nav,
  .nav.solid {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .hero-left {
    padding: 10rem 3rem 6rem;
  }

  .packages,
  .why,
  .process,
  .testimonials,
  .contact,
  .footer {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .proj-head,
  .proj-grid {
    padding-left: 3rem;
    padding-right: 3rem;
  }

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

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 8rem 2rem 4rem;
    min-height: 70vh;
  }

  .hero-right {
    min-height: 300px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .proj-item.wide {
    grid-column: span 2;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps::before {
    display: none;
  }

  .t-card {
    min-width: 90%;
  }

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {

  .packages,
  .why,
  .process,
  .testimonials,
  .contact,
  .footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .proj-head,
  .proj-grid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  .proj-item.wide {
    grid-column: span 1;
  }

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

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

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

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

/* ── PRODUCTS TEASER (index.html) ── */
.products-teaser {
  padding: 80px 0;
  background: #fafaf8;
}

.products-teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pt-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.pt-view-all {
  white-space: nowrap;
}

.pt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.pt-card {
  background: #fff;
  border: 1.5px solid #efefed;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.pt-card:hover {
  border-color: #ccc;
  transform: translateY(-3px);
}

.pt-img {
  height: 150px;
  background: #f5f5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-img-ph {
  font-size: 2.8rem;
  opacity: 0.3;
}

.pt-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}

.pt-body {
  padding: 14px 16px;
}

.pt-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--dark);
}

.pt-price {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
}

.pt-price span {
  font-size: 0.72rem;
  color: #aaa;
}

.pt-cta-row {
  text-align: center;
}

@media(max-width: 900px) {
  .pt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 500px) {
  .pt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Nav active link */
.active-link {
  color: var(--dark) !important;
  font-weight: 600;
}