/* =================================================================
   Navrang Square Mall — Pure CSS Landing Page
   Theme: Dark Luxury · Gold #C5A059 on Ink #0A0B0E
   ================================================================= */

:root {
  --ink: #0A0B0E;
  --ink-2: #0c0d11;
  --ink-3: #06070a;
  --gold: #C5A059;
  --gold-hover: #D4B069;
  --text: #FDFBF7;
  --text-2: #A1A1AA;
  --muted: rgba(255, 255, 255, 0.4);
  --line: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.05);
  --serif: "Playfair Display", serif;
  --sans: "Outfit", system-ui, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #000; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #1f2127; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.container {
  width: min(100% - 3rem, 80rem);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--gold-hover); }
.btn-outline { border-color: rgba(255,255,255,0.3); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.arrow {
  display: inline-block; width: 24px; height: 1px; background: currentColor;
  transition: width 0.3s ease;
}
.btn-gold:hover .arrow { width: 40px; }

/* ---------- Headings / Eyebrow ---------- */
.h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 18px 0 24px;
  font-weight: 500;
}
.h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.lede {
  color: rgba(255,255,255,0.62);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
  max-width: 38rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow .label,
.label {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.label.muted { color: rgba(255,255,255,0.4); letter-spacing: 0.25em; }
.gold { color: var(--gold); }
.rule {
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-rule { width: 64px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ===========================================================
   HEADER
   =========================================================== */
   
.logo-image {
    max-width: 180px;
    padding: 10px;
}
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}
.site-header.scrolled {
  background: rgba(10, 11, 14, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(197,160,89,0.6);
  color: var(--gold);
  font-family: var(--serif); font-size: 20px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-family: var(--serif); font-size: 18px; }
.brand-sub { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 2px; }

.nav-desktop { display: none; gap: 40px; }
.nav-desktop a {
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}
.nav-desktop a:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
}
.menu-toggle span { width: 16px; height: 1px; background: rgba(255,255,255,0.8); transition: transform 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(10,11,14,0.95);
  backdrop-filter: blur(20px);
}
.mobile-drawer.open { display: block; }
.mobile-drawer-inner { padding: 24px 0; display: flex; flex-direction: column; gap: 18px; }
.mobile-drawer-inner a {
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.mobile-drawer-inner .btn { padding: 14px 24px; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}
.hide-sm { display: none; }
@media (min-width: 640px) { .hide-sm { display: inline-flex; } }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 648px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: zoomIn 2.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes zoomIn { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,11,14,0.92) 0%, rgba(10,11,14,0.65) 45%, rgba(10,11,14,0.25) 100%);
}
.hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--ink), transparent 40%, rgba(10,11,14,0.6));
}

.side-meta {
  display: none;
  position: absolute;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  top: 50%;
}
.side-meta-left { left: 24px; transform: translateY(-50%) rotate(-90deg); transform-origin: left; }
.side-meta-right { right: 24px; transform: translateY(-50%) rotate(90deg); transform-origin: right; }
@media (min-width: 768px) { .side-meta { display: inline-block; } }

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
}
@media (min-width: 768px) { .hero-content { padding-bottom: 80px; } }

.hero-content .eyebrow { margin-bottom: 32px; }
.hero-content .eyebrow .dot {
  width: 8px; height: 8px; background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-content .eyebrow span:not(.dot) {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.7);
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(40px, 3vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    font-weight: 500;
    max-width: 1100px;
    margin: 0;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-row {
  display: grid;
  gap: 32px;
  align-items: end;
  margin-top: 40px;
  grid-template-columns: 1fr;
}
.hero-row-content .hero-ctas
{
    margin-top: 16px;
}

.hero-content-row {
    align-items: center;
    margin-top: 120px;
}

@media (min-width: 575px) and (max-width: 1139px){
    .hero-contact-form 
    {
        display: none;
    }
}
@media (min-width: 991px) {
.hero-content-box
{
    max-width: 65vw;
}
.hero-contact-form {
    max-width: 35vw;
}
.hero-contact-form .enquiry-form {
    padding: 24px;
    position: relative;
    background: linear-gradient(109deg, #00000082, #ffffff2b);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    padding: 32px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border-radius: 9px;
}
}

@media (min-width: 991px) { .hero-row { grid-template-columns: 1fr auto; } .hero-content-row { margin-top: 120px;} }
.hero-lede {
  color: rgba(255,255,255,0.7);
  font-size: clamp(15px, 1.1vw, 18px);
  max-width: 36rem;
  margin: 0;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 26px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stats > div { display: flex; flex-direction: column; }
.stat-num { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 32px); }
.stat-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }

.scroll-indicator {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-indicator:hover { color: var(--gold); }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); animation: rise 1s cubic-bezier(0.16,1,0.3,1) var(--delay, 0s) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ===========================================================
   GENERIC SECTION
   =========================================================== */
.section { position: relative; padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.section-alt { background: var(--ink-2); border-block: 1px solid var(--line-soft); }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px 32px;
  align-items: start;
}
@media (min-width: 1024px) { .grid-12 { gap: 80px; } }
.col-5 { grid-column: span 12; }
.col-7 { grid-column: span 12; }
@media (min-width: 1024px) { .col-5 { grid-column: span 5; } .col-7 { grid-column: span 7; } }
.align-center { align-items: center; }

.section-head {
  display: flex; flex-direction: column; gap: 32px;
  justify-content: space-between; align-items: flex-start;
  margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .section-head { flex-direction: row; align-items: flex-end; }
}
.max-md { max-width: 28rem; }
.max-3xl { max-width: 48rem; }

/* ---- Overview ---- */
@media (min-width: 1024px) {
  .sticky-side { position: sticky; top: 130px; }
}
.meta-dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 28rem;
}
.meta-dl dt { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.meta-dl dd { font-family: var(--serif); font-size: 20px; margin: 8px 0 0; }
.overview-media { position: relative; }
.overview-media img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 90%;
  outline: 1px solid var(--line);
  outline-offset: -1px;
  transition: transform 0.7s ease;
}
.overview-media:hover img { transform: scale(1.05); }
.overlay-card {
  position: absolute;
  bottom: -40px; left: -16px;
  background: var(--ink);
  border: 1px solid rgba(197,160,89,0.4);
  padding: 24px 32px;
  max-width: 20rem;
}
@media (min-width: 640px) { .overlay-card { left: -40px; } }
.overlay-card p { font-family: var(--serif); font-size: 22px; line-height: 1.25; margin: 8px 0 0; }

/* ===========================================================
   HIGHLIGHTS BENTO
   =========================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
@media (min-width: 768px) { .bento { gap: 24px; grid-auto-rows: 220px; } }

.bento-item {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.bento-item:hover { transform: scale(1.005); }
.bento-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3) 60%, transparent);
}
.bento-overlay.dark { background: rgba(0,0,0,0.6); }
.bento-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; gap: 12px; }
.bento-content.between { justify-content: space-between; }
.bento-content.end { justify-content: flex-end; }
.bento-item h3 { font-family: var(--serif); font-size: clamp(18px, 1.6vw, 28px); line-height: 1.15; margin: 0; font-weight: 500; }
.bento-item p { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 24rem; margin: 0; }
.bento-item .ic { font-size: 28px; line-height: 1; }
.ic-lg { font-size: 40px; line-height: 1; }

.bento-hero { grid-column: span 12; grid-row: span 2; }
.bento-gold {
  grid-column: span 6;
  grid-row: span 1;
  background: var(--gold);
  color: #000;
  justify-content: space-between;
}
.bento-gold .label { color: rgba(0,0,0,0.7); letter-spacing: 0.4em; }
.bento-gold .big-num { font-family: var(--serif); font-size: 56px; line-height: 1; font-weight: 600; }
.bento-card {
  grid-column: span 6;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  justify-content: space-between;
}
.bento-card.small { grid-column: span 6; }
.bento-card .ic { font-size: 22px; }
.bento-tall { grid-column: span 12; grid-row: span 2; }
.bento-image { grid-column: span 12; }
.bento-food {
  grid-column: span 12;
  background: #1a1408;
  border: 1px solid rgba(197,160,89,0.3);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
}

@media (min-width: 768px) {
  .bento-hero { grid-column: span 8; }
  .bento-gold { grid-column: span 4; }
  .bento-card { grid-column: span 4; }
  .bento-tall { grid-column: span 4; }
  .bento-image { grid-column: span 4; }
  .bento-card.small { grid-column: span 2; }
  .bento-food { grid-column: span 4; }
}

/* ===========================================================
   AMENITIES
   =========================================================== */
.marquee-wrap {
  position: relative;
  margin: 64px 0;
  padding: 24px 0;
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.marquee {
  display: inline-flex;
  white-space: nowrap;
  gap: 64px;
  padding-left: 64px;
  animation: marquee 40s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  color: rgba(255,255,255,0.15);
  transition: color 0.3s ease;
}
.marquee span:hover { color: rgba(197,160,89,0.8); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .amenities-grid { grid-template-columns: repeat(5, 1fr); } }

.amenity {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  padding: 28px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s ease;
}
.amenity:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(197,160,89,0.4);
}
.amenity .ic { font-size: 32px; line-height: 1; opacity: 0.8; transition: color 0.3s ease; }
.amenity:hover .ic { filter: hue-rotate(20deg) saturate(1.2); }
.amenity h3 { font-family: var(--serif); font-size: 18px; line-height: 1.2; margin: 0; font-weight: 500; }
.amenity .num {
  display: block;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

/* ===========================================================
   LOCATION
   =========================================================== */
.loc-list {
  list-style: none; padding: 0; margin: 40px 0 0;
  border-top: 1px solid var(--line);
}
.loc-list li {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.loc-list li:hover { background: rgba(255,255,255,0.02); }
.loc-list .ic { font-size: 22px; }
.loc-name { flex: 1; font-family: var(--serif); font-size: clamp(17px, 1.3vw, 22px); }
.loc-dist {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.map-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  overflow: hidden;
}
@media (min-width: 768px) { .map-wrap { aspect-ratio: 5 / 4; } }
.map-frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) grayscale(0.5) contrast(1.1);
  opacity: 0.9;
}
.map-vignette {
  pointer-events: none;
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10,11,14,0.6) 100%);
}
.map-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 32px;
  background: linear-gradient(to top, var(--ink), rgba(10,11,14,0.8), transparent);
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
  display: flex; align-items: center; gap: 12px;
}

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
@media (min-width: 768px) { .gallery { gap: 24px; grid-auto-rows: 240px; } }

.g-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
}
.g-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}
.g-item:hover::after { background: rgba(0,0,0,0.5); }
.g-item:hover img { transform: scale(1.05); }
.g-cap {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 22px);
}

.g1 { grid-column: span 12; grid-row: span 2; }
.g2 { grid-column: span 12; grid-row: span 1; }
.g3 { grid-column: span 6; grid-row: span 1; }
.g4 { grid-column: span 6; grid-row: span 2; }
.g5 { grid-column: span 6; grid-row: span 1; }
.g6 { grid-column: span 6; grid-row: span 1; }

@media (min-width: 768px) {
  .g1 { grid-column: span 7; }
  .g2 { grid-column: span 5; }
  .g3 { grid-column: span 5; }
  .g4 { grid-column: span 4; }
  .g5 { grid-column: span 4; }
  .g6 { grid-column: span 4; }
}

/* ===========================================================
   ENQUIRY
   =========================================================== */
#enquiry { overflow: hidden; }
.enquiry-bg {
  position: absolute; inset: 0;
  background: url("img/navrang_visit_bg.webp") center / cover;
  opacity: 0.06;
}
#enquiry .container { position: relative; }

.contact-list { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.contact { display: flex; align-items: flex-start; gap: 20px; transition: opacity 0.3s ease; }
.contact:hover { opacity: 0.85; }
.ic-box {
  width: 48px; height: 48px;
  border: 1px solid rgba(197,160,89,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact:hover .ic-box { background: var(--gold); color: #000; }
.contact .label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.contact-val { font-family: var(--serif); font-size: 20px; margin-top: 4px; }

.enquiry-form {
  position: relative;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 32px;
}
@media (min-width: 768px) { .enquiry-form { padding: 48px; } }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }

.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  padding: 12px 0;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--gold); }
.field select option { background: var(--ink); color: var(--text); }

.form-foot {
  margin-top: 40px;
  display: flex; flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}
@media (min-width: 640px) { .form-foot { flex-direction: row; align-items: center; } }
.fineprint { font-size: 11px; color: rgba(255,255,255,0.4); max-width: 28rem; line-height: 1.5; margin: 0; }

.form-success {
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px solid rgba(197,160,89,0.4);
  background: rgba(197,160,89,0.08);
  color: var(--gold);
  font-size: 14px;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  position: relative;
  background: var(--ink-3);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.foot-brand { grid-column: 1 / -1; }
@media (min-width: 1024px) { .foot-brand { grid-column: span 2; } }
.foot-brand .lede { margin-top: 24px; max-width: 28rem; font-size: 14px; }
.foot-brand .brand { margin-bottom: 24px; }

.socials { margin-top: 32px; display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  transition: all 0.3s ease;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }

.foot-col h4 {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.3s ease; }
.foot-col a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.foot-contacts { display: flex; flex-wrap: wrap; gap: 24px; font-size: 14px; color: rgba(255,255,255,0.55); }
.foot-contacts a { display: inline-flex; gap: 6px; align-items: center; transition: color 0.3s ease; }
.foot-contacts a:hover { color: var(--gold); }
.copy { font-size: 12px; color: rgba(255,255,255,0.4); margin: 0; }
.disclaimer { font-size: 11px; line-height: 1.7; color: rgba(255,255,255,0.3); margin-top: 24px; }

/* ===========================================================
   FLOATING ACTIONS
   =========================================================== */
.floating {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 40;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: transform 0.2s ease;
}
.fab:hover { transform: scale(1.05); }
.fab:active { transform: scale(0.95); }
.fab-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
.fab-call {
  background: var(--gold); color: #000;
  box-shadow: 0 8px 30px rgba(197,160,89,0.45);
}
.fab-call:hover { background: var(--gold-hover); }

/* ===========================================================
   LIGHTBOX
   =========================================================== */
.lightbox {
  position: fixed; inset: 0;
  z-index: 60;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-height: 88vh;
  max-width: 92vw;
  object-fit: contain;
  animation: lbIn 0.4s ease both;
}
@keyframes lbIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: none; } }
.lb-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  font-size: 20px;
  transition: all 0.3s ease;
}
.lb-close:hover { border-color: var(--gold); color: var(--gold); }
