/* Separate visual identity from the printed flyer:
   Editorial fonts: Italiana + DM Sans
   Palette: midnight ink, warm ivory, champagne, and clay
*/

:root {
  --ink: #0f0f10;
  --ink-soft: #2a2a2d;
  --ivory: #f7f4ee;
  --paper: #fffdfa;
  --champagne: #c8a45a;
  --clay: #b88a3b;
  --mist: #f0ece4;
  --line: rgba(15, 15, 16, 0.12);
  --shadow: 0 24px 70px rgba(17, 24, 30, 0.15);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Nunito Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  background: var(--paper);
  color: var(--ink);
  padding: .8rem 1rem;
  text-decoration: none;
  border-radius: .2rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 4vw;
  color: white;
  transition: background .35s ease, box-shadow .35s ease, color .35s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: .65rem;
  text-decoration: none;
}

.brand-mark {
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: .04em;
}

.brand-address {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.site-nav a {
  position: relative;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.45rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header.scrolled .site-nav a,
.site-header.scrolled .brand,
.site-header.scrolled .menu-button {
  color: var(--ink);
}

.site-header.scrolled .nav-cta {
  color: var(--champagne);
}

.nav-cta {
  border: 1px solid currentColor;
  padding: .8rem 1rem;
  color: var(--champagne);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  padding: 12px 8px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 7px 0;
  transition: transform .25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: none;
  transform: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 15, 20, .38) 0%, rgba(8, 15, 20, .16) 48%, rgba(8, 15, 20, .04) 75%),
    linear-gradient(0deg, rgba(8, 15, 20, .18) 0%, transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, 84vw);
  margin: 0 0 11vh 8vw;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--champagne);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #e7c98b;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 6.2vw, 5.8rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.02em;
}

.hero h1 em {
  color: #d7b067;
  font-style: normal;
}

.hero-copy {
  max-width: 620px;
  margin: 2rem 0 2.2rem;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.hero-actions,
.details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

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

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

.button-outline-light {
  color: white;
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
}

.button-dark {
  color: #f7f4ee;
  background: var(--ink);
}

.button-outline-dark {
  color: var(--champagne);
  border-color: var(--champagne);
  background: transparent;
}

.hero-price {
  position: absolute;
  right: 5vw;
  bottom: 10vh;
  z-index: 2;
  display: grid;
  text-align: right;
}

.hero-price span {
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-price strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.9rem);
  font-weight: 400;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 2.2vw;
  bottom: 6vh;
  display: grid;
  justify-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.84);
  font-size: .62rem;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,.55);
}

.facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #101011;
  color: #f8f5ef;
}

.facts div {
  min-height: 156px;
  display: grid;
  place-content: center;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.11);
}

.facts div:last-child {
  border: 0;
}

.facts strong {
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.9rem);
  font-weight: 500;
  line-height: 1;
  color: var(--champagne);
}

.facts span {
  margin-top: .65rem;
  color: rgba(255,255,255,.62);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 7vw;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  background: var(--ivory);
}

.story h2,
.section-heading h2,
.feature-copy h2,
.details h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.015em;
}

.story .lead {
  margin: 2rem 0 1.1rem;
  color: var(--ink-soft);
  font-size: .95rem;
}

.story-copy > p:not(.eyebrow):not(.lead) {
  color: #536069;
}

.text-link {
  display: inline-flex;
  gap: .7rem;
  margin-top: 1rem;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: .3rem;
}

.story-image {
  margin: 0;
}

.story-image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #f7f4ee;
  box-shadow: var(--shadow);
}

.story-image figcaption {
  margin-top: .8rem;
  color: #68747b;
  font-size: .8rem;
}

.mood {
  position: relative;
  min-height: min(78vh, 780px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.mood > img,
.mood-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.mood > img {
  object-fit: cover;
}

.mood-overlay {
  background: linear-gradient(rgba(11,19,24,.08), rgba(11,19,24,.26));
}

.mood-copy {
  position: relative;
  z-index: 2;
  width: min(900px, 82vw);
  color: white;
  text-align: center;
}

.mood blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.8vw, 4.1rem);
  line-height: 1.05;
}

.highlights {
  background: var(--paper);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered p:last-child {
  color: #6f797e;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.highlight-card {
  min-height: 300px;
  padding: 2.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, transform .25s ease;
}

.highlight-card:hover {
  background: var(--ivory);
  transform: translateY(-4px);
}

.highlight-card > span {
  color: var(--champagne);
  font-family: var(--display);
  font-size: 1.4rem;
}

.highlight-card h3 {
  margin: 4rem 0 .8rem;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.08;
}

.highlight-card p {
  margin: 0;
  color: #667178;
}

.feature-split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 760px;
  background: #101011;
  color: #f8f5ef;
}

.feature-split.reverse {
  grid-template-columns: .85fr 1.15fr;
  background: var(--ivory);
  color: var(--ink);
}

.feature-split.reverse figure {
  order: 2;
}

.feature-split figure {
  margin: 0;
  min-height: 650px;
}

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

.feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(4rem, 8vw, 8rem);
}

.feature-copy p:last-child {
  max-width: 590px;
  color: rgba(255,255,255,.68);
  font-size: 1rem;
}

.feature-split.reverse .feature-copy p:last-child {
  color: #637078;
}

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


.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 15, 16, 0.08);
  padding: .55rem;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 15, 16, 0.06);
  cursor: zoom-in;
  min-height: auto;
}

.gallery-item.wide,
.gallery-item.tall {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background: #faf7f1;
  transition: transform .45s ease, filter .35s ease;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .42rem .65rem;
  color: #f8f5ef;
  background: rgba(15,15,16,.7);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.018);
  filter: brightness(.98);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: none;
}

.school-nearby {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 650px;
  background: #101011;
  color: #f8f5ef;
}

.school-nearby-image {
  margin: 0;
  min-height: 560px;
  background: #171718;
}

.school-nearby-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #171718;
}

.school-nearby-copy {
  display: grid;
  align-content: center;
  padding: clamp(4rem, 7vw, 7rem);
}

.school-nearby-copy h2 {
  margin: 0 0 1.5rem;
  max-width: 620px;
  color: #f8f5ef;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.015em;
}

.school-nearby-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(248,245,239,.76);
}

.school-nearby-copy .school-note {
  margin-top: 1.25rem;
  color: rgba(248,245,239,.5);
  font-size: .75rem;
}

.details {

  display: grid;
  grid-template-columns: .8fr 1.2fr;
  column-gap: clamp(3rem, 9vw, 10rem);
  row-gap: 3rem;
  background: var(--ivory);
}

.details-intro p:last-child {
  color: #647079;
}

.details-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.details-list div {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.details-list dt {
  color: #7c6b5a;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.details-list dd {
  margin: 0;
  font-size: .95rem;
}

.details-actions {
  grid-column: 2;
}

.contact {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: var(--paper);
}

.contact-photo {
  position: relative;
  min-height: 860px;
  overflow: hidden;
}

.contact-photo > img,
.contact-photo-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.contact-photo > img {
  object-fit: cover;
}

.contact-photo-shade {
  background: linear-gradient(0deg, rgba(11,18,24,.42), rgba(11,18,24,.03) 70%);
}

.contact-message {
  position: absolute;
  z-index: 2;
  left: 7vw;
  right: 7vw;
  bottom: 6rem;
  color: white;
}

.contact-message h2 {
  max-width: 780px;
}

.contact-message > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255,255,255,.84);
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin-top: 1.8rem;
}

.direct-contact a {
  color: white;
  font-size: .82rem;
  letter-spacing: .08em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.5);
}

.contact-form-wrap {
  padding: clamp(4rem, 7vw, 7rem);
  align-self: center;
}

.contact-form-wrap h2 {
  margin-bottom: 2.5rem;
}

form {
  display: grid;
  gap: 1.1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: .45rem;
}

label > span {
  color: #69747a;
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b8c0c3;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: .82rem .15rem;
  outline: 0;
  transition: border-color .2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--clay);
}

textarea {
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .6rem;
  margin-top: .4rem;
}

.consent input {
  width: 17px;
  height: 17px;
  margin-top: .18rem;
}

.consent span {
  color: #69747a;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.form-button {
  width: 100%;
  margin-top: .5rem;
}

.form-note {
  margin: 0;
  color: #818b90;
  font-size: .72rem;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 3rem 5vw 5rem;
  color: white;
  background: #10181e;
}

.site-footer > div:first-child {
  display: grid;
}

.footer-address {
  font-family: var(--display);
  font-size: 1.7rem;
}

.site-footer span:not(.footer-address),
.site-footer p {
  color: rgba(255,255,255,.53);
}

.footer-contact {
  display: grid;
  align-content: start;
  text-align: right;
}

.footer-contact a {
  color: var(--champagne);
  text-decoration: none;
}

.site-footer p {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: 1rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: .7rem;
}

.mobile-actions {
  display: none;
}

.lightbox {
  width: min(96vw, 1600px);
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(8, 8, 9, .94);
  backdrop-filter: blur(5px);
}

.lightbox-stage {
  position: relative;
  display: grid;
  justify-items: center;
  gap: .85rem;
}

.lightbox img {
  display: block;
  max-width: 86vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: min(86vw, 1100px);
  color: rgba(255,255,255,.82);
  text-align: center;
}

.lightbox-counter {
  color: var(--champagne);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  white-space: nowrap;
}

.lightbox-caption {
  font-size: .82rem;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 4;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(15,15,16,.38);
  color: white;
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 4;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(15,15,16,.42);
  color: white;
  font-family: Georgia, serif;
  font-size: 2.8rem;
  line-height: .8;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.lightbox-nav:hover {
  background: rgba(184,138,59,.78);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
  left: 1.25rem;
}

.lightbox-next {
  right: 1.25rem;
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}


@media (max-width: 1020px) {
  .menu-button {
    display: block;
    position: relative;
    z-index: 2;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.8rem;
    color: white;
    background: var(--ink);
    transform: translateY(-105%);
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-cta {
    font-family: var(--body) !important;
    font-size: .76rem !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
  }

  .site-header.menu-active {
    color: white;
  }

  .story,
  .school-nearby,
  .details,
  .contact {
    grid-template-columns: 1fr;
  }

  .school-nearby-image {
    min-height: auto;
  }

  .school-nearby-image img {
    height: auto;
    object-fit: contain;
  }

  .story-image img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }

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

  .feature-split,
  .feature-split.reverse {
    grid-template-columns: 1fr;
  }

  .feature-split.reverse figure {
    order: 0;
  }

  .feature-split figure {
    min-height: 520px;
  }

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

  .details-actions {
    grid-column: auto;
  }

  .contact-photo {
    min-height: 700px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 60px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 1.1rem;
  }

  .brand-address {
    display: none;
  }

  .hero {
    min-height: 900px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8,15,20,.34) 0%, rgba(8,15,20,.16) 75%),
      linear-gradient(90deg, rgba(8,15,20,.14), transparent);
  }

  .hero-content {
    width: auto;
    margin: 0 1.3rem 8rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .hero-price {
    left: 1.3rem;
    right: auto;
    bottom: 2rem;
    text-align: left;
  }

  .scroll-cue {
    display: none;
  }

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

  .facts div {
    min-height: 125px;
    border-bottom: 1px solid rgba(255,255,255,.11);
  }

  .facts div:last-child {
    grid-column: 1 / -1;
  }

  .section {
    padding: 5rem 1.25rem;
  }

  .story {
    gap: 3rem;
  }

  .story h2,
  .section-heading h2,
  .feature-copy h2,
  .details h2,
  .contact h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .mood {
    min-height: 620px;
  }

  .mood blockquote {
    font-size: 2.5rem;
  }

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

  .highlight-card {
    min-height: 250px;
  }

  .highlight-card h3 {
    margin-top: 2.7rem;
  }

  .feature-split figure {
    min-height: 420px;
  }

  .feature-copy {
    padding: 4rem 1.25rem;
  }

  .school-nearby-copy {
    padding: 4rem 1.25rem;
  }

  .school-nearby-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item img {
    max-height: none;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: .3rem;
  }

  .contact-photo {
    min-height: 650px;
  }

  .contact-message {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 3rem;
  }

  .contact-form-wrap {
    padding: 4.5rem 1.25rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem;
  }

  .footer-contact {
    text-align: left;
  }

  .mobile-actions {
    position: fixed;
    inset: auto 0 0;
    z-index: 45;
    display: grid;
    grid-template-columns: .8fr .8fr 1.6fr;
    min-height: 60px;
    background: var(--paper);
    box-shadow: 0 -1px 20px rgba(11,18,24,.14);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: var(--ink);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    border-right: 1px solid var(--line);
  }

  .mobile-actions a:last-child {
    color: white;
    background: var(--clay);
    border: 0;
  }
}


@media (max-width: 720px) {
  .lightbox img {
    max-width: 94vw;
    max-height: 78vh;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1.1rem;
    width: 50px;
    height: 50px;
    font-size: 2.3rem;
    transform: none;
  }

  .lightbox-nav:hover {
    transform: scale(1.04);
  }

  .lightbox-prev {
    left: calc(50% - 64px);
  }

  .lightbox-next {
    right: calc(50% - 64px);
  }

  .lightbox-close {
    top: .75rem;
    right: .75rem;
    width: 44px;
    height: 44px;
  }

  .lightbox-meta {
    padding: 0 1rem 4.4rem;
    display: grid;
    gap: .3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ---------------------------------------------------------
   SOFTER, FEMININE, COHESIVE TYPOGRAPHY SYSTEM
   Cormorant Garamond: all display headings and key numbers
   Nunito Sans: all body copy, navigation, buttons, and forms
---------------------------------------------------------- */

body {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0;
}

h1,
h2,
h3,
blockquote,
.brand-mark,
.facts strong,
.hero-price strong,
.footer-address {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.015em;
}

.hero h1 {
  font-size: clamp(3rem, 5.3vw, 5.15rem);
  line-height: .95;
  font-weight: 500;
}

.hero h1 em {
  color: #d7b067;
  font-style: italic;
  font-weight: 400;
}

.story h2,
.section-heading h2,
.feature-copy h2,
.details h2,
.contact h2,
.school-nearby-copy h2 {
  font-size: clamp(2.15rem, 3.55vw, 3.35rem);
  line-height: 1.06;
  font-weight: 500;
}

.mood blockquote {
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.08;
  font-style: italic;
  font-weight: 400;
}

.highlight-card h3 {
  font-size: 1.72rem;
  line-height: 1.14;
  font-weight: 500;
}

.brand-mark {
  font-size: 1.55rem;
  font-weight: 500;
}

.brand-address,
.site-nav a,
.button,
.eyebrow,
.facts span,
.details-list dt,
label > span,
.mobile-actions a {
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: .085em;
}

.eyebrow {
  font-size: .67rem;
  letter-spacing: .14em;
  color: var(--champagne);
}

.site-nav a {
  font-size: .72rem;
  letter-spacing: .08em;
}

.button {
  font-size: .7rem;
  letter-spacing: .085em;
  min-height: 50px;
  padding-inline: 1.25rem;
}

.hero-copy,
.story .lead,
.feature-copy p:last-child,
.school-nearby-copy > p:not(.eyebrow),
.contact-message > p:not(.eyebrow),
.details-intro p:last-child {
  font-size: .98rem;
  line-height: 1.78;
}

.story-copy > p,
.highlight-card p,
.details-list dd,
.form-note,
.school-note {
  font-family: var(--body);
}

.facts strong {
  font-size: clamp(1.65rem, 2.35vw, 2.55rem);
  font-weight: 500;
}

.hero-price strong {
  font-size: clamp(1.7rem, 2.3vw, 2.65rem);
}

input,
textarea,
select {
  font-family: var(--body);
  font-size: .94rem;
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .story h2,
  .section-heading h2,
  .feature-copy h2,
  .details h2,
  .contact h2,
  .school-nearby-copy h2 {
    font-size: clamp(2.15rem, 9vw, 3rem);
  }

  .mood blockquote {
    font-size: 2.35rem;
  }

  .site-nav a {
    font-family: var(--display);
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: 0;
  }
}


/* =========================================================
   HERO MOVE-IN BADGE
========================================================= */

.hero-badge {
  position: absolute;
  right: 4.8vw;
  top: 13vh;
  z-index: 3;
  width: 198px;
  height: 198px;
  display: grid;
  place-items: center;
  pointer-events: none;
  transform: rotate(7deg);
}

.hero-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,253,248,.98) 0 58%, rgba(243,233,210,.98) 58% 78%, rgba(200,164,90,.98) 78% 100%);
  clip-path: polygon(50% 0%, 58% 4%, 67% 1%, 74% 7%, 83% 5%, 88% 13%, 97% 15%, 99% 24%, 100% 33%, 95% 41%, 100% 50%, 95% 59%, 100% 67%, 99% 76%, 97% 85%, 88% 87%, 83% 95%, 74% 93%, 67% 99%, 58% 96%, 50% 100%, 42% 96%, 33% 99%, 26% 93%, 17% 95%, 12% 87%, 3% 85%, 1% 76%, 0% 67%, 5% 59%, 0% 50%, 5% 41%, 0% 33%, 1% 24%, 3% 15%, 12% 13%, 17% 5%, 26% 7%, 33% 1%, 42% 4%);
  box-shadow: 0 18px 42px rgba(0,0,0,.16);
}

.badge-inner {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: .55rem;
  background: rgba(255,252,246,.96);
  box-shadow: inset 0 0 0 1px rgba(200,164,90,.35);
}

.badge-mini {
  display: block;
  margin-bottom: .18rem;
  color: rgba(16,16,17,.6);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.badge-icon {
  display: block;
  color: var(--champagne);
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: .15rem;
}

.badge-text {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: .94;
  color: #101011;
}

.badge-sub {
  display: block;
  margin-top: .28rem;
  color: #b78a34;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.badge-sparkle {
  position: absolute;
  color: #d6b06a;
  font-size: .7rem;
  line-height: 1;
}

.badge-sparkle-1 {
  top: 18px;
  right: 18px;
}

.badge-sparkle-2 {
  bottom: 18px;
  left: 18px;
}

/* =========================================================
   GPS MAP SECTION
========================================================= */
00;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* =========================================================
   GPS MAP SECTION
========================================================= */

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

.map-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.2rem;
  align-items: stretch;
}

.map-embed,
.map-card {
  background: #fff;
  border: 1px solid rgba(15,15,16,0.08);
  box-shadow: 0 18px 40px rgba(15,15,16,.08);
}

.map-embed {
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
}

.map-card {
  display: grid;
}

.map-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f7f4ee;
}

.map-card-copy {
  padding: 1.6rem;
}

.map-card-copy h3 {
  margin: 0 0 .7rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
}

.map-card-copy p {
  margin: 0 0 1.2rem;
  color: #5b5d61;
}

@media (max-width: 1020px) {
  .map-layout {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    width: 164px;
    height: 164px;
    top: 11vh;
    right: 4vw;
  }

  .badge-inner {
    width: 110px;
    height: 110px;
  }

  .badge-mini {
    font-size: .44rem;
  }

  .badge-icon {
    font-size: 1.28rem;
  }

  .badge-text {
    font-size: 1.18rem;
  }

  .badge-sub {
    font-size: .62rem;
  }
}

@media (max-width: 720px) {
  .hero-badge {
    top: .8rem;
    right: .8rem;
    width: 126px;
    height: 126px;
    transform: rotate(6deg);
  }

  .badge-inner {
    width: 88px;
    height: 88px;
    padding: .35rem;
  }

  .badge-mini {
    font-size: .34rem;
    margin-bottom: .1rem;
  }

  .badge-icon {
    font-size: 1rem;
    margin-bottom: .06rem;
  }

  .badge-text {
    font-size: .92rem;
    line-height: .96;
  }

  .badge-sub {
    font-size: .5rem;
    margin-top: .15rem;
  }

  .badge-sparkle {
    font-size: .46rem;
  }

  .badge-sparkle-1 {
    top: 13px;
    right: 13px;
  }

  .badge-sparkle-2 {
    bottom: 13px;
    left: 13px;
  }

  .map-section {
    padding-top: 3.2rem;
  }

  .map-layout {
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .map-embed iframe {
    min-height: 320px;
  }

  .map-card-copy {
    padding: 1.1rem;
  }

  .map-card-copy h3 {
    font-size: 1.7rem;
  }

  .map-card-copy p {
    font-size: .9rem;
  }

  .map-card .button {
    width: 100%;
  }
}


/* Form submission feedback */
.form-status {
  min-height: 1.3em;
  margin: .15rem 0 0;
  color: #7a6538;
  font-size: .76rem;
}

.form-status.is-error {
  color: #9b3f38;
}

.form-button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}
