:root {
  --bg: #f7f8f6;
  --bg-soft: #eef1ee;
  --surface: #ffffff;
  --ink: #1c2420;
  --muted: #5a675f;
  --line: #d5ddd7;
  --brand: #0b3d2e;
  --brand-deep: #072a20;
  --accent: #a8873a;
  --accent-soft: #f3ead3;
  --danger: #8b1e1e;
  --shadow: 0 12px 40px rgba(12, 36, 28, 0.08);
  --radius: 2px;
  --max: 1120px;
  --header-h: 72px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(168, 135, 58, 0.08), transparent 60%),
    radial-gradient(900px 400px at 100% 0%, rgba(11, 61, 46, 0.06), transparent 55%),
    var(--bg);
  min-height: 100vh;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--brand-deep);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 0.55rem 0.75rem;
  font: inherit;
  cursor: pointer;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--brand);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown > button::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  display: none;
}

.nav-dropdown.open .dropdown-panel {
  display: grid;
  gap: 0.15rem;
}

.dropdown-panel a {
  padding: 0.55rem 0.7rem;
  text-decoration: none;
}

.dropdown-panel a:hover {
  background: var(--bg-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-deep);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-accent {
  background: var(--accent);
  color: #1c180c;
}

.btn-accent:hover {
  background: #94742c;
  color: #1c180c;
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-on-dark:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 42, 32, 0.35) 0%, rgba(7, 42, 32, 0.72) 55%, rgba(7, 42, 32, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  max-width: 640px;
  animation: rise 0.9s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 600;
  line-height: 1.02;
  margin: 0 0 0.85rem;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.9rem;
  color: #f4efe3;
}

.hero p {
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.7rem;
  color: var(--brand-deep);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.prose {
  max-width: 68ch;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  color: var(--brand-deep);
  margin: 2rem 0 0.7rem;
}

.prose ul {
  color: var(--muted);
  padding-left: 1.2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  padding-left: 1.15rem;
  border-left: 2px solid var(--accent);
  color: var(--muted);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption,
.gallery-item .cap {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Contact / hours */
.info-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.info-panel h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 1rem;
  color: var(--brand-deep);
}

.info-row {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.info-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.info-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.info-row a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.info-row a:hover {
  color: var(--brand);
}

.locations {
  display: grid;
  gap: 1rem;
}

.location {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.location:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.location strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--brand-deep);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 400;
}

.hours-table th {
  color: var(--ink);
  width: 45%;
}

/* CTA band */
.cta-band {
  background: var(--brand);
  color: #fff;
  padding: 3.5rem 0;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0 0 0.7rem;
  font-weight: 600;
}

.cta-band p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 48ch;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Accordion */
.accordion {
  display: grid;
  gap: 0.65rem;
}

.acc-item {
  border: 1px solid var(--line);
  background: var(--surface);
}

.acc-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1rem 1.15rem;
  font: inherit;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.acc-trigger::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  line-height: 1;
}

.acc-item.is-open .acc-trigger::after {
  content: "–";
}

.acc-panel {
  display: none;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
}

.acc-item.is-open .acc-panel {
  display: block;
  animation: rise 0.35s var(--ease);
}

/* Forms */
.form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
  border-radius: var(--radius);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.form-success {
  display: none;
  padding: 1rem;
  background: var(--accent-soft);
  border: 1px solid #e2d3a8;
  color: var(--brand-deep);
}

.form-success.show {
  display: block;
}

/* Page hero (inner) */
.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 61, 46, 0.04), transparent);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0 0 0.6rem;
  color: var(--brand-deep);
  font-weight: 600;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

/* Footer */
.site-footer {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-col h3 {
  margin: 0 0 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Overlays */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 16, 0.72);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.overlay.is-visible {
  display: flex;
  animation: fade 0.25s ease;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  width: min(100%, 440px);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  animation: rise 0.35s var(--ease);
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0 0 0.7rem;
  color: var(--brand-deep);
}

.modal p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lightbox .modal {
  width: min(100%, 920px);
  padding: 0.75rem;
  background: #0b1713;
}

.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

#age-gate {
  z-index: 2000;
}

#cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: none;
  width: auto;
  max-width: 640px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.25rem;
}

#cookie-banner.is-visible {
  display: block;
  animation: rise 0.4s var(--ease);
}

#cookie-banner p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* Motion for sections */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 0.75rem 1rem 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .dropdown-panel {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.25rem 0.75rem;
  }

  .hero {
    min-height: 78vh;
  }
}

@media (min-width: 640px) and (max-width: 900px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
