:root {
  --ink: #24152e;
  --indigo: #430075;
  --plum: #5d4770;
  --sage: #768b78;
  --moss: #405242;
  --clay: #b26446;
  --paper: #fbf7f0;
  --warm: #efe5d7;
  --white: #fffdf8;
  --line: rgba(36, 21, 46, 0.16);
  --shadow: 0 22px 60px rgba(36, 21, 46, 0.16);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.sr-only,
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(251, 247, 240, 0.9);
  border-bottom: 1px solid rgba(36, 21, 46, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 92px;
  max-height: 76px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--plum);
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.email-link:hover {
  color: var(--indigo);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(27, 17, 32, 0.78), rgba(27, 17, 32, 0.25) 52%, rgba(27, 17, 32, 0.05)),
    linear-gradient(0deg, rgba(27, 17, 32, 0.42), rgba(27, 17, 32, 0.05) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(44px, 8vw, 94px) clamp(18px, 8vw, 108px);
  color: var(--white);
}

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

.hero .eyebrow {
  color: #f2b18e;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 9vw, 7.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

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

.hero p {
  max-width: 640px;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
}

.hero-actions,
.section-heading,
.intro,
.space-feature,
.event-types,
.garden-feature,
.gallery,
.inquiry,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.64);
  background: rgba(255, 253, 248, 0.08);
}

.button:hover {
  transform: translateY(-1px);
}

.band {
  padding-block: clamp(70px, 10vw, 130px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(32px, 7vw, 90px);
}

.intro-copy {
  columns: 2 260px;
  column-gap: 42px;
  color: var(--plum);
  font-size: 1.05rem;
}

.space-feature,
.garden-feature,
.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(44px, 8vw, 96px);
}

.feature-image img,
.garden-feature img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image {
  height: 560px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-copy p,
.garden-copy p,
.inquiry-copy p,
.event-grid p {
  color: var(--plum);
}

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.amenity-list li {
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 9px;
  height: 9px;
  background: var(--sage);
  border-radius: 999px;
}

.event-types {
  width: 100%;
  max-width: none;
  background: var(--warm);
}

.event-types .section-heading,
.gallery .section-heading {
  width: min(1180px, calc(100% - 36px));
}

.compact {
  margin-bottom: 34px;
}

.event-grid {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.event-grid article {
  min-height: 250px;
  padding: 28px;
  background: var(--paper);
}

.garden-feature {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
}

.garden-feature img {
  min-height: 500px;
}

.gallery {
  width: 100%;
  max-width: none;
  background: #f6f0e7;
}

.gallery-grid {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 290px;
  gap: 14px;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.inquiry {
  align-items: start;
}

.email-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--indigo);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--moss);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 21, 46, 0.2);
  background: #fffaf3;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  color: var(--moss);
  background: rgba(118, 139, 120, 0.14);
  border: 1px solid rgba(118, 139, 120, 0.34);
  font-weight: 700;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(118, 139, 120, 0.26);
  border-color: var(--sage);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 30px;
  border-top: 1px solid var(--line);
  color: var(--plum);
}

.site-footer img {
  width: 120px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 800;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thanks {
  width: min(560px, calc(100% - 36px));
  text-align: center;
  padding: 54px 24px;
}

.thanks img {
  width: 150px;
  margin: 0 auto 34px;
}

.thanks h1 {
  font-size: clamp(3.5rem, 12vw, 6.8rem);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 12px 0;
  }

  .intro,
  .space-feature,
  .garden-feature,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .feature-image,
  .garden-feature img {
    height: 420px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 82px;
    max-height: 68px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin: 0 18px 44px;
    width: auto;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.8rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .event-grid article {
    min-height: auto;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-grid .wide {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
