:root {
  --night: #0e1410;
  --moss: #1c2620;
  --bark: #2e2419;
  --ember: #e8893f;
  --ember-soft: #f0a868;
  --leaf: #7fa05a;
  --bone: #f4efe4;
  --bone-dim: #cdc6b6;
  --line: rgba(244, 239, 228, .14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--night);
  color: var(--bone);
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

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

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

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px
}

.display {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .92
}

.serif {
  font-family: "Fraunces", serif
}

.eyebrow {
  font-family: "Bricolage Grotesque";
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  color: var(--ember)
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s cubic-bezier(.2, .7, .2, 1), transform 1s cubic-bezier(.2, .7, .2, 1)
}

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

@media(prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent
}

header.scrolled {
  background: rgba(14, 20, 16, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 98px
}

/* --- brand / logo --- */
.brand {
  display: flex;
  align-items: center;
  gap: .3rem;
  height: 100%;
}

.brand-logo {
  height: 78px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35));
}

.brand-text {
  font-family: "Anton";
  font-size: 2.5rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--bone);
  transform: translateY(18px);
  margin-left: -0.15em;
}

.navlinks {
  display: flex;
  gap: 2rem;
  font-weight: 600;
  font-size: .9rem
}

.navlinks a {
  position: relative;
  color: #e4e4e4;
  transition: color .3s
}

.navlinks a:hover {
  color: var(--bone)
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--ember);
  transition: width .3s
}

.navlinks a:hover::after {
  width: 100%
}

.navcta {
  border: 1px solid var(--line);
  padding: .6rem 1.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .85rem;
  transition: all .3s
}

.navcta:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--night)
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--bone);
  transition: .3s
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowzoom 22s ease-out forwards
}

@keyframes slowzoom {
  from {
    transform: scale(1.12)
  }

  to {
    transform: scale(1)
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 70% 20%, rgba(232, 137, 63, .16), transparent 55%), linear-gradient(180deg, rgba(14, 20, 16, .55) 0%, rgba(14, 20, 16, .15) 35%, rgba(14, 20, 16, .7) 78%, var(--night) 100%)
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 8vh;
  width: 100%
}

.hero h1 {
  font-size: clamp(2.8rem, 9.5vw, 8rem);
  max-width: 14ch
}

.hero h1 em {
  font-family: "Fraunces";
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  color: var(--ember-soft);
  letter-spacing: 0;
  display: inline-block
}

.hero-sub {
  max-width: 48ch;
  margin-top: 1.6rem;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--bone-dim)
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem
}

.btn {
  font-weight: 700;
  font-size: .95rem;
  padding: 1rem 1.9rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid transparent
}

.btn-primary {
  background: var(--ember);
  color: var(--night)
}

.btn-primary:hover {
  background: var(--ember-soft);
  transform: translateY(-2px)
}

.btn-ghost {
  border-color: var(--line);
  color: var(--bone);
  background: rgba(14, 20, 16, .3)
}

.btn-ghost:hover {
  border-color: var(--bone);
  transform: translateY(-2px)
}


section {
  position: relative
}

.pad {
  padding: clamp(5rem, 12vh, 9rem) 0
}

.sec-head {
  max-width: 60ch
}

.sec-head h2 {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  margin: .6rem 0 1.2rem
}

.sec-head h2 em {
  font-family: "Fraunces";
  font-style: italic;
  text-transform: none;
  color: var(--ember-soft);
  font-weight: 400
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--bone-dim);
  max-width: 54ch
}

.story {
  background: linear-gradient(180deg, var(--night), var(--moss))
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: 3rem
}

.story-copy p {
  margin-bottom: 1.2rem;
  font-size: 1.08rem
}

.story-copy .serif {
  font-style: italic;
  color: var(--ember-soft)
}

.story-photos {
  position: relative;
  height: clamp(360px, 52vw, 560px)
}

.story-photos figure {
  position: absolute;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7)
}

.story-photos figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s
}

.story-photos .p1 {
  inset: 0 32% 28% 0
}

.story-photos .p2 {
  width: 46%;
  height: 50%;
  right: 0;
  bottom: 0;
  border: 6px solid var(--moss)
}

.story-photos figure:hover img {
  transform: scale(1.06)
}

.statrow {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.4rem;
  flex-wrap: wrap
}

.stat .n {
  font-family: "Anton";
  font-size: 2.6rem;
  color: var(--ember)
}

.stat .l {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--bone-dim)
}

.exp {
  background: var(--moss)
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 3.2rem
}

.card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  background: var(--bark)
}

.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .7, .2, 1);
  filter: saturate(.95)
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 12, 9, .92))
}

.card:hover img {
  transform: scale(1.09)
}

.card-body {
  position: relative;
  z-index: 2;
  padding: 1.6rem;
  width: 100%
}

.card-body .k {
  font-family: "Anton";
  font-size: 1.6rem;
  text-transform: uppercase
}

.card-body .meta {
  font-size: .78rem;
  color: var(--ember-soft);
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: .5rem;
  font-weight: 700
}

.card-body .d {
  font-size: .92rem;
  color: var(--bone-dim);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .5s
}

.card:hover .card-body .d {
  max-height: 120px;
  opacity: 1;
  margin-top: .6rem
}

.card.tall {
  grid-row: span 2;
  min-height: auto
}

.c-a {
  grid-column: span 5
}

.c-b {
  grid-column: span 4
}

.c-c {
  grid-column: span 3;
  grid-row: span 2
}

.c-d {
  grid-column: span 3
}

.c-e {
  grid-column: span 3
}

.c-f {
  grid-column: span 3
}

.c-g {
  grid-column: span 4
}

.c-h {
  grid-column: span 4
}

.c-i {
  grid-column: span 4
}

.prop {
  background: linear-gradient(180deg, var(--moss), var(--night))
}

.map {
  position: relative;
  margin-top: 3rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(60% 60% at 30% 30%, rgba(127, 160, 90, .12), transparent), radial-gradient(50% 50% at 75% 70%, rgba(232, 137, 63, .1), transparent), var(--bark);
  min-height: clamp(380px, 48vw, 520px)
}

.map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 3
}

.pin .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(232, 137, 63, .6);
  animation: pulse 2.4s infinite
}

.pin .dot.leaf {
  background: var(--leaf);
  animation-delay: .6s
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 137, 63, .55)
  }

  70% {
    box-shadow: 0 0 0 16px rgba(232, 137, 63, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 137, 63, 0)
  }
}

.pin .lbl {
  position: absolute;
  left: 24px;
  top: -6px;
  white-space: nowrap;
  background: rgba(14, 20, 16, .9);
  border: 1px solid var(--line);
  padding: .4rem .7rem;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-6px);
  transition: .3s;
  pointer-events: none
}

.pin:hover .lbl {
  opacity: 1;
  transform: none
}

.stay {
  background: var(--night)
}

.stay-list {
  margin-top: 3rem;
  border-top: 1px solid var(--line)
}

.stay-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  transition: background .4s;
  cursor: pointer;
  position: relative
}

.stay-row:hover {
  background: rgba(232, 137, 63, .04)
}

.stay-row .idx {
  font-family: "Anton";
  font-size: 1.1rem;
  color: var(--ember)
}

.stay-row .nm {
  font-family: "Anton";
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  text-transform: uppercase;
  transition: transform .4s, color .4s
}

.stay-row:hover .nm {
  transform: translateX(12px);
  color: var(--ember-soft)
}

.stay-row .cap {
  font-size: .85rem;
  color: var(--bone-dim);
  text-transform: uppercase;
  letter-spacing: .14em;
  text-align: right
}

.stay-row .feat {
  display: none;
  grid-column: 2;
  font-size: .95rem;
  color: var(--bone-dim);
  margin-top: .4rem
}

.stay-row:hover .feat {
  display: block
}

.gal {
  background: linear-gradient(180deg, var(--night), var(--moss))
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem
}

.chip {
  border: 1px solid var(--line);
  background: none;
  color: var(--bone-dim);
  padding: .5rem 1.1rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: .3s
}

.chip.active,
.chip:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--night)
}

.masonry {
  columns: 3;
  column-gap: 16px;
  margin-top: 2rem
}

.masonry figure {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: opacity .4s, transform .4s
}

.masonry figure img {
  width: 100%;
  transition: transform 1s;
  filter: saturate(.95)
}

.masonry figure:hover img {
  transform: scale(1.07)
}

.masonry figure .tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  background: rgba(14, 20, 16, .8);
  padding: .3rem .7rem;
  border-radius: 4px;
  opacity: 0;
  transition: .3s
}

.masonry figure:hover .tag {
  opacity: 1
}

.masonry figure.hide {
  display: none
}

.video {
  background: var(--moss)
}

.video-carousel {
  max-width: 860px;
  margin: 3rem auto 0;
  position: relative
}

.vc-viewport {
  overflow: hidden;
  border-radius: 12px;
  cursor: grab;
  touch-action: pan-y
}

.vc-viewport.dragging {
  cursor: grabbing
}

.vc-track {
  display: flex;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1)
}

.vc-track.no-anim {
  transition: none
}

.v-slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bark);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7)
}

.v-slide video,
.v-slide .v-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block
}

.v-slide .v-poster {
  background: transparent;
  cursor: pointer;
  transition: filter .4s
}

.v-slide .v-poster::after {
  content: "▶";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--bone);
  background: rgba(14, 20, 16, .55);
  border: 1px solid var(--line);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: transform .3s, background .3s
}

.v-slide .v-poster:hover::after {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--ember);
  color: var(--night)
}

.v-slide .v-poster.gone {
  display: none
}

.vc-arrow {
  position: absolute;
  top: calc(50% - 26px);
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(14, 20, 16, .78);
  backdrop-filter: blur(10px);
  color: var(--bone);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  display: grid;
  place-items: center;
  transition: background .3s, border-color .3s, transform .3s
}

.vc-arrow:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--night)
}

.vc-prev {
  left: 14px
}

.vc-next {
  right: 14px
}

.video-now {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--bone);
  text-align: center;
  margin-top: 1.3rem;
  transition: opacity .35s ease
}

.video-now.swapping {
  opacity: 0
}

.vc-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem
}

.vc-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  cursor: pointer;
  transition: background .3s, transform .3s
}

.vc-dots button.active {
  background: var(--ember);
  transform: scale(1.3)
}

@media(max-width:560px) {
  .v-slide {
    border-radius: 8px
  }

  .vc-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem
  }

  .vc-prev {
    left: 8px
  }

  .vc-next {
    right: 8px
  }
}

.events {
  background: var(--night)
}

.ev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 3rem
}

.ev {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.8rem;
  transition: .4s;
  background: var(--moss)
}

.ev:hover {
  border-color: var(--ember);
  transform: translateY(-6px)
}

.ev .ic {
  font-size: 1.6rem;
  margin-bottom: 1rem
}

.ev h4 {
  font-family: "Anton";
   letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 1.3rem;
  margin-bottom: .5rem
}

.ev p {
  font-size: .92rem;
  color: var(--bone-dim)
}

.testi {
  background: linear-gradient(180deg, var(--night), var(--moss));
}

.t-track {
  display: flex;
  gap: 24px;
  margin-top: 3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.t-track::-webkit-scrollbar {
  display: none;
}

.t-card {
  scroll-snap-align: start;
  flex: 0 0 380px;
  min-width: 380px;
  background: var(--bark);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem;
  box-sizing: border-box;
}

.t-card .q {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 1.4rem;
}

.t-card .who {
  font-weight: 700;
}

.t-card .trip {
  font-size: 0.8rem;
  color: var(--ember-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.t-card .stars {
  color: var(--ember);
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

/* Mobile */
@media (max-width: 768px) {
  .t-card {
    flex: 0 0 85vw;
    min-width: 85vw;
  }
}

.love {
  background: var(--moss)
}

.love-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden
}

.love-grid .it {
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.love-grid .it .ic {
  font-size: 1.5rem;
  margin-bottom: .8rem
}

.love-grid .it h4 {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: .4rem
}

.love-grid .it p {
  font-size: .88rem;
  color: var(--bone-dim)
}

.faq {
  background: linear-gradient(180deg, var(--moss), var(--night))
}

.acc {
  margin-top: 2.5rem;
  max-width: 820px
}

.q-item {
  border-bottom: 1px solid var(--line)
}

.q-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--bone);
  padding: 1.5rem 0;
  font-family: "Bricolage Grotesque";
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem
}

.q-item .sign {
  color: var(--ember);
  font-size: 1.4rem;
  transition: transform .3s;
  flex-shrink: 0
}

.q-item.open .sign {
  transform: rotate(45deg)
}

.q-item .ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  color: var(--bone-dim)
}

.q-item .ans p {
  padding: 0 0 1.5rem
}

.final {
  position: relative;
  text-align: center;
  overflow: hidden
}

.final-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.final-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--night) 0%, rgba(14, 20, 16, .6) 40%, rgba(14, 20, 16, .82) 100%)
}

.final-inner {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 16vh, 12rem) 0
}

.final h2 {
  font-size: clamp(2.6rem, 8vw, 7rem);
  max-width: 16ch;
  margin: 0 auto 1.4rem
}

.final h2 em {
  font-family: "Fraunces";
  font-style: italic;
  text-transform: none;
  color: var(--ember-soft);
  font-weight: 400
}

.final p {
  max-width: 46ch;
  margin: 0 auto 2.4rem;
  color: var(--bone-dim);
  font-size: 1.15rem
}

.final .hero-cta {
  justify-content: center
}

footer {
  background: var(--night);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2.5rem
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem
}

.foot-grid h5 {
  font-family: "Bricolage Grotesque";
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  color: var(--ember);
  margin-bottom: 1.2rem
}

.foot-grid a,
.foot-grid p {
  display: block;
  color: var(--bone-dim);
  font-size: .92rem;
  margin-bottom: .6rem;
  transition: color .3s
}

.foot-grid a:hover {
  color: var(--bone)
}

.foot-brand {
  font-family: "Anton";
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.foot-brand b {
  color: var(--ember)
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--bone-dim)
}

@media(max-width:900px) {

  .navlinks,
  .navcta {
    display: none
  }

  .burger {
    display: flex
  }

  header.open .navlinks {
    display: flex;
    position: absolute;
    top: 98px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(14, 20, 16, .97);
    padding: 1.5rem 28px;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line)
  }

  .story-grid {
    grid-template-columns: 1fr
  }

  .story-photos {
    height: clamp(320px, 80vw, 460px)
  }

  .exp-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .c-a,
  .c-b,
  .c-c,
  .c-d,
  .c-e,
  .c-f,
  .c-g,
  .c-h,
  .c-i {
    grid-column: span 6
  }

  .card.tall {
    grid-row: span 1
  }

  .masonry {
    columns: 2
  }

  .ev-grid,
  .love-grid {
    grid-template-columns: 1fr
  }

  .love-grid .it {
    border-right: 0
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {
  .masonry {
    columns: 1
  }

  .foot-grid {
    grid-template-columns: 1fr
  }

  .statrow {
    gap: 1.5rem
  }
}

/* --- location map (property section) --- */
.locate {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.locate-map {
  min-height: 360px;
}
.locate-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: grayscale(.3) contrast(1.05);
}
.locate-info {
  background: var(--bark);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .8rem;
}
.locate-info h3 {
  font-family: "Anton";
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
}
.locate-info p {
  color: var(--bone-dim);
  font-size: .95rem;
}
.locate-info .btn {
  align-self: flex-start;
  margin-top: .6rem;
}
@media (max-width: 900px) {
  .locate {
    grid-template-columns: 1fr;
  }
}