/* ════════════════════════════════════════════════════
   PEACHBAY FURNITURE — DESIGN TOKENS
   ════════════════════════════════════════════════════ */
:root {
  --cream:        #FBF7F1;
  --linen:        #F1E5D6;
  --charcoal:     #221E1A;
  --cocoa:        #6F5D4E;
  --gold:         #C79A56;
  --gold-deep:    #9C7635;
  --peach:        #E3A988;
  --peach-soft:   #F3D9C6;
  --white:        #ffffff;
  --sale:         #A1483A;
  --glass-card:   rgba(255,255,255,0.5);
  --glass-border: rgba(34,30,26,0.08);
  --display-font: 'Fraunces', Georgia, serif;
  --body-font:    'DM Sans', sans-serif;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--body-font);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* placeholder fallback if a hotlinked photo fails to load */
.img-fallback-bg {
  background: linear-gradient(135deg, var(--peach-soft), var(--linen) 55%, var(--gold) 130%);
}
.ph-img.broken { display: none; }

/* ─── INTRO / SCROLL ANIMATIONS ─── */
.animate-up { opacity: 0; transform: translateY(28px); animation: introFadeUp 1.1s var(--ease) forwards; }
.animate-up.delay-1 { animation-delay: .15s; }
.animate-up.delay-2 { animation-delay: .3s; }
.animate-up.delay-3 { animation-delay: .45s; }
@keyframes introFadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .animate-up, .reveal, .bento-item { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ════════════════════════════════════════════════════
   LOGO MARK (shared: nav / sidebar / footer)
   ════════════════════════════════════════════════════ */
.logo-mark { width: 34px; height: 34px; display: inline-flex; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-word { font-family: var(--display-font); font-size: 1.5rem; font-weight: 500; letter-spacing: 0.01em; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-sub { font-size: 0.55rem; letter-spacing: 0.32em; color: var(--gold); font-weight: 500; margin-top: 2px; }

/* ════════════════════════════════════════════════════
   TOP NAVIGATION
   ════════════════════════════════════════════════════ */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; height: 76px; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem; transition: all .5s var(--ease);
}
#main-nav.scrolled-view {
  background: rgba(251, 247, 241, 0.88);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 rgba(34,30,26,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--white); transition: color .4s; }
#main-nav.scrolled-view .nav-logo { color: var(--charcoal); }

.nav-links { display: flex; gap: 2.6rem; list-style: none; }
.nav-links a {
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-decoration: none; position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
#main-nav.scrolled-view .nav-links a { color: var(--cocoa); }
#main-nav.scrolled-view .nav-links a:hover { color: var(--charcoal); }

.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.nav-icon {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1); color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s; backdrop-filter: blur(8px); text-decoration: none;
}
.nav-icon:hover { border-color: var(--gold); background: rgba(199,154,86,0.22); }
#main-nav.scrolled-view .nav-icon { color: var(--charcoal); border-color: rgba(34,30,26,0.12); background: transparent; }
.nav-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.nav-whatsapp:hover { color: #25D366; border-color: #25D366; }

/* ════════════════════════════════════════════════════
   SIDEBAR
   ════════════════════════════════════════════════════ */
#sidebar-overlay {
  position: fixed; inset: 0; z-index: 1900; background: rgba(20,17,14,0.55);
  backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity .45s var(--ease);
}
#sidebar-overlay.open { opacity: 1; pointer-events: all; }

#side-sidebar {
  position: fixed; top: 0; left: 0; height: 100%; width: min(420px, 88vw); z-index: 1950;
  background: var(--charcoal); color: var(--cream); padding: 2.2rem 2.4rem 2.6rem;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateX(-100%); transition: transform .55s var(--ease);
  overflow-y: auto;
}
#side-sidebar.open { transform: translateX(0); }

.sidebar-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3rem; }
.sidebar-logo { display: flex; align-items: center; gap: .6rem; color: var(--cream); text-decoration: none; }
.sidebar-logo .logo-word { color: var(--cream); }
#close-sidebar {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: var(--cream); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s;
}
#close-sidebar:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); }
#close-sidebar svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.sidebar-links { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 2.5rem; }
.sb-link {
  font-family: var(--display-font); font-size: 1.7rem; font-weight: 400; color: var(--cream);
  text-decoration: none; display: flex; align-items: baseline; gap: 1rem; padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); transition: color .3s, padding-left .3s;
}
.sb-link span { font-family: var(--body-font); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; }
.sb-link:hover { color: var(--gold); padding-left: 0.5rem; }

.sidebar-bottom { display: flex; flex-direction: column; gap: 1.1rem; }
.sb-eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.sb-whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: #25D366; color: #0c2014; font-weight: 600; font-size: 0.85rem;
  padding: 0.85rem 1.2rem; border-radius: 40px; text-decoration: none; transition: transform .3s, box-shadow .3s;
}
.sb-whatsapp-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.sb-whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,0.3); }

.sb-contact { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.88rem; }
.sb-contact a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color .25s; }
.sb-contact a:hover { color: var(--gold); }
.sb-contact span { color: rgba(255,255,255,0.45); }

.sb-socials { display: flex; gap: 0.7rem; margin-top: 0.4rem; }
.sb-socials a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all .3s;
}
.sb-socials a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.sb-socials a:hover { border-color: var(--gold); color: var(--gold); }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
#hero { position: relative; height: 100vh; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-media-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(34,30,26,0.32) 0%, rgba(34,30,26,0.55) 60%, rgba(34,30,26,0.8) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 860px; padding: 0 2rem; }
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.hero-h1 { font-family: var(--display-font); font-size: clamp(2.8rem, 6.4vw, 5.4rem); font-weight: 400; line-height: 1.1; margin-bottom: 1.8rem; }
.hero-h1 em { font-style: italic; color: var(--peach-soft); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 2.6rem; max-width: 620px; margin-inline: auto; }
.hero-cta-wrap { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  padding: 1rem 2.4rem; border: none; border-radius: 40px; background: var(--white); color: var(--charcoal);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  transition: all .3s var(--ease);
}
.btn-primary:hover { background: var(--peach-soft); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.18); }
.btn-ghost {
  padding: 1rem 2.4rem; border: 1px solid rgba(255,255,255,0.35); border-radius: 40px; background: rgba(255,255,255,0.08);
  color: var(--white); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all .3s var(--ease); backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px); background: rgba(255,255,255,0.16); }

.hero-scroll-hint {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.45); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════ */
.marquee-strip { background: var(--charcoal); padding: 1.1rem 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-flex; animation: loopTicker 26s linear infinite; }
.marquee-inner span { font-family: var(--display-font); font-size: 0.95rem; color: var(--linen); letter-spacing: 0.14em; padding: 0 3rem; }
@keyframes loopTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════════════
   SECTION HEADERS (shared)
   ════════════════════════════════════════════════════ */
section { padding: 7.5rem 3.5rem; }
.section-label { font-size: 0.7rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.section-title { font-family: var(--display-font); font-size: clamp(2.3rem, 4.4vw, 3.6rem); font-weight: 400; color: var(--charcoal); line-height: 1.15; }
.section-title em { font-style: italic; color: var(--gold-deep); }
.section-sub { font-size: 1rem; color: var(--cocoa); line-height: 1.8; max-width: 560px; margin-top: 0.6rem; }
.section-head { max-width: 700px; margin-bottom: 3.5rem; }

/* ════════════════════════════════════════════════════
   BENTO GRID — SIGNATURE COLLECTION (signature element)
   ════════════════════════════════════════════════════ */
#bento-collection { background: var(--white); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 1.4rem;
}
.bento-item {
  position: relative; border-radius: 14px; overflow: hidden; cursor: pointer;
  background: var(--linen);
  opacity: 0; transform: translateY(34px) scale(0.96);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.bento-item.bento-visible { opacity: 1; transform: translateY(0) scale(1); }

.span-large { grid-column: span 2; grid-row: span 2; }
.span-wide  { grid-column: span 2; grid-row: span 1; }
.span-tall  { grid-column: span 1; grid-row: span 2; }
.span-small { grid-column: span 1; grid-row: span 1; }

.bento-media { position: absolute; inset: 0; }
.bento-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.bento-item:hover .bento-media img { transform: scale(1.06); }

.bento-info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.2rem 1.3rem;
  background: linear-gradient(to top, rgba(34,30,26,0.88) 0%, rgba(34,30,26,0.35) 60%, transparent 100%);
  color: var(--white);
}
.span-small .bento-info { padding: 1rem 1.1rem; }
.bento-tag {
  display: inline-block; background: var(--gold); color: var(--charcoal); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 4px; margin-bottom: 0.5rem;
}
.bento-info h3 { font-family: var(--display-font); font-size: 1.25rem; font-weight: 500; margin-bottom: 0.3rem; }
.span-small .bento-info h3 { font-size: 1.05rem; }
.bento-info p { font-size: 0.8rem; line-height: 1.5; color: rgba(255,255,255,0.82); margin-bottom: 0.55rem; max-width: 90%; }
.span-small .bento-info p { display: none; }
.bento-price { font-family: var(--display-font); font-size: 1.05rem; color: var(--peach-soft); font-weight: 500; }

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .span-large { grid-column: span 2; grid-row: span 2; }
  .span-wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .span-large, .span-wide, .span-tall, .span-small { grid-column: span 1; grid-row: span 1; }
  .span-large { grid-row: span 2; }
  .span-small .bento-info p { display: block; }
}

/* ════════════════════════════════════════════════════
   SHOP THE DEPOT — FILTERABLE HORIZONTAL SCROLLER
   ════════════════════════════════════════════════════ */
#unified-gallery { background: var(--cream); }
.gallery-intro { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.2rem; margin-bottom: 3rem; }
.filter-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; margin-bottom: 3.5rem; }
.filter-chip {
  padding: 0.6rem 1.4rem; border-radius: 40px; border: 1px solid rgba(34,30,26,0.12); background: transparent;
  font-size: 0.78rem; color: var(--cocoa); cursor: pointer; transition: all .3s var(--ease); font-family: var(--body-font);
}
.filter-chip:hover, .filter-chip.active { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.filter-divider { width: 1px; height: 16px; background: rgba(34,30,26,0.18); margin: 0 0.4rem; }

.horizontal-scroll-viewport {
  display: flex; gap: 2.2rem; overflow-x: auto; padding-bottom: 2.5rem;
  scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.horizontal-scroll-viewport::-webkit-scrollbar { display: none; }

.gallery-card { flex: 0 0 380px; scroll-snap-align: start; transition: opacity .5s, transform .5s; }
.gallery-card.filter-hide { display: none !important; }

.card-media-box {
  position: relative; aspect-ratio: 4/5; border-radius: 10px; overflow: hidden;
  background-color: var(--linen); cursor: pointer;
}
.card-media-box img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-card:hover .card-media-box img { transform: scale(1.05); }

.offer-tag {
  position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2;
  background: var(--sale); color: var(--white); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.34rem 0.75rem; border-radius: 4px;
}
.shop-now-ico-btn {
  position: absolute; bottom: 1.3rem; right: 1.3rem; z-index: 3; width: 46px; height: 46px; border-radius: 50%;
  border: none; background: var(--white); color: var(--charcoal); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14); opacity: 0; transform: translateY(10px); transition: all .35s var(--ease); cursor: pointer;
}
.shop-now-ico-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.gallery-card:hover .shop-now-ico-btn { opacity: 1; transform: translateY(0); }
.shop-now-ico-btn:hover { background: var(--charcoal); color: var(--white); }

.card-detail { padding-top: 1.3rem; }
.card-header-line { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.45rem; }
.card-title { font-family: var(--display-font); font-size: 1.32rem; font-weight: 400; color: var(--charcoal); }
.card-price { font-family: var(--display-font); font-size: 1.12rem; font-weight: 500; color: var(--charcoal); white-space: nowrap; }
.card-price del { font-size: 0.92rem; color: var(--cocoa); margin-right: 0.4rem; font-weight: 300; }
.card-desc { font-size: 0.87rem; color: var(--cocoa); line-height: 1.6; }

/* ════════════════════════════════════════════════════
   PARALLAX SPACIOUS-LIVING BANNER
   ════════════════════════════════════════════════════ */
#parallax-divider { position: relative; height: 80vh; padding: 0; overflow: hidden; }
.parallax-media-wrap { position: absolute; inset: -10% 0; z-index: 0; }
#parallax-bg { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.parallax-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(34,30,26,0.25), rgba(34,30,26,0.65)); }
.parallax-text-zone {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; padding: 0 4rem; max-width: 760px; color: var(--white);
}
.parallax-title { font-family: var(--display-font); font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 400; margin-bottom: 1.2rem; }
.parallax-lead { font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.85); max-width: 540px; }

/* ════════════════════════════════════════════════════
   NEWSLETTER
   ════════════════════════════════════════════════════ */
#newsletter { background: var(--linen); text-align: center; }
#newsletter .section-sub { margin-inline: auto; }
.newsletter-form { display: flex; gap: 0.8rem; max-width: 460px; margin: 2.2rem auto 0; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 1rem 1.4rem; border-radius: 40px; border: 1px solid rgba(34,30,26,0.15);
  background: var(--white); font-family: var(--body-font); font-size: 0.9rem; color: var(--charcoal);
}
.newsletter-form input:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.newsletter-form button {
  padding: 1rem 2rem; border: none; border-radius: 40px; background: var(--charcoal); color: var(--cream);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all .3s var(--ease);
}
.newsletter-form button:hover { background: var(--gold-deep); transform: translateY(-2px); }

/* ════════════════════════════════════════════════════
   FOOTER — MODERN / INTERACTIVE
   ════════════════════════════════════════════════════ */
#grounded-footer { background: #161311; color: #e4e4e1; padding: 6rem 3.5rem 2rem; }
.footer-top-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }

.footer-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--cream); margin-bottom: 1.2rem; }
.footer-logo .logo-word { color: var(--cream); }
.footer-mission { font-size: 0.95rem; line-height: 1.7; color: #a1a19c; max-width: 320px; margin-bottom: 1.6rem; }

.footer-whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.6rem; background: #25D366; color: #0c2014;
  font-weight: 600; font-size: 0.82rem; padding: 0.8rem 1.3rem; border-radius: 40px; text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}
.footer-whatsapp-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; }
.footer-whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,0.28); }

.directory-title { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.4); margin-bottom: 1.3rem; }
.directory-links { list-style: none; }
.directory-links li { margin-bottom: 0.75rem; }
.directory-links a, .contact-text-item { font-size: 0.92rem; color: #a1a19c; text-decoration: none; transition: color .25s; }
.directory-links a:hover { color: var(--gold); }

.footer-mega-typography-container { padding: 2.6rem 0; text-align: center; user-select: none; }
.mega-brand-title {
  font-family: var(--display-font); font-size: clamp(3.2rem, 13vw, 13rem); font-weight: 500; letter-spacing: -0.02em;
  line-height: 0.85; background: linear-gradient(180deg, #3a332c 0%, #161311 100%);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.footer-basement-deck { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1.6rem; }
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.secure-badge { color: var(--gold); }
.footer-social-row { display: flex; gap: 1rem; }
.social-circle {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: #a1a19c; transition: all .3s var(--ease);
}
.social-circle svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.social-circle:hover { background: var(--white); color: #000; transform: translateY(-3px); border-color: var(--white); }

/* ════════════════════════════════════════════════════
   FLOATING WHATSAPP WIDGET
   ════════════════════════════════════════════════════ */
#wa-widget { position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 2500; display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
#wa-bubble {
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; border: none; color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 10px 28px rgba(37,211,102,0.4);
  transition: transform .3s var(--ease);
  animation: waPulse 2.6s ease-in-out infinite;
}
#wa-bubble svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; }
#wa-bubble:hover { transform: scale(1.08); }
@keyframes waPulse { 0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,0.4); } 50% { box-shadow: 0 10px 28px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); } }

#wa-card {
  width: 300px; background: var(--white); border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  padding: 1.2rem; opacity: 0; transform: translateY(16px) scale(0.96); pointer-events: none;
  transition: all .35s var(--ease); transform-origin: bottom right;
}
#wa-card.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.wa-card-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.8rem; }
.wa-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); color: var(--charcoal); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.8rem; flex-shrink: 0; }
.wa-card-head strong { display: block; font-size: 0.88rem; color: var(--charcoal); }
.wa-card-head small { font-size: 0.72rem; color: #2bb35a; }
#wa-card-close { margin-left: auto; background: none; border: none; cursor: pointer; color: var(--cocoa); display: flex; }
#wa-card-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.wa-card-msg { font-size: 0.85rem; color: var(--cocoa); line-height: 1.55; background: var(--linen); padding: 0.8rem 1rem; border-radius: 10px; margin-bottom: 0.9rem; }
.wa-card-cta {
  display: block; text-align: center; background: #25D366; color: #0c2014; font-weight: 600; font-size: 0.85rem;
  padding: 0.75rem; border-radius: 40px; text-decoration: none; transition: transform .25s, box-shadow .25s;
}
.wa-card-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(37,211,102,0.3); }

/* ════════════════════════════════════════════════════
   LIGHTBOX MODAL
   ════════════════════════════════════════════════════ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 3000; background: rgba(15,13,12,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-inner { width: min(920px, 94vw); transform: scale(0.95); transition: transform .4s var(--ease); }
.modal-backdrop.open .modal-inner { transform: scale(1); }
.modal-media-wrapper { aspect-ratio: 16/9; background: #000; border-radius: 8px; overflow: hidden; }
.modal-media-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.modal-meta-row { display: flex; justify-content: space-between; align-items: center; padding-top: 1.4rem; color: var(--white); }
.modal-title { font-family: var(--display-font); font-size: 1.45rem; font-weight: 400; }
.modal-subtext { font-family: var(--display-font); font-size: 1.25rem; color: var(--gold); }
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; background: rgba(255,255,255,0.08);
  border: none; border-radius: 50%; color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .25s;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ════════════════════════════════════════════════════
   TOAST
   ════════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 3500; background: var(--charcoal); color: var(--cream);
  padding: 1rem 1.7rem; border-radius: 50px; font-size: 0.85rem; display: flex; align-items: center; gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25); transform: translateY(100px); opacity: 0; transition: all .4s var(--ease); pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* Keyboard focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-top-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:nth-child(4) { grid-column: span 2; }
}
@media (max-width: 1024px) {
  #main-nav { padding: 0 1.8rem; }
  section { padding: 5.5rem 1.8rem; }
  .parallax-text-zone { padding: 0 2rem; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .footer-col:first-child { grid-column: span 2; }
}
@media (max-width: 768px) {
  .gallery-card { flex: 0 0 300px; }
  .horizontal-scroll-viewport { gap: 1.4rem; padding-bottom: 2rem; }
}
@media (max-width: 640px) {
  #grounded-footer { padding: 4rem 1.4rem 1.5rem; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-col:first-child, .footer-col:nth-child(4) { grid-column: span 1; }
  .footer-basement-deck { flex-direction: column-reverse; align-items: flex-start; gap: 1.3rem; }
  #wa-widget { right: 1rem; bottom: 1rem; }
  #wa-card { width: calc(100vw - 2rem); }
}
@media (max-width: 480px) {
  section { padding: 4.2rem 1.2rem; }
  .gallery-card { flex: 0 0 265px; }
  .card-title { font-size: 1.15rem; }
  .card-price { font-size: 1.05rem; }
}
