:root {
  --slate: #44546A;
  --slate-deep: #2E3B4D;
  --slate-ink: #222C3A;
  --coral: #FF8656;
  --grey: #818B99;
  --sage: #7F9995;
  --moss: #919B80;
  --stone: #9C917F;
  --white: #FFFFFF;
  --paper: #F6F4F1;
  --paper-2: #EFECE7;
  --font-display: 'Jost', system-ui, sans-serif;
  --font-body: 'Karla', system-ui, sans-serif;
  --gutter: clamp(22px, 5.5vw, 92px);
  --rule: rgba(68, 84, 106, .20);
  --rule-light: rgba(255, 255, 255, .28);
  --max: 1400px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
html {
  scroll-behavior: smooth
}
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%
}
a {
  color: inherit
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit
}

/* =========================================================
   SECTION LABEL SIZES (UPDATED)
   ========================================================= */

/* Group 1 — labels with hairline rule (tideline) */
.tideline {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--grey);
}
.tideline::after {
  content: "";
  height: 1px;
  background: var(--rule);
  flex: 1
}
.tideline.-mid::before {
  content: "";
  height: 1px;
  background: var(--rule);
  flex: 1
}
.tideline.-onDark {
  color: rgba(255, 255, 255, .62)
}
.tideline.-onDark::after,
.tideline.-onDark::before {
  background: var(--rule-light)
}

/* Group 2 — labels without rule (eyebrow) */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--grey);
}

/* Group 3 — amenity card labels */
.amen .n {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
}

/* =========================================================
   NARROW PHONES (380px and below) - Step all groups down
   ========================================================= */
@media(max-width:380px) {
  .tideline {
    font-size: 12px;
    letter-spacing: .18em;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: .20em;
  }
  .amen .n {
    font-size: 12px;
    letter-spacing: .18em;
  }
}

/* =========================================================
   TYPOGRAPHY (unchanged)
   ========================================================= */
.h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(38px, 6.4vw, 84px);
  line-height: 1;
  letter-spacing: .02em;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4.2vw, 50px);
  line-height: 1.08;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.2;
  letter-spacing: .02em;
}
.lede {
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 300;
  color: #4E5B72;
  max-width: 60ch
}
.body {
  font-weight: 300;
  color: #54617A;
  max-width: 58ch
}
.body p+p {
  margin-top: 15px
}
.wrap {
  max-width: var(--max);
  margin: 0 auto
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--coral);
  padding: 18px 42px;
  border-radius: 2px;
  transition: background .25s, transform .25s;
}
.btn:hover {
  background: #F0713F;
  transform: translateY(-2px)
}
.btn.-ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45);
}
.btn.-ghost:hover {
  background: rgba(255, 255, 255, .10);
  transform: translateY(-2px)
}
.arrowlink {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--slate);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--coral);
  transition: gap .25s, color .25s;
}
.arrowlink:hover {
  gap: 20px;
  color: var(--coral)
}
.arrowlink.-onDark {
  color: var(--white)
}
.arrowlink.-onDark:hover {
  color: var(--coral)
}

/* =========================================================
   MASTHEAD + HAMBURGER
   ========================================================= */
.masthead {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  transition: background .45s, border-color .45s, padding .45s;
  border-bottom: 1px solid transparent;
}
.masthead.-solid {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--rule);
}
.brand {
  display: block;
  line-height: 0
}
.brand img {
  height: 54px;
  width: auto;
  transition: opacity .3s
}
.brand .-onDark {
  display: block
}
.brand .-onLight {
  display: none
}
.masthead.-solid .brand .-onDark {
  display: none
}
.masthead.-solid .brand .-onLight {
  display: block
}
.burger {
  width: 46px;
  height: 46px;
  position: relative;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
}
.burger i {
  display: block;
  height: 1.5px;
  width: 26px;
  background: var(--white);
  transition: transform .35s cubic-bezier(.6, 0, .3, 1), opacity .2s, width .35s, background .35s;
}
.burger i:nth-child(2) {
  width: 18px
}
.masthead.-solid .burger i {
  background: var(--slate)
}
body.menu-open .burger i {
  background: var(--white)
}
body.menu-open .burger i:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  width: 26px
}
body.menu-open .burger i:nth-child(2) {
  opacity: 0
}
body.menu-open .burger i:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 26px
}

/* =========================================================
   MENU OVERLAY
   ========================================================= */
.menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--slate-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s cubic-bezier(.7, 0, .2, 1);
  pointer-events: none;
}
body.menu-open .menu {
  clip-path: inset(0 0 0 0);
  pointer-events: auto
}
.menu ol {
  list-style: none;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%
}
.menu li {
  overflow: hidden
}
.menu a {
  display: block;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(30px, 6vw, 64px);
  line-height: 1.24;
  letter-spacing: .03em;
  padding: 6px 0;
  transform: translateY(105%);
  transition: transform .55s cubic-bezier(.5, 0, .2, 1), color .25s;
}
body.menu-open .menu a {
  transform: translateY(0)
}
body.menu-open .menu li:nth-child(1) a {
  transition-delay: .08s
}
body.menu-open .menu li:nth-child(2) a {
  transition-delay: .14s
}
body.menu-open .menu li:nth-child(3) a {
  transition-delay: .20s
}
body.menu-open .menu li:nth-child(4) a {
  transition-delay: .26s
}
body.menu-open .menu li:nth-child(5) a {
  transition-delay: .32s
}
.menu a:hover {
  color: var(--coral)
}
.menu-foot {
  max-width: var(--max);
  margin: 56px auto 0;
  width: 100%;
  color: rgba(255, 255, 255, .5);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 91;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
  line-height: 0;
}
.menu-close:hover {
  color: var(--coral);
  transform: rotate(90deg);
}
.menu-close svg {
  width: 28px;
  height: 28px;
  display: block;
}
.page {
  display: none
}
.page.is-active {
  display: block
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--slate-ink);
}
.hero video,
.hero .hero-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero-still {
  z-index: 0
}
.hero video {
  z-index: 1;
  opacity: 0;
  transition: opacity 1.4s ease
}
.hero video.is-ready {
  opacity: 1
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(58% 42% at 50% 46%, rgba(28, 37, 49, .52) 0%, rgba(28, 37, 49, 0) 72%), linear-gradient(180deg, rgba(34, 44, 58, .56) 0%, rgba(34, 44, 58, .18) 34%, rgba(34, 44, 58, .28) 62%, rgba(34, 44, 58, .78) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  color: var(--white);
  animation: rise 1.6s cubic-bezier(.2, .7, .2, 1) both .2s;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px)
  }
  to {
    opacity: 1;
    transform: none
  }
}
.hero-logo {
  width: min(700px, 78vw);
  margin: 0 auto
}
.hero-tag {
  margin-top: 34px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(12px, 1.5vw, 16px);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .96);
}
.hero-tag em {
  font-style: normal;
  color: #FF9C74
}
.more {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  padding: 10px 16px;
}
.more span {
  opacity: .85;
  transition: opacity .3s
}
.more:hover span {
  opacity: 1
}
.more i {
  display: block;
  width: 1px;
  height: 54px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0));
}
.more i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -54px;
  width: 1px;
  height: 54px;
  background: var(--coral);
  animation: fall 2.8s cubic-bezier(.5, 0, .5, 1) infinite;
}
@keyframes fall {
  0% {
    top: -54px
  }
  62%,
  100% {
    top: 54px
  }
}

/* =========================================================
   SPLIT SECTION
   ========================================================= */
.split {
  padding: clamp(70px, 9vw, 130px) var(--gutter);
  background: var(--paper)
}
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(30px, 4.6vw, 74px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.split figure {
  position: relative;
  overflow: hidden
}
.split figure img {
  width: 100%;
  transition: transform 1.2s cubic-bezier(.2, .7, .2, 1)
}
.split figure:hover img {
  transform: scale(1.03)
}
.split figcaption {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--grey);
}
.split-copy .h2 {
  margin: 18px 0 24px
}
.split-copy .arrowlink {
  margin-top: 34px
}
@media(max-width:900px) {
  .split-grid {
    grid-template-columns: 1fr
  }
}

/* =========================================================
   BAND
   ========================================================= */
.band {
  padding: clamp(70px, 9vw, 120px) var(--gutter);
  text-align: center;
  color: var(--white);
  background: radial-gradient(88% 130% at 50% 0%, rgba(255, 134, 86, .20), transparent 62%), var(--slate);
}
.band .h2 {
  color: var(--white);
  margin: 18px auto 20px;
  max-width: 17ch
}
.band .eyebrow {
  color: rgba(255, 255, 255, .58)
}
.band p {
  color: rgba(255, 255, 255, .78);
  font-weight: 300;
  max-width: 48ch;
  margin: 0 auto 36px
}

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  padding: 46px var(--gutter);
  background: var(--slate-ink);
  color: rgba(255, 255, 255, .55);
}
.foot-in {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.foot-mark {
  height: 58px;
  width: auto;
  opacity: .85;
  cursor: pointer;
  transition: opacity .3s;
}
.foot-mark:hover {
  opacity: 1;
}
.foot nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap
}
.foot a {
  text-decoration: none;
  transition: color .2s
}
.foot a:hover {
  color: var(--coral)
}

/* =========================================================
   INNER PAGE HEADS
   ========================================================= */
.pagehead {
  position: relative;
  min-height: min(66svh, 620px);
  display: flex;
  align-items: flex-end;
  padding: 150px var(--gutter) clamp(44px, 5vw, 72px);
  overflow: hidden;
  background: var(--slate-deep);
}
.pagehead img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.pagehead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 44, 58, .62), rgba(34, 44, 58, .22) 45%, rgba(34, 44, 58, .80));
}
.pagehead-in {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  color: var(--white)
}
.pagehead .h1 {
  margin: 16px 0 0
}
.pagehead .eyebrow {
  color: rgba(255, 255, 255, .66)
}

/* =========================================================
   GENERIC SECTIONS
   ========================================================= */
.sec {
  padding: clamp(64px, 8vw, 118px) var(--gutter)
}
.sec.-paper {
  background: var(--paper)
}
.sec.-paper2 {
  background: var(--paper-2)
}
.sec.-slate {
  background: var(--slate);
  color: var(--white)
}
.sec.-slate .h2,
.sec.-slate .h3 {
  color: var(--white)
}
.sec.-slate .body {
  color: rgba(255, 255, 255, .78)
}
.sec-in {
  max-width: var(--max);
  margin: 0 auto
}
.sec-head {
  margin-bottom: clamp(30px, 4vw, 54px)
}
.sec-head .h2 {
  margin-top: 16px;
  max-width: 20ch
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: start;
}
@media(max-width:900px) {
  .intro-grid {
    grid-template-columns: 1fr
  }
}

/* =========================================================
   SITE
   ========================================================= */
.sitefig {
  position: relative;
  overflow: hidden;
  background: var(--slate-deep)
}
.sitefig img {
  width: 100%
}
.sitefig .tag {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--slate);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 11px 18px;
}
.sitefacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--rule);
  margin-top: 34px;
  border: 1px solid var(--rule);
}
.sitefacts div {
  background: var(--paper);
  padding: 24px 20px
}
.sec.-paper .sitefacts div {
  background: var(--white)
}
.sitenote {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
}
.sitefacts b {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  color: var(--slate);
}
.sitefacts b i {
  font-style: normal;
  font-size: .46em;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
  vertical-align: .42em;
  margin-right: .24em;
}
.sitefacts span {
  display: block;
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey);
}

/* =========================================================
   FULL BLEED
   ========================================================= */
.fullbleed {
  width: 100%;
  line-height: 0;
  background: var(--slate-deep);
  overflow: hidden;
}
.fullbleed img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 16/7;
  min-height: 300px;
  max-height: 78svh;
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   AMENITIES
   ========================================================= */
.amen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(20px, 2.4vw, 34px)
}
.amen article {
  background: var(--white)
}
.sec.-paper .amen article,
.sec.-paper2 .amen article {
  background: var(--white)
}
.amen figure {
  overflow: hidden;
  aspect-ratio: 4/3
}
.amen figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2, .7, .2, 1)
}
.amen article:hover figure img {
  transform: scale(1.05)
}
.amen .txt {
  padding: 26px 26px 30px
}
.amen .h3 {
  margin: 14px 0 10px
}
.amen p {
  font-size: 15px;
  font-weight: 300;
  color: #5B6880
}

/* =========================================================
   GALLERY
   ========================================================= */
.gal {
  columns: 3;
  column-gap: clamp(12px, 1.6vw, 22px)
}
.gal button {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 clamp(12px, 1.6vw, 22px);
  break-inside: avoid;
  overflow: hidden;
  position: relative;
  line-height: 0;
}
.gal img {
  width: 100%;
  transition: transform 1.1s cubic-bezier(.2, .7, .2, 1), filter .5s
}
.gal button:hover img {
  transform: scale(1.04)
}
@media(max-width:980px) {
  .gal {
    columns: 2
  }
}
@media(max-width:600px) {
  .gal {
    columns: 1
  }
}
.zoomable {
  cursor: zoom-in
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 27, 36, .94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.is-on {
  display: flex;
  opacity: 1;
}
.lightbox figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 100%;
  max-height: 90vh;
  position: relative;
  width: 100%;
}
.lightbox img {
  width: auto;
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox figcaption {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  text-align: center;
}
.lightbox .x {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 12px 16px;
  z-index: 10;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  transition: background 0.3s;
}
.lightbox .x:hover {
  background: rgba(0,0,0,0.6);
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 48px;
  padding: 20px 16px;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
  z-index: 10;
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
  line-height: 1;
  user-select: none;
}
.lb-nav:hover {
  color: #fff;
  background: rgba(0,0,0,0.5);
}
.lb-nav.prev {
  left: 10px;
}
.lb-nav.next {
  right: 10px;
}
.lb-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .1em;
}
body.lb-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

/* =========================================================
   Q&A
   ========================================================= */
.qagroup {
  margin-bottom: clamp(44px, 6vw, 76px)
}
.qahead {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--coral);
}
.qahead h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(23px, 2.9vw, 34px);
  line-height: 1.1;
  letter-spacing: .01em;
  color: var(--slate);
}
.qahead span {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--grey);
  white-space: nowrap;
}
.qa {
  border-bottom: 1px solid var(--rule)
}
.qa:first-of-type {
  border-top: 1px solid var(--rule)
}
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 1.55vw, 19px);
  color: var(--slate);
  transition: color .2s;
}
.qa summary::-webkit-details-marker {
  display: none
}
.qa summary:hover {
  color: var(--coral)
}
.qa summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -7px;
  border-right: 1px solid var(--coral);
  border-bottom: 1px solid var(--coral);
  transform: rotate(45deg);
  transition: transform .3s;
}
.qa[open] summary::after {
  transform: rotate(-135deg);
  margin-top: -2px
}
.qa .a {
  padding: 0 clamp(20px, 8vw, 120px) 28px 0
}
.qa .a p+p {
  margin-top: 13px
}
.qa .a ul {
  margin: 12px 0 0 18px
}
.qa .a li {
  font-weight: 300;
  color: #54617A
}

/* =========================================================
   TEAM
   ========================================================= */
.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: var(--rule)
}
.partners.-single {
  grid-template-columns: minmax(0, 340px);
  justify-content: start;
  background: transparent
}
.partners.-single article {
  border: 1px solid var(--rule)
}
.partners article {
  background: var(--white);
  padding: 40px 26px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners .logo {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px
}
.partners .logo img {
  max-height: 76px;
  width: auto
}
.partners h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--slate);
}
.partners span {
  display: block;
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey);
}

/* =========================================================
   SUPPORT PAGE
   ========================================================= */
.support-wrap {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  min-height: 100svh
}
.support-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(120px, 12vw, 150px) clamp(26px, 4vw, 62px) 64px;
  color: var(--white);
  overflow: hidden;
  background: var(--slate-deep);
}
.support-aside img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.support-aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 44, 58, .72), rgba(34, 44, 58, .86));
  z-index: 1;
}
.support-aside>*:not(img) {
  position: relative;
  z-index: 2
}
.support-aside .h2 {
  color: var(--white);
  margin: 18px 0 20px
}
.support-aside p {
  color: rgba(255, 255, 255, .8);
  font-weight: 300;
  max-width: 34ch
}
.support-aside .coords {
  margin-top: 44px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.support-form {
  padding: clamp(120px, 12vw, 150px) clamp(26px, 5vw, 86px) 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.field {
  margin-bottom: 26px
}
.field label {
  display: block;
  margin-bottom: 9px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--grey);
}
.field input {
  width: 100%;
  padding: 13px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--slate);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  transition: border-color .25s;
}
.field input:focus {
  outline: none;
  border-bottom-color: var(--coral)
}
.field.-err input {
  border-bottom-color: #C4553A
}
.field .err {
  display: none;
  margin-top: 7px;
  font-size: 12.5px;
  color: #C4553A
}
.field.-err .err {
  display: block
}
.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}
.legal {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--grey);
  max-width: 46ch
}
.support-form .btn {
  margin-top: 28px;
  align-self: flex-start
}
.backlink {
  margin-top: 36px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
}
.backlink:hover {
  color: var(--coral)
}
.thanks {
  display: none
}
.support-form.is-sent .form-live {
  display: none
}
.support-form.is-sent .thanks {
  display: block
}
@media(max-width:900px) {
  .support-wrap {
    grid-template-columns: 1fr
  }
  .row2 {
    grid-template-columns: 1fr;
    gap: 0
  }
  .support-form .backlink {
    margin-top: 20px;
    display: inline-block;
  }
  .support-form .btn {
    margin-bottom: 0;
  }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media(max-aspect-ratio:4/5) {
  .hero-scrim {
    background: radial-gradient(76% 30% at 50% 46%, rgba(28, 37, 49, .60) 0%, rgba(28, 37, 49, 0) 74%), linear-gradient(180deg, rgba(34, 44, 58, .62) 0%, rgba(34, 44, 58, .30) 30%, rgba(34, 44, 58, .38) 62%, rgba(34, 44, 58, .86) 100%);
  }
  .fullbleed img {
    aspect-ratio: 5/4;
    max-height: 62svh
  }
}

@media(max-width:700px) {
  .masthead {
    padding: 12px 20px
  }
  .brand img {
    height: 44px
  }
  .burger {
    width: 40px;
    height: 40px
  }
  .hero-logo {
    width: 84vw
  }
  .hero-tag {
    margin-top: 22px;
    letter-spacing: .18em
  }
  .more {
    bottom: 26px
  }
  .pagehead {
    min-height: min(56svh, 500px);
    padding-top: 112px
  }
  .sec-head {
    margin-bottom: 28px
  }
  .sitefacts {
    grid-template-columns: 1fr 1fr
  }
  .sitefacts div {
    padding: 20px 16px
  }
  .sitenote {
    margin-top: 18px;
    font-size: 11px
  }
  .gal {
    columns: 2;
    column-gap: 10px
  }
  .gal button {
    margin-bottom: 10px
  }
  .amen .txt {
    padding: 22px 22px 26px
  }
  .qa summary {
    padding: 20px 36px 20px 0
  }
  .qahead {
    gap: 12px;
    margin-bottom: 10px;
    padding-bottom: 12px
  }
  .qahead span {
    display: none
  }
  .menu a {
    font-size: clamp(28px, 8vw, 40px)
  }
  .menu-close {
    top: 16px;
    right: 16px;
  }
  .menu-close svg {
    width: 24px;
    height: 24px;
  }
  .foot-in {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .foot nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    font-size: 9px;
    letter-spacing: 0.2em;
  }
  .foot-mark {
    height: 40px;
  }
  .foot-in span {
    font-size: 9px;
    letter-spacing: 0.2em;
  }
  .support-aside {
    padding: 104px 24px 52px
  }
  .support-form {
    padding: 56px 24px 64px
  }
  .lightbox img {
    max-width: 95vw;
    max-height: 70vh;
  }
  .lb-nav {
    font-size: 32px;
    padding: 12px 10px;
  }
  .lb-nav.prev {
    left: 4px;
  }
  .lb-nav.next {
    right: 4px;
  }
  .lightbox .x {
    top: 4px;
    right: 4px;
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media(max-width:400px) {
  .foot nav {
    gap: 8px 12px;
    font-size: 8px;
    letter-spacing: 0.15em;
  }
  .foot-in span {
    font-size: 8px;
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }
}

/* =========================================================
   SUPPORT PAGE - MASTHEAD FIX
   ========================================================= */
#p-support .masthead,
#p-more .masthead {
  position: fixed;
  z-index: 999;
}

#p-support .support-wrap,
#p-more .support-wrap {
  padding-top: 80px;
}

@media(max-width:700px) {
  #p-support .support-wrap,
  #p-more .support-wrap {
    padding-top: 70px;
  }
}
/* =========================================================
   FOOTER — MEDIA ENQUIRIES LINK
   ========================================================= */
.foot-media {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--grey);
}

.foot-media a {
    color: var(--grey);
    text-decoration: none;
    border-bottom: 1px solid var(--coral);
    transition: color .25s, border-color .25s;
}

.foot-media a:hover {
    color: var(--coral);
}

/* =========================================================
   FOOTER — DESIGN CREDIT
   ========================================================= */
.foot-credit {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--grey);
    opacity: 0.7;
}

.foot-credit a {
    color: var(--grey);
    text-decoration: none;
    transition: color .25s;
}

.foot-credit a:hover {
    color: var(--coral);
}

/* Mobile footer adjustments */
@media(max-width:700px) {
    .foot-in {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }
    .foot nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
        font-size: 9px;
        letter-spacing: 0.2em;
    }
    .foot-media {
        font-size: 9px;
        letter-spacing: 0.2em;
        flex-wrap: wrap;
        justify-content: center;
    }
    .foot-credit {
        font-size: 9px;
        letter-spacing: 0.2em;
    }
    .foot-mark {
        height: 40px;
    }
    .foot-in span {
        font-size: 9px;
        letter-spacing: 0.2em;
    }
}

@media(max-width:400px) {
    .foot nav {
        gap: 8px 12px;
        font-size: 8px;
        letter-spacing: 0.15em;
    }
    .foot-media {
        font-size: 8px;
        letter-spacing: 0.15em;
    }
    .foot-credit {
        font-size: 8px;
        letter-spacing: 0.15em;
    }
    .foot-in span {
        font-size: 8px;
    }
}