/* =========================================================
   11:ELEVEN — Design System
   ========================================================= */

:root {
  /* palette */
  --charcoal: #171213;
  --charcoal-2: #201a1b;
  --burgundy: #3a1219;
  --burgundy-2: #4a161f;
  --cream: #f7f1ea;
  --cream-2: #efe4d8;
  --blush: #e7c9c9;
  --blush-deep: #c98f9a;
  --gold: #c6a15b;
  --gold-light: #dfc590;
  --ink: #241d1d;
  --ink-soft: #5a4d4d;
  --white: #fffdfb;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --container: 1180px;
  --radius: 2px;
  --ease: cubic-bezier(.22,.68,0,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow { max-width: 760px; }

.section { padding: 120px 0; position: relative; }
@media (max-width: 720px) {
  .section { padding: 80px 0; }
}

.kicker {
  font-family: var(--font-sans);
  letter-spacing: .32em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.kicker.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  margin: 0 0 28px;
  color: var(--charcoal);
}
.section-title.light { color: var(--cream); }

.lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
  font-weight: 300;
}
.lead.light { color: #d9c9c9; }
.lead.center-text { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }

.center-text { text-align: center; margin-left: auto; margin-right: auto; }

/* grain overlay for texture */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: .025; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-solid { background: var(--gold); color: var(--charcoal); }
.btn-solid:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline { border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }

.btn-outline-light { border-color: var(--gold-light); color: var(--gold-light); background: transparent; }
.btn-outline-light:hover { background: var(--gold-light); color: var(--burgundy); }

.btn-ghost { color: var(--white); border-bottom: 1px solid rgba(255,255,255,.5); border-radius: 0; padding: 15px 6px; }
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-wide { width: 100%; padding: 18px; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
  padding: 26px 0;
}
.site-header.scrolled {
  background: rgba(23,18,19,.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .06em;
  color: var(--white);
  font-weight: 600;
}
.brand-colon { color: var(--gold); }

.nav-desktop { display: flex; gap: 36px; }
.nav-desktop a {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,253,251,.85);
  position: relative;
  padding-bottom: 4px;
}
.nav-desktop a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a:hover { color: var(--white); }

.nav-cta { color: var(--white) !important; border-color: rgba(255,253,251,.5) !important; }
.nav-cta:hover { background: var(--white) !important; color: var(--charcoal) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 501;
}
.hamburger span { width: 24px; height: 1.5px; background: var(--white); transition: all .3s var(--ease); }
.hamburger.open { opacity: 0; pointer-events: none; }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,8,8,.55);
  backdrop-filter: blur(2px);
  z-index: 900;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.nav-overlay.open { display: block; opacity: 1; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--charcoal);
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 82vw);
  padding: 100px 36px 40px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  z-index: 950;
  box-shadow: -30px 0 70px rgba(0,0,0,.55);
  border-left: 1px solid rgba(223,197,144,.18);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 20px;
}
.nav-mobile .btn { margin-top: 28px; }

.nav-mobile-close {
  position: absolute;
  top: 26px;
  right: 28px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,253,251,.06);
  border: 1px solid rgba(255,253,251,.18);
  border-radius: 50%;
  color: var(--cream);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.nav-mobile-close:hover { background: var(--gold-light); color: var(--charcoal); border-color: var(--gold-light); }

@media (max-width: 880px) {
  .nav-desktop, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: flex; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  transform: scale(1.14);
  animation: heroZoom 18s ease-out forwards;
  filter: saturate(1.05) brightness(.75) blur(3px);
}
@keyframes heroZoom { to { transform: scale(1.05); } }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,18,19,.5) 0%, rgba(23,18,19,.62) 45%, rgba(23,18,19,.92) 100%),
              radial-gradient(ellipse at center, rgba(23,18,19,.55), rgba(23,18,19,.8));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 780px;
  padding: 0 24px;
}
.eyebrow {
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold-light);
  margin: 0 0 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 128px);
  font-weight: 500;
  margin: 0;
  line-height: 1;
  letter-spacing: .01em;
}
.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blush);
  margin: 22px 0 26px;
  font-weight: 400;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,253,251,.82);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 42px;
}
.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 26px; height: 42px; border: 1px solid rgba(255,253,251,.5);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--gold-light); border-radius: 2px;
  animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   Concept
   ========================================================= */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 64px;
}
.concept-item { border-top: 1px solid var(--cream-2); padding-top: 28px; }
.concept-num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: .1em;
}
.concept-item h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin: 10px 0 12px;
}
.concept-item p { color: var(--ink-soft); line-height: 1.7; font-size: 15.5px; font-weight: 300; }

@media (max-width: 780px) {
  .concept-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   Experience / Photo Walls
   ========================================================= */
.wall-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 60px 0 90px;
}
.wall-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.wall-img { overflow: hidden; aspect-ratio: 4/3; }
.wall-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.wall-card:hover .wall-img img { transform: scale(1.06); }
.wall-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 26px;
  background: linear-gradient(0deg, rgba(23,18,19,.92), rgba(23,18,19,0));
  color: var(--white);
}
.wall-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; margin: 0 0 8px; }
.wall-card p { margin: 0; font-size: 14.5px; color: rgba(255,253,251,.82); line-height: 1.6; font-weight: 300; }

@media (max-width: 780px) {
  .wall-showcase { grid-template-columns: 1fr; }
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cream-2);
  border: 1px solid var(--cream-2);
}
.feature {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.feature:hover { background: var(--cream); transform: translateY(-4px); }
.feature-icon { font-size: 30px; margin-bottom: 16px; }
.feature h4 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin: 0 0 10px; }
.feature p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; font-weight: 300; margin: 0; }

@media (max-width: 780px) {
  .feature-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .feature-strip { grid-template-columns: 1fr; }
}

/* =========================================================
   Floor plan (dark section)
   ========================================================= */
.floorplan-section {
  background: var(--charcoal);
  background-image: radial-gradient(ellipse at top, var(--burgundy-2) 0%, var(--charcoal) 65%);
}
.floorplan-wrap {
  position: relative;
  margin-top: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.5);
}
.floorplan-img { width: 100%; display: block; }

.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(198,161,91,.25);
  border: 1px solid var(--gold-light);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.hotspot-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(223,197,144,.55); }
  70% { box-shadow: 0 0 0 14px rgba(223,197,144,0); }
  100% { box-shadow: 0 0 0 0 rgba(223,197,144,0); }
}
.hotspot:hover, .hotspot.active { background: var(--gold-light); }
.hotspot:hover .hotspot-dot, .hotspot.active .hotspot-dot { background: var(--charcoal); }

.hotspot-panel {
  margin-top: 36px;
  background: rgba(255,253,251,.04);
  border: 1px solid rgba(255,253,251,.12);
  border-radius: var(--radius);
  padding: 30px 34px;
  min-height: 108px;
  transition: border-color .3s var(--ease);
}
.hotspot-panel h4 { font-family: var(--font-display); color: var(--gold-light); font-size: 22px; margin: 0 0 10px; font-weight: 500; }
.hotspot-panel p { color: rgba(255,253,251,.78); font-size: 15px; line-height: 1.6; margin: 0; font-weight: 300; }

@media (max-width: 600px) {
  .hotspot { width: 20px; height: 20px; }
}

/* =========================================================
   Menu tabs
   ========================================================= */
.menu-tabs {
  display: flex;
  gap: 4px;
  margin: 50px 0 0;
  border-bottom: 1px solid var(--cream-2);
  flex-wrap: wrap;
}
.menu-tab {
  background: none; border: none; cursor: pointer;
  padding: 16px 26px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color .3s var(--ease);
}
.menu-tab::after {
  content: ''; position: absolute; left: 26px; right: 26px; bottom: -1px; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform .3s var(--ease);
}
.menu-tab.active { color: var(--charcoal); font-weight: 500; }
.menu-tab.active::after { transform: scaleX(1); }

.menu-panels { padding: 52px 0 20px; min-height: 200px; }
.menu-panel { display: none; animation: fadeIn .5s var(--ease); }
.menu-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.menu-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.menu-panel h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; margin: 0 0 12px; }
.menu-panel p { color: var(--ink-soft); line-height: 1.75; font-weight: 300; font-size: 16px; }

@media (max-width: 720px) {
  .menu-panel-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* =========================================================
   VIP
   ========================================================= */
.vip {
  background: linear-gradient(160deg, var(--burgundy) 0%, var(--charcoal-2) 75%);
  color: var(--cream);
}
.vip-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: start;
  margin-top: 50px;
}
.vip-list { list-style: none; padding: 0; margin: 30px 0 38px; }
.vip-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,253,251,.12);
  color: rgba(255,253,251,.85);
  font-weight: 300;
  font-size: 15.5px;
}
.vip-list strong { color: var(--gold-light); font-weight: 500; }

.vip-card {
  background: rgba(255,253,251,.05);
  border: 1px solid rgba(223,197,144,.3);
  border-radius: var(--radius);
  padding: 46px 40px;
}
.vip-card-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.vip-card h3 { font-family: var(--font-display); font-size: 28px; font-weight: 500; margin: 0 0 16px; line-height: 1.25; }
.vip-card p { color: rgba(255,253,251,.75); line-height: 1.7; font-weight: 300; font-size: 15px; margin: 0 0 30px; }
.vip-price {
  display: flex; align-items: baseline; gap: 14px;
  border-top: 1px solid rgba(223,197,144,.25);
  padding-top: 26px;
}
.vip-price-amount { font-family: var(--font-display); font-size: 44px; color: var(--gold-light); font-weight: 600; }
.vip-price-label { font-size: 13px; color: rgba(255,253,251,.6); text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 860px) {
  .vip-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   Gallery + Lightbox
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 54px;
}
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--charcoal);
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .4s var(--ease);
  filter: saturate(.95);
}
.gallery-item:hover img { transform: scale(1.1); filter: saturate(1.1); }
.gallery-item span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(23,18,19,.85), rgba(23,18,19,0));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s var(--ease);
}
.gallery-item:hover span { opacity: 1; transform: translateY(0); }

@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15,11,12,.96);
  display: none;
  align-items: center; justify-content: center;
  flex-direction: column;
  padding: 40px;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: min(90vw, 900px); max-height: 78vh; object-fit: contain; border-radius: 2px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox p { color: var(--gold-light); font-family: var(--font-display); font-size: 18px; margin-top: 20px; }
.lightbox-close {
  position: absolute; top: 28px; right: 34px;
  background: none; border: none; color: var(--cream);
  font-size: 36px; line-height: 1; cursor: pointer;
  transition: color .3s var(--ease);
}
.lightbox-close:hover { color: var(--gold-light); }

/* =========================================================
   Visit / Hours / Map
   ========================================================= */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.hours-table { width: 100%; border-collapse: collapse; margin-top: 36px; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 15px 0;
  border-bottom: 1px solid var(--cream-2);
  font-weight: 300;
}
.hours-table th { color: var(--ink); font-weight: 500; letter-spacing: .02em; }
.hours-table td { color: var(--ink-soft); text-align: right; }
.hours-table tr.highlight th, .hours-table tr.highlight td { color: var(--gold); font-weight: 500; }
.hours-table tr.dim th, .hours-table tr.dim td { color: #b1a49f; font-size: 14px; }

.visit-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
}
.map-illustration { width: 100%; height: 420px; display: block; background: var(--charcoal); }
.map-directions {
  position: absolute; right: 18px; bottom: 18px;
  background: rgba(23,18,19,.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(223,197,144,.4);
  color: var(--gold-light);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.map-directions:hover { background: var(--gold-light); color: var(--charcoal); border-color: var(--gold-light); }

@media (max-width: 860px) {
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   Reserve form
   ========================================================= */
.reserve { background: var(--charcoal); }
.reserve-form { margin-top: 54px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 10px;
}
.label-optional { color: rgba(255,253,251,.4); text-transform: none; letter-spacing: 0; font-size: 11px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: rgba(255,253,251,.04);
  border: 1px solid rgba(255,253,251,.18);
  color: var(--cream);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,253,251,.07);
}
.form-field textarea { resize: vertical; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23dfc590' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-note { text-align: center; margin-top: 18px; color: var(--gold-light); font-size: 14px; min-height: 20px; }
.form-powered-by {
  text-align: center; margin-top: 22px; color: rgba(255,253,251,.4);
  font-size: 12.5px; line-height: 1.6; font-weight: 300;
}
.form-powered-by span { color: var(--gold-light); font-weight: 500; }

@media (max-width: 600px) {
  .form-row, .form-row.cols-3 { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--charcoal-2); color: var(--cream); padding: 80px 0 0; }
.footer-inner {
  display: flex; justify-content: space-between; gap: 60px; flex-wrap: wrap;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,253,251,.08);
}
.footer-brand p { color: rgba(255,253,251,.5); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-top: 10px; }
.footer-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.footer-cols h5 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); margin: 0 0 14px; }
.footer-cols p { color: rgba(255,253,251,.6); font-size: 14.5px; line-height: 1.7; font-weight: 300; margin: 0; }
.social-links { display: flex; flex-direction: column; gap: 8px; }
.social-links a { color: rgba(255,253,251,.6); font-size: 14.5px; transition: color .3s; }
.social-links a:hover { color: var(--gold-light); }
.footer-bottom { text-align: center; padding: 26px 0; }
.footer-bottom p { color: rgba(255,253,251,.35); font-size: 12.5px; margin: 0; }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; gap: 36px; }
}
