/* =========================================================
   TWIN TOWER DXP × ARMANI/CASA — Landing Page Styles
   ========================================================= */

:root {
  --bg: #f7f4ef;
  --bg-soft: #efeae1;
  --ink: #1b1a17;
  --ink-soft: #4a4740;
  --muted: #7a7568;
  --line: #e2ddd2;
  --gold: #b8955a;
  --gold-2: #d9b880;
  --dark: #14120f;
  --dark-2: #1f1c17;
  --white: #ffffff;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Poppins', system-ui, -apple-system, sans-serif;

  --radius: 14px;
  --shadow-sm: 0 6px 20px rgba(20, 18, 15, 0.06);
  --shadow-md: 0 20px 50px rgba(20, 18, 15, 0.12);
  --shadow-lg: 0 30px 80px rgba(20, 18, 15, 0.18);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -------- Typography Helpers -------- */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--gold-2); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 700; }
.section-title.light { color: var(--white); }
.section-title .accent { color: var(--gold); font-family: var(--sans); font-weight: 300; }

.section-lead {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 640px;
  line-height: 1.75;
}
.section-lead.light { color: rgba(255,255,255,0.75); margin: 0 auto; }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}
.section-head .section-lead { margin: 0 auto; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-primary i { transition: transform 0.35s var(--ease); }
.btn-primary:hover i { transform: translateX(5px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* ============ Navbar ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(10px);
}
.navbar.scrolled {
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.navbar.scrolled .nav-logo { color: var(--white); }
.navbar.scrolled .nav-menu a { color: var(--white); }
.navbar.scrolled .nav-toggle { color: var(--white); }
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  transition: color 0.4s var(--ease);
}
.navbar.scrolled .nav-logo { color: var(--ink); }
.logo-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  border-radius: 50%;
}
.logo-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.logo-text small {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 3px;
  opacity: 0.7;
  font-weight: 400;
  margin-top: 2px;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-divider {
  font-family: var(--serif);
  font-size: 20px;
  opacity: 0.6;
  margin: 0 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-menu a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}
.navbar.scrolled .nav-menu a { color: var(--white); }
.nav-menu a:not(.nav-cta):hover { color: var(--gold); }
.nav-menu a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-menu a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--white) !important;
  transform: translateY(-2px);
}
.navbar.scrolled .nav-cta { color: var(--white) !important; }

.nav-toggle {
  display: none;
  color: var(--white);
  font-size: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-close-item { display: none; }
.navbar.scrolled .nav-toggle { color: var(--white); }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 666px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=85') center/cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.18); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.55) 0%, rgba(20,18,15,0.45) 50%, rgba(20,18,15,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1000px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 24px;
}
.hero-eyebrow span {
  width: 40px; height: 1px;
  background: var(--gold-2);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 10vw, 80px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 700;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.hero-sub strong { color: var(--gold-2); font-weight: 500; }

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 700px;
  margin: 0 auto;
}
.hero-stats h3 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stats p {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  z-index: 3;
}
.scroll-hint span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold-2);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ============ Marquee ============ */
.marquee {
  background: var(--ink);
  color: var(--white);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 4px;
}
.marquee-track i { color: var(--gold); font-size: 10px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ About ============ */
.about { padding: 120px 0; background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-1 {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 75%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-img-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 8px solid var(--bg);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  top: 30px; right: 20px;
  background: var(--ink);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: floatY 4s ease-in-out infinite;
}
.about-badge h4 { font-size: 10px; letter-spacing: 3px; color: var(--gold-2); font-weight: 500; }
.about-badge h2 { font-family: var(--serif); font-size: 44px; font-weight: 500; line-height: 1.1; }
.about-badge p { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.about-content .section-title { margin-bottom: 24px; }
.about-content .section-lead { margin-bottom: 40px; }

.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.35s var(--ease);
}
.feature-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.feature-item i {
  font-size: 22px;
  color: var(--gold);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--bg-soft);
  border-radius: 12px;
  flex-shrink: 0;
}
.feature-item h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature-item p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ============ Project (Dark) ============ */
.project {
  padding: 120px 0;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.project::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,149,90,0.18), transparent 70%);
  border-radius: 50%;
}
.project::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,149,90,0.12), transparent 70%);
  border-radius: 50%;
}
.project .container { position: relative; z-index: 2; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}
.project-card {
  padding: 45px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.project-card:hover::before { transform: translateX(0); }
.project-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(184,149,90,0.4);
}
.project-card.featured {
  background: linear-gradient(135deg, rgba(184,149,90,0.15), rgba(184,149,90,0.05));
  border-color: rgba(184,149,90,0.35);
}
.project-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 14px;
  font-size: 24px;
  margin-bottom: 22px;
}
.project-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--white);
}
.project-card p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7; }

.project-showcase {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-lg);
}
.project-showcase img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}
.project-showcase:hover img { transform: scale(1.08); }
.project-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,18,15,0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px;
  color: var(--white);
}
.project-showcase-overlay h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  margin-bottom: 10px;
}
.project-showcase-overlay p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
}

/* ============ Lifestyle ============ */
.lifestyle { padding: 120px 0; background: var(--bg-soft); }
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.style-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-sm);
}
.style-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.style-img { height: 280px; overflow: hidden; }
.style-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.style-card:hover .style-img img { transform: scale(1.1); }
.style-body { padding: 32px; position: relative; }
.style-num {
  position: absolute;
  top: -30px; right: 28px;
  background: var(--gold);
  color: var(--white);
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  box-shadow: var(--shadow-md);
}
.style-body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.style-body p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ============ Benefits ============ */
.benefits { padding: 120px 0; background: var(--bg); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.benefit {
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.benefit:hover::after { transform: scaleX(1); }
.benefit:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.benefit i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 20px;
  width: 72px; height: 72px;
  display: grid; place-items: center;
  background: var(--bg-soft);
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.4s var(--ease);
}
.benefit:hover i {
  background: var(--gold);
  color: var(--white);
  transform: rotateY(360deg);
}
.benefit h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.benefit p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ============ Portfolio (Dark) ============ */
.portfolio {
  padding: 120px 0;
  background: var(--dark-2);
  color: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.portfolio-card:hover img { transform: scale(1.1); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,18,15,0.95));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: all 0.4s var(--ease);
}
.portfolio-overlay p {
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.portfolio-overlay h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  transition: transform 0.4s var(--ease);
}
.portfolio-overlay span {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.portfolio-card:hover .portfolio-overlay { background: linear-gradient(180deg, rgba(184,149,90,0.35) 0%, rgba(20,18,15,0.95)); }
.portfolio-card:hover .portfolio-overlay h3 { transform: translateY(-6px); }

/* ============ CTA ============ */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,90,0.15), transparent 70%);
}
.cta::before { top: -100px; left: -100px; }
.cta::after { bottom: -100px; right: -100px; }
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.cta h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta h2 em { font-style: italic; color: var(--gold); }
.cta-sub {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 40px;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}
.cta-form .field { display: flex; flex-direction: column; text-align: left; }
.cta-form .field:nth-of-type(5),
.cta-form .field:nth-of-type(6) { grid-column: span 2; }
.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 16px 22px;
  border: 1.5px solid var(--line);
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 14px;
  background: var(--white);
  color: var(--ink);
  transition: all 0.3s;
  box-sizing: border-box;
}
.cta-form textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,149,90,0.15);
}
.cta-form .field.has-error input,
.cta-form .field.has-error textarea {
  border-color: #c0392b;
  box-shadow: 0 0 0 4px rgba(192,57,43,0.10);
}
.cta-form .err-msg {
  min-height: 16px;
  margin: 6px 22px 0;
  font-family: var(--sans);
  font-size: 12px;
  color: #c0392b;
  letter-spacing: .2px;
}
.cta-form button {
  grid-column: span 2;
  justify-content: center;
}

/* Thank-you modal */
.thankyou-modal {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  z-index: 99999;
  padding: 20px;
  overflow-y: auto;
}
.thankyou-modal.show { display: flex; }
.thankyou-backdrop {
  position: absolute; inset: 0;
  background: rgba(20,18,15,0.55);
  backdrop-filter: blur(6px);
}
.thankyou-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: thankyouIn .4s var(--ease);
  margin: auto;
}
@keyframes thankyouIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.thankyou-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none;
  font-size: 28px; line-height: 1;
  color: var(--muted); cursor: pointer;
}
.thankyou-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 32px; font-style: italic;
  margin-bottom: 20px;
}
.thankyou-card h3 {
  font-family: var(--serif);
  font-size: 32px; font-weight: 500;
  color: var(--ink);
  margin: 0 0 12px;
}
.thankyou-card p {
  font-family: var(--sans);
  font-size: 14px; line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 28px;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}
.cta-info div { display: flex; align-items: center; gap: 10px; }
.cta-info i { color: var(--gold); }

/* ============ Footer ============ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer .nav-logo { color: var(--white); margin-bottom: 20px; }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.75;
  max-width: 380px;
}
.footer-col h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--gold-2);
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.footer-col a i { color: var(--gold); margin-right: 8px; }
.footer-col a:hover { color: var(--gold-2); transform: translateX(5px); }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  margin: 0;
  transition: all 0.3s;
  color: var(--gold);
}
.socials a:hover {
  background: var(--gold);
  color: var(--white) !important;
  transform: translateY(-4px);
}

.socials a:hover {
    i {
        color: var(--white) !important;
    }
}

.socials a i {margin: 0;}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  letter-spacing: 1px;
}

/* ============ Responsive ============ */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { height: 500px; max-width: 500px; margin: 0 auto; }
  .project-grid { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero { min-height: 100vh; height: auto; align-items: flex-start; padding: 110px 0 60px; }
  .hero-content { padding: 0 20px; text-align: center; }
  .hero-title { font-size: clamp(40px, 11vw, 56px); margin-bottom: 20px; }
  .hero-sub { font-size: 15px; }
  .hero-cta { justify-content: center; }

  .scroll-hint { bottom: 15px; }

  .about-images {
    position: static;
    height: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .about-img-1, .about-img-2 {
    position: static;
    width: 100%;
    height: 260px;
    border: none;
  }
  .about-badge {
    position: absolute;
    top: 16px; right: 16px;
    padding: 14px 18px;
  }
  .about-badge h2 { font-size: 28px; }
  .about-images { position: relative; }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 82%; max-width: 340px;
    height: 100vh;
    background: #0f0f0f;
    flex-direction: column;
    padding: 28px 28px 40px;
    gap: 0;
    align-items: stretch;
    transition: right 0.4s var(--ease);
    box-shadow: -20px 0 40px rgba(0,0,0,0.35);
    overflow-y: auto;
  }
  .nav-menu.active { right: 0; }
  .nav-menu li { list-style: none; width: 100%; }
  .nav-menu a {
    color: rgba(255,255,255,0.85) !important;
    font-family: var(--serif);
    font-size: 20px;
    letter-spacing: 1.5px;
    padding: 18px 4px;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.3s, padding-left 0.3s;
  }
  .nav-menu a:hover { color: var(--gold) !important; padding-left: 10px; }
  .nav-menu a.nav-cta {
    margin-top: 24px;
    text-align: center;
    background: var(--gold);
    color: var(--white) !important;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .nav-menu a.nav-cta:hover { padding-left: 24px; background: var(--ink); }
  .nav-toggle { display: block; }
  .nav-close-item {
    display: flex;
    justify-content: flex-end;
    border: none;
    margin-bottom: 18px;
  }
  .nav-close-item a,
  .nav-close-item { border-bottom: none !important; }
  .nav-close {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--white);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.3s;
  }
  .nav-close:hover { background: var(--gold); border-color: var(--gold); transform: rotate(90deg); }
  .navbar { background: rgba(15,15,15,0.92); backdrop-filter: blur(14px); }
  .navbar .nav-logo, .navbar .nav-toggle { color: var(--white); }

  .hero-stats { gap: 30px; }
  .hero-stats h3 { font-size: 32px; }
  .about, .project, .lifestyle, .benefits, .portfolio, .cta { padding: 80px 0; }
  .style-grid, .benefits-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .cta-form { grid-template-columns: 1fr; }
  .cta-form .field,
  .cta-form .field:nth-of-type(5),
  .cta-form .field:nth-of-type(6),
  .cta-form button { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .marquee-track span { font-size: 20px; }
  .project-showcase { height: 340px; }
  .project-showcase-overlay { padding: 30px; }
  .logo-text { font-size: 15px; }
  .logo-text small { font-size: 8px; }
  .logo-img { height: 30px; }
  .logo-divider { font-size: 14px; margin: 0 2px; }
}

/* Sticky WhatsApp Button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  z-index: 999;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
  animation: waPulse 2s infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, .55);
  color: #fff;
}
@keyframes waPulse {
  0%   { box-shadow: 0 8px 24px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .5); }
  70%  { box-shadow: 0 8px 24px rgba(37, 211, 102, .4), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
  .wa-float { width: 52px; height: 52px; font-size: 26px; bottom: 18px; right: 18px; }
}

/* Area & Pricing — Editorial Residence Rows */
.area-pricing { padding: 120px 0; background: #faf8f5; position: relative; overflow: hidden; }
.area-pricing::before {
  content: ""; position: absolute; top: 80px; right: -120px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,138,74,.09), transparent 70%);
  pointer-events: none;
}
.area-pricing .section-lead { max-width: 720px; margin: 20px auto 0; }

.residences {
  margin: 70px auto 30px; max-width: 1080px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative; z-index: 1;
}
.residence {
  position: relative; background: #fff;
  display: grid; grid-template-columns: 200px 1fr 240px;
  align-items: center; gap: 40px;
  padding: 40px 45px; border-radius: 3px;
  border-left: 3px solid #a88a4a;
  box-shadow: 0 4px 20px rgba(0,0,0,.03);
  transition: transform .4s ease, box-shadow .4s ease;
}
.residence:hover { transform: translateX(6px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }

.residence-hero {
  background: linear-gradient(120deg, #1a1a1a 0%, #2b2418 60%, #1a1a1a 100%);
  color: #f5f0e6; border-left-color: #d4b57a;
  padding-top: 55px;
}
.residence-hero .residence-desc,
.residence-hero .residence-meta { color: rgba(245,240,230,.75); }

.residence-ribbon {
  position: absolute; top: -12px; left: 45px;
  background: #d4b57a; color: #1a1a1a;
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 18px rgba(212,181,122,.35);
}

.residence-left { display: flex; flex-direction: column; gap: 10px; border-right: 1px solid rgba(0,0,0,.07); padding-right: 30px; }
.residence-hero .residence-left { border-color: rgba(255,255,255,.12); }
.residence-index {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px; font-weight: 300; line-height: 1;
  color: #a88a4a;
}
.residence-hero .residence-index { color: #d4b57a; }
.residence-tag {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: #1a1a1a; opacity: .7;
}
.residence-hero .residence-tag { color: #f5f0e6; opacity: .8; }

.residence-mid h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 500; margin-bottom: 12px; line-height: 1.2;
}
.residence-desc { font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; opacity: .78; }
.residence-meta {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 22px;
}
.residence-meta li {
  font-size: 12.5px; letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 8px;
}
.residence-meta i { color: #a88a4a; font-size: 14px; }
.residence-hero .residence-meta i { color: #d4b57a; }

.residence-right { text-align: right; border-left: 1px solid rgba(0,0,0,.07); padding-left: 30px; }
.residence-hero .residence-right { border-color: rgba(255,255,255,.12); }
.residence-price-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  opacity: .65; margin-bottom: 6px;
}
.residence-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 600; color: #a88a4a;
  line-height: 1; margin-bottom: 18px;
}
.residence-hero .residence-price { color: #d4b57a; }
.residence-price span { font-size: 16px; font-weight: 400; margin-left: 4px; }
.price-quiet { font-size: 26px; font-weight: 500; letter-spacing: 1px; }

.residence-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: #1a1a1a; padding-bottom: 4px;
  border-bottom: 1px solid #1a1a1a;
  transition: all .3s ease;
}
.residence-link:hover { gap: 14px; color: #a88a4a; border-color: #a88a4a; }
.residence-hero .residence-link { color: #f5f0e6; border-color: rgba(245,240,230,.4); }
.residence-hero .residence-link:hover { color: #d4b57a; border-color: #d4b57a; }
.residence-link.solid {
  background: #d4b57a; color: #1a1a1a;
  padding: 12px 22px; border: 1px solid #d4b57a; border-radius: 2px;
}
.residence-link.solid:hover { background: #f5f0e6; border-color: #f5f0e6; color: #1a1a1a; }

.plans-note {
  text-align: center; font-size: 13px; opacity: .65;
  max-width: 780px; margin: 30px auto 0; font-style: italic;
}

@media (max-width: 960px) {
  .residence {
    grid-template-columns: 1fr; gap: 25px; padding: 40px 30px;
  }
  .residence-left, .residence-right {
    border: none; padding: 0; text-align: left;
  }
  .residence-left { flex-direction: row; align-items: center; gap: 18px; }
  .residence-index { font-size: 54px; }
  .residence-hero { padding-top: 55px; }
  .residence-ribbon { left: 30px; }
}
