/* ==========================================================================
   Bluenest
   Indigo drawn from the brand mark, limewash blue from the old city walls,
   one sandstone accent used only on hairlines and small marks.
   ========================================================================== */

:root {
  --ink: #050c2e;
  --ink-2: #0a1338;
  --indigo: #1f2f7e;
  --indigo-soft: #45569f;
  --indigo-pale: #9aa5d2;
  --wash: #e9ecf6;
  --wash-2: #dde2f1;
  --paper: #f7f8fc;
  --white: #ffffff;
  --sand: #b8935a;
  --text: #161d3c;
  --muted: #5b638a;
  --line: rgba(5, 12, 46, 0.14);
  --hair: rgba(5, 12, 46, 0.08);
  --hair-light: rgba(255, 255, 255, 0.16);
  --wa: #1fa855;

  --display: "EB Garamond", "Iowan Old Style", Georgia, serif;
  --ui: "Karla", "Helvetica Neue", Arial, sans-serif;

  --shell: 1140px;
  --gutter: 26px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --r: 2px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--ui);
  font-size: 16.5px;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.9rem, 6.2vw, 4.9rem); }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.1rem); }
h3 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); line-height: 1.14; }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.15em; }
::selection { background: var(--ink); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 4px;
  border-radius: 1px;
}

.container {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 300;
}
.skip:focus { left: 14px; top: 14px; }

/* ---------- editorial labels, serif italic rather than tracked caps ---------- */

.label {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--muted);
  margin: 0 0 10px;
  letter-spacing: 0;
}
.label.on-dark { color: var(--indigo-pale); }

.sand-rule {
  width: 34px;
  height: 1px;
  background: var(--sand);
  border: 0;
  margin: 0 0 26px;
}
.sand-rule.on-dark { background: var(--sand); opacity: 0.85; }

.lede {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink-2);
}

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease),
    border-color 0.5s var(--ease), opacity 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(247, 248, 252, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 13px 0;
  border-bottom-color: var(--hair);
}

.bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: block; position: relative; width: 136px; flex: none; line-height: 0; }
.brand img { width: 100%; transition: opacity 0.45s var(--ease); }
.brand .logo-light { position: absolute; inset: 0; }
.site-header.is-solid .brand .logo-light { opacity: 0; }
.site-header:not(.is-solid) .brand .logo-dark { opacity: 0; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-size: 0.94rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding: 3px 0;
  transition: color 0.4s var(--ease);
}
.site-header.is-solid .nav a { color: var(--ink); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav a:hover { color: #fff; }
.site-header.is-solid .nav a:hover { color: var(--indigo); }

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 20px !important;
  border-radius: var(--r);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #fff; color: var(--ink) !important; }
.site-header.is-solid .nav-cta { border-color: var(--line); }
.site-header.is-solid .nav-cta:hover { background: var(--ink); color: #fff !important; border-color: var(--ink); }

.menu-btn {
  display: none;
  width: 40px; height: 40px;
  border: 0; background: none; padding: 0; cursor: pointer; position: relative;
}
.menu-btn span {
  position: absolute; left: 8px;
  width: 24px; height: 1px;
  background: #fff;
  transition: transform 0.45s var(--ease), background 0.4s var(--ease);
}
.menu-btn span:nth-child(1) { top: 16px; }
.menu-btn span:nth-child(2) { top: 23px; }
.site-header.is-solid .menu-btn span, body.nav-open .menu-btn span { background: var(--ink); }
body.nav-open .menu-btn span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
body.nav-open .menu-btn span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui);
  font-size: 0.93rem;
  line-height: 1;
  padding: 17px 26px;
  border-radius: var(--r);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
    border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--indigo); box-shadow: 0 12px 26px rgba(5, 12, 46, 0.16); }

.btn-line { border-color: var(--line); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--wash); }

.btn-onDark { border-color: rgba(255, 255, 255, 0.38); color: #fff; }
.btn-onDark:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.textlink {
  display: inline-block;
  text-decoration: none;
  font-size: 0.93rem;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.textlink:hover { border-color: var(--ink); color: var(--indigo); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-inner { position: relative; z-index: 3; }

.hero-home {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 150px 0 0;
}

.hero-home .hero-inner { padding-bottom: clamp(170px, 26vh, 260px); }

.hero h1 { color: #fff; max-width: 13ch; margin-bottom: 24px; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero h1 .line > span {
  display: block;
  transform: translateY(104%);
  animation: lineUp 1.15s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) > span { animation-delay: 0.12s; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.26s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero-place {
  font-family: var(--display);
  font-style: italic;
  color: var(--indigo-pale);
  font-size: 1.05rem;
  margin: 0 0 18px;
  opacity: 0;
  animation: fadeUp 1s 0.1s var(--ease) forwards;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.76);
  max-width: 44ch;
  font-size: 1.02rem;
  opacity: 0;
  animation: fadeUp 1s 0.62s var(--ease) forwards;
}
.hero .btn-row { margin-top: 32px; opacity: 0; animation: fadeUp 1s 0.78s var(--ease) forwards; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.hero-moon {
  position: absolute;
  top: 16%;
  right: 11%;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #fffaf0, #e7d5ae 62%, #c7ad7e);
  box-shadow: 0 0 80px 26px rgba(231, 213, 174, 0.14);
  z-index: 1;
  opacity: 0;
  animation: moonRise 2.4s 0.4s var(--ease) forwards;
}
@keyframes moonRise {
  from { opacity: 0; transform: translateY(22px) scale(0.9); }
  to { opacity: 1; transform: none; }
}

.sky { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; z-index: 1; pointer-events: none; }
.sky .layer { opacity: 0; transform: translateY(30px); }
.sky.go .layer { animation: layerUp 1.6s var(--ease) forwards; }
.sky.go .layer-1 { animation-delay: 0.1s; }
.sky.go .layer-2 { animation-delay: 0.3s; }
.sky.go .layer-3 { animation-delay: 0.5s; }
.sky .glow { opacity: 0; }
.sky.go .glow { animation: windowsOn 2.8s 1.1s var(--ease) forwards; }
@keyframes layerUp { to { opacity: 1; transform: none; } }
@keyframes windowsOn { 0% { opacity: 0; } 65% { opacity: 0.95; } 100% { opacity: 0.78; } }

.hero-scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 30px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  opacity: 0;
  animation: fadeUp 1s 1.5s var(--ease) forwards;
  transition: color 0.4s var(--ease);
}
.hero-scroll:hover { color: #fff; }
.hero-scroll i {
  width: 52px; height: 1px;
  background: rgba(255, 255, 255, 0.45);
  display: block;
  transform-origin: left;
  animation: pulseLine 3s infinite;
}
@keyframes pulseLine {
  0%, 100% { transform: scaleX(0.5); opacity: 0.4; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* inner page hero */

.hero-page { padding: 186px 0 104px; }
.hero-page h1 { max-width: 19ch; }
.hero-page .hero-sub { margin-top: 20px; animation-delay: 0.3s; }
.hero-page .sky { opacity: 0.26; }
.hero-page::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 86%;
  background: linear-gradient(to bottom, var(--ink) 48%, rgba(5, 12, 46, 0));
  z-index: 2;
  pointer-events: none;
}

.crumb {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--indigo-pale);
  margin-bottom: 18px;
}
.crumb a { text-decoration: none; border-bottom: 1px solid transparent; }
.crumb a:hover { color: #fff; border-color: rgba(255, 255, 255, 0.4); }

/* ---------- sections ---------- */

.section { padding: clamp(76px, 10vw, 134px) 0; }
.section-wash { background: var(--wash); }
.section-white { background: var(--white); }
.section-ink { background: var(--ink); color: rgba(255, 255, 255, 0.78); }
.section-ink h2 { color: #fff; }

.head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 56px;
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.head h2 { max-width: 14ch; }
.head p { margin: 0; color: var(--muted); max-width: 44ch; }

/* three quiet facts */

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.facts-2 { grid-template-columns: repeat(2, 1fr); gap: 56px; max-width: 800px; }
.facts div { border-top: 1px solid var(--ink); padding-top: 22px; }
.facts h4 { margin-bottom: 8px; }
.facts p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- stays ---------- */

.stay {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding: clamp(52px, 7vw, 88px) 0;
  border-top: 1px solid var(--hair);
}
.stay:first-of-type { border-top: 0; padding-top: 0; }
.stay.flip .stay-media { order: 2; }
.stay:not(.stay-full) .stay-media { align-self: stretch; }
.stay:not(.stay-full) .frame { height: 100%; aspect-ratio: auto; min-height: 330px; }

.stay-copy h3 { margin-bottom: 6px; }
.stay-full .stay-copy h3 { font-size: clamp(2.2rem, 3.4vw, 2.9rem); }
.stay-copy .label { margin-bottom: 20px; }
.stay-copy p { color: var(--muted); max-width: 48ch; }
.stay-copy .note { font-size: 0.93rem; color: var(--muted); margin-top: 20px; }

.specs {
  list-style: none;
  padding: 0;
  margin: 26px 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 16px 0;
}
.specs li { font-size: 0.92rem; color: var(--ink); }
.specs li b { font-weight: 600; }

.amen {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}
.amen li {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--hair);
  display: flex;
  align-items: center;
  gap: 10px;
}
.amen li::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--sand);
  flex: none;
  border-radius: 50%;
}

/* photo slots */

.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: linear-gradient(160deg, #0c1640 0%, #16225c 55%, #1f2f7e 100%);
  aspect-ratio: 3 / 2;
  display: grid;
  place-items: center;
}
.frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.frame.has-photo:hover img { transform: scale(1.035); }
.frame.has-photo { cursor: zoom-in; }
.frame.has-photo .frame-note { display: none; }

.frame-note { text-align: center; padding: 18px; }
.frame-note img {
  width: 44px;
  margin: 0 auto 14px;
  position: static;
  height: auto;
  opacity: 0.34;
}
.frame-note span {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
}

.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.thumbs .frame { aspect-ratio: 1 / 1; }
.thumbs .frame-note img { width: 26px; margin: 0; opacity: 0.4; }
.thumbs .frame-note span { display: none; }

/* ---------- statement band ---------- */

.statement { background: var(--ink); color: #fff; padding: clamp(76px, 9vw, 120px) 0; }
.statement blockquote::before { content: ""; display: block; width: 34px; height: 1px; background: var(--sand); margin-bottom: 30px; }
.statement blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.1vw, 2.6rem);
  line-height: 1.32;
  max-width: 22ch;
  color: #fff;
}
.statement .who {
  margin-top: 26px;
  font-family: var(--display);
  font-style: italic;
  color: var(--indigo-pale);
}

/* ---------- near grid ---------- */

.near { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 48px; }
.near div {
  padding: 20px 0;
  border-bottom: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.near b {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--ink);
}
.near span { font-size: 0.88rem; color: var(--muted); white-space: nowrap; }

.footnote { margin-top: 22px; font-size: 0.88rem; color: var(--muted); }

/* ---------- journal ---------- */

.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.post-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}
.post-card .meta {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.post-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  transition: color 0.4s var(--ease);
}
.post-card:hover h3 { color: var(--indigo); }
.post-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.post-card .more {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--indigo);
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color 0.4s var(--ease);
}
.post-card:hover .more { border-color: var(--indigo); }

.post-list { border-top: 1px solid var(--line); }
.post-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: baseline;
  padding: 34px 0;
  border-bottom: 1px solid var(--hair);
  text-decoration: none;
  transition: background 0.45s var(--ease), padding-left 0.45s var(--ease);
}
.post-row:hover { background: rgba(233, 236, 246, 0.6); padding-left: 16px; }
.post-row .meta { font-family: var(--display); font-style: italic; color: var(--muted); font-size: 0.95rem; }
.post-row h3 { font-size: 1.5rem; margin-bottom: 8px; }
.post-row p { margin: 0; color: var(--muted); font-size: 0.95rem; max-width: 60ch; }
.post-row .arrow { color: var(--indigo); font-size: 1.3rem; line-height: 1; }

/* ---------- article ---------- */

.article { max-width: 672px; margin: 0 auto; padding: clamp(58px, 7vw, 90px) var(--gutter) clamp(64px, 8vw, 104px); }
.article p, .article li {
  font-family: var(--display);
  font-size: 1.24rem;
  line-height: 1.74;
  color: #1b2242;
}
.article h2 { font-size: clamp(1.8rem, 2.8vw, 2.3rem); margin: 52px 0 16px; }
.article h3 { font-size: 1.45rem; margin: 36px 0 10px; }
.article ul, .article ol { padding-left: 20px; margin: 0 0 1.3em; }
.article li { margin-bottom: 9px; }
.article strong { font-weight: 600; }
.article em { font-style: italic; }
.article a { color: var(--indigo); text-decoration: none; border-bottom: 1px solid rgba(31, 47, 126, 0.35); }
.article a:hover { border-color: var(--indigo); }
.article .intro { font-size: 1.46rem; line-height: 1.55; color: var(--ink); margin-bottom: 38px; }

.callout {
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 24px 0;
  margin: 42px 0;
}
.callout p { margin: 0; font-size: 1.12rem; }

.article-foot { margin-top: 58px; padding-top: 32px; border-top: 1px solid var(--line); }
.article-foot p { font-family: var(--ui); font-size: 1rem; color: var(--muted); max-width: 52ch; }

/* ---------- faq ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--hair); padding: 24px 0; }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 11px; height: 11px;
  flex: none;
  border-right: 1px solid var(--indigo);
  border-bottom: 1px solid var(--indigo);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.45s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg) translateY(-2px); }
.faq .answer { animation: openDown 0.45s var(--ease); }
@keyframes openDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq .answer p { margin: 14px 0 0; color: var(--muted); max-width: 64ch; }

/* ---------- contact band ---------- */

.band { background: var(--ink); color: #fff; position: relative; overflow: hidden; padding: clamp(72px, 9vw, 116px) 0; }
.band h2 { color: #fff; max-width: 15ch; margin-bottom: 18px; }
.band p { color: rgba(255, 255, 255, 0.72); max-width: 42ch; }
.band .mark-watermark {
  position: absolute;
  right: -70px; bottom: -110px;
  width: 400px;
  opacity: 0.05;
  pointer-events: none;
}
.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.contact-lines { list-style: none; padding: 0; margin: 0; }
.contact-lines li {
  border-top: 1px solid var(--hair-light);
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.contact-lines small {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--indigo-pale);
}
.contact-lines a, .contact-lines span {
  font-family: var(--display);
  font-size: 1.25rem;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid transparent;
}
.contact-lines a:hover { border-color: rgba(255, 255, 255, 0.5); }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink-2);
  color: rgba(255, 255, 255, 0.62);
  padding: 72px 0 30px;
  font-size: 0.93rem;
}
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 52px; }
.site-footer .brand-foot { width: 148px; margin-bottom: 20px; }
.site-footer h4 {
  color: #fff;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.02rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 11px; }
.site-footer a { text-decoration: none; transition: color 0.35s var(--ease); }
.site-footer a:hover { color: #fff; }
.foot-base {
  border-top: 1px solid var(--hair-light);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
}

/* ---------- floating whatsapp ---------- */

.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(5, 12, 46, 0.26);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
  visibility: hidden;
}
.wa-float.show { opacity: 1; visibility: visible; }
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 25px; height: 25px; fill: #fff; }

/* ---------- lightbox ---------- */

.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 12, 46, 0.96);
  display: grid;
  grid-template-rows: auto 1fr auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.lb.open { opacity: 1; visibility: visible; }
.lb-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--display);
  font-style: italic;
}
.lb-stage { display: grid; place-items: center; padding: 0 clamp(14px, 6vw, 80px); min-height: 0; }
.lb-stage img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  object-fit: contain;
  border-radius: var(--r);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.lb.open .lb-stage img { opacity: 1; transform: none; }
.lb-foot { display: flex; justify-content: center; align-items: center; gap: 16px; padding: 22px; }
.lb button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  border-radius: var(--r);
  font-family: var(--ui);
  font-size: 0.88rem;
  padding: 11px 20px;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.lb button:hover { background: #fff; color: var(--ink); border-color: #fff; }
.lb-count { color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; }
body.lb-open { overflow: hidden; }
body.lb-open .site-header, body.lb-open .wa-float { opacity: 0; pointer-events: none; }

/* ---------- reveals ---------- */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .head h2 { max-width: 18ch; }
  .stay { grid-template-columns: 1fr; gap: 30px; }
  .stay:not(.stay-full) .frame { height: auto; aspect-ratio: 3 / 2; min-height: 0; }
  .stay.flip .stay-media { order: 0; }
  .posts { grid-template-columns: 1fr; gap: 34px; }
  .facts { grid-template-columns: 1fr; gap: 24px; }
  .near { grid-template-columns: repeat(2, 1fr); gap: 0 36px; }
  .band-grid { grid-template-columns: 1fr; gap: 38px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .post-row { grid-template-columns: minmax(0, 1fr) auto; gap: 20px; }
  .post-row .meta { grid-column: 1 / -1; order: -1; margin-bottom: -12px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .menu-btn { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease);
    z-index: -1;
  }
  body.nav-open .nav { transform: none; }
  .nav a { color: var(--ink) !important; font-family: var(--display); font-size: 2.1rem; padding: 12px 0; }
  .nav a::after { display: none; }
  .nav-cta {
    font-family: var(--ui) !important;
    font-size: 0.98rem !important;
    margin-top: 18px;
    border-color: var(--line);
    padding: 14px 26px !important;
  }
  .site-header:not(.is-solid) .brand .logo-dark { opacity: 0; }
  body.nav-open .site-header .brand .logo-light { opacity: 0; }
  body.nav-open .site-header .brand .logo-dark { opacity: 1; }

  .hero-home { min-height: 94svh; padding-top: 120px; }
  .hero-home .hero-inner { padding-bottom: 150px; }
  .hero-moon { width: 46px; height: 46px; top: 13%; }
  .sky { height: 190px; }
  .hero-page { padding: 140px 0 72px; }
  .hero-page .sky { height: 140px; }
  .hero-scroll { display: none; }

  .amen { grid-template-columns: 1fr; }
  .near { grid-template-columns: 1fr; }
  .specs { gap: 18px; }
  .article p, .article li { font-size: 1.16rem; }
  .article .intro { font-size: 1.28rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-lines li { flex-direction: column; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .hero h1 .line > span, .hero-sub, .hero .btn-row,
  .hero-place, .hero-scroll, .hero-moon, .sky .layer, .sky .glow {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header, .wa-float, .band, .hero-scroll, .lb { display: none; }
  body { background: #fff; }
}
