/* ═══════════════════════════════════════════════
   AVENTRA INTERIORS — style.css
   Main stylesheet for aventrainteriors.com
═══════════════════════════════════════════════ */

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

:root {
  --mocha:  #7B5844;
  --brown:  #5C3D2E;
  --dark:   #1E130C;
  --cream:  #F5F0E8;
  --warm:   #EDE5D4;
  --gold:   #C8A97A;
  --sand:   #D4B896;
  --mid:    #9E7E65;
  --light:  #FAF7F2;
  --text:   #2C1F14;
  --border: rgba(123,88,68,0.15);
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--light);
  color: var(--text);
  overflow-x: hidden;
}

/* noise texture overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── TYPOGRAPHY HELPERS ─────────────────────── */
.section-label {
  font-size: 8px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; width: 24px; height: 0.5px; background: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 52px); font-weight: 300;
  line-height: 1.12; color: var(--dark);
}
.section-title em { font-style: italic; color: var(--mocha); }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--sand); }

/* ── BUTTONS ────────────────────────────────── */
.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: 14px 32px; border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none;
  display: inline-block; transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--sand); transform: translateY(-2px); }

.btn-dark {
  background: var(--dark); color: var(--cream);
  padding: 14px 32px; border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none;
  display: inline-block; transition: background .2s, transform .15s;
}
.btn-dark:hover { background: var(--mocha); transform: translateY(-2px); }

.btn-ghost {
  color: rgba(245,240,232,0.65);
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.btn-ghost::after { content: '→'; font-size: 14px; transition: transform .2s; }
.btn-ghost:hover { color: var(--cream); }
.btn-ghost:hover::after { transform: translateX(5px); }

/* ── ANIMATIONS ─────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }
.fade-up.d4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(123,88,68,0.1);
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(250,247,242,0.98);
  box-shadow: 0 1px 24px rgba(30,19,12,0.06);
}

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--dark);
}
.nav-sub { font-size: 7.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); }
.nav-location {
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mid); border-left: 1px solid var(--sand); padding-left: 12px;
}

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  color: var(--mid); transition: color .2s;
}
.nav-links a:hover { color: var(--mocha); }
.nav-cta {
  background: var(--dark) !important; color: var(--cream) !important;
  padding: 10px 22px !important; border-radius: 2px !important;
  font-size: 10px !important; font-weight: 500 !important;
}
.nav-cta:hover { background: var(--mocha) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--dark);
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 72px; overflow: hidden;
}

.hero-left {
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 60px; position: relative; overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,169,122,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,122,0.055) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-vert-text {
  position: absolute; top: 50%; right: 22px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-size: 7.5px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(200,169,122,0.22); white-space: nowrap; z-index: 1;
}

.hero-eyebrow {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
  position: relative; z-index: 1;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 0.5px; background: var(--gold); }

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 5.5vw, 76px); font-weight: 300; line-height: 1.05;
  color: #fff; position: relative; z-index: 1; margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--sand); }

.hero-sub {
  font-size: 13px; font-weight: 300; color: rgba(245,240,232,0.55);
  line-height: 1.85; max-width: 380px;
  position: relative; z-index: 1; margin-bottom: 44px;
}

.hero-actions {
  display: flex; gap: 16px; align-items: center;
  position: relative; z-index: 1; margin-bottom: 56px;
}

.hero-stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid rgba(200,169,122,0.15);
  margin: 0 -60px; padding: 0 60px;
}
.hero-stat {
  padding: 18px 16px 18px 0;
  border-right: 0.5px solid rgba(200,169,122,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; color: var(--gold); line-height: 1;
}
.hero-stat-label { font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,240,232,0.35); margin-top: 4px; }

.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.88) saturate(1.05); }

.hero-badge {
  position: absolute; top: 48px; left: 0;
  background: var(--gold); padding: 14px 20px;
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dark); font-weight: 600;
}

.scroll-hint {
  position: absolute; bottom: 32px; right: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.scroll-line {
  width: 0.5px; height: 48px; background: rgba(255,255,255,0.25);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.2} 50%{opacity:.8} }

/* ═══════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════ */
.marquee-strip {
  background: var(--mocha); padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.marquee-inner { display: inline-flex; animation: marquee 28s linear infinite; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.marquee-item {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(245,240,232,0.7); padding: 0 28px;
  display: flex; align-items: center; gap: 28px;
}
.marquee-item::after { content: '✦'; color: var(--gold); font-size: 8px; }

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-section {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 100px 60px;
}

.about-imgs { position: relative; height: 560px; }
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 78%; height: 80%; object-fit: cover; border-radius: 2px;
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 52%; height: 52%; object-fit: cover; border-radius: 2px;
  border: 6px solid var(--cream);
}
.about-tag {
  position: absolute; bottom: 52%; left: 78%; transform: translate(-50%, 50%);
  background: var(--gold); color: var(--dark);
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; padding: 10px 16px; border-radius: 2px; white-space: nowrap; z-index: 2;
}
.about-years-badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--dark); width: 90px; height: 90px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2;
}
.about-years-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 600; color: var(--gold); line-height: 1;
}
.about-years-badge .lbl { font-size: 7px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,240,232,0.5); margin-top: 3px; text-align: center; }

.about-content .section-title { margin-bottom: 24px; }
.about-body { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.9; margin-bottom: 32px; }
.about-body strong { color: var(--dark); font-weight: 500; }

.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.feat {
  padding: 16px; border: 0.5px solid rgba(123,88,68,0.15);
  border-radius: 4px; background: var(--light); transition: border-color .2s;
}
.feat:hover { border-color: var(--gold); }
.feat-icon { font-size: 20px; margin-bottom: 8px; }
.feat-title { font-size: 11px; font-weight: 600; letter-spacing: 1px; color: var(--dark); margin-bottom: 3px; }
.feat-sub { font-size: 11px; font-weight: 300; color: var(--mid); }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services-section { background: var(--dark); padding: 100px 60px; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 52px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(200,169,122,0.1);
  padding: 44px 36px; transition: background .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.service-card:hover { background: rgba(255,255,255,0.065); border-color: rgba(200,169,122,0.22); }
.service-card:hover::before { transform: scaleX(1); }

.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; color: rgba(200,169,122,0.14); line-height: 1; margin-bottom: 20px;
}
.svc-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.svc-body { font-size: 12px; font-weight: 300; color: rgba(245,240,232,0.5); line-height: 1.85; margin-bottom: 20px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  border: 0.5px solid rgba(200,169,122,0.25); color: rgba(200,169,122,0.6);
  padding: 4px 10px; border-radius: 20px;
}

/* ═══════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
.process-section { background: var(--warm); padding: 100px 60px; }
.process-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }

.process-steps { display: flex; flex-direction: column; margin-top: 40px; }
.process-step {
  display: flex; gap: 20px; padding: 28px 0;
  border-bottom: 0.5px solid rgba(123,88,68,0.15);
  transition: padding-left .2s; cursor: default;
}
.process-step:hover { padding-left: 8px; }
.process-step:first-child { border-top: 0.5px solid rgba(123,88,68,0.15); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: rgba(123,88,68,0.2); line-height: 1; min-width: 44px;
}
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--dark); margin-bottom: 5px; }
.step-sub { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.7; }

.process-right { padding-top: 80px; }
.process-img-wrap { position: relative; border-radius: 4px; overflow: hidden; }
.process-img-wrap img { width: 100%; height: 460px; object-fit: cover; display: block; }
.process-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,19,12,0.7) 0%, transparent 50%);
}
.process-img-caption { position: absolute; bottom: 32px; left: 32px; right: 32px; }
.process-img-caption h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: #fff; margin-bottom: 8px; }
.process-img-caption p { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 1px; }

.brands-strip {
  display: flex; align-items: center; gap: 28px;
  margin-top: 28px; padding: 20px 24px;
  background: var(--cream); border-radius: 4px; border: 0.5px solid rgba(123,88,68,0.1);
}
.brands-label { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--mid); white-space: nowrap; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--dark); opacity: .4;
  transition: opacity .2s; cursor: default; letter-spacing: 1px;
}
.brand-name:hover { opacity: .9; }
.brand-sep { width: 0.5px; height: 24px; background: rgba(123,88,68,0.2); }

.materials-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.mat-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--mid); font-weight: 300; }
.mat-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════════ */
.portfolio-section { padding: 100px 0 0 0; background: var(--light); }
.portfolio-header { padding: 0 60px 48px; display: flex; align-items: flex-end; justify-content: space-between; }
.view-all-link {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mocha); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: gap .2s;
}
.view-all-link:hover { gap: 14px; }

.portfolio-tabs { display: flex; gap: 6px; padding: 0 60px; flex-wrap: wrap; }
.p-tab {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border: 0.5px solid rgba(123,88,68,0.2);
  border-radius: 20px; cursor: pointer; background: transparent;
  color: var(--mid); transition: all .2s; font-family: 'Jost', sans-serif;
}
.p-tab.active, .p-tab:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }

.portfolio-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 320px 280px;
  gap: 3px; margin-top: 24px;
}
.port-cell { position: relative; overflow: hidden; background: var(--warm); }
.port-cell.tall { grid-row: span 2; }
.port-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; filter: brightness(.88) saturate(1.1); }
.port-cell:hover img { transform: scale(1.05); }
.port-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 22px 20px;
  background: linear-gradient(to top, rgba(30,19,12,0.92), transparent);
  opacity: 0; transition: opacity .3s;
}
.port-cell:hover .port-label { opacity: 1; }
.port-cat { font-size: 7px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px; }
.port-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #fff; font-weight: 400; }

/* ═══════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════ */
.why-section { background: var(--dark); padding: 100px 60px; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 52px; }
.why-item {
  padding: 44px 40px; background: var(--dark);
  border: 0.5px solid rgba(200,169,122,0.08); transition: background .2s;
}
.why-item:hover { background: rgba(255,255,255,0.03); }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 300; color: var(--gold);
  line-height: 1; margin-bottom: 16px; opacity: .55;
}
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #fff; margin-bottom: 12px; font-weight: 400; }
.why-body { font-size: 12px; font-weight: 300; color: rgba(245,240,232,0.42); line-height: 1.85; }

/* ═══════════════════════════════════════════════
   CTA / CONTACT
═══════════════════════════════════════════════ */
.cta-section {
  background: var(--mocha);
  padding: 100px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%; border: 1px solid rgba(245,240,232,0.07);
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -120px; right: 40px;
  width: 240px; height: 240px;
  border-radius: 50%; border: 1px solid rgba(245,240,232,0.05);
}

.cta-desc { font-size: 14px; font-weight: 300; color: rgba(245,240,232,0.65); line-height: 1.85; margin-top: 20px; }

.contact-items { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 0.5px solid rgba(245,240,232,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.contact-label { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,240,232,0.4); margin-bottom: 2px; }
.contact-val { font-size: 13px; color: var(--cream); font-weight: 300; }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 13px 28px; border-radius: 2px; text-decoration: none;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-top: 32px; transition: background .2s, transform .15s;
}
.whatsapp-btn:hover { background: #1eb355; transform: translateY(-2px); }

.cta-right {
  background: rgba(30,19,12,0.3);
  border: 0.5px solid rgba(245,240,232,0.12);
  border-radius: 4px; padding: 44px 40px; position: relative; z-index: 1;
}
.cta-form-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: #fff; margin-bottom: 28px; font-weight: 300; }

.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(245,240,232,0.15);
  border-radius: 2px; padding: 13px 16px;
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 300;
  color: var(--cream); outline: none; transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,240,232,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark); color: var(--cream); }
.form-group textarea { resize: none; height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-submit {
  width: 100%; background: var(--gold); color: var(--dark);
  border: none; padding: 15px; border-radius: 2px; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-top: 8px; transition: background .2s, transform .15s;
}
.form-submit:hover { background: var(--sand); transform: translateY(-1px); }
.form-submit:disabled { background: var(--mocha); color: var(--cream); cursor: default; transform: none; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer { background: var(--dark); padding: 60px 60px 28px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}

.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--cream); display: block; margin-bottom: 4px;
}
.footer-sub { font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 18px; }
.footer-brand p { font-size: 12px; font-weight: 300; color: rgba(245,240,232,0.4); line-height: 1.9; max-width: 280px; margin-bottom: 24px; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 0.5px solid rgba(200,169,122,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 11px; font-weight: 600;
  text-decoration: none; transition: background .2s, border-color .2s;
}
.social-link:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.footer-col h4 {
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; padding-bottom: 10px; border-bottom: 0.5px solid rgba(200,169,122,0.15);
}
.footer-col a,
.footer-col p {
  display: block; font-size: 12px; font-weight: 300;
  color: rgba(245,240,232,0.42); line-height: 2.3; text-decoration: none; transition: color .2s;
}
.footer-col a:hover { color: var(--sand); }

.footer-bottom {
  border-top: 0.5px solid rgba(200,169,122,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(245,240,232,0.2); letter-spacing: .5px; }
.footer-dots span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-left: 5px; }

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .2s, box-shadow .2s; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; }
