:root {
  --ink: #17201c;
  --forest: #244b39;
  --forest-deep: #10251d;
  --moss: #6f8266;
  --brass: #c89d43;
  --brass-light: #efd28c;
  --stone: #f3efe7;
  --paper: #fffaf1;
  --line: rgba(23, 32, 28, .14);
  --white: #fff;
  --shadow: 0 24px 70px rgba(16, 37, 29, .18);
  --radius: 8px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--stone);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
  min-width: 0;
  transition: background .28s var(--ease), box-shadow .28s var(--ease), padding .28s var(--ease);
}

.site-nav.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(16, 37, 29, .92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.nav-phone {
  text-decoration: none;
  opacity: .92;
}

.nav-links a:hover,
.nav-phone:hover {
  color: var(--brass-light);
}

.nav-phone {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  padding: clamp(82px, 12vh, 120px) clamp(18px, 5vw, 72px) clamp(18px, 4vh, 34px);
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 37, 29, .88) 0%, rgba(16, 37, 29, .64) 43%, rgba(16, 37, 29, .14) 100%),
    linear-gradient(0deg, rgba(16, 37, 29, .82) 0%, rgba(16, 37, 29, .08) 52%);
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-main {
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(1.04) contrast(1.02);
}

.hero-side {
  right: clamp(18px, 5vw, 74px);
  width: min(24vw, 330px);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius);
  z-index: 2;
}

.hero-side-top {
  top: 132px;
  aspect-ratio: 4 / 3;
}

.hero-side-bottom {
  bottom: 130px;
  aspect-ratio: 3 / 4;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  align-self: end;
  padding-bottom: 0;
  margin-bottom: clamp(26px, 6vh, 70px);
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .96;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(58px, 9vw, 126px);
}

h2 {
  font-size: clamp(38px, 5vw, 76px);
}

h3 {
  font-size: 34px;
}

.hero-copy {
  max-width: 640px;
  margin: clamp(14px, 2.7vh, 24px) 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(18px, 4vh, 34px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

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

.button-primary {
  background: var(--brass-light);
  color: var(--forest-deep);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, .38);
  color: var(--white);
}

.hero-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.hero-facts div {
  min-width: 0;
  padding: clamp(10px, 2.2vh, 20px) 24px 0 0;
}

.hero-facts strong {
  display: block;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
}

.hero-facts span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

.section {
  padding: clamp(74px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 44px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 90px);
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-self: end;
}

.intro-grid p,
.pavilion-content p,
.subsite-lead,
.details-card p,
.space-body p,
.price-card p {
  margin: 0;
  color: rgba(23, 32, 28, .74);
  font-size: 17px;
  line-height: 1.75;
}

.spaces-section {
  background: linear-gradient(180deg, var(--stone), #e7e0d3);
}

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

.space-card,
.price-card,
.details-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, .8);
  box-shadow: 0 18px 48px rgba(16, 37, 29, .09);
}

.space-card.featured {
  transform: translateY(-20px);
}

.space-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--forest-deep);
}

.space-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.space-card:hover img {
  transform: scale(1.06);
}

.space-body {
  padding: 28px;
}

.space-kicker {
  color: var(--moss);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.space-body h3 {
  margin-top: 8px;
}

.space-body p {
  margin-top: 16px;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: var(--brass);
}

.pavilion {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--forest-deep);
  color: var(--white);
}

.pavilion-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.pavilion-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pavilion-content p {
  color: rgba(255, 255, 255, .76);
  margin-top: 24px;
}

.prices-section {
  background: var(--paper);
}

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

.price-card {
  padding: 30px;
}

.price-card.wide {
  background: var(--forest);
  color: var(--white);
}

.price-card h3 {
  margin-bottom: 24px;
}

.price-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.price-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.price-card.wide dl div {
  border-bottom-color: rgba(255, 255, 255, .18);
}

.price-card dt,
.price-card dd {
  margin: 0;
}

.price-card dt {
  color: rgba(23, 32, 28, .62);
  font-weight: 700;
}

.price-card.wide dt,
.price-card.wide p {
  color: rgba(255, 255, 255, .72);
}

.price-card dd {
  text-align: right;
  font-weight: 900;
}

.price-card p {
  margin-top: 20px;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr .9fr;
  gap: 12px;
  padding-top: 18px;
  background: var(--stone);
}

.photo-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-strip img:nth-child(even) {
  margin-top: 46px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr);
  gap: 40px;
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 72px) 32px;
  color: var(--white);
  background: #0b1713;
}

.footer-links {
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: start;
  font-size: 17px;
  font-weight: 800;
}

.footer-links a {
  color: var(--brass-light);
  text-decoration: none;
}

.footer-links span {
  color: rgba(255, 255, 255, .7);
}

.copyright {
  grid-column: 1 / -1;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--brass-light);
  color: var(--forest-deep);
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.subsite-hero {
  position: relative;
  min-height: 72vh;
  min-height: 72svh;
  min-height: 72dvh;
  display: grid;
  align-items: end;
  padding: clamp(86px, 12vh, 120px) clamp(18px, 5vw, 72px) clamp(34px, 7vh, 54px);
  color: var(--white);
  background: var(--forest-deep);
  overflow: hidden;
}

.subsite-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(16, 37, 29, .88), rgba(16, 37, 29, .36)), linear-gradient(0deg, rgba(16, 37, 29, .76), transparent 62%);
}

.subsite-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subsite-hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, 100%);
}

.subsite-lead {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(17px, 1.6vw, 21px);
}

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

.subsite-actions .button-secondary {
  background: rgba(255, 255, 255, .1);
}

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

.details-card {
  padding: 28px;
}

.details-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.gallery-section {
  background: var(--paper);
}

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

.gallery-button {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--forest-deep);
}

.gallery-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .5s var(--ease);
}

.gallery-button:hover img {
  transform: scale(1.05);
  filter: brightness(.88);
}

.gallery-button span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: var(--white);
  text-align: left;
  font-size: 14px;
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .48);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(6, 12, 10, .9);
}

.modal.is-open {
  display: grid;
}

.modal img {
  max-width: min(1120px, 94vw);
  max-height: 86vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.legacy-redirect {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  color: var(--white);
  background: linear-gradient(rgba(16, 37, 29, .74), rgba(16, 37, 29, .74)), url("c/images/1.jpg") center / cover;
}

.legacy-box {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(16, 37, 29, .74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.legacy-box p {
  line-height: 1.7;
}

@media (max-width: 1040px) {
  .hero-side {
    display: none;
  }

  .hero-content {
    width: min(720px, 100%);
  }

  .intro,
  .pavilion,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .space-grid,
  .price-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .space-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-nav {
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    overflow-x: auto;
    flex: 1 1 auto;
    max-width: none;
    padding: 7px 0;
    gap: 14px;
    font-size: 13px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding: 72px 16px 16px;
  }

  .hero-content {
    margin-bottom: clamp(16px, 4vh, 28px);
  }

  h1 {
    font-size: clamp(42px, 14vw, 66px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

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

  .hero-copy,
  .subsite-lead {
    font-size: 15px;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

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

  .hero-facts div {
    padding: 10px 8px 0 0;
  }

  .hero-facts strong {
    font-size: 19px;
  }

  .hero-facts span {
    font-size: 11px;
    line-height: 1.3;
  }

  .section {
    padding: 58px 16px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .space-body,
  .price-card,
  .details-card {
    padding: 22px;
  }

  .photo-strip img,
  .photo-strip img:nth-child(even) {
    height: 260px;
    margin-top: 0;
  }

  .price-card dl div {
    display: grid;
    gap: 6px;
  }

  .price-card dd {
    text-align: left;
  }

  .subsite-hero {
    min-height: 78vh;
    min-height: 78svh;
    min-height: 78dvh;
    padding: 86px 16px 34px;
  }

  .subsite-actions {
    margin-top: 22px;
  }
}

@media (max-width: 420px) {
  .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: .11em;
  }

  .hero-copy {
    max-width: 31rem;
  }

  .hero-actions .button {
    flex: 1 1 145px;
  }
}

@media (max-height: 820px) and (min-width: 761px) {
  .site-nav {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding-top: 78px;
    padding-bottom: 16px;
  }

  h1 {
    font-size: clamp(50px, 7.4vw, 88px);
  }

  .hero-copy {
    max-width: 590px;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.46;
  }

  .hero-content {
    margin-bottom: 24px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .button {
    min-height: 44px;
  }

  .hero-facts strong {
    font-size: clamp(20px, 2.5vw, 28px);
  }

  .hero-facts span {
    font-size: 12px;
  }
}

@media (max-height: 640px) and (max-width: 760px) {
  .site-nav {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 12px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-copy {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.38;
  }

  .hero-content {
    margin-bottom: 14px;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .button {
    min-height: 40px;
    font-size: 13px;
  }

  .hero-facts div {
    padding-top: 8px;
  }

  .hero-facts strong {
    font-size: 17px;
  }

  .hero-facts span {
    font-size: 10px;
  }
}

@media (max-height: 560px) and (max-width: 760px) {
  .hero-copy {
    display: none;
  }

  .hero-content {
    margin-bottom: 12px;
  }
}
