@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/cormorant-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/cormorant-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/manrope-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #0c0b0a;
  --bg-elevated: #151311;
  --bg-soft: #1c1916;
  --line: rgba(201, 162, 39, 0.22);
  --gold: #c9a227;
  --gold-soft: #e2c56a;
  --text: #f3eee4;
  --muted: #b7aea0;
  --danger: #b33a3a;
  --radius: 2px;
  --max: 1120px;
  --header-h: 72px;
  --font-display: "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Manrope", "Avenir Next", "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-weight: 400;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201, 162, 39, 0.12), transparent 60%),
    radial-gradient(900px 500px at 10% 20%, rgba(90, 60, 20, 0.18), transparent 55%),
    linear-gradient(180deg, #12100e 0%, var(--bg) 40%, #090807 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

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

a:hover,
a:focus-visible {
  color: var(--text);
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 0.6rem 1rem;
  z-index: 10000;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(12, 11, 10, 0.88);
  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.75rem;
  color: var(--text);
  text-decoration: none;
}

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

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

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

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

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

.nav-dropdown {
  position: relative;
}

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

.nav-dropdown > button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s var(--ease);
}

.nav-dropdown[data-open="true"] > button,
.nav-dropdown > button:hover {
  color: var(--gold-soft);
}

.nav-dropdown[data-open="true"] > button::after {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 0;
  min-width: 210px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 0.55rem;
  display: none;
  z-index: 120;
}

.nav-dropdown[data-open="true"] .dropdown-panel {
  display: grid;
  gap: 0.15rem;
  animation: fadeRise 0.28s var(--ease);
}

.dropdown-panel a {
  display: block;
  padding: 0.55rem 0.7rem;
  color: var(--muted);
  text-decoration: none;
}

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

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

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.9);
  animation: slowZoom 18s var(--ease) infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 11, 10, 0.35) 0%, rgba(12, 11, 10, 0.78) 55%, rgba(12, 11, 10, 0.96) 100%),
    linear-gradient(90deg, rgba(12, 11, 10, 0.55), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 10vh, 6rem) 0 4rem;
  max-width: 720px;
  animation: fadeRise 0.9s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: var(--text);
}

.hero-brand em {
  font-style: normal;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 500;
  margin: 0 0 0.85rem;
  color: var(--gold-soft);
  letter-spacing: 0.01em;
}

.hero p {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  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(--gold);
  color: #151210;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-soft);
  color: #111;
}

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

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-soft);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

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

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

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

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

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.split-copy p + p {
  margin-top: 1rem;
}

.split-copy p {
  color: var(--muted);
  margin: 0;
}

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

.gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.gallery figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.cta-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(201, 162, 39, 0.1), transparent 45%),
    var(--bg-elevated);
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.75rem;
}

.cta-band p {
  margin: 0 auto 1.4rem;
  color: var(--muted);
  max-width: 36rem;
}

.cta-band .hero-actions {
  justify-content: center;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-item {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  background: rgba(21, 19, 17, 0.72);
}

.contact-item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--muted);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--gold-soft);
}

.locations {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.location {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.location summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.location summary::-webkit-details-marker {
  display: none;
}

.location summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.location[open] summary::after {
  content: "−";
}

.location-body {
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  animation: fadeRise 0.3s var(--ease);
}

.location-body p {
  margin: 0.85rem 0 0;
}

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

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

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

.accordion-trigger span {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.accordion-panel {
  display: none;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.accordion-item[data-open="true"] .accordion-panel {
  display: block;
  animation: fadeRise 0.28s var(--ease);
}

.accordion-item[data-open="true"] .accordion-trigger span {
  transform: rotate(45deg);
  display: inline-block;
}

/* Page hero (inner) */
.page-hero {
  padding: clamp(3rem, 8vw, 4.5rem) 0 2rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 0.7rem;
  line-height: 1.1;
}

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

.prose {
  max-width: 760px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 2rem 0 0.7rem;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 1.5rem 0 0.5rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.2rem;
}

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

.job {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  padding: 1.25rem 1.35rem;
}

.job h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.job .meta {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

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

.form {
  display: grid;
  gap: 0.9rem;
  max-width: 560px;
}

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

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  border-radius: var(--radius);
}

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

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

.form-success {
  display: none;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold-soft);
}

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

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 1.5rem;
  background: #090807;
}

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

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

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

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-brand p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-col h3 {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

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

/* Overlays */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(5, 4, 3, 0.82);
  backdrop-filter: blur(6px);
}

.overlay.is-open {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.modal {
  width: min(100%, 460px);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 1.6rem 1.5rem;
  animation: fadeRise 0.35s var(--ease);
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 0.6rem;
}

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

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

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: none;
  width: min(100% - 0rem, 720px);
  margin-inline: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.cookie-bar.is-open {
  display: flex;
  flex-wrap: wrap;
  animation: fadeRise 0.35s var(--ease);
}

.cookie-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1 1 260px;
}

.visit-modal-trigger {
  /* already a button class */
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

@media (max-width: 900px) {
  .split,
  .split.reverse,
  .gallery,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(12, 11, 10, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
    animation: fadeRise 0.25s var(--ease);
  }

  .site-nav a,
  .nav-dropdown > button {
    padding: 0.85rem 0.35rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.12);
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-panel {
    position: static;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 0 0 0.5rem 0.5rem;
  }

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

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

  .hero-media img {
    filter: brightness(0.45);
  }
}

html.age-passed #age-gate {
  display: none !important;
}

html:not(.age-passed) body {
  overflow: hidden;
}
