/* ==========================================================================
   DV Communities — RV Park landing pages
   Shared "field-guide" design system  (ENG-3764)

   One system, three landscapes. Per-park colour themes live in the
   .theme-* blocks near the top; everything below is shared structure.
   Type:  Fraunces (display) · Hanken Grotesk (text) · Space Mono (labels)
   ========================================================================== */

/* ---- Theme tokens -------------------------------------------------------- */
:root{
  /* default = Sun Rocks (high-desert sun) */
  --bg:        #f3ebdd;
  --bg-2:      #ece0cd;
  --paper:     #fbf6ec;
  --ink:       #271a10;
  --ink-soft:  #5d4b39;
  --line:      rgba(39,26,16,.16);
  --line-soft: rgba(39,26,16,.09);
  --primary:   #bb4a26;   /* terracotta   */
  --primary-d: #9c3a1c;
  --secondary: #6f7d49;   /* juniper sage */
  --accent:    #dd9a35;   /* desert gold  */
  --on-primary:#fff;
  --hero-veil: linear-gradient(180deg, rgba(39,26,16,.18) 0%, rgba(39,26,16,.05) 30%, rgba(39,26,16,.62) 100%);
  --hero-tint: rgba(187,74,38,.30);   /* duotone wash over hero photo */
  --radius:    14px;
}

.theme-taylors{                 /* Taylor's Landing — tidewater coast */
  --bg:        #e7eeea;
  --bg-2:      #d6e2dd;
  --paper:     #f2f6f3;
  --ink:       #0e1f1a;
  --ink-soft:  #3a5650;
  --line:      rgba(14,31,26,.16);
  --line-soft: rgba(14,31,26,.09);
  --primary:   #1f5d52;   /* spruce teal  */
  --primary-d: #143f38;
  --secondary: #3c6e86;   /* river slate  */
  --accent:    #d9603b;   /* buoy coral   */
  --hero-veil: linear-gradient(180deg, rgba(8,24,20,.20) 0%, rgba(8,24,20,.05) 28%, rgba(8,24,20,.66) 100%);
  --hero-tint: rgba(31,93,82,.34);
}

.theme-lakeshore{               /* Lakeshore — Ochoco Reservoir, high desert */
  --bg:        #f1eadd;
  --bg-2:      #e5dac6;
  --paper:     #faf5ea;
  --ink:       #221c14;
  --ink-soft:  #574d3e;
  --line:      rgba(34,28,20,.15);
  --line-soft: rgba(34,28,20,.08);
  --primary:   #9c5a38;   /* muted clay   */
  --primary-d: #7d4527;
  --secondary: #84895f;   /* dusty sage   */
  --accent:    #c39a4a;   /* pale gold    */
  --hero-veil: linear-gradient(180deg, rgba(34,28,20,.16) 0%, rgba(34,28,20,.04) 30%, rgba(34,28,20,.60) 100%);
  --hero-tint: rgba(156,90,56,.26);
}

/* ---- Reset / base -------------------------------------------------------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Hanken Grotesk", system-ui, sans-serif;
  font-size:clamp(1rem, .96rem + .2vw, 1.085rem);
  line-height:1.7;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3{ margin:0; font-weight:400; }
::selection{ background:var(--primary); color:var(--on-primary); }

/* Custom scrollbar (desktop) */
@media (pointer:fine){
  *{ scrollbar-width:thin; scrollbar-color:var(--primary) transparent; }
  *::-webkit-scrollbar{ width:11px; height:11px; }
  *::-webkit-scrollbar-thumb{ background:var(--primary); border:3px solid var(--bg); border-radius:99px; }
}

/* ---- Layout helpers ------------------------------------------------------ */
.container{ width:min(1180px, 92vw); margin-inline:auto; }
.section{ padding-block:clamp(4.5rem, 9vw, 8.5rem); position:relative; }
.section--alt{ background:var(--bg-2); }
.section--paper{ background:var(--paper); }
section[id]{ scroll-margin-top:84px; }

.display{
  font-family:"Fraunces", Georgia, serif;
  font-optical-sizing:auto;
  font-weight:430;
  line-height:1.02;
  letter-spacing:-.012em;
}

.eyebrow{
  font-family:"Space Mono", ui-monospace, monospace;
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.24em;
  color:var(--primary);
  margin:0 0 1.4rem;
  display:flex; align-items:center; gap:.7rem;
}
.eyebrow i{ font-style:normal; color:var(--accent); }
.eyebrow::before{ content:""; width:26px; height:1px; background:currentColor; opacity:.5; }

.section-head{ max-width:46rem; margin-bottom:clamp(2.5rem,5vw,4rem); }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head h2{ font-size:clamp(2rem, 1.3rem + 3vw, 3.6rem); }
.prose{ color:var(--ink-soft); max-width:42rem; }
.prose.lg{ font-size:clamp(1.1rem, 1rem + .6vw, 1.4rem); line-height:1.6; color:var(--ink); }

/* ---- Buttons ------------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; gap:.6em;
  padding:.92em 1.6em;
  font-family:"Hanken Grotesk", sans-serif;
  font-weight:600; font-size:.97rem; letter-spacing:.005em;
  border-radius:100px; border:1px solid transparent;
  cursor:pointer; transition:transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease;
  will-change:transform;
}
.btn svg{ width:1.05em; height:1.05em; }
.btn--solid{ background:var(--primary); color:var(--on-primary); box-shadow:0 10px 24px -12px var(--primary); }
.btn--solid:hover{ background:var(--primary-d); transform:translateY(-2px); box-shadow:0 16px 30px -12px var(--primary); }
.btn--ghost{ border-color:var(--line); color:var(--ink); }
.btn--ghost:hover{ border-color:var(--ink); transform:translateY(-2px); }
.hero .btn--ghost{ color:#fff; border-color:rgba(255,255,255,.45); }
.hero .btn--ghost:hover{ border-color:#fff; background:rgba(255,255,255,.08); }

/* ---- Texture overlays ---------------------------------------------------- */
.grain{
  position:fixed; inset:0; z-index:200; pointer-events:none;
  opacity:.05; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.contours{
  position:absolute; inset:0; width:100%; height:100%;
  color:var(--accent); opacity:.16; pointer-events:none;
  stroke:currentColor; fill:none; stroke-width:1.4;
}

/* ---- Navigation ---------------------------------------------------------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  transition:background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom:1px solid transparent;
}
.nav__inner{ display:flex; align-items:center; justify-content:space-between; height:72px; }
/* The full-colour DV logo (teal/green shield + navy text) only reads on light,
   so it sits on a small chip. The chip is tinted to each park's own paper tone
   and frosted (backdrop-blur) so it blends into the hero instead of reading as
   a white sticker. overflow:hidden + negative img margins crop the SVG's ~23%
   transparent padding so the chip hugs the artwork. */
/* On load (transparent nav over the hero) the chip is understated — a faint
   frosted backing, no shadow or border, slightly dialed back — so it doesn't
   shout. Once the nav goes solid on scroll (and in the footer) it firms up
   into the full theme-tinted chip. */
.brand{ display:inline-flex; align-items:center; height:48px; padding:0 14px; border-radius:12px; overflow:hidden;
  background:color-mix(in srgb, var(--paper) 32%, transparent);
  -webkit-backdrop-filter:blur(5px); backdrop-filter:blur(5px);
  border:1px solid transparent; opacity:.82;
  transition:background .45s ease, box-shadow .45s ease, border-color .45s ease, opacity .45s ease, -webkit-backdrop-filter .45s ease, backdrop-filter .45s ease; }
.brand img{ height:92px; width:auto; display:block; margin-block:-22px; }
.nav--solid .brand,
.foot__brand .brand{ background:color-mix(in srgb, var(--paper) 92%, transparent); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); border-color:color-mix(in srgb, var(--ink) 10%, transparent); box-shadow:0 10px 26px -18px color-mix(in srgb, var(--ink) 85%, transparent); opacity:1; }
.brand__mark{
  font-family:"Fraunces",serif; font-weight:500; font-size:1.05rem;
  background:var(--primary); color:#fff; width:30px; height:30px; border-radius:8px;
  display:inline-flex; align-items:center; justify-content:center; align-self:center;
  letter-spacing:-.02em;
}
.brand__txt{ font-family:"Space Mono",monospace; font-size:.74rem; letter-spacing:.22em; text-transform:uppercase; }
.nav__links{ display:flex; gap:2rem; }
.nav__links a{
  font-size:.86rem; font-weight:500; color:rgba(255,255,255,.86); position:relative; padding:.2rem 0;
  transition:color .3s ease;
}
.nav__links a::after{
  content:""; position:absolute; left:0; bottom:-2px; width:100%; height:1.5px;
  background:currentColor; transform:scaleX(0); transform-origin:left; transition:transform .3s ease;
}
.nav__links a:hover::after{ transform:scaleX(1); }
.nav__cta{ display:flex; align-items:center; gap:1rem; }
.nav__apply{ padding:.55em 1.25em; font-size:.86rem; }
.nav__toggle{ display:none; }

/* solid state after scroll */
.nav--solid{ background:color-mix(in srgb, var(--bg) 86%, transparent); backdrop-filter:blur(12px); border-color:var(--line-soft); box-shadow:0 1px 20px -10px rgba(0,0,0,.4); }
.nav--solid .brand,
.nav--solid .nav__links a{ color:var(--ink); }
.nav--solid .nav__links a{ color:var(--ink-soft); }

/* ---- Hero ---------------------------------------------------------------- */
.hero{ position:relative; min-height:100svh; display:flex; align-items:flex-end; color:#fff; overflow:hidden; }
.hero__media{ position:absolute; inset:0; }
.hero__media img{ width:100%; height:100%; object-fit:cover; filter:saturate(.92) contrast(1.04); }
.hero__media::after{               /* duotone colour grade */
  content:""; position:absolute; inset:0; background:var(--hero-tint); mix-blend-mode:multiply;
}
.hero__veil{ position:absolute; inset:0; background:var(--hero-veil); }
.hero .contours{ opacity:.13; color:#fff; z-index:1; }
.hero__content{ position:relative; z-index:2; padding-block:clamp(7rem,14vh,11rem) clamp(3.5rem,8vh,6rem); width:min(1180px,92vw); margin-inline:auto; }
.hero__eyebrow{ color:#fff; }
.hero__eyebrow::before{ background:var(--accent); opacity:1; }
.hero__coords{ color:var(--accent); }
.hero__title{
  font-family:"Fraunces",serif; font-optical-sizing:auto; font-weight:450;
  font-size:clamp(3.1rem, 1.6rem + 8vw, 7.2rem); line-height:.95; letter-spacing:-.018em;
  max-width:15ch; margin:0 0 1.4rem; text-wrap:balance;
}
.hero__kicker{ display:block; font-family:"Space Mono",monospace; font-weight:400; font-size:clamp(.8rem,.6rem + .7vw,1.15rem); letter-spacing:.22em; text-transform:uppercase; color:var(--accent); margin-top:1.1rem; }
.hero__lede{ font-size:clamp(1.1rem,1rem + .7vw,1.5rem); line-height:1.55; max-width:36rem; color:rgba(255,255,255,.92); margin:0 0 2.4rem; font-weight:400; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:1rem; }
.hero__scroll{
  position:absolute; right:max(4vw,1.5rem); bottom:2.2rem; z-index:2;
  font-family:"Space Mono",monospace; font-size:.7rem; letter-spacing:.22em; text-transform:uppercase;
  color:rgba(255,255,255,.8); display:flex; align-items:center; gap:.6rem; writing-mode:vertical-rl;
}
.hero__scroll span{ width:1px; height:46px; background:rgba(255,255,255,.6); animation:scrolldot 2.4s ease-in-out infinite; }
@keyframes scrolldot{ 0%,100%{ transform:scaleY(.35); opacity:.4; transform-origin:top; } 50%{ transform:scaleY(1); opacity:1; } }

/* ---- Overview + spec list ----------------------------------------------- */
.overview__grid{ display:grid; grid-template-columns:1.5fr .9fr; gap:clamp(2.5rem,6vw,6rem); align-items:start; }
.overview__lead h2{ font-size:clamp(1.8rem,1.2rem + 2.6vw,3.1rem); margin-bottom:1.6rem; }
.specs{ border-top:1px solid var(--line); }
.spec{ display:flex; justify-content:space-between; align-items:baseline; gap:1rem; padding:1.05rem 0; border-bottom:1px solid var(--line); }
.spec span{ font-family:"Space Mono",monospace; font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-soft); }
.spec b{ font-weight:600; text-align:right; }

/* ---- Amenities ----------------------------------------------------------- */
.amenity-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.amenity{ background:var(--bg); padding:clamp(1.6rem,2.4vw,2.4rem); transition:background .35s ease, transform .35s ease; position:relative; }
.section--alt .amenity{ background:var(--bg-2); }
.amenity:hover{ background:var(--paper); }
.amenity__no{ font-family:"Space Mono",monospace; font-size:.74rem; letter-spacing:.1em; color:var(--accent); }
.amenity h3{ font-family:"Fraunces",serif; font-weight:500; font-size:1.32rem; line-height:1.15; margin:.7rem 0 .6rem; }
.amenity p{ margin:0; color:var(--ink-soft); font-size:.96rem; }
.amenity__icon{ width:30px; height:30px; stroke:var(--primary); fill:none; stroke-width:1.6; position:absolute; top:clamp(1.6rem,2.4vw,2.4rem); right:clamp(1.6rem,2.4vw,2.4rem); opacity:.8; }
.note{ text-align:center; margin-top:2.4rem; font-family:"Space Mono",monospace; font-size:.74rem; letter-spacing:.08em; color:var(--ink-soft); }

/* ---- Gallery ------------------------------------------------------------- */
.frame{ overflow:hidden; border-radius:var(--radius); position:relative; background:var(--bg-2); }
.frame img{ width:100%; height:100%; object-fit:cover; transition:transform .9s cubic-bezier(.2,.7,.2,1); }
.frame:hover img{ transform:scale(1.05); }
.gallery__grid{ display:grid; grid-template-columns:repeat(6,1fr); grid-auto-rows:170px; gap:14px; }
.gallery__grid .frame{ grid-column:span 2; grid-row:span 1; }
.g-tall{ grid-row:span 2 !important; }
.g-wide{ grid-column:span 3 !important; }
.g-big{ grid-column:span 3 !important; grid-row:span 2 !important; }

/* compact equal-tile galleries (Ochoco trio, Taylor's quad) */
.gallery--trio{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.gallery--trio .frame{ height:clamp(220px,26vw,320px); }
.gallery--quad{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.gallery--quad .frame{ height:clamp(230px,27vw,340px); }
.gallery__more{ text-align:center; margin-top:2.2rem; }
@media(max-width:780px){ .gallery--trio,.gallery--quad{ grid-template-columns:1fr; } .gallery--trio .frame,.gallery--quad .frame{ height:240px; } }

/* single-photo treatment (Taylor's) */
.cinema{ position:relative; border-radius:var(--radius); overflow:hidden; min-height:min(70vh,620px); display:flex; align-items:flex-end; }
.cinema img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.cinema::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 40%,rgba(8,24,20,.7)); }
.cinema__cap{ position:relative; z-index:1; padding:clamp(1.6rem,4vw,3rem); color:#fff; max-width:40rem; }
.cinema__cap .display{ font-size:clamp(1.5rem,1rem + 2.5vw,2.6rem); margin-bottom:1rem; }
.cinema__cap p{ color:rgba(255,255,255,.9); margin:0 0 1.4rem; }
.cinema__cap .btn{ margin-top:.4rem; }
.cinema__cap .btn--ghost{ color:#fff; border-color:rgba(255,255,255,.55); }
.cinema__cap .btn--ghost:hover{ border-color:#fff; background:rgba(255,255,255,.1); }

/* ---- Location ------------------------------------------------------------ */
.location__grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2.5rem,5vw,5rem); align-items:center; }
.itinerary{ list-style:none; margin:2rem 0 0; padding:0; border-top:1px solid var(--line); }
.itinerary li{ display:grid; grid-template-columns:auto 1fr; gap:1.3rem; padding:1.25rem 0; border-bottom:1px solid var(--line); align-items:baseline; }
.itinerary .dist{ font-family:"Space Mono",monospace; font-size:.8rem; color:var(--primary); white-space:nowrap; padding-top:.15rem; min-width:5.5rem; }
.itinerary b{ font-weight:600; display:block; }
.itinerary p{ margin:.2rem 0 0; color:var(--ink-soft); font-size:.93rem; }
.addr{ font-family:"Space Mono",monospace; font-size:.82rem; letter-spacing:.04em; color:var(--ink-soft); margin-top:1.8rem; }
.map{ height:clamp(360px,52vh,520px); box-shadow:0 30px 60px -40px rgba(0,0,0,.5); }
.map iframe{ width:100%; height:100%; border:0; filter:grayscale(.2) contrast(1.02); }

/* ---- Listings embed ------------------------------------------------------ */
.embed{ height:82vh; min-height:600px; box-shadow:0 40px 80px -50px rgba(0,0,0,.6); background:var(--paper); }
.embed iframe{ width:100%; height:100%; border:0; display:block; }
.embed__empty{ height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:.9rem; padding:2.5rem; }
.embed__empty-h{ font-family:"Fraunces",serif; font-weight:500; font-size:clamp(1.4rem,1rem + 1.4vw,2rem); color:var(--ink); margin:0; }
.embed__empty p{ margin:0; color:var(--ink-soft); max-width:32rem; }
.embed__empty .btn{ margin-top:.8rem; }
.listings .btn{ margin-bottom:2.6rem; }

/* ---- Closing CTA --------------------------------------------------------- */
.closing{ position:relative; background:var(--primary); color:#fff; text-align:center; padding-block:clamp(5rem,10vw,8rem); overflow:hidden; }
.closing .contours{ color:#fff; opacity:.18; }
.closing__in{ position:relative; z-index:1; }
.closing h2{ font-family:"Fraunces",serif; font-weight:450; font-size:clamp(2rem,1.3rem + 3.4vw,3.8rem); line-height:1.02; margin-bottom:1.2rem; text-wrap:balance; }
.closing p{ font-size:1.15rem; color:rgba(255,255,255,.9); max-width:34rem; margin:0 auto 2.4rem; }
.closing .btn--solid{ background:#fff; color:var(--primary); box-shadow:0 14px 30px -14px rgba(0,0,0,.5); }
.closing .btn--solid:hover{ background:var(--paper); }
.closing .btn--ghost{ color:#fff; border-color:rgba(255,255,255,.5); }
.closing .btn--ghost:hover{ border-color:#fff; background:rgba(255,255,255,.1); }

/* ---- Footer -------------------------------------------------------------- */
.foot{ background:var(--ink); color:rgba(255,255,255,.66); padding-block:clamp(3rem,6vw,5rem) 2rem; }
.foot__grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:2.2rem; }
.foot__brand .brand{ height:46px; padding:0 14px; margin-bottom:1rem; }  /* white chip inherited from .brand */
.foot__brand .brand img{ height:88px; margin-block:-21px; }
.foot p{ margin:.3rem 0; font-size:.9rem; }
.foot h4{ font-family:"Space Mono",monospace; font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.5); margin:0 0 1.1rem; font-weight:400; }
.foot ul{ list-style:none; margin:0; padding:0; display:grid; gap:.7rem; }
.foot ul a{ color:rgba(255,255,255,.78); font-size:.92rem; transition:color .25s ease; }
.foot ul a:hover{ color:#fff; }
.foot__logo{ height:54px; width:auto; opacity:.92; margin-bottom:1rem; }
.foot__base{ margin-top:3rem; padding-top:1.6rem; border-top:1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-family:"Space Mono",monospace; font-size:.72rem; letter-spacing:.06em; color:rgba(255,255,255,.5); }

/* ---- Mobile dock --------------------------------------------------------- */
.dock{ position:fixed; left:0; right:0; bottom:0; z-index:90; display:none; padding:.8rem 1rem calc(.8rem + env(safe-area-inset-bottom)); background:color-mix(in srgb,var(--bg) 92%,transparent); backdrop-filter:blur(10px); border-top:1px solid var(--line); }
.dock .btn{ width:100%; justify-content:center; }

/* ---- Scroll-reveal motion ------------------------------------------------ */
[data-reveal]{ opacity:0; transform:translateY(22px); transition:opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); transition-delay:calc(var(--d,0) * 80ms); }
[data-reveal].is-in{ opacity:1; transform:none; }

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *{ animation:none !important; }
  [data-reveal]{ opacity:1; transform:none; transition:none; }
  .frame img,.btn{ transition:none; }
}

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width:900px){
  .overview__grid{ grid-template-columns:1fr; }
  .amenity-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery__grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:150px; }
  .gallery__grid .frame,.g-wide,.g-big{ grid-column:span 1 !important; }
  .g-big,.g-tall{ grid-row:span 2 !important; }
  .location__grid{ grid-template-columns:1fr; }
  .foot__grid{ grid-template-columns:1fr 1fr; }
  .foot__brand{ grid-column:1 / -1; }
}
@media (max-width:680px){
  .nav__links{
    position:fixed; inset:72px 0 auto 0; flex-direction:column; gap:0;
    background:var(--bg); border-bottom:1px solid var(--line); padding:.5rem 6vw 1.2rem;
    transform:translateY(-130%); transition:transform .4s cubic-bezier(.2,.7,.2,1); box-shadow:0 20px 40px -30px rgba(0,0,0,.6);
  }
  .nav__links.open{ transform:translateY(0); }
  .nav__links a{ color:var(--ink); padding:.9rem 0; border-bottom:1px solid var(--line-soft); width:100%; }
  .nav__apply{ display:none; }
  .nav__toggle{ display:inline-flex; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:8px; }
  .nav__toggle span{ width:24px; height:2px; background:#fff; transition:background .3s ease, transform .3s ease, opacity .3s ease; }
  .nav--solid .nav__toggle span{ background:var(--ink); }
  .nav__toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); background:var(--ink); }
  .nav__toggle.open span:nth-child(2){ opacity:0; }
  .nav__toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); background:var(--ink); }
  .amenity-grid{ grid-template-columns:1fr; }
  .gallery__grid{ grid-template-columns:1fr; grid-auto-rows:230px; }
  .gallery__grid .frame,.g-tall,.g-big{ grid-row:span 1 !important; }
  .dock{ display:block; }
  .foot__grid{ grid-template-columns:1fr; }
  .foot__base{ justify-content:flex-start; }
  body{ padding-bottom:74px; }
  .hero__scroll{ display:none; }
}
