:root {
  --bg: #0f1012;
  --bg-elevated: #17191d;
  --bg-soft: #1e2127;
  --line: rgba(196, 163, 90, 0.22);
  --gold: #c4a35a;
  --gold-soft: #d6bd7e;
  --ivory: #f3eee4;
  --muted: #a8a29a;
  --text: #e8e2d8;
  --danger: #b85c5c;
  --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-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(196, 163, 90, 0.08), transparent 55%),
    linear-gradient(180deg, #12141a 0%, var(--bg) 40%, #0c0d10 100%);
  min-height: 100vh;
}

body.age-locked {
  overflow: hidden;
}

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 {
  color: var(--ivory);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ivory);
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

h3 {
  font-size: 1.35rem;
}

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

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

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(12px);
  background: rgba(15, 16, 18, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

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

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius);
}

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

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  margin: 4px auto;
}

/* 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 var(--gold);
  background: var(--gold);
  color: #14110c;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: #14110c;
}

.btn-outline {
  background: transparent;
  color: var(--gold-soft);
}

.btn-outline:hover {
  background: rgba(196, 163, 90, 0.12);
  color: var(--ivory);
}

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

.btn-ghost:hover {
  color: var(--ivory);
  background: transparent;
  border-color: transparent;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 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;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 13, 16, 0.35) 0%, rgba(12, 13, 16, 0.55) 40%, rgba(12, 13, 16, 0.92) 100%),
    linear-gradient(90deg, rgba(12, 13, 16, 0.7) 0%, rgba(12, 13, 16, 0.25) 55%, rgba(12, 13, 16, 0.45) 100%);
}

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

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 700;
  color: var(--ivory);
  margin: 0 0 0.85rem;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.05rem;
  max-width: 34rem;
  color: #cfc8bc;
  margin-bottom: 1.75rem;
}

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

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

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

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

.section-head p {
  margin-bottom: 0;
}

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

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

.panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.panel + .panel {
  margin-top: 1rem;
}

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

.list-clean li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.list-clean li:last-child {
  border-bottom: 0;
}

.list-clean strong {
  color: var(--ivory);
  font-weight: 500;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  cursor: pointer;
  padding: 0;
  display: block;
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
}

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

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

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

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

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

.contact-card h3 {
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.35rem;
}

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

.hours-note {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Accordion */
.accordion {
  border-top: 1px solid var(--line);
}

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

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

.accordion-trigger::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}

.accordion-item.open .accordion-trigger::after {
  transform: rotate(-135deg);
}

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

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

/* CTA band */
.cta-band {
  background:
    linear-gradient(135deg, rgba(196, 163, 90, 0.12), transparent 55%),
    var(--bg-elevated);
  border-block: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

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

.cta-inner h2 {
  margin-bottom: 0.4rem;
}

.cta-inner p {
  margin: 0;
  max-width: 420px;
}

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

.page-hero h1 {
  margin-bottom: 0.6rem;
}

.page-hero p {
  max-width: 640px;
  margin: 0;
}

.prose {
  max-width: 760px;
}

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

.prose h3 {
  margin-top: 1.5rem;
}

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

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

/* Vacancies / partnership */
.job-list {
  display: grid;
  gap: 1rem;
}

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

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.form label {
  font-size: 0.88rem;
  color: var(--ivory);
  font-weight: 500;
}

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

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

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.form-success {
  display: none;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  background: rgba(196, 163, 90, 0.08);
  color: var(--ivory);
}

.form-success.show {
  display: block;
  animation: fadeIn 0.35s var(--ease);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
  background: #0c0d10;
}

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

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

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.footer-brand p {
  margin-top: 0.5rem;
  font-size: 0.92rem;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

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

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

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

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

/* Overlays */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 9, 11, 0.88);
  backdrop-filter: blur(6px);
}

.overlay.active {
  display: flex;
  animation: fadeIn 0.25s var(--ease);
}

.modal {
  width: min(100%, 460px);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  text-align: center;
}

.modal h2 {
  font-size: 1.75rem;
}

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

.modal .btn-group {
  justify-content: center;
}

.lightbox-modal {
  width: min(100%, 960px);
  padding: 0;
  background: transparent;
  border: 0;
  position: relative;
}

.lightbox-modal img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
  border: 1px solid var(--line);
}

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

/* Cookie bar */
.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: 1.1rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.cookie-bar.active {
  display: block;
  animation: rise 0.4s var(--ease);
}

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

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  border-radius: var(--radius);
}

.dropdown-panel {
  margin-top: 0.5rem;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  padding: 0.5rem;
}

.dropdown-panel a,
.dropdown-panel button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 0.85rem;
  background: transparent;
  border: 0;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.dropdown-panel a:hover,
.dropdown-panel button:hover {
  color: var(--ivory);
  background: rgba(196, 163, 90, 0.08);
}

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

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

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

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

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(15, 16, 18, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 600px) {
  .brand-tag {
    display: none;
  }

  .hero {
    min-height: 78svh;
  }

  .btn {
    width: 100%;
  }

  .btn-group {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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