:root {
  --bg: #f6f0dc;
  --text: #171717;
  --muted: #4c4c4c;
  --card: rgba(255, 251, 240, 0.9);
  --line: rgba(23, 23, 23, 0.16);
  --accent: #1479bf;
  --accent-soft: #ffe7a6;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Heebo", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 86% 8%, rgba(22, 121, 191, 0.18), transparent 38%),
    radial-gradient(circle at 8% 12%, rgba(226, 40, 57, 0.14), transparent 34%),
    linear-gradient(180deg, #fff7de 0%, var(--bg) 100%);
  line-height: 1.72;
}

.top-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(0, 0, 0, 0.32) 0.4px, transparent 0.4px);
  background-size: 5px 5px;
}

.lang-switch {
  max-width: 1040px;
  margin: 1rem auto 0;
  padding: 0 1.25rem;
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.lang-link,
.lang-current {
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--line);
}

.lang-link {
  text-decoration: none;
  color: var(--text);
  background: #fff;
}

.lang-current {
  background: var(--accent-soft);
  color: #7f1e2a;
}

.hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 4.2rem 1.25rem 2.1rem;
}

.kicker {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #606060;
  font-size: 0.82rem;
  font-weight: 700;
}

h1 {
  margin: 0.4rem 0 0.9rem;
  font-size: clamp(2.1rem, 8vw, 5rem);
  line-height: 0.95;
}

.lead {
  max-width: 64ch;
  margin: 0 0 1.1rem;
  font-size: clamp(1.06rem, 2.2vw, 1.3rem);
  background: var(--accent-soft);
  border-inline-start: 6px solid var(--accent);
  padding: 0.8rem 1rem;
  border-radius: 12px;
}

.cta {
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 0.64rem 1.2rem;
  font-weight: 700;
}

.layout {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  backdrop-filter: blur(2px);
}

.book-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.book-top .order {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.25rem 0.55rem 0.25rem 0.2rem;
}

.book-top .order h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  margin-bottom: 0.95rem;
}

.book-top .order .link-list p {
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.9;
}

.cover {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cover img {
  width: min(100%, 320px);
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

h2 {
  margin: 0 0 0.85rem;
  font-size: 1.45rem;
  line-height: 1.2;
}

p {
  margin: 0 0 0.9rem;
}

p:last-child {
  margin-bottom: 0;
}

.link-list a,
.more-books a,
.source a {
  color: #126fb0;
  font-weight: 700;
}

.review {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin-top: 0.9rem;
}

.review:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.source {
  color: var(--muted);
  font-weight: 600;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.book-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.72);
}

.book-item img {
  width: 84px;
  height: 118px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.book-item p {
  margin: 0 0 0.35rem;
  font-weight: 500;
}

.book-item a {
  font-weight: 700;
}

.event-sub {
  font-weight: 600;
}

.event-gallery {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.event-gallery figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.event-gallery img,
.event-gallery video {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #000;
}

.booking-form {
  display: grid;
  gap: 0.65rem;
}

.booking-form label {
  font-weight: 500;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.75rem;
}

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

.booking-form input:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(13, 90, 79, 0.35);
  outline-offset: 1px;
  border-color: var(--accent);
}

.booking-form button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 1.15rem;
  font: inherit;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
}

.field-error {
  min-height: 1.1em;
  color: #a41f1f;
  font-size: 0.9rem;
  margin-top: -0.35rem;
}

@media (min-width: 760px) {
  .event-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 900px) {
  .layout {
    grid-template-columns: 1fr 1fr;
  }

  .book-top,
  .about,
  .reviews,
  .more-books,
  .event,
  .booking {
    grid-column: 1 / -1;
  }

  .book-top {
    grid-template-columns: 320px 1fr;
    align-items: center;
  }

  .book-top .order {
    padding-inline-start: 2.1rem;
    padding-inline-end: 0.8rem;
  }

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

@media (max-width: 760px) {
  .top-glow {
    opacity: 0.08;
  }
}
