/* ─────────────────────────────────────────────
   GETAWAY BALI — Shared Stylesheet
───────────────────────────────────────────── */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Variables ── */
:root {
  --cream:       #F8F5F0;
  --white:       #FFFFFF;
  --black:       #1C1A17;
  --charcoal:    #3A3530;
  --gold:        #B89A6E;
  --gold-light:  #DCC9A8;
  --dark:        #272B22;
  --gray:        #8A8479;
  --gray-light:  #E8E4DE;
  --border:      rgba(28,26,23,0.1);
  --radius:      2px;
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 64px; }
.section    { padding: 100px 0; }

/* ── Labels & Tags ── */
.label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.label--light { color: var(--gold-light); }
.label--gray  { color: var(--gray); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  padding: 15px 36px;
}
.btn-gold:hover { background: #C9AB7F; transform: translateY(-1px); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  padding: 15px 36px;
}
.btn-dark:hover { background: var(--charcoal); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,0.48);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  padding: 14px 36px;
  border: 1px solid rgba(28,26,23,0.3);
}
.btn-outline-dark:hover { border-color: var(--black); background: var(--black); color: white; }

.btn-ghost {
  background: transparent;
  color: var(--black);
  padding: 0;
  gap: 12px;
  font-size: 11px;
}
.btn-ghost:hover { color: var(--gold); gap: 20px; }
.btn-ghost .arrow { font-size: 15px; transition: none; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 26px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(248,245,240,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 64px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 18px rgba(0,0,0,0.05);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: white;
  transition: color 0.4s;
}
.nav.scrolled .nav-logo,
.nav.solid    .nav-logo { color: var(--black); }

.nav.solid {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 18px 64px;
  position: sticky;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
.nav.scrolled .nav-links a,
.nav.solid    .nav-links a { color: var(--charcoal); }
.nav-links a:hover            { color: var(--gold) !important; }
.nav-links a.active           { color: var(--gold) !important; }

.nav-enquire {
  border: 1px solid rgba(255,255,255,0.5) !important;
  color: white !important;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s !important;
}
.nav-enquire:hover { background: rgba(255,255,255,0.1) !important; }
.nav.scrolled .nav-enquire,
.nav.solid    .nav-enquire {
  border-color: var(--black) !important;
  color: var(--black) !important;
}
.nav.scrolled .nav-enquire:hover,
.nav.solid    .nav-enquire:hover {
  background: var(--black) !important;
  color: var(--cream) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: white; transition: all 0.3s; }
.nav.scrolled .nav-toggle span,
.nav.solid    .nav-toggle span { background: var(--black); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Fade Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── Hero ── */
.hero {
  height: 100vh;
  min-height: 660px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 10s ease;
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,8,6,0.65) 0%, rgba(10,8,6,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 64px;
  animation: heroIn 1.1s ease forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 300;
  color: white;
  margin-bottom: 20px;
  line-height: 1.05;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 64px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.hero-scroll-line {
  width: 44px;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.5), transparent);
  animation: lineBreath 2.5s ease-in-out infinite;
}
@keyframes lineBreath { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── Section headers ── */
.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: clamp(34px, 3.5vw, 52px); font-weight: 300; }
.section-header p  { font-size: 15px; color: var(--charcoal); line-height: 1.8; margin-top: 16px; max-width: 560px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 16px auto 0; }

/* ── About strip ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-text h2 { font-size: clamp(34px, 3.5vw, 54px); font-weight: 300; margin-bottom: 24px; }
.about-text p  { font-size: 15px; color: var(--charcoal); line-height: 1.85; margin-bottom: 16px; }
.about-image-wrap { position: relative; padding-bottom: 44px; }
.about-image-wrap img { width: 100%; height: 500px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 0; left: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 24px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  line-height: 1.55;
  max-width: 200px;
}

/* ── Differentiators ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-light);
}
.diff-card {
  background: var(--white);
  padding: 48px 40px;
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}
.diff-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.diff-card:hover::after  { transform: scaleX(1); }
.diff-card:hover         { background: var(--cream); }
.diff-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 20px;
}
.diff-card h3  { font-size: 26px; margin-bottom: 12px; }
.diff-card p   { font-size: 14px; color: var(--charcoal); line-height: 1.8; }

/* ── Project Cards ── */
.project-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.35s;
}
.project-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.1); }

.card-swiper { position: relative; height: 280px; overflow: hidden; }
.card-swiper .swiper { height: 100%; }
.card-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Custom swiper arrows on cards */
.card-swiper .swiper-button-prev,
.card-swiper .swiper-button-next {
  width: 36px; height: 36px;
  background: rgba(248,245,240,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  margin-top: 0;
  top: 50%; transform: translateY(-50%);
}
.card-swiper .swiper-button-prev:hover,
.card-swiper .swiper-button-next:hover { background: white; }
.card-swiper .swiper-button-prev::after,
.card-swiper .swiper-button-next::after {
  font-size: 11px;
  color: var(--black);
  font-weight: 700;
}
.card-swiper .swiper-button-prev { left: 12px; }
.card-swiper .swiper-button-next { right: 12px; }

.card-swiper .swiper-pagination-bullet { background: white; opacity: 0.6; }
.card-swiper .swiper-pagination-bullet-active { opacity: 1; }

.card-body { padding: 28px 32px 36px; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.card-meta span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
.card-meta span.gold { color: var(--gold); }

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  transition: color 0.2s;
  display: block;
}
.card-title:hover { color: var(--gold); }

.card-desc { font-size: 13.5px; color: var(--charcoal); line-height: 1.75; flex: 1; margin-bottom: 24px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--border); }
.card-investment { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--black); }
.card-investment small { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 2px; }

/* ── Featured Projects (homepage) ── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--gray-light);
  margin-bottom: 48px;
}
.featured-grid .card-swiper { height: 340px; }

/* ── Portfolio Grid ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--gray-light);
}

/* ── Process ── */
.process-section { background: var(--dark); }
.process-section .label--light { color: var(--gold-light); }
.process-section h2 { color: white; font-size: clamp(34px, 3.5vw, 52px); font-weight: 300; margin-bottom: 64px; max-width: 500px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.process-step {
  padding: 40px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(255,255,255,0.03); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.process-step p { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.8; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(32px, 3.5vw, 50px); font-weight: 300; color: white; margin-bottom: 12px; }
.cta-banner p  { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 36px; }
.cta-actions   { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(32px, 3vw, 48px); font-weight: 300; margin-bottom: 18px; }
.contact-info > p { font-size: 15px; color: var(--charcoal); line-height: 1.8; margin-bottom: 40px; }
.c-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.c-item:first-of-type { border-top: 1px solid var(--border); }
.c-icon { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.c-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.c-val { font-size: 14px; color: var(--charcoal); line-height: 1.6; }
.c-val a { color: var(--charcoal); transition: color 0.2s; }
.c-val a:hover { color: var(--gold); }

.contact-form-box { background: white; padding: 48px 44px; }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 100px; resize: vertical; }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A8479' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
}
.form-submit {
  width: 100%;
  background: var(--black);
  color: white;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 0;
}
.form-submit:hover { background: var(--charcoal); }

/* ── Inquire Block (project detail) ── */
.inquire-block {
  background: var(--dark);
  padding: 72px;
  text-align: center;
}
.inquire-block h3 { font-size: clamp(28px, 3vw, 44px); font-weight: 300; color: white; margin-bottom: 12px; }
.inquire-block p  { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 36px; }
.inquire-actions  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Project Detail ── */
.project-hero-swiper { position: relative; height: 70vh; min-height: 480px; background: var(--black); }
.project-hero-swiper .swiper { height: 100%; }
.project-hero-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.project-hero-swiper .swiper-button-prev,
.project-hero-swiper .swiper-button-next {
  color: white;
  background: rgba(0,0,0,0.28);
  width: 48px; height: 48px;
  border-radius: 50%;
  transition: background 0.2s;
}
.project-hero-swiper .swiper-button-prev:hover,
.project-hero-swiper .swiper-button-next:hover { background: rgba(0,0,0,0.55); }
.project-hero-swiper .swiper-button-prev::after,
.project-hero-swiper .swiper-button-next::after { font-size: 14px; font-weight: 700; }
.project-hero-swiper .swiper-pagination-bullet { background: white; }
.project-hero-swiper .swiper-pagination-bullet-active { background: var(--gold-light); }

/* Counter overlay on hero swiper */
.swiper-counter {
  position: absolute;
  bottom: 20px; right: 24px;
  z-index: 10;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3);
  padding: 6px 12px;
}

.project-breadcrumb {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
}
.project-breadcrumb a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.project-breadcrumb a:hover { color: var(--gold); }

.project-header { margin-bottom: 48px; }
.project-header h1 { font-size: clamp(40px, 5vw, 68px); font-weight: 300; margin-bottom: 8px; }

.project-specs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--gray-light);
  margin-bottom: 56px;
}
.spec-item {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
}
.spec-label { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.spec-value { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--black); line-height: 1.2; }

.project-description { max-width: 760px; margin-bottom: 72px; }
.project-description p { font-size: 15.5px; color: var(--charcoal); line-height: 1.9; margin-bottom: 20px; }

/* ── Stats Bar ── */
.stats-bar { background: var(--dark); padding: 40px 0; }
.stats-inner { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ── Footer ── */
footer { background: var(--black); color: white; padding: 72px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: white; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.8; margin-bottom: 26px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
  font-size: 13px;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: rgba(255,255,255,0.25); }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-float svg { width: 25px; height: 25px; fill: white; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .process-step { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .process-step:nth-child(3) { border-right: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .project-specs { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .nav, .nav.scrolled, .nav.solid { padding-left: 40px; padding-right: 40px; }
  .hero-content { padding: 0 40px; }
  .hero-scroll { left: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-image-wrap img { height: 400px; }
  .about-badge { left: 0; }
  .diff-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav.solid { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; inset: 0; background: var(--black);
    padding: 90px 36px 40px; gap: 16px; z-index: 1000;
  }
  .nav-links.open li a {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 30px !important; font-weight: 300 !important;
    color: white !important; letter-spacing: 0.02em !important;
    text-transform: none !important;
  }
  .nav-links.open .nav-enquire { border: none !important; padding: 0 !important; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero-scroll { left: 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .project-specs { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form-box { padding: 32px 24px; }
  .inquire-block { padding: 48px 24px; }
  .stats-inner { gap: 36px; flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .project-specs { grid-template-columns: 1fr 1fr; }
  .featured-grid .card-swiper { height: 260px; }
}

/* ── Project Type Badges ── */
.project-header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.project-type-badge,
.card-type-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.badge-renovation {
  background: #EDE5D8;
  color: #8A6A3A;
}
.badge-newbuild {
  background: #D8E5DD;
  color: #2E5C3A;
}
.card-type-badge { font-size: 8px; padding: 3px 8px; }

/* ── Project Extra Sections (video / investment / performance) ── */
.project-extra-section {
  background: var(--white);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.project-extra-section--alt {
  background: var(--cream);
}
.project-extra-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  margin: 8px 0 36px;
}

/* ── Video Embed ── */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Instagram Embed (clipped — hides header, footer & black bars) ── */
.instagram-clip-outer {
  width: 240px;
  margin: 0 auto;
  overflow: hidden;
  height: 460px;
  border-radius: 12px;
  transform: translateZ(0);
}
.instagram-clip-inner {
  margin-top: -72px;
  margin-left: -70px;
  width: 380px;
}
.instagram-clip-inner .instagram-media {
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  min-width: unset !important;
  max-width: 380px !important;
  width: 380px !important;
}
.instagram-clip-inner iframe {
  border: none !important;
}

/* ── Instagram Two-Video Layout ── */
.instagram-two-col {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 36px;
}
.instagram-video-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.insta-col-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: center;
}
.instagram-frame {
  border: 1px solid rgba(28,26,23,0.08);
  border-radius: 14px;
  padding: 5px;
}
@media (max-width: 600px) {
  .instagram-two-col {
    flex-direction: column;
    align-items: center;
  }
}

/* ── Local Video Player ── */
.video-local {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
}
.video-local video {
  width: 100%;
  display: block;
  max-height: 600px;
  object-fit: contain;
}

/* ── Investment Table ── */
.investment-table-wrap { overflow-x: auto; }
.investment-table {
  width: 100%;
  max-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}
.investment-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.investment-table td:first-child {
  font-weight: 600;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  width: 220px;
}
.investment-table td:last-child { color: var(--charcoal); }
.investment-table .total-row td {
  border-top: 2px solid var(--black);
  border-bottom: none;
  padding-top: 18px;
}
.investment-table .total-row td:first-child {
  color: var(--black);
  font-size: 11px;
}
.investment-table .total-row td:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
}

/* ── Performance Table ── */
.perf-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.perf-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 13px;
}
.perf-table th {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0 16px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.perf-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  white-space: nowrap;
}
.perf-table td:first-child { font-weight: 600; color: var(--black); }
.perf-table .roi-col { text-align: right; }
.perf-table .roi-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
}

@media (max-width: 768px) {
  .project-extra-section { padding: 48px 0; }
  .investment-table td:first-child { width: 160px; }
}
