:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #5d574d;
  --paper: #fff9df;
  --gold: #f5d414;
  --gold-soft: #fff2a6;
  --charcoal: #111111;
  --line: rgba(17, 17, 17, 0.14);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 249, 223, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--charcoal);
  color: var(--gold);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.language-switcher {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  background: var(--white);
}

.language-switcher button {
  min-width: 44px;
  min-height: 38px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 800;
}

.language-switcher button:last-child {
  border-right: 0;
}

.language-switcher button.active {
  background: var(--charcoal);
  color: var(--gold);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 720px);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 77px);
  padding: clamp(32px, 6vw, 88px) clamp(18px, 6vw, 86px) 48px;
  background:
    linear-gradient(115deg, rgba(245, 212, 20, 0.9), rgba(255, 249, 223, 0.76) 55%),
    var(--paper);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.95;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 9vw, 7.7rem);
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
}

.lead {
  max-width: 670px;
  color: #302c25;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions,
.poster-download {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid var(--charcoal);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--charcoal);
  color: var(--gold);
}

.button-secondary {
  background: transparent;
  color: var(--charcoal);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 190px));
  gap: 14px;
  margin: 34px 0 0;
}

.quick-info div {
  padding: 18px;
  background: var(--charcoal);
  border-radius: 8px;
  color: var(--gold);
}

.quick-info dt {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info dd {
  margin: 6px 0 0;
  font-size: 2.1rem;
  font-weight: 800;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(18px 18px 0 rgba(17, 17, 17, 0.12));
}

.services,
.contact,
.reservation,
.poster-download,
.flyer-section {
  padding: clamp(48px, 8vw, 92px) clamp(18px, 6vw, 86px);
}

.services {
  background: var(--white);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article {
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf2;
}

.service-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  background: var(--gold);
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  font-weight: 800;
}

.service-grid h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 520px);
  gap: 32px;
  align-items: start;
  background: var(--charcoal);
  color: var(--white);
}

.contact .eyebrow,
.contact p {
  color: var(--gold-soft);
}

.contact p {
  max-width: 500px;
  line-height: 1.6;
}

.contact-list {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.contact-list a {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-list span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
}

.reservation {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 560px);
  gap: 32px;
  align-items: start;
  background: #fffdf2;
}

.reservation-copy p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
}

.reservation-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 2px solid var(--charcoal);
  border-radius: 8px;
  background: var(--white);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.reservation-form label {
  font-size: 0.86rem;
  font-weight: 800;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffef8;
  color: var(--ink);
  font: inherit;
}

.reservation-form textarea {
  resize: vertical;
}

.reservation-form button {
  width: 100%;
  cursor: pointer;
}

.reservation-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.success {
  color: #17663a;
}

.form-status.error {
  color: #9f1d1d;
}

.flyer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 390px);
  gap: 32px;
  align-items: center;
  background: var(--white);
}

.flyer-section p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
}

.flyer-section img {
  display: block;
  width: 100%;
  border: 8px solid var(--charcoal);
  border-radius: 8px;
  background: var(--gold);
}

.poster-download {
  justify-content: center;
  background: var(--gold);
  text-align: center;
}

.poster-download p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

footer {
  padding: 22px clamp(18px, 6vw, 86px);
  background: var(--charcoal);
  color: var(--gold);
  text-align: center;
}

footer p {
  margin: 0;
  font-weight: 800;
}

.admin-panel {
  padding: clamp(42px, 7vw, 72px) clamp(18px, 5vw, 56px);
}

.admin-panel h1 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.admin-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.admin-controls input {
  min-height: 48px;
  min-width: min(100%, 320px);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.reservation-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.reservation-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.reservation-table th,
.reservation-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.reservation-table th {
  background: var(--charcoal);
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.reservation-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .hero,
  .contact,
  .reservation,
  .flyer-section {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    max-height: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .language-switcher {
    width: 100%;
  }

  .language-switcher button {
    flex: 1;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3.05rem;
  }

  .quick-info,
  .service-grid,
  .form-split {
    grid-template-columns: 1fr;
  }
}
