:root {
  --bg: #f3f4f1;
  --bg-alt: #e8ebe6;
  --surface: #ffffff;
  --ink: #1a221e;
  --ink-soft: #4a554f;
  --line: #d5dbd4;
  --emerald: #0d3b2e;
  --emerald-mid: #1a5c48;
  --gold: #b8956c;
  --gold-soft: #d4b896;
  --danger: #8b2e2e;
  --shadow: 0 12px 40px rgba(13, 59, 46, 0.08);
  --radius: 4px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --max: 1120px;
  --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(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(184, 149, 108, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(13, 59, 46, 0.06), transparent 45%);
  min-height: 100vh;
}

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

a {
  color: var(--emerald-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.2;
  color: var(--emerald);
  margin: 0 0 0.6em;
}

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

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
}

h3 {
  font-size: 1.25rem;
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 244, 241, 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.65rem;
  text-decoration: none;
  color: var(--emerald);
}

.brand img {
  width: 44px;
  height: 44px;
}

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

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  color: var(--emerald);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.45rem 0.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--emerald);
  background: rgba(13, 59, 46, 0.06);
}

.site-nav .nav-cta {
  background: var(--emerald);
  color: #fff;
  margin-left: 0.35rem;
}

.site-nav .nav-cta:hover {
  background: var(--emerald-mid);
  color: #fff;
}

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

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

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

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

.btn-secondary {
  background: transparent;
  border-color: var(--emerald);
  color: var(--emerald);
}

.btn-secondary:hover {
  background: rgba(13, 59, 46, 0.06);
  color: var(--emerald);
}

.btn-gold {
  background: var(--gold);
  color: #1a221e;
}

.btn-gold:hover {
  background: var(--gold-soft);
  color: #1a221e;
}

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

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

.btn-group {
  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: #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(10, 28, 22, 0.35) 0%, rgba(10, 28, 22, 0.72) 55%, rgba(10, 28, 22, 0.9) 100%);
}

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

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: #fff;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-brand span {
  color: var(--gold-soft);
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.hero .hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
}

@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: 4.5rem 0;
}

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

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

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

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

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  padding: 0;
  background: transparent;
  text-align: left;
  width: 100%;
}

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

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

.gallery-item figcaption,
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(10, 28, 22, 0.85));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
}

/* Info strip / visit */
.visit-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.visit-copy .lead {
  font-size: 1.12rem;
  color: var(--ink);
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-panel h3 {
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
}

.contact-list .label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.contact-list a,
.contact-list address {
  color: var(--ink);
  font-style: normal;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--emerald-mid);
}

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

.hours-table td {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--ink);
  font-weight: 560;
}

.locations {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

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

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

/* Features / services list without cards clutter */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  border-top: 2px solid var(--gold);
  padding-top: 1rem;
}

.feature-list h3 {
  margin-bottom: 0.4rem;
}

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

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

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

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

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

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

.accordion-item.is-open .accordion-panel {
  display: block;
  animation: fadeIn 0.25s ease;
}

/* Page hero (inner) */
.page-hero {
  padding: 3.25rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

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

.page-hero p {
  max-width: 40rem;
  margin: 0;
}

.prose {
  max-width: 46rem;
}

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

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

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

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

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--emerald);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(13, 59, 46, 0.25);
  border-color: var(--emerald-mid);
}

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

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(26, 92, 72, 0.1);
  border: 1px solid var(--emerald-mid);
  border-radius: var(--radius);
  color: var(--emerald);
  margin-bottom: 1rem;
}

.form-success.is-visible {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Job list */
.job-list {
  display: grid;
  gap: 0.75rem;
}

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

.job-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  font-weight: 650;
  color: var(--emerald);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.job-item summary::after {
  content: "Részletek";
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.job-item[open] summary::after {
  content: "Bezárás";
}

.job-body {
  padding: 0 1.2rem 1.2rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 20, 16, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.is-open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.lightbox img {
  max-width: min(960px, 100%);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.95rem;
}

/* Age gate & cookie bar */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 20, 16, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

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

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

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

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

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

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--emerald);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 400;
  max-width: 640px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-bar.is-open {
  display: flex;
  animation: rise 0.35s ease;
}

.cookie-bar p {
  margin: 0;
  flex: 1 1 240px;
  font-size: 0.92rem;
}

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

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

.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

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

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

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

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

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

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

.responsible {
  font-size: 0.85rem;
  opacity: 0.85;
}

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

body.age-locked {
  overflow: hidden;
}

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

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

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

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    display: none;
  }

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

  .site-nav a {
    padding: 0.75rem 0.85rem;
  }

  .site-nav .nav-cta {
    margin: 0.35rem 0 0;
    text-align: center;
  }

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

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

  .gallery-grid .gallery-item:last-child {
    grid-column: 1 / -1;
  }
}

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