:root {
  --bg: #fbf8f1;
  --ink: #21160b;
  --muted: #5f4a35;
  --brand: #b56428;
  --brand-deep: #8f4314;
  --card: rgba(255, 250, 241, 0.72);
  --line: rgba(33, 22, 11, 0.12);
  --shadow: 0 18px 50px rgba(111, 62, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 8% 10%, #ffe5c8 0%, transparent 38%),
    radial-gradient(circle at 85% 20%, #f8d0a6 0%, transparent 33%),
    linear-gradient(160deg, #fffdfa 0%, #f8f1e7 52%, #fefbf6 100%);
  min-height: 100vh;
  line-height: 1.55;
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(194, 129, 73, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 129, 73, 0.1) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 100%);
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(251, 248, 241, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand img {
  width: 126px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

.book {
  border: 1px solid var(--brand);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  background: #fffaf2;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 5rem 0 2.4rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
  margin: 0.4rem 0 1rem;
}

h1 {
  font-size: clamp(2.2rem, 6.4vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.hero-copy > p {
  max-width: 62ch;
  color: #433122;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.3rem;
  flex-wrap: wrap;
}

.hero-booking {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.88);
  box-shadow: 0 12px 26px rgba(87, 54, 21, 0.12);
  padding: 0.95rem;
}

.hero-booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.hero-booking label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5a4028;
}

.hero-booking input,
.hero-booking select {
  margin-top: 0.35rem;
  width: 100%;
  border: 1px solid rgba(80, 52, 29, 0.25);
  border-radius: 10px;
  padding: 0.6rem 0.65rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.95);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff7ed;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: var(--line);
  background: rgba(255, 252, 244, 0.8);
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.5rem;
  background: var(--card);
  box-shadow: var(--shadow);
  align-self: center;
}

.card-kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

.card-phone {
  font-weight: 800;
  margin-top: 1.2rem;
  font-size: 1.15rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 1rem;
}

.stats article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  background: rgba(255, 251, 243, 0.7);
}

.stats span {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
}

.section-head {
  margin: 4.5rem 0 1.6rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.project {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 28px rgba(87, 54, 21, 0.11);
}

.project img {
  aspect-ratio: 16/10;
  object-fit: cover;
}

.project div {
  padding: 1rem 1.1rem 1.2rem;
}

.events-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.event {
  display: grid;
  grid-template-columns: 200px 1fr;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 252, 246, 0.86);
  overflow: hidden;
}

.event img {
  height: 100%;
  object-fit: cover;
}

.event div {
  padding: 1rem;
}

.booking {
  margin: 4rem auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(130deg, rgba(255, 253, 249, 0.9), rgba(249, 238, 222, 0.9));
  padding: 1.4rem;
}

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

.booking-form label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #513923;
}

.booking-form input {
  margin-top: 0.35rem;
  width: 100%;
  border: 1px solid rgba(80, 52, 29, 0.25);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
}

.booking-form select {
  margin-top: 0.35rem;
  width: 100%;
  border: 1px solid rgba(80, 52, 29, 0.25);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.4rem;
  background: rgba(251, 248, 241, 0.9);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.to-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

  .event img {
    max-height: 220px;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    display: none;
    width: min(290px, calc(100vw - 2rem));
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 250, 241, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .project-grid,
  .events-wrap,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-booking-grid {
    grid-template-columns: 1fr;
  }
}
