:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --surface-2: #242424;
  --gold: #c9a227;
  --gold-soft: #a8841f;
  --gold-muted: rgba(201, 162, 39, 0.15);
  --text: #f3efe6;
  --text-muted: #a39e94;
  --border: #2e2e2e;
  --danger: #b33a3a;
  --radius: 4px;
  --max: 1120px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 162, 39, 0.08), transparent),
    linear-gradient(180deg, #141414 0%, var(--bg) 40%);
  min-height: 100vh;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: #e0bc45;
}

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

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

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.brand:hover {
  color: var(--text);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.25rem;
}

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

.nav-list a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.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);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3.5rem;
  max-width: 640px;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.hero__lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 34ch;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}

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

.btn--primary {
  background: var(--gold);
  color: #121212;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #dbb433;
  color: #121212;
}

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

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--gold-muted);
  color: #e0bc45;
}

.btn--danger {
  background: transparent;
  border-color: var(--danger);
  color: #e07070;
}

.btn--danger:hover {
  background: rgba(179, 58, 58, 0.15);
}

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

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

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

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

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

/* About / intro */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.intro-text p {
  color: var(--text-muted);
  margin: 0 0 1.1rem;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

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

.feature-list li {
  padding: 1rem 1.15rem;
  background: var(--surface);
  border-left: 3px solid var(--gold);
}

.feature-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.feature-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.gallery figure {
  margin: 0;
  background: var(--surface);
  overflow: hidden;
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

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

/* CTA band */
.cta-band {
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.12), transparent 55%),
    var(--surface);
  border-block: 1px solid var(--border);
  text-align: center;
  padding: 3.5rem 1rem;
}

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

.cta-band p {
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
  max-width: 42ch;
}

.cta-band .hero__actions {
  justify-content: center;
}

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

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 1rem;
  color: var(--gold);
}

.contact-card dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-card dt {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-card dd {
  margin: 0;
}

.contact-card a {
  color: var(--text);
}

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

.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(--border);
}

.hours-table th {
  font-weight: 600;
  color: var(--text-muted);
}

/* Locations accordion */
.accordion {
  display: grid;
  gap: 0.5rem;
}

.accordion__item {
  border: 1px solid var(--border);
  background: var(--surface);
}

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

.accordion__btn::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.accordion__item.is-open .accordion__btn::after {
  content: "−";
}

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

.accordion__item.is-open .accordion__panel {
  display: block;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Page hero (inner) */
.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.06), transparent);
}

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

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

.content-block {
  padding: 3rem 0 4rem;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 2rem 0 0.75rem;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p,
.content-block li {
  color: var(--text-muted);
}

.content-block ul {
  padding-left: 1.2rem;
}

.content-block li {
  margin-bottom: 0.4rem;
}

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

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

.job-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.35rem;
}

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

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

.form-panel {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.form-panel h3 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: 1.4rem;
}

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

.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

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

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--gold);
  outline: none;
}

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

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: var(--gold-muted);
  border: 1px solid var(--gold);
  color: var(--text);
}

.form-success.is-visible {
  display: block;
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

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

.site-footer p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

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

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

.footer-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

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

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

/* Modals / overlays */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.modal {
  width: min(100%, 440px);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
}

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

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

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

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

.cookie-bar.is-active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.cookie-bar p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.cookie-bar .modal__actions {
  justify-content: flex-start;
}

body.no-scroll {
  overflow: hidden;
}

/* Legal notice strip */
.legal-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legal-strip strong {
  color: var(--gold);
}

/* Map-like location chips */
.loc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.loc-chip {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: var(--radius);
  font-family: var(--font-body);
}

.loc-chip.is-active,
.loc-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.loc-detail {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  min-height: 5.5rem;
}

.loc-detail strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.35rem;
}

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

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

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    border-bottom: 1px solid var(--border);
    display: none;
    padding: 0.75rem 1rem 1.25rem;
  }

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

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

  .nav-list a {
    display: block;
    padding: 0.7rem 0.25rem;
  }

  .hero {
    min-height: 70vh;
  }

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

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