/* =============================================================
   SHUBHAKRUTH WEDDINGS & EVENTS
   style.css — Luxury Editorial Design System
   Palette: Deep Burgundy · Dusty Rose · Warm Ivory · Bronze
   Fonts: Playfair Display (serif) + DM Sans (sans)
   ============================================================= */

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

/* ── DESIGN TOKENS ── */
:root {
  /* Colors */
  --burg:       #5C1A2E;
  --burg-dk:    #3D0F1E;
  --burg-lt:    #8B3050;
  --rose:       #C4856A;
  --rose-lt:    #E8C4B4;
  --ivory:      #F9F4EE;
  --ivory-dk:   #EDE5D8;
  --bronze:     #A07845;
  --warm-dk:    #2A1A12;
  --mid:        #6B5B52;
  --light:      #A89990;
  --white:      #FFFFFF;
  --wa-green:   #25D366;
  --wa-dark:    #128C7E;

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', sans-serif;

  /* Spacing */
  --section-pad: 120px;
  --container:   1200px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background-color: var(--ivory);
  color: var(--warm-dk);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.7;
  /* Subtle paper-grain texture */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── UTILITIES ── */
.label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--rose);
}

.divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--rose), var(--rose-lt));
  margin: 28px 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}

.btn:hover::after { transform: translateX(0); }

.btn-burg {
  background: var(--burg);
  color: var(--white);
}
.btn-burg:hover {
  background: var(--burg-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(92, 26, 46, 0.4);
}

.btn-outline-burg {
  background: transparent;
  color: var(--burg);
  border: 1.5px solid var(--burg);
}
.btn-outline-burg:hover {
  background: var(--burg);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-rose {
  background: var(--rose);
  color: var(--white);
}
.btn-rose:hover {
  background: var(--burg-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 133, 106, 0.45);
}

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}

#nav.scrolled {
  background: rgba(249, 244, 238, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 48px;
  box-shadow: 0 1px 0 rgba(92, 26, 46, 0.1), 0 4px 32px rgba(0, 0, 0, 0.06);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-brand-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color 0.4s;
}

#nav.scrolled .nav-brand-name { color: var(--burg-dk); }

.nav-brand-tag {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sans);
  font-weight: 400;
  transition: color 0.4s;
}

#nav.scrolled .nav-brand-tag { color: var(--rose); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}

#nav.scrolled .nav-links a { color: var(--mid); }
.nav-links a:hover { color: var(--rose) !important; }

.nav-links .btn {
  padding: 10px 22px;
  font-size: 10px;
}

/* ============================================================
   HERO — SPLIT EDITORIAL LAYOUT
   ============================================================ */
#hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* Left image panel */
.hero-image-panel {
  position: relative;
  overflow: hidden;
  background: var(--burg-dk);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transform: scale(1.08);
  animation: imgReveal 1.8s var(--ease-out) 0.2s forwards;
}

@keyframes imgReveal {
  to { transform: scale(1); opacity: 0.85; }
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(61, 15, 30, 0.55) 0%, transparent 55%),
    linear-gradient(to right, rgba(61, 15, 30, 0.65) 0%, transparent 100%);
}

.hero-issue-tag {
  position: absolute;
  top: 48px;
  left: 10px;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--sans);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-bottom-label {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-bottom-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-bottom-text {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  font-family: var(--sans);
}

/* Right content panel */
.hero-content-panel {
  position: relative;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 72px 80px 64px;
  overflow: hidden;
}

.hero-content-panel::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 220px; height: 220px;
  background: radial-gradient(ellipse at top right, rgba(196, 133, 106, 0.13), transparent 70%);
  pointer-events: none;
}

.hero-content-panel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 180px; height: 180px;
  background: radial-gradient(ellipse at bottom left, rgba(92, 26, 46, 0.07), transparent 70%);
  pointer-events: none;
}

/* Hero content animations */
.hero-label {
  margin-bottom: 28px;
  animation: fadeSlide 0.9s var(--ease-out) 0.5s both;
}

.hero-title {
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--burg-dk);
  margin-bottom: 10px;
  animation: fadeSlide 0.9s var(--ease-out) 0.65s both;
}

.hero-title em {
  font-style: italic;
  color: var(--rose);
  display: block;
  font-size: 0.9em;
}

.hero-divider {
  animation: fadeSlide 0.9s var(--ease-out) 0.8s both;
}

.hero-sub {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 340px;
  margin-bottom: 14px;
  animation: fadeSlide 0.9s var(--ease-out) 0.9s both;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(92, 26, 46, 0.06);
  border: 1px solid rgba(92, 26, 46, 0.12);
  margin-bottom: 44px;
  animation: fadeSlide 0.9s var(--ease-out) 1.0s both;
}

.hero-trust-pill span {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burg);
  font-weight: 500;
}

.hero-trust-pill .sep {
  color: var(--rose);
  font-size: 7px;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeSlide 0.9s var(--ease-out) 1.1s both;
}

.hero-btns-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeSlide 0.9s var(--ease-out) 1.4s both;
}

.hero-scroll-text {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light);
}

.hero-scroll-line {
  width: 32px;
  height: 1px;
  background: var(--rose);
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */
#marquee-band {
  background: var(--burg);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 40px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--sans);
  font-weight: 400;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.marquee-item.accent { color: var(--rose-lt); }

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

/* ============================================================
   ABOUT / PHILOSOPHY
   ============================================================ */
#about {
  padding: var(--section-pad) 0;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  background: var(--ivory-dk);
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  position: relative;
  z-index: 1;
  align-items: center;
}

.about-text {
  padding: 0 80px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text .label { margin-bottom: 20px; }

.about-title {
  font-size: clamp(34px, 3.5vw, 54px);
  color: var(--burg-dk);
  line-height: 1.1;
  margin-bottom: 32px;
}

.about-body {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-body strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--burg-lt);
  font-size: 17px;
}

.about-quote {
  margin: 36px 0;
  padding: 0 0 0 28px;
  border-left: 3px solid var(--rose);
}

.about-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--burg);
  line-height: 1.6;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.about-pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(92, 26, 46, 0.1);
}

.about-pillar:last-child { border-bottom: none; }

.pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  margin-top: 8px;
}

.pillar-head {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--burg-dk);
  margin-bottom: 4px;
}

.pillar-body {
  font-size: 13px;
  color: var(--light);
  line-height: 1.7;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 40px 40px;
}

.about-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-img-wrap:hover img { transform: scale(1.03); }

.about-stat-card {
  position: absolute;
  bottom: 16px;
  left: 0;
  background: var(--burg);
  color: var(--white);
  padding: 28px 32px;
  min-width: 190px;
  box-shadow: 0 12px 40px rgba(61, 15, 30, 0.35);
}

.about-stat-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--rose-lt);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-txt {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: var(--section-pad) 0;
  background: var(--warm-dk);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: 'SERVICES';
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: var(--serif);
  font-size: 200px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
}

.services-header-left .label {
  color: var(--rose-lt);
  margin-bottom: 20px;
}

.services-title {
  font-size: clamp(32px, 3vw, 50px);
  color: var(--white);
}

.services-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.32);
  max-width: 240px;
  text-align: right;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.svc {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.4s var(--ease), transform 0.3s var(--ease);
}

.svc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(196, 133, 106, 0.1), transparent);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}

.svc:hover { background: rgba(196, 133, 106, 0.07); }
.svc:hover::before { transform: translateY(0); }

.svc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 72px;
  color: rgba(196, 133, 106, 0.14);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}

.svc:hover .svc-num { color: rgba(196, 133, 106, 0.28); }

.svc-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.svc-name {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.svc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.85;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.svc-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose-lt);
  font-weight: 500;
  transition: gap 0.3s var(--ease), color 0.3s;
  position: relative;
  z-index: 1;
}

.svc-action::after { content: '→'; font-size: 14px; }
.svc:hover .svc-action { gap: 16px; color: var(--white); }

/* ============================================================
   PORTFOLIO / INSTAGRAM
   ============================================================ */
#portfolio {
  padding: var(--section-pad) 0;
  background: var(--ivory-dk);
}

.portfolio-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.portfolio-title {
  font-size: clamp(34px, 3.5vw, 56px);
  color: var(--burg-dk);
}

.portfolio-header-right p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 24px;
}

.ig-section {
  background: var(--ivory);
  border: 1px solid rgba(92, 26, 46, 0.08);
  padding: 48px;
}

.ig-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.ig-section-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--burg-dk);
}

.ig-section-link {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease), color 0.3s;
}

.ig-section-link::after { content: '→'; }
.ig-section-link:hover { gap: 14px; color: var(--burg); }

.elfsight-wrap {
  min-height: 120px;
  position: relative;
}

/* Placeholder shown until Elfsight loads */
.elfsight-placeholder {
  padding: 48px 32px;
  text-align: center;
  border: 1px dashed rgba(92, 26, 46, 0.18);
  background: rgba(92, 26, 46, 0.02);
}

.elfsight-placeholder p {
  font-size: 13px;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 8px;
}

.elfsight-placeholder strong { color: var(--burg); }
.elfsight-placeholder code {
  background: rgba(92, 26, 46, 0.07);
  padding: 2px 6px;
  font-size: 12px;
  color: var(--burg);
}

.ig-cta-wrap {
  text-align: center;
  margin-top: 36px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: var(--section-pad) 0;
}

.testi-header {
  text-align: center;
  margin-bottom: 72px;
}

.testi-header .label { margin-bottom: 16px; }

.testi-header h2 {
  font-size: clamp(32px, 3vw, 50px);
  color: var(--burg-dk);
}

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

.testi {
  background: var(--ivory-dk);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s var(--ease);
}

.testi:hover { background: var(--white); }

.testi-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--burg), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.testi:hover .testi-accent { transform: scaleX(1); }

.testi-open-quote {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--rose);
  opacity: 0.22;
  line-height: 0.8;
  margin-bottom: 20px;
  display: block;
}

.testi-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 32px;
}

.testi-stars {
  color: var(--bronze);
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 16px;
}

.testi-name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--burg-dk);
  margin-bottom: 4px;
}

.testi-event {
  font-size: 11px;
  color: var(--light);
  letter-spacing: 1px;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  padding: var(--section-pad) 0;
  background: var(--burg-dk);
  position: relative;
  overflow: hidden;
}

#faq::after {
  content: '\201C';
  position: absolute;
  bottom: -80px; right: 60px;
  font-family: var(--serif);
  font-size: 500px;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.faq-left .label {
  color: var(--rose-lt);
  margin-bottom: 20px;
}

.faq-left h2 {
  font-size: clamp(32px, 3vw, 48px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.faq-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.9;
}

.faq-left .btn { margin-top: 36px; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
}

.faq-q-text {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--white);
  line-height: 1.3;
}

.faq-icon {
  color: var(--rose);
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), color 0.3s;
  line-height: 1;
  font-family: var(--sans);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--rose-lt);
}

.faq-answer {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 240px;
  padding-bottom: 24px;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

/* Left: dark contact panel */
.contact-left {
  background: var(--burg);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-left::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(196, 133, 106, 0.1);
  pointer-events: none;
}

.contact-left-inner { position: relative; z-index: 1; }

.contact-left .label {
  color: var(--rose-lt);
  margin-bottom: 20px;
}

.contact-left h2 {
  font-size: clamp(26px, 2.8vw, 42px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.contact-left > .contact-left-inner > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.9;
  margin-bottom: 48px;
}

.contact-direct-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cdl {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s var(--ease), border-color 0.3s, transform 0.3s var(--ease);
}

.cdl:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 133, 106, 0.45);
  transform: translateX(4px);
}

.cdl-icon { font-size: 24px; flex-shrink: 0; }

.cdl-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-lt);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.cdl-val {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--white);
}

.cdl-wa {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
}

.cdl-wa:hover { background: rgba(37, 211, 102, 0.2) !important; }

.contact-hours {
  position: relative;
  z-index: 1;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 40px;
  letter-spacing: 1px;
}

/* Right: form panel */
.contact-right {
  padding: 72px 64px;
  background: var(--ivory-dk);
}

.contact-right .label { margin-bottom: 20px; }

.contact-right h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--burg-dk);
  margin-bottom: 8px;
}

.contact-right > p {
  font-size: 13px;
  color: var(--light);
  margin-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.field { margin-bottom: 16px; }

.field input,
.field select {
  width: 100%;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid rgba(92, 26, 46, 0.12);
  color: var(--warm-dk);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}

.field input::placeholder { color: var(--light); }

.field input:focus,
.field select:focus { border-color: var(--rose); }

.field select { color: var(--mid); }
.field select option { background: var(--white); color: var(--warm-dk); }

.form-submit {
  width: 100%;
  padding: 20px;
  background: var(--burg);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.35s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.form-submit:hover {
  background: var(--burg-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(92, 26, 46, 0.3);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-privacy {
  font-size: 11px;
  color: var(--light);
  margin-top: 14px;
  text-align: center;
  line-height: 1.6;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
#final-cta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
  background: var(--ivory-dk);
}

.fcta-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(90px, 18vw, 240px);
  color: rgba(92, 26, 46, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  font-weight: 700;
}

.fcta-inner { position: relative; z-index: 1; }
.fcta-inner .label { margin-bottom: 20px; }

.fcta-inner h2 {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--burg-dk);
  margin-bottom: 16px;
}

.fcta-inner > p {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 48px;
}

.urgency-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: rgba(92, 26, 46, 0.07);
  border: 1px solid rgba(92, 26, 46, 0.14);
  margin-bottom: 36px;
}

.urgency-ribbon span {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--burg);
  font-weight: 500;
}

.fcta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--warm-dk);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-brand-tag {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--rose);
  text-transform: uppercase;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-col a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.3s;
}

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

.footer-contact-col { text-align: right; }

.footer-contact-col a {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-contact-col a:hover { color: var(--rose-lt); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-seo-tags {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.14);
  letter-spacing: 0.5px;
}

/* ============================================================
   STICKY BOTTOM BAR — mobile only
   ============================================================ */
#sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  border-top: 2px solid var(--rose);
}

.sb-inner { display: flex; }

.sb-btn {
  flex: 1;
  padding: 14px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.sb-btn:hover { opacity: 0.88; }
.sb-btn .sb-ico { font-size: 19px; }
.sb-btn.call  { background: var(--burg-dk); color: var(--white); }
.sb-btn.wa    { background: var(--wa-green); color: var(--white); }
.sb-btn.quote { background: var(--rose); color: var(--white); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
#float-wa {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 499;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: transform 0.3s var(--ease);
}

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

@keyframes wa-pulse {
  0%,  100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45); }
  50%        { box-shadow: 0 4px 44px rgba(37, 211, 102, 0.75), 0 0 0 10px rgba(37, 211, 102, 0.06); }
}

/* ============================================================
   SCROLL REVEAL CLASSES (JS-driven)
   ============================================================ */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 90px; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  #about::before { display: none; }
  .about-text { padding: 0; }
  .about-stat-card { position: static; margin-top: 24px; display: inline-block; }

  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-panel { height: 52dvh; }
  .hero-content-panel { padding: 60px 32px 80px; }
  .hero-scroll { display: none; }

  #nav { padding: 18px 24px; }
  #nav.scrolled { padding: 13px 24px; }
  .nav-links a:not(.btn) { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-note { text-align: left; }

  .portfolio-header { grid-template-columns: 1fr; gap: 24px; }
  .ig-section { padding: 32px 24px; }

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

  .contact-grid { grid-template-columns: 1fr; }
  .contact-left,
  .contact-right { padding: 56px 32px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .footer-contact-col { text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }

  #sticky-bar { display: block; }
  #float-wa   { bottom: 74px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-btns-row { flex-direction: column; }
  .fcta-btns { flex-direction: column; align-items: center; }
  :root { --section-pad: 70px; }
}

/* ============================================================
   PRINT — strip all decoration
   ============================================================ */
@media print {
  #nav, #sticky-bar, #float-wa, .marquee-inner { display: none !important; }
  body { background: white; }
}
