:root {
  --bg: #faf6ef;
  --bg-2: #f3ebe3;
  --bg-warm: #efe4d6;
  --text: #1c1612;
  --muted: #5c534a;
  --card: #fffdfb;
  --shadow: 0 18px 45px rgba(60, 40, 30, .09);
  --shadow-sm: 0 10px 28px rgba(60, 40, 30, .07);
  --border: rgba(90, 60, 45, .10);
  --primary: #b8894d;
  --primary-2: #d4b06a;
  --gold-glow: rgba(196, 155, 99, .45);
  --wine: #7a3b2f;
  --wine-soft: rgba(122, 59, 47, .10);
  --rose: rgba(196, 155, 99, .13);
  --dark: #1a1410;
  --dark-2: #2a221c;
  --radius: 18px;
  --radius-sm: 14px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --reveal-delay: 0s;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto
  }
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 700px at 85% -15%, var(--gold-glow), transparent 52%),
    radial-gradient(900px 600px at -10% 30%, var(--wine-soft), transparent 48%),
    radial-gradient(700px 500px at 100% 80%, var(--rose), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 55%, var(--bg-warm) 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: .02;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-main {
  position: relative;
  z-index: 1
}

a {
  text-decoration: none
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 18px;
  top: 18px;
  width: auto;
  height: auto;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
}

.container {
  width: min(1120px, 92%);
  margin: auto
}

.narrow {
  max-width: 760px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(26, 20, 16, .92), rgba(26, 20, 16, .86));
  backdrop-filter: blur(14px) saturate(1.2);
  color: #fff;
  border-bottom: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--primary-2), var(--wine), transparent);
  opacity: .55;
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 14px
}

.brand {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px;
  transition: opacity .2s var(--ease-out)
}

.brand:hover {
  opacity: .92
}

.brand-text {
  font-size: 18px
}

.brand-logo {
  height: 34px;
  width: auto
}

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

.nav-links a {
  color: rgba(255, 255, 255, .92);
  padding: 10px 12px;
  border-radius: 12px;
  position: relative;
  transition: color .2s var(--ease-out), background .2s var(--ease-out);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease-out);
  opacity: .9;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1)
}

.nav-cta {
  background: linear-gradient(135deg, rgba(196, 155, 99, .28), rgba(196, 155, 99, .12));
  border: 1px solid rgba(212, 176, 106, .55);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .15);
  transition: transform .22s var(--ease-out), background .2s ease, box-shadow .2s ease;
}

.nav-cta:hover {
  background: linear-gradient(135deg, rgba(196, 155, 99, .38), rgba(196, 155, 99, .18));
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.nav-cta::after {
  display: none
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .24);
}

.nav-toggle-icon1,
.nav-toggle-icon2,
.nav-toggle-icon3 {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}

.nav-toggle-icon1 {
  transform: translateY(-6px);
}

.nav-toggle-icon2 {
  transform: translateY(0);
}

.nav-toggle-icon3 {
  transform: translateY(6px);
}

/* Open state (X icon) */
.nav-toggle[aria-expanded="true"] .nav-toggle-icon1 {
  transform: rotate(45deg);
  background: #fff;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon2 {
  opacity: 0;
  transform: scale(0.8);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon3 {
  transform: rotate(-45deg);
  background: #fff;
}

/* Optional: Add animation for smoother transition */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.nav-toggle:active {
  transform: scale(0.95);
}

/* Show toggle button on mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
}


/* Mobile Navigation Styles */
#mobileNav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #1a1a1a;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 80px 20px 20px;
  overflow-y: auto;
}

#mobileNav.open {
  right: 0;
}

/* Optional: Overlay when menu is open */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile nav links */
#mobileNav a {
  display: block;
  padding: 15px 0 15px 10px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

#mobileNav a:hover {
  padding-left: 10px;
  color: #ffd700;
}

@media (min-width: 769px) {
  #mobileNav,
  .menu-overlay {
    display: none;
  }
  
  .footer-quick-social-nav{
    display: flex;
    justify-content: space-between;
  }
}

main {
  min-height: 60vh
}

.hero {
  padding: 88px 0 96px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(107, 45, 60, .35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(196, 155, 99, .22), transparent 50%),
    linear-gradient(155deg, #1a1210 0%, #2d1f1c 42%, #1e1614 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 24px 60px rgba(0, 0, 0, .2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: hero-float 22s ease-in-out infinite;
}

.hero-orb--1 {
  width: min(480px, 90vw);
  height: min(480px, 90vw);
  top: -18%;
  right: -12%;
  background: radial-gradient(circle at 35% 35%, rgba(196, 155, 99, .5), transparent 62%);
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 340px;
  height: 340px;
  bottom: -8%;
  left: -6%;
  background: radial-gradient(circle at 50% 50%, rgba(107, 45, 60, .4), transparent 65%);
  animation-delay: -7s;
  animation-duration: 26s;
}

.hero-orb--3 {
  width: 220px;
  height: 220px;
  top: 42%;
  left: 38%;
  background: radial-gradient(circle, rgba(255, 230, 200, .12), transparent 70%);
  animation-delay: -12s;
  animation-duration: 18s;
}

.hero-shine {
  position: absolute;
  inset: -50% -30%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .04) 48%, transparent 56%);
  transform: rotate(-8deg);
  animation: hero-shine 14s ease-in-out infinite;
}

@keyframes hero-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(10px, -14px) scale(1.04)
  }
}

@keyframes hero-shine {

  0%,
  100% {
    opacity: .35;
    transform: rotate(-8deg) translateX(0)
  }

  50% {
    opacity: .6;
    transform: rotate(-8deg) translateX(2%)
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 1
}

.hero-copy {
  position: relative
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.08;
  margin: 12px 0;
  text-shadow: 0 2px 28px rgba(0, 0, 0, .35);
  letter-spacing: -.02em;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .28em;
  color: rgba(255, 230, 200, .88);
  font-weight: 800;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(196, 155, 99, .15);
  border: 1px solid rgba(196, 155, 99, .35);
}

.hero-lede {
  color: rgba(255, 248, 240, .9);
  margin: 0;
  max-width: 56ch;
  font-size: 1.08rem;
  line-height: 1.68
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap
}

.hero-highlights {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .82);
}

.hero-hi-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(196, 155, 99, .25);
  color: var(--primary-2);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.hero-featured {
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(155deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05));
  backdrop-filter: blur(14px) saturate(1.2);
  color: #fff;
  box-shadow: 0 28px 56px rgba(0, 0, 0, .28);
}

.hero-featured-title {
  margin: 0 0 4px;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 800
}

.hero-featured-sub {
  margin: 0 0 16px;
  font-size: .9rem
}

.hero-menu-row {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: var(--text);
  padding: 10px 0;
}

.hero-price {
  color: var(--primary-2);
  font-weight: 800
}

.hero-featured-foot {
  padding-top: 14px
}

.btn-hero-card {
  background: rgba(255, 255, 255, .12) !important;
  border-color: rgba(255, 255, 255, .28) !important;
  color: #fff !important;
}

.btn-hero-card:hover {
  background: rgba(255, 255, 255, .2) !important;
  border-color: rgba(255, 255, 255, .4) !important
}

.page-hero {
  padding: 42px 0 48px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 280px at 12% -20%, rgba(196, 155, 99, .22), transparent 55%),
    radial-gradient(700px 240px at 92% 110%, var(--wine-soft), transparent 50%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--border);
}

.page-hero--rich {
  padding-bottom: 52px
}

.page-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(500px 200px at 50% 0%, rgba(212, 176, 106, .15), transparent 70%);
  opacity: .9;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 38px);
  color: var(--text);
  font-weight: 800;
  letter-spacing: -.02em;
  position: relative
}

.page-hero .muted {
  color: var(--muted)
}

.page-hero-lede {
  margin-top: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 52ch
}

.section {
  padding: 76px 0;
  position: relative
}

.section-heading {
  margin: 0 0 32px;
  max-width: 680px
}

.section-lede {
  margin: 12px 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 54ch
}

.section-kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 10px
}

.section-title {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  line-height: 1.15
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 16px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--wine))
}

.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px
}

.section-cta-row--single {
  justify-content: center;
}

.gallery-empty-hint {
  grid-column: 1 / -1;
  text-align: center;
  padding: 28px 16px;
  margin: 0;
}

/* Scroll-in animation (class added via JS; .is-visible when in view) */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.stagger-children>.reveal:nth-child(1) {
  --reveal-delay: .04s
}

.stagger-children>.reveal:nth-child(2) {
  --reveal-delay: .1s
}

.stagger-children>.reveal:nth-child(3) {
  --reveal-delay: .16s
}

.stagger-children>.reveal:nth-child(4) {
  --reveal-delay: .22s
}

.stagger-children>.reveal:nth-child(5) {
  --reveal-delay: .28s
}

.stagger-children>.reveal:nth-child(6) {
  --reveal-delay: .34s
}

.feature-card {
  position: relative;
  overflow: hidden
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--wine));
  opacity: .9
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196, 155, 99, .28), var(--wine-soft));
  border: 1px solid rgba(196, 155, 99, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.feature-card:hover .feature-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 24px rgba(107, 45, 60, .12);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem
}

.feature-card .muted {
  margin: 0;
  line-height: 1.55
}

.card.pad {
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out), border-color .25s ease;
}

.admin-grid .card.pad{
  display: grid;
}

.card.pad:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(196, 155, 99, .25);
}

/* Home: visit snapshot (content, not a repeat of primary nav) */
.home-visit {
  padding: 32px 0 36px;
  background: linear-gradient(90deg, rgba(107, 45, 60, .06), rgba(196, 155, 99, .08), rgba(107, 45, 60, .06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.home-visit-heading {
  margin-bottom: 22px;
  max-width: 640px;
}

.home-visit-kicker {
  display: block;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 8px;
  font-weight: 800;
}

.home-visit-title {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
}

.home-visit-lede {
  margin: 0;
  font-size: .95rem;
  line-height: 1.5;
}

.home-visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-visit-card {
  padding: 18px 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.home-visit-label {
  margin: 0 0 10px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--wine);
}

.home-visit-text {
  margin: 0;
  font-size: .94rem;
  line-height: 1.5;
  color: var(--text);
}

.home-visit-text a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}

.home-visit-text a:hover {
  color: var(--wine);
}

.home-visit-text--tight {
  margin-top: 8px;
}

.home-visit-action {
  display: inline-block;
  margin-top: 12px;
  font-size: .88rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-visit-action:hover {
  color: var(--wine);
}

.home-visit-note {
  margin: 10px 0 0;
  font-size: .82rem;
  line-height: 1.45;
}

@media (max-width:900px) {
  .home-visit-grid {
    grid-template-columns: 1fr;
  }
}

.hero-featured-empty {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.5;
}

/* Home: quote ribbon */
.home-quote {
  padding: 36px 0 8px;
  border-bottom: 1px solid transparent;
}

.home-quote-inner {
  margin: 0;
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(122, 59, 47, .06), rgba(196, 155, 99, .1));
  border: 1px solid rgba(196, 155, 99, .22);
  box-shadow: var(--shadow-sm);
}

.home-quote-inner p {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
}

.home-quote-inner cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--wine);
}

.section--stats {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--bg-warm), var(--bg-2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 8px 12px
}

.stat-num {
  display: block;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--wine), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.02em;
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.45
}

.section--soft {
  background: linear-gradient(180deg, var(--bg), rgba(255, 253, 251, .96));
}

.section--gallery-preview {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(196, 155, 99, .1), transparent 60%),
    var(--bg-2);
}

#gallery-preview {
  scroll-margin-top: 96px;
}

.section--gallery-page {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}

.cta-band {
  margin: 0;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #2a1a18 0%, #1a1210 45%, #231814 100%);
  color: #fff;
  text-align: center;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(196, 155, 99, .25), transparent 55%),
    radial-gradient(ellipse 60% 60% at 10% 90%, rgba(107, 45, 60, .35), transparent 50%);
  animation: cta-pulse 16s ease-in-out infinite alternate;
}

@keyframes cta-pulse {
  from {
    opacity: .85;
    transform: scale(1)
  }

  to {
    opacity: 1;
    transform: scale(1.03)
  }
}

.cta-band-inner {
  position: relative;
  z-index: 1
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.2vw, 32px);
  letter-spacing: -.02em
}

.cta-band p {
  margin: 0 0 26px;
  color: rgba(255, 248, 240, .9);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  font-size: 1.05rem
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center
}

.cta-band-note {
  margin: 22px 0 0;
  font-size: .9rem;
  color: rgba(255, 248, 240, .72);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.cta-band-note strong {
  color: rgba(255, 248, 240, .95);
  font-weight: 800;
}

.cta-band .btn-primary {
  margin: 0
}

.cta-band .btn-outline-dark {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  transition: background .2s ease, transform .2s var(--ease-out);
}

.cta-band .btn-outline-dark:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-1px)
}

.alt {
  background: linear-gradient(180deg, rgba(196, 155, 99, .1), rgba(107, 45, 60, .05))
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 22px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-bottom: 22px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-bottom: 22px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .65), transparent 40%);
}

.pad {
  padding: 22px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.btn:active {
  transform: translateY(1px)
}

.btn-primary {
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  color: #1a120a;
  box-shadow: 0 12px 26px rgba(196, 155, 99, .25)
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(196, 155, 99, .34)
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
  background: rgba(255, 255, 255, .06)
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff
}

.btn-ghost:hover {
  border-color: rgba(0, 0, 0, .18)
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 14px;
  margin-bottom: 12px;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(196, 155, 99, .85);
  box-shadow: 0 0 0 4px rgba(196, 155, 99, .20);
}

:focus-visible {
  outline: 3px solid rgba(196, 155, 99, .7);
  outline-offset: 2px
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0
}

.filter {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .14);
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}

.filter.active {
  background: linear-gradient(135deg, var(--wine), #4a1f28);
  color: #fff;
  border-color: rgba(107, 45, 60, .5);
  box-shadow: 0 8px 22px rgba(107, 45, 60, .22);
}

.filter {
  transition: transform .2s var(--ease-out), box-shadow .2s ease, border-color .2s ease
}

.filter:hover:not(.active) {
  transform: translateY(-1px);
  border-color: rgba(196, 155, 99, .35)
}

.row-between {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06)
}

.gallery-box {
  min-height: 180px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(196, 155, 99, .2), rgba(107, 45, 60, .08) 55%, #ebe3d6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.gallery-box {
  padding: 0
}

.gallery-box--elevated .gallery-image {
  transition: transform .55s var(--ease-out);
}

.gallery-box--elevated:hover .gallery-image {
  transform: scale(1.06);
}

.gallery-box--elevated::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(26, 20, 16, .55) 100%);
  opacity: .75;
  transition: opacity .35s ease;
}

.gallery-box--elevated:hover::after {
  opacity: .55
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 14px 16px;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.gallery-title {
  font-weight: 800;
  padding: 20px
}

.gallery-preview-grid .gallery-image {
  height: 220px
}

.gallery-lightbox {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: block;
}

.gallery-lightbox:focus-visible {
  outline: 3px solid rgba(196, 155, 99, .7);
  outline-offset: -3px;
  border-radius: var(--radius);
}

.gallery-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-card {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.menu-card h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -.01em
}

.menu-card-image {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .08);
  margin-bottom: 6px;
}

.menu-price {
  margin-top: auto
}

.menu-price strong {
  font-size: 1.15rem;
  color: var(--wine);
}

/* About */
.about-split {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 26px;
  align-items: start;
}

.about-split-title {
  font-size: clamp(22px, 3vw, 30px);
  margin: 12px 0 16px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.02em
}

.about-prose {
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 14px
}

.about-quote {
  background: linear-gradient(165deg, var(--wine-soft), rgba(196, 155, 99, .14));
  border-color: rgba(107, 45, 60, .18);
}

.about-blockquote {
  margin: 0;
  padding: 0;
  border: 0
}

.about-blockquote p {
  font-size: 1.06rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--text);
  margin: 0 0 16px;
}

.about-blockquote footer {
  font-size: .88rem;
  font-weight: 800;
  color: var(--wine);
  letter-spacing: .02em
}

.value-card {
  position: relative;
  overflow: hidden
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--wine));
  border-radius: var(--radius) var(--radius) 0 0;
}

.value-icon {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1
}

/* Contact */
.contact-grid {
  align-items: stretch
}

.contact-card--visit {
  background: linear-gradient(165deg, rgba(196, 155, 99, .14), var(--card));
}

.contact-card .footer-link {
  color: var(--wine);
  text-decoration: underline;
  text-decoration-color: rgba(107, 45, 60, .35);
}

.contact-card .footer-link:hover {
  color: #4a1f28
}

.table {
  width: 100%;
  border-collapse: collapse
}

.table th,
.table td {
  padding: 10px;
  border-bottom: 1px solid #ececec;
  text-align: left
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, .12) transparent;
  -webkit-scrollbar-track: transparent;
  -webkit-scrollbar-thumb: rgba(0, 0, 0, .12);
  -webkit-scrollbar-thumb: hover rgba(0, 0, 0, .18);
  -webkit-scrollbar-thumb: active rgba(0, 0, 0, .24);
  -webkit-scrollbar-thumb: focus rgba(0, 0, 0, .12);
  -webkit-scrollbar-thumb: focus-visible rgba(0, 0, 0, .12);
  -webkit-scrollbar-thumb: focus-within rgba(0, 0, 0, .12);
}

.success {
  color: #0a7a26
}

.error {
  color: #b00020
}

.muted {
  color: var(--muted)
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.form-message {
  margin-top: 10px;
  min-height: 1.2em;
}

.form-message.success {
  font-weight: 600
}

.form-message.error {
  font-weight: 600
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.is-hidden {
  display: none !important
}

/* Reservation */
.reservation-page-hero .reservation-page-kicker {
  display: inline-block;
  margin-bottom: 10px;
}

.reservation-trust {
  padding: 22px 0 8px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 253, 251, .96), var(--bg));
}

.reservation-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.reservation-trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: .88rem;
  line-height: 1.45;
  color: var(--text);
}

.reservation-trust-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196, 155, 99, .2), rgba(107, 45, 60, .1));
  border: 1px solid rgba(196, 155, 99, .28);
  font-size: .85rem;
  line-height: 1;
  color: var(--wine);
}

.reservation-trust-text strong {
  display: block;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 4px;
  font-weight: 800;
}

.reservation-section-form {
  padding-top: 28px;
}

.reservation-layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: 28px;
  align-items: start;
}

.reservation-main {
  min-width: 0
}

.reservation-card {
  position: relative;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.reservation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--wine));
  opacity: .95;
}

.reservation-card-title {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.reservation-intro {
  margin: 0 0 24px;
  font-size: .95rem;
  line-height: 1.6
}

.reservation-notes-wrap {
  margin-top: 4px;
}

.reservation-privacy {
  margin: 18px 0 0;
  padding: 12px 14px;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--muted);
  background: rgba(122, 59, 47, .05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 155, 99, .2);
}

.reservation-section-title {
  margin: 28px 0 14px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.field-span-2 {
  grid-column: 1 / -1
}

.field-wrap {
  margin: 0
}

.field-label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 6px;
  color: var(--text);
}

.field-wrap input,
.field-wrap select,
.field-wrap textarea {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  font: inherit;
  color: var(--text);
}

.field-wrap textarea {
  resize: vertical;
  min-height: 88px
}

.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap textarea:focus {
  outline: 2px solid rgba(196, 155, 99, .55);
  outline-offset: 1px;
  border-color: rgba(196, 155, 99, .45);
}

.field-hint {
  margin: 6px 0 0;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.45;
}

.field-error {
  margin: 8px 0 0;
  font-size: .85rem;
  color: #b00020;
  font-weight: 600;
}

.req {
  color: #8b4513
}

.optional {
  font-weight: 500;
  color: var(--muted);
  font-size: .88em
}

.reservation-actions {
  margin-top: 20px
}

.reservation-submit-btn {
  min-width: min(100%, 280px);
}

.reservation-slot-picker {
  margin-top: 4px;
}

.reservation-slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.reservation-slot-grid.is-empty {
  margin-top: 0;
}

.reservation-slot-btn {
  min-width: 72px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(196, 155, 99, .45);
  background: #fff;
  font: inherit;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  cursor: pointer;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), border-color .2s ease, background .2s ease;
}

.reservation-slot-btn:hover:not(:disabled) {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(60, 40, 30, .08);
}

.reservation-slot-btn.is-selected {
  background: linear-gradient(135deg, rgba(196, 155, 99, .25), rgba(107, 45, 60, .12));
  border-color: rgba(107, 45, 60, .35);
  box-shadow: 0 8px 22px rgba(107, 45, 60, .12);
}

.reservation-slot-btn.is-disabled,
.reservation-slot-btn:disabled {
  opacity: .42;
  cursor: not-allowed;
  border-color: var(--border);
  background: rgba(0, 0, 0, .03);
}

.reservation-slot-loading {
  margin-top: 8px;
  font-style: italic;
}

.reservation-global {
  margin-top: 16px
}

.reservation-success {
  text-align: center;
  border: 1px solid rgba(10, 122, 38, .22);
  background: linear-gradient(180deg, rgba(10, 122, 38, .06), #fff 42%);
  box-shadow: var(--shadow-sm);
}

.reservation-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(10, 122, 38, .12);
  color: #0a7a26;
  font-size: 28px;
  line-height: 56px;
  font-weight: 800;
}

.reservation-success-title {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 800
}

.reservation-success-lead {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto
}

.reservation-code-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px dashed rgba(196, 155, 99, .45);
  margin-bottom: 18px;
}

.reservation-code-label {
  width: 100%;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.reservation-code-value {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--text);
  background: rgba(0, 0, 0, .04);
  padding: 8px 14px;
  border-radius: 10px;
}

.reservation-copy-btn {
  font-size: .9rem
}

.reservation-notice-list {
  text-align: left;
  margin: 0 auto 16px;
  padding-left: 1.2em;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.5;
}

.reservation-success-summary {
  margin: 0 0 22px;
  line-height: 1.55;
  color: var(--text)
}

.reservation-success-next {
  text-align: left;
  max-width: 42ch;
  margin: 0 auto 22px;
}

.reservation-success-next-title {
  margin: 0 0 10px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--wine);
  text-align: center;
}

.reservation-success-next-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.reservation-success-next-list li {
  margin-bottom: 6px;
}

.reservation-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center
}

.reservation-aside {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 88px;
}

.reservation-aside-title {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800
}

.reservation-steps {
  margin: 0;
  padding-left: 1.1em;
  line-height: 1.65;
  color: var(--text)
}

.reservation-steps li {
  margin-bottom: 10px
}

.reservation-aside-block {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border)
}

.reservation-aside-block h4 {
  margin: 0 0 8px;
  font-size: .95rem;
  font-weight: 800
}

.reservation-aside-address {
  margin: 0 0 8px;
  line-height: 1.55;
  color: var(--text);
  font-size: .92rem;
}

.reservation-aside-link {
  font-size: .88rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reservation-aside-link:hover {
  color: var(--wine);
}

.reservation-aside-muted {
  margin: 0;
  line-height: 1.55;
  font-size: .9rem;
}

.reservation-policy-list {
  margin: 0;
  padding-left: 1.1em;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--muted);
}

.reservation-policy-list li {
  margin-bottom: 8px;
}

.reservation-aside-phone,
.reservation-aside-email {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.reservation-aside-phone:hover,
.reservation-aside-email:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reservation-aside-block--cta .reservation-aside-muted + .reservation-aside-muted {
  margin-top: 6px;
}

@media(max-width:960px) {
  .reservation-trust-grid {
    grid-template-columns: 1fr;
  }

  .reservation-layout {
    grid-template-columns: 1fr
  }

  .reservation-aside {
    position: static
  }

  .field-grid {
    grid-template-columns: 1fr
  }

  .field-span-2 {
    grid-column: auto
  }
}

.site-footer {
  background: linear-gradient(165deg, #1e1614 0%, #14100e 50%, #0c0a09 100%);
  color: #fff;
  padding: 28px 0 24px;
  margin-top: 48px;
  position: relative;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, .08);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--wine), transparent);
  opacity: .5;
  pointer-events: none;
}

.footer-explore {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-explore-label {
  display: block;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 230, 200, .5);
  margin-bottom: 12px;
  font-weight: 800;
}

.footer-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center
}

.footer-quick-nav a {
  color: rgba(255, 255, 255, .88);
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .92rem;
  transition: background .2s ease, color .2s ease, transform .2s var(--ease-out);
}

.footer-quick-nav a:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  transform: translateY(-1px)
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center
}

.footer-social a {
  color: rgba(255, 255, 255, .88);
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .92rem;
  transition: background .2s ease, color .2s ease, transform .2s var(--ease-out);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  transform: translateY(-1px)
}

/* Elegant Circular */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #F5DEB3;
  color: #5D3A1A;
  border-radius: 50%;
  text-decoration: none;
  font-size: 26px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon a:hover {
  transform: scale(1.1);
  background: #FFE4B5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-quick-cta {
  background: rgba(196, 155, 99, .22) !important;
  border: 1px solid rgba(212, 176, 106, .5);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap
}

.footer-contact {
  max-width: 420px
}

.footer-link {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(196, 155, 99, .65)
}

.footer-link:hover {
  color: var(--primary-2)
}

.footer-bottom {
  padding-top: 14px
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh
}

.sidebar {
  background: #171717;
  color: #fff;
  padding: 22px
}

.sidebar a {
  display: block;
  color: #fff;
  margin: 10px 0;
  padding: 8px 10px;
  border-radius: 12px
}

.sidebar a:hover {
  background: rgba(255, 255, 255, .06)
}

.admin-main {
  padding: 24px
}

.auth-page {
  display: grid;
  place-items: center;
  min-height: 100vh
}

.auth-card {
  width: min(420px, 92%)
}

/* Admin UX */
.admin-title {
  font-size: 26px;
  letter-spacing: -.3px;
  margin: 0 0 14px 0
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 4px 0 14px;
}

.admin-search {
  max-width: 320px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.admin-search input {
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
}

.badge.success {
  border-color: rgba(10, 122, 38, .25);
  color: #0a7a26;
  background: rgba(10, 122, 38, .08)
}

.badge.error {
  border-color: rgba(176, 0, 32, .25);
  color: #b00020;
  background: rgba(176, 0, 32, .08)
}

.badge.neutral {
  border-color: rgba(0, 0, 0, .12);
  color: #444;
  background: rgba(0, 0, 0, .04)
}

.admin-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  display: none;
  justify-content: center;
  z-index: 2000;
  padding: 18px;
}

.admin-modal.open {
  display: flex
}

.admin-modal-inner {
  width: min(820px, 96%);
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, .12) transparent;
  -webkit-scrollbar-track: transparent;
  -webkit-scrollbar-thumb: rgba(0, 0, 0, .12);
  -webkit-scrollbar-thumb: hover rgba(0, 0, 0, .18);
  -webkit-scrollbar-thumb: active rgba(0, 0, 0, .24);
  -webkit-scrollbar-thumb: focus rgba(0, 0, 0, .12);
  -webkit-scrollbar-thumb: focus-visible rgba(0, 0, 0, .12);
  -webkit-scrollbar-thumb: focus-within rgba(0, 0, 0, .12);
}

.admin-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.admin-modal-top h2 {
  margin: 0;
  font-size: 16px;
}

.admin-modal-close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.admin-modal-body {
  padding: 14px;
}

.admin-modal-footer {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn[disabled] {
  opacity: .65;
  cursor: not-allowed
}

/* Gallery lightbox modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 999;
}

.modal.open {
  display: flex
}

.modal.open .modal-inner {
  animation: modal-in .38s var(--ease-out) both;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(.97) translateY(12px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.modal-inner {
  background: #fff;
  border-radius: 18px;
  width: min(980px, 96%);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.modal-close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.modal-body {
  padding: 0
}

.modal-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  background: #111
}

.modal-caption {
  padding: 12px 14px;
  color: #333
}

@media(max-width:900px) {

  .hero-grid,
  .grid3,
  .admin-grid,
  .admin-shell {
    grid-template-columns: 1fr
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .about-split {
    grid-template-columns: 1fr
  }

  .hero h1 {
    font-size: 36px
  }

  .nav-toggle {
    display: flex
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, .98);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 2px;
    display: none;
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    margin: 0
  }

  .grid2 {
    grid-template-columns: 1fr
  }

  .form-grid-2 {
    grid-template-columns: 1fr
  }
}

@media (prefers-reduced-motion: reduce) {

  .btn,
  .card.pad,
  .home-visit-card,
  .filter,
  .nav-links a,
  .nav-links a::after {
    transition: none
  }

  .hero-orb,
  .hero-shine,
  .cta-band-bg {
    animation: none !important
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }

  .gallery-box--elevated .gallery-image {
    transition: none
  }

  .modal.open .modal-inner {
    animation: none
  }
}