:root {
  --bg: #f6f4ef;
  --bg-alt: #ebe7df;
  --surface: #ffffff;
  --ink: #12151a;
  --ink-soft: #3d4450;
  --muted: #6b7280;
  --line: #d8d2c6;
  --accent: #9a7b3c;
  --accent-dark: #7a612e;
  --dark: #0e1218;
  --dark-soft: #1a2029;
  --ok: #2f5d3a;
  --danger: #8b2e2e;
  --radius: 2px;
  --max: 1120px;
  --header-h: 72px;
  --font-display: "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --shadow: 0 18px 40px rgba(14, 18, 24, 0.12);
  --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(ellipse 80% 50% at 100% 0%, rgba(154, 123, 60, 0.08), transparent 55%),
    linear-gradient(180deg, #f9f7f2 0%, var(--bg) 40%, #f1eee7 100%);
  min-height: 100vh;
}

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

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--dark);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 10000;
}

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

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

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

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

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

.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.1rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.25rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 560;
  letter-spacing: 0.03em;
  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:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--dark);
  color: #f6f4ef;
}

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

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

.btn-accent:hover {
  background: var(--accent-dark);
  color: #fff;
}

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

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  color: #f6f4ef;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 18s var(--ease) infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 18, 24, 0.82) 0%, rgba(14, 18, 24, 0.55) 48%, rgba(14, 18, 24, 0.28) 100%),
    linear-gradient(0deg, rgba(14, 18, 24, 0.75) 0%, transparent 45%);
  z-index: 1;
}

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

.hero .brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 0.35em;
  color: #f6f4ef;
}

.hero h1 {
  color: #f6f4ef;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 500;
  max-width: 22ch;
  margin-bottom: 0.8em;
}

.hero p {
  color: rgba(246, 244, 239, 0.86);
  font-size: 1.05rem;
  max-width: 42ch;
}

.hero .btn-primary {
  background: var(--accent);
}

.hero .btn-primary:hover {
  background: var(--accent-dark);
}

.hero .btn-ghost {
  border-color: rgba(246, 244, 239, 0.45);
  color: #f6f4ef;
}

.hero .btn-ghost:hover {
  border-color: #f6f4ef;
  background: rgba(246, 244, 239, 0.08);
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

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

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

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--dark);
  color: #f6f4ef;
}

.section-dark h2,
.section-dark h3 {
  color: #f6f4ef;
}

.section-dark p {
  color: rgba(246, 244, 239, 0.78);
}

.section-intro {
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 3 / 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(14, 18, 24, 0.85));
  color: #f6f4ef;
  font-size: 0.9rem;
}

/* Locations */
.locations {
  display: grid;
  gap: 1.25rem;
}

.location-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
}

.tab-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.tab-btn:hover {
  color: var(--ink);
}

.tab-btn[aria-selected="true"] {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.location-panel {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.5rem;
  animation: riseIn 0.35s var(--ease);
}

.location-panel.is-active {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.location-panel dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.location-panel dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.location-panel dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

.location-panel a {
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
}

.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

/* CTA */
.cta-block {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  border: 1px solid rgba(196, 163, 90, 0.35);
  background:
    linear-gradient(135deg, rgba(154, 123, 60, 0.12), transparent 55%),
    var(--dark-soft);
}

.cta-block h2 {
  margin-bottom: 0.4em;
}

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

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

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

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

.accordion-item.is-open .accordion-trigger::after {
  content: "−";
}

.accordion-panel {
  display: none;
  padding: 0 1.15rem 1.15rem;
  color: var(--ink-soft);
}

.accordion-item.is-open .accordion-panel {
  display: block;
  animation: riseIn 0.3s var(--ease);
}

/* Cards for interactive only */
.job-list,
.partner-grid {
  display: grid;
  gap: 1rem;
}

.job-item,
.partner-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.35rem 1.4rem;
}

.job-item h3,
.partner-card h3 {
  margin-bottom: 0.35em;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
}

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

.form-group {
  display: grid;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 560;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  min-height: 48px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid rgba(154, 123, 60, 0.45);
  outline-offset: 1px;
  border-color: var(--accent);
}

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

.form-success {
  display: none;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(47, 93, 58, 0.35);
  background: rgba(47, 93, 58, 0.08);
  color: var(--ok);
}

.form-success.is-visible {
  display: block;
  animation: riseIn 0.35s var(--ease);
}

/* Legal / content pages */
.page-hero {
  padding: 3.25rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-bottom: 0.35em;
}

.prose {
  padding: 2.75rem 0 4rem;
  max-width: 760px;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  text-align: left;
}

.prose th {
  background: var(--bg-alt);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(246, 244, 239, 0.78);
  padding: 3rem 0 1.5rem;
}

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

.site-footer h3 {
  color: #f6f4ef;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(246, 244, 239, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #f6f4ef;
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(246, 244, 239, 0.12);
  padding-top: 1.25rem;
  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: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Modals / overlays */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 24, 0.72);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.overlay.is-open {
  opacity: 1;
  visibility: visible;
}

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

.overlay.is-open .modal {
  transform: translateY(0);
}

.modal h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5em;
}

.modal p {
  margin-bottom: 1.35rem;
}

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

.age-gate .modal {
  text-align: center;
}

.age-gate .age-badge {
  width: 56px;
  height: 56px;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

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

.cookie-bar.is-open {
  display: block;
  animation: riseIn 0.4s var(--ease);
}

.cookie-bar p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

body.modal-open {
  overflow: hidden;
}

/* Visit info strip */
.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.info-strip article {
  background: var(--surface);
  padding: 1.35rem 1.2rem;
}

.info-strip h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.info-strip p {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.98rem;
}

.info-strip a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

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

.value-item {
  padding-top: 1rem;
  border-top: 2px solid var(--accent);
}

/* Lightbox simple */
.lightbox-btn {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}

#lightbox .modal {
  width: min(100%, 900px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

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

#lightbox .modal-actions {
  justify-content: center;
  margin-top: 0.75rem;
}

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

  .location-panel.is-active {
    grid-template-columns: 1fr;
  }

  .cta-block {
    grid-template-columns: 1fr;
  }

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

  .info-strip {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
  }

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

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 78vh;
  }

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

  .info-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 72vh;
  }
}

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

  html {
    scroll-behavior: auto;
  }
}
