:root {
  --ink: #151515;
  --muted: #66645f;
  --line: #ded7ca;
  --cream: #fbf8f1;
  --white: #ffffff;
  --gold: #b7893c;
  --green: #175d50;
  --coral: #c85f48;
  --blue: #244e73;
  --shadow: 0 18px 50px rgba(32, 28, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 248, 241, 0.92);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  background: #191034;
  border-radius: 8px;
  border: 1px solid rgba(183, 137, 60, 0.45);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #2f2e2b;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(18px, 4vw, 56px) 34px;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #164d46, #633824 48%, #181818);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28) 56%, rgba(0, 0, 0, 0.5)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 50%);
}

.hero-content,
.stats-panel {
  position: relative;
}

.hero-content {
  max-width: 760px;
  padding-bottom: 96px;
}

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

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

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(58px, 10vw, 126px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
}

.button.ghost {
  color: var(--green);
  background: transparent;
  border: 1px solid rgba(23, 93, 80, 0.28);
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(780px, 100%);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stats-panel div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.stats-panel div:last-child {
  border-right: 0;
}

.stats-panel strong {
  display: block;
  color: var(--green);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.stats-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 82px clamp(18px, 4vw, 56px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: 34px;
  align-items: end;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-band p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-tag {
  white-space: nowrap;
  padding: 10px 12px;
  color: var(--blue);
  background: #e7eff5;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.venue-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(32, 28, 20, 0.08);
}

.venue-photo {
  position: relative;
  height: 230px;
  background: linear-gradient(135deg, #175d50, #b7893c 52%, #c85f48);
}

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

.venue-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.48), transparent);
}

.venue-body {
  padding: 20px;
}

.venue-body p {
  color: var(--muted);
  line-height: 1.6;
}

.venue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  padding: 7px 10px;
  color: var(--green);
  background: #edf5f1;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.service-band {
  background: #162622;
  color: var(--white);
}

.service-band .eyebrow {
  color: #dfb35f;
}

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

.service-grid article {
  min-height: 240px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.service-grid span {
  display: inline-block;
  margin-bottom: 48px;
  color: #dfb35f;
  font-weight: 800;
}

.service-grid p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.dashboard {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.panel-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  background: #f6f0e5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: #3a3834;
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfc5b5;
  border-radius: 8px;
  padding: 0 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(183, 137, 60, 0.24);
  border-color: var(--gold);
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: 28px;
  align-items: start;
}

.booking-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(32, 28, 20, 0.08);
}

.contact-card strong {
  color: var(--green);
}

.contact-card a {
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.booking-preview {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
}

.booking-preview span {
  color: rgba(255, 255, 255, 0.78);
}

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

.booking-form label:first-child,
.booking-form .button {
  grid-column: 1 / -1;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 26px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

footer strong {
  color: var(--white);
}

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

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .intro-band,
  .booking {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hero {
    min-height: 760px;
    padding-top: 150px;
  }

  .hero-content {
    padding-bottom: 32px;
  }

  .stats-panel,
  .venue-grid,
  .service-grid,
  .panel-form,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .stats-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-panel div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-tag {
    white-space: normal;
  }
}
