:root {
  --ink: #1a1420;
  --ivory: #faf7f2;
  --ember: #c17a83;
  --amber: #d9762e;
  --umber: #6b6690;
  --stone: #4a4038;
  --nav-h: 94px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--ivory);
  background: var(--ink);
  line-height: 1.7;
}
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.15;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Nav offset for anchor links is handled solely by scroll-padding-top on
   <html>. Do NOT also set scroll-margin-top on the sections — the two add
   together and land targets twice the nav height down the page. */

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.nav.is-scrolled {
  padding: 14px 0;
  background: rgba(26, 20, 32, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(250,247,242,0.1);
}
.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-icon { display: block; width: 62px; color: var(--ivory); flex-shrink: 0; }
.nav-icon svg { width: 100%; height: auto; display: block; }
.nav-word {
  display: block;
  width: 232px;
  color: var(--ivory);
  flex-shrink: 0;
}
.nav-word svg { width: 100%; height: auto; display: block; }
@media (max-width: 420px) {
  .nav-icon { width: 42px; }
  .nav-word { width: 168px; }
}
@media (max-width: 380px) {
  .wrap { padding: 0 20px; }
  .nav-icon { width: 34px; }
  .nav-word { width: 140px; }
  .nav-inner { gap: 12px; }
}

/* Social icon buttons (after the Inquire button) */
.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  padding-left: 18px;
  border-left: 1px solid rgba(250,247,242,0.18);
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(250,247,242,0.28);
  border-radius: 50%;
  color: rgba(250,247,242,0.85);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.nav-social a:hover, .nav-social a:focus-visible {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--ink);
  outline: none;
}
.nav-social svg { width: 17px; height: 17px; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14.5px;
  white-space: nowrap;
  text-decoration: none;
  color: rgba(250,247,242,0.85);
  padding: 6px 1px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover, .nav-links a:focus-visible {
  color: var(--ivory);
  border-color: var(--ember);
  outline: none;
}
.nav-links a.nav-cta {
  background: var(--ember);
  color: var(--ink);
  padding: 9px 20px;
  border-radius: 2px;
  font-weight: 500;
  border-bottom: none;
}
.nav-links a.nav-cta:hover, .nav-links a.nav-cta:focus-visible {
  background: var(--amber);
  color: var(--ink);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  /* The brand block does not shrink, so without this the toggle is the
     only flexible item and collapses to zero width on narrow phones. */
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ivory);
  border-radius: 1px;
}
/* Explicitly override the generic button:hover/:focus-visible rules further
   down the sheet (meant for the form's submit button) so the hamburger
   doesn't pick up the amber fill on hover/focus. */
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: rgba(250,247,242,0.12);
  outline: 2px solid rgba(250,247,242,0.5);
  outline-offset: 2px;
}
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 22px);
    /* .nav-inner carries the .wrap padding itself, so 0 already spans the
       full bar; the old -32px pushed the panel off both screen edges. */
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(20, 16, 24, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 8px 32px 22px;
    border-bottom: 1px solid rgba(250,247,242,0.1);
  }
  .nav.is-scrolled .nav-links { top: calc(100% + 14px); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid rgba(250,247,242,0.08); }
  .nav-links a.nav-cta { margin-top: 10px; text-align: center; border-bottom: none; }
  /* Social row sits under the menu links on phones. */
  .nav-social {
    margin-left: 0;
    padding-left: 0;
    padding-top: 18px;
    border-left: none;
    justify-content: center;
    gap: 14px;
  }
  .nav-social a { width: 40px; height: 40px; }
  .nav-social svg { width: 19px; height: 19px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: url('hero-bg.jpg') center 62% / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* Left-side scrim: the headline sits over the brightest part of the
       sunset, so darken behind the text while leaving the sky visible. */
    linear-gradient(90deg, rgba(26,20,32,0.74) 0%, rgba(26,20,32,0.45) 42%, rgba(26,20,32,0.05) 72%),
    linear-gradient(180deg, rgba(26,20,32,0.55) 0%, rgba(26,20,32,0.18) 26%, rgba(26,20,32,0.40) 58%, rgba(26,20,32,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 56px) 32px 9vh;
}
.hero-tag {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--ivory);
  margin-bottom: 22px;
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0.9;
}
.hero-heading {
  font-weight: 600;
  font-size: 44px;
  max-width: 600px;
  margin-bottom: 22px;
  color: var(--ivory);
  letter-spacing: -0.5px;
  line-height: 1.04;
  text-shadow: 0 1px 24px rgba(26,20,32,0.45);
}
.hero-sub {
  max-width: 500px;
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(250,247,242,0.82);
  margin-bottom: 34px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--ember);
  color: var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--amber); outline: none; }
.btn-secondary {
  border: 1px solid rgba(250,247,242,0.4);
  color: var(--ivory);
  background: rgba(250,247,242,0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  border-color: var(--ivory);
  background: rgba(250,247,242,0.15);
  outline: none;
}
@media (min-width: 620px) {
  .hero-heading { font-size: 62px; }
}
@media (min-width: 900px) {
  .hero-heading { font-size: 76px; max-width: 640px; }
  .hero-sub { font-size: 17.5px; }
}

/* Tighten the hero stack on short/narrow phones so the CTAs
   aren't pushed below the fold — see note in the accompanying message. */
@media (max-width: 700px) {
  .hero-content { padding: 84px 24px 5vh; }
  .hero-tag { font-size: 13px; letter-spacing: 4px; margin-bottom: 10px; }
  .hero-heading { font-size: 32px; line-height: 1.14; margin-bottom: 12px; }
  .hero-sub { font-size: 15px; line-height: 1.5; margin-bottom: 16px; }
  .hero-ctas { gap: 12px; }
  .btn-primary, .btn-secondary { padding: 12px 22px; font-size: 14px; }
}

/* Phone held sideways: only ~390px of height, so the hero has to
   compress hard or the buttons fall below the fold. */
@media (max-height: 470px) and (orientation: landscape) {
  .hero, .hero-content { min-height: 0; }
  .hero-content { padding: 74px 32px 22px; justify-content: center; }
  .wx-card { display: none; }
  .hero-tag { font-size: 11px; letter-spacing: 3px; margin-bottom: 6px; }
  .hero-heading { font-size: 30px; margin-bottom: 8px; line-height: 1.06; }
  .hero-sub { font-size: 13.5px; line-height: 1.45; margin-bottom: 12px; max-width: 420px; }
  .btn-primary, .btn-secondary { padding: 9px 18px; font-size: 13px; }
  .scroll-hint { display: none; }
}

/* Short phones (iPhone SE, older Android): trim the stack further. */
@media (max-width: 700px) and (max-height: 700px) {
  .hero-content { padding-top: 76px; padding-bottom: 3vh; }
  .hero-tag { font-size: 12px; letter-spacing: 3px; margin-bottom: 8px; }
  .hero-heading { font-size: 28px; margin-bottom: 10px; }
  .hero-sub { font-size: 14.5px; margin-bottom: 14px; }
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: rgba(250,247,242,0.65);
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Weather / quick-fact glass card */
.wx-card {
  z-index: 2;
  width: 196px;
  padding: 18px 20px;
  margin-bottom: 30px;
  background: rgba(250,247,242,0.10);
  border: 1px solid rgba(250,247,242,0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 3px;
  color: var(--ivory);
}
.wx-place {
  font-size: 12px;
  letter-spacing: 0.5px;
  opacity: 0.8;
  margin-bottom: 12px;
}
.wx-row { display: flex; align-items: center; gap: 10px; min-height: 30px; }
.wx-icon { width: 30px; height: 30px; flex-shrink: 0; color: var(--ivory); }
.wx-icon svg { width: 100%; height: 100%; display: block; }
.wx-temp { font-family: 'Fraunces', serif; font-weight: 500; font-size: 30px; line-height: 1; }
.wx-desc { font-size: 12.5px; opacity: 0.75; margin-top: 8px; min-height: 16px; }
.wx-fact {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid rgba(250,247,242,0.16);
  font-size: 11.5px;
  letter-spacing: 0.2px;
  opacity: 0.7;
}
.wx-card.is-fallback .wx-row,
.wx-card.is-fallback .wx-desc { display: none; }

@media (min-width: 900px) {
  .wx-card {
    position: absolute;
    top: calc(var(--nav-h) + 34px);
    right: 32px;
    margin-bottom: 0;
  }
}

/* Phone layout for the weather card. This block MUST stay after the base
   .wx-card rules above — same specificity, so source order decides. */
@media (max-width: 700px) {
  .wx-card {
    display: flex;
    align-items: center;
    gap: 10px;
    width: auto;
    max-width: none;
    align-self: flex-start;
    padding: 9px 14px;
    margin-bottom: 14px;
  }
  .wx-place { margin-bottom: 0; font-size: 11.5px; white-space: nowrap; }
  .wx-row { min-height: 0; gap: 7px; }
  .wx-icon { width: 20px; height: 20px; }
  .wx-temp { font-size: 20px; }
  .wx-desc { margin-top: 0; font-size: 11.5px; min-height: 0; white-space: nowrap; }
  .wx-fact { display: none; }
  /* If the weather call fails the strip would be just the place name, so
     bring the elevation line back to keep the card meaningful. */
  .wx-card.is-fallback .wx-fact {
    display: block;
    margin-top: 0;
    padding-top: 0;
    padding-left: 10px;
    border-top: none;
    border-left: 1px solid rgba(250,247,242,0.16);
  }
}

/* ============ Sections (unchanged from prior version) ============ */
section { padding: 96px 0; }
.section-ink { background: var(--ink); }
.section-ivory { background: var(--ivory); color: var(--stone); }
.section-ivory h2 { color: var(--ink); }

.lede {
  max-width: 640px;
  font-size: 19px;
  line-height: 1.8;
}
h2 {
  font-size: 34px;
  margin-bottom: 28px;
  max-width: 620px;
}
@media (min-width: 700px) {
  h2 { font-size: 42px; }
}

.story-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 800px) {
  .story-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}
.story-grid p { max-width: 540px; margin-top: 18px; font-size: 16.5px; color: rgba(250,247,242,0.85); }
.story-grid img { border-radius: 2px; }

.offerings {
  margin-top: 8px;
  border-top: 1px solid rgba(74,64,56,0.25);
}
.offering {
  display: grid;
  gap: 12px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(74,64,56,0.25);
}
@media (min-width: 760px) {
  .offering { grid-template-columns: 260px 1fr; gap: 40px; }
}
.offering h3 {
  font-size: 22px;
  color: var(--ember);
  font-weight: 500;
}
.offering p { font-size: 16px; max-width: 520px; }
.offering .note {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--umber);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
}

.pano {
  width: 100%;
  display: block;
  margin: 0;
  line-height: 0;
}
.pano img { width: 100%; height: auto; display: block; }
.pano figcaption {
  padding: 12px 32px 0;
  font-size: 14px;
  color: rgba(250,247,242,0.6);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-grid img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.gallery-grid figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(250,247,242,0.6);
}
.gallery-grid button {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: zoom-in;
  border-radius: 0;
  overflow: hidden;
}
.gallery-grid button img { transition: transform 0.4s ease, opacity 0.2s ease; }
.gallery-grid button:hover img { transform: scale(1.03); opacity: 0.92; }
.gallery-grid button:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .gallery-grid button img { transition: none; }
  .gallery-grid button:hover img { transform: none; }
}

/* Lightbox */
.lb[hidden] { display: none; }
.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14, 10, 17, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lb-figure { margin: 0; max-width: 1200px; width: 100%; text-align: center; }
.lb-figure img {
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
}
.lb-figure figcaption {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(250,247,242,0.7);
}
.lb-btn {
  position: absolute;
  background: rgba(250,247,242,0.10);
  border: 1px solid rgba(250,247,242,0.25);
  color: var(--ivory);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.lb-btn:hover { background: rgba(250,247,242,0.2); color: var(--ivory); }
.lb-btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: rgba(250,247,242,0.6);
}
@media (max-width: 620px) {
  .lb { padding: 12px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-figure img { max-height: 66vh; }
}

.inquiry-wrap {
  display: grid;
  gap: 48px;
}
@media (min-width: 800px) {
  .inquiry-wrap { grid-template-columns: 1fr 1fr; }
}
.contact-line {
  display: block;
  font-size: 22px;
  font-family: 'Fraunces', serif;
  color: var(--amber);
  margin-top: 12px;
  text-decoration: none;
  width: fit-content;
  border-bottom: 1px solid transparent;
}
.contact-line:hover, .contact-line:focus-visible {
  border-bottom-color: var(--amber);
  outline: none;
}
.contact-sub { font-size: 16px; color: rgba(250,247,242,0.6); }
.contact-sub:hover, .contact-sub:focus-visible { border-bottom-color: rgba(250,247,242,0.6); }
select {
  width: 100%;
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(250,247,242,0.2);
  color: var(--ivory);
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  border-radius: 2px;
}
select option { background: var(--ink); color: var(--ivory); }
select:focus { outline: 2px solid var(--amber); outline-offset: 1px; }
::placeholder { color: rgba(250,247,242,0.38); }
form { margin-top: 8px; }
.field { margin-bottom: 18px; }
label {
  display: block;
  font-size: 13px;
  color: rgba(250,247,242,0.7);
  margin-bottom: 6px;
}
input, textarea {
  width: 100%;
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(250,247,242,0.2);
  color: var(--ivory);
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  border-radius: 2px;
}
input:focus, textarea:focus {
  outline: 2px solid var(--amber);
  outline-offset: 1px;
}
button {
  background: var(--ember);
  color: var(--ink);
  border: none;
  padding: 13px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s ease;
}
button:hover { background: var(--amber); color: var(--ink); }
button:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

footer {
  padding: 40px 0;
  border-top: 1px solid rgba(250,247,242,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(250,247,242,0.55);
}
footer img { height: 34px; width: auto; opacity: 0.85; }

/* ============ Shared: current page in nav ============ */
.nav-links a[aria-current="page"] {
  color: var(--ivory);
  border-color: var(--ember);
}

/* ============ Sub-page hero (Photo sessions) ============ */
.subhero {
  position: relative;
  min-height: 82vh;
  min-height: 82svh;
  background: url('sessions-hero.jpg') center 58% / cover no-repeat;
}
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26,20,32,0.62) 0%, rgba(26,20,32,0.25) 45%, rgba(26,20,32,0) 72%),
    linear-gradient(180deg, rgba(26,20,32,0.45) 0%, rgba(26,20,32,0) 26%, rgba(26,20,32,0.30) 62%, rgba(26,20,32,0.92) 100%);
}
.subhero .hero-content { min-height: 82vh; min-height: 82svh; }
@media (max-height: 470px) and (orientation: landscape) {
  .subhero, .subhero .hero-content { min-height: 0; }
}
.section-tight { padding-top: 0; }

/* ============ Rates ============ */
.offering .rate {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}
.offering .rate small {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--stone);
  margin-left: 4px;
}
@media (min-width: 700px) {
  .offering .rate { font-size: 44px; }
}
.rates-foot {
  max-width: 640px;
  margin-top: 28px;
  font-size: 15px;
}
.rates-foot a { color: var(--ink); }

/* ============ Settings grid ============ */
.settings-intro {
  max-width: 620px;
  font-size: 16.5px;
  color: rgba(250,247,242,0.85);
}
@media (min-width: 760px) {
  .gallery-grid.gallery-two { grid-template-columns: repeat(2, 1fr); }
}

/* ============ How booking works ============ */
.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 36px;
  margin-top: 12px;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step);
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 40px;
  line-height: 1;
  color: var(--ember);
  margin-bottom: 14px;
}
.steps h3 { font-size: 21px; margin-bottom: 8px; }
.steps p { font-size: 15.5px; color: rgba(250,247,242,0.8); max-width: 320px; }
.good-to-know {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(250,247,242,0.12);
  max-width: 720px;
  font-size: 15px;
  color: rgba(250,247,242,0.7);
}
.good-to-know p + p { margin-top: 10px; }

/* Keep the open menu's text aligned with the logo on the narrowest phones,
   where .wrap drops to 20px padding. Must sit after the 1080px nav block. */
@media (max-width: 380px) {
  .nav-links { padding-left: 20px; padding-right: 20px; }
}
