/* ==========================================================================
   Wayne Anderson Photography — styles
   Palette and type ported from the Claude Design wireframe (dark / deep purple)
   ========================================================================== */

:root {
  --bg: #0E0C13;
  --bg-band: #120F17;
  --bg-card: #151119;
  --bg-footer: #0A090E;

  --text: #ECE8F1;
  --heading: #F4F1F9;
  --text-soft: #B4ACC6;
  --text-muted: #A29AB5;
  --text-dim: #8F86A6;
  --text-faint: #6E6785;
  --nav-link: #BEB6D0;
  --brand-name: #D8D2E4;

  --accent: #A78BE0;
  --accent-soft: #C9B4F0;
  --accent-deep: #7C5CBF;
  --btn: #5B3FA0;
  --btn-hover: #6C4DB8;

  --hairline: rgba(255, 255, 255, .06);
  --hairline-soft: rgba(255, 255, 255, .09);
  --frame: rgba(167, 139, 224, .35);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;

  --pad-x: 48px;
  --hero-top: clamp(108px, 13vh, 150px); /* space between the top of the page and the video frame (min clears the ~97px nav) */
}

/* ---------- base ---------- */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-soft); }

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

h1, h2, h3 { font-family: var(--serif); color: var(--heading); margin: 0; }
h1 em, h2 em { font-style: italic; color: var(--accent-soft); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--accent);
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 56px;
}

.rule { flex: 1; height: 1px; background: var(--hairline-soft); align-self: center; }

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

.btn {
  display: inline-block;
  background: var(--btn);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  padding: 17px 34px;
  transition: background .25s, transform .25s;
}
.btn:hover { background: var(--btn-hover); color: #fff; transform: translateY(-2px); }

.btn-lg { font-size: 13px; letter-spacing: 3px; padding: 19px 46px; }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(167, 139, 224, .5);
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  padding: 15px 30px;
  transition: background .25s, color .25s;
}
.btn-ghost:hover { background: var(--btn); color: #fff; }

/* ---------- nav / brand ---------- */

/* Fixed smart nav: transparent at the top of the page; once scrolled it gains a
   solid blurred backdrop, hides while scrolling down, and slides back in the moment
   the user scrolls up (js/main.js toggles .nav-solid / .nav-hidden). */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 26px var(--pad-x);
  border-bottom: 1px solid transparent;
  transition: transform .35s ease, background-color .3s ease, border-color .3s ease, padding .3s ease;
}
.nav.nav-solid {
  background: rgba(10, 8, 14, .85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav.nav-hidden { transform: translateY(-100%); }

.nav-links a[aria-current="page"],
.footer-nav a[aria-current="page"] { color: #fff; }
.nav-links a[aria-current="page"] {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  justify-self: start;
  min-width: 0;
}

/* W.A camera logo (assets/logo-mark.png). The PNG has a near-black background;
   mix-blend-mode: screen drops it out against the dark site, so the silver mark
   floats cleanly over anything — including the hero video. */
.brand-logo {
  height: 50px;
  width: auto;
  flex: none;
  mix-blend-mode: screen;
}

.brand-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  color: var(--brand-name);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-logo-sm { height: 42px; }
.brand-name-sm { letter-spacing: 3px; }

.nav-links { display: flex; gap: clamp(18px, 3vw, 42px); justify-self: center; }
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: var(--nav-link);
}
.nav-links a:hover { color: #fff; }

/* mobile menu */

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(20, 14, 30, .45);
  border: 1px solid rgba(167, 139, 224, .35);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 8, 14, .96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}
.mobile-menu a {
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--text);
}
.mobile-menu a:hover { color: var(--accent-soft); }

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

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
}

.hero-media { position: absolute; inset: 0; overflow: hidden; }

/* Blurred fill behind the frame. Hidden by default (narrow screens have no side
   margins — the frame fills the width); revealed only when the viewport is wider
   than the frame, by the min-aspect-ratio media query below. Scaled up so the
   blur's soft edge is clipped off rather than showing a halo at the viewport edge. */
.hero-blur-bg {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  filter: blur(30px) brightness(0.5) saturate(1.05);
}

/* Inset frame: sits below the nav and is sized to the video's exact 16:9 ratio,
   so the full frame shows — nothing is ever cropped. Its side edges feather into
   the blurred fill (wide screens) or sit flush to the viewport edge (narrow). */
.hero-frame {
  position: absolute;
  top: var(--hero-top);
  left: 0;
  right: 0;
  margin-inline: auto;
  width: min(100%, calc((100svh - var(--hero-top)) * 16 / 9));
  aspect-ratio: 16 / 9;
  max-height: calc(100% - var(--hero-top));
}

.hero-poster,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-video.is-playing { opacity: 1; }

/* Snapshot overlay used to dissolve across the loop restart (js/main.js).
   The frame is exactly 16:9, so stretching the canvas to 100% keeps its aspect. */
.hero-xfade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}

/* Vertical vignette only — feathers the frame's top (under the nav) and bottom
   (into the page below) for depth and legibility. The left/right edges are handled
   by the blurred fill + edge mask on wide screens, so no horizontal darkening here. */
.hero-frame-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(14, 11, 19, .5) 0%, transparent 14%, transparent 80%, rgba(14, 11, 19, .55) 100%);
}

/* Wide screens only: the viewport is wider than the 16:9 frame, so left/right margins
   exist. Show the blurred fill and feather the sharp frame's side edges into it, so the
   scene reads as bleeding outward rather than stopping at a hard edge on blank background. */
@media (min-aspect-ratio: 16 / 10) {
  .hero-blur-bg { display: block; }
  .hero-poster,
  .hero-video,
  .hero-xfade {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
}

/* Reel play/pause control — a round button centered on the video's baked-in
   watermark (~90% across, 84.5% down of the frame) so it doubles as motion control
   and cover. Percentage placement keeps it locked to the mark on any resize. */
.reel-toggle {
  position: absolute;
  left: 90.4%;
  top: 84.5%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(12, 9, 18, .85);
  border: 1px solid rgba(199, 180, 240, .5);
  border-radius: 50%;
  color: var(--accent-soft);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.reel-toggle:hover {
  background: rgba(30, 20, 44, .92);
  border-color: rgba(199, 180, 240, .85);
  color: #fff;
  transform: scale(1.07);
}
.reel-toggle svg { flex: none; display: block; }
.reel-icon-play { margin-left: 3px; } /* optical centering of the triangle */

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-scrim { position: absolute; inset: 0; pointer-events: none; }
.hero-scrim-top { background: linear-gradient(180deg, rgba(10, 8, 14, .72) 0%, rgba(10, 8, 14, 0) 26%); }
.hero-scrim-bottom { background: linear-gradient(200deg, rgba(10, 8, 14, 0) 42%, rgba(10, 8, 14, .78) 88%); }

.hero-copy {
  position: relative;
  z-index: 5;
  margin-top: auto;
  padding: 0 var(--pad-x) 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  animation: fadeUp .9s ease both;
}

.hero-copy h1 {
  font-weight: 300;
  font-size: clamp(54px, 7vw, 104px);
  line-height: .98;
  letter-spacing: .5px;
}
.hero-copy h1 em { font-weight: 300; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--accent-soft);
  border: 1px solid rgba(167, 139, 224, .35);
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(20, 14, 30, .45);
  backdrop-filter: blur(6px);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #8B5CF0; }

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 64px;
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.scroll-cue-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}
.scroll-cue-line {
  width: 1px;
  height: 52px;
  background: var(--accent);
  animation: cue 2.2s ease-in-out infinite;
}

/* ---------- services ---------- */

.services { padding-top: 120px; padding-bottom: 110px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  transition: transform .3s, border-color .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 224, .4);
}

.service-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; }

.service-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-title { display: flex; align-items: baseline; gap: 12px; }
.service-num { font-size: 11px; letter-spacing: 2px; color: var(--accent-deep); }
.service-title h3 { font-weight: 400; font-size: 30px; }

.service-body p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ---------- gallery spotlight ---------- */

.gallery-band {
  background: var(--bg-band);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.gallery {
  padding-top: 110px;
  padding-bottom: 110px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gallery-head { display: flex; align-items: flex-end; gap: 24px; }
.gallery-head-copy { display: flex; flex-direction: column; gap: 14px; }
.gallery-head .btn-ghost { margin-left: auto; }

.gallery h2,
.about h2 {
  font-weight: 300;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.05;
}

.gallery-featured { position: relative; aspect-ratio: 16 / 8.2; overflow: hidden; }
.gallery-featured img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transition: opacity .25s;
}
.thumb:hover { opacity: .85; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- about ---------- */

.about { padding-top: 120px; padding-bottom: 120px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}

.about-copy p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 52ch;
}

.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--accent-soft);
  margin-top: 6px;
}

.about-portrait { position: relative; padding: 0 22px 22px 0; }
.about-frame {
  position: absolute;
  top: 22px; right: 0; bottom: 0; left: 22px;
  border: 1px solid var(--frame);
}
.about-photo { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- book now ---------- */

.book {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-media { position: absolute; inset: 0; overflow: hidden; }
.book-media img { width: 100%; height: 100%; object-fit: cover; }

.book-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(10, 8, 14, .62) 0%, rgba(10, 8, 14, .3) 55%, rgba(10, 8, 14, .55) 100%);
}

.book-copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  padding: 0 24px;
}

.book-eyebrow { font-size: 11px; letter-spacing: 3.5px; color: var(--accent-soft); }

.book-copy h2 {
  font-weight: 300;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  text-shadow: 0 2px 30px rgba(10, 8, 14, .5);
}

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

.footer { background: var(--bg-footer); border-top: 1px solid var(--hairline); }

.footer-inner {
  padding-top: 56px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.footer-nav { margin-left: auto; display: flex; gap: 34px; }
.footer-nav a { font-size: 11.5px; letter-spacing: 2.5px; color: var(--text-dim); }
.footer-nav a:hover { color: #fff; }

.footer-hairline { height: 1px; background: var(--hairline); }

.copyright { font-size: 12px; font-weight: 300; letter-spacing: 1px; color: var(--text-faint); }

.footer-social { margin-left: auto; display: flex; gap: 26px; }
.footer-social a { font-size: 12px; letter-spacing: 1.5px; color: var(--text-dim); }
.footer-social a:hover { color: var(--accent-soft); }

/* ---------- animation ---------- */

@keyframes cue {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

/* reveal styles only apply when JS is running, so content never hides without it */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s ease;
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy { animation: none; }
  .scroll-cue-line { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .service-card:hover { transform: none; }
}

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

@media (max-width: 1024px) {
  :root { --pad-x: 32px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .about-grid { gap: 48px; }
}

@media (max-width: 820px) {
  :root { --pad-x: 24px; }

  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .services { padding-top: 88px; padding-bottom: 80px; }
  .services-grid { grid-template-columns: 1fr; gap: 24px; }

  .gallery { padding-top: 80px; padding-bottom: 80px; gap: 28px; }
  .gallery-head { flex-wrap: wrap; align-items: center; gap: 18px; }
  .gallery-head .btn-ghost { margin-left: 0; }
  .gallery-thumbs { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .about { padding-top: 88px; padding-bottom: 88px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-portrait { max-width: 420px; }

  .scroll-cue { display: none; }

  .footer-nav { gap: 20px; }
}

@media (max-width: 480px) {
  .hero-copy h1 { font-size: clamp(44px, 13vw, 54px); }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-nav, .footer-social { margin-left: 0; flex-wrap: wrap; }
}

/* ==========================================================================
   Subpages (About / Gallery / Booking)
   ========================================================================== */

.page-main { padding-top: clamp(150px, 20vh, 210px); }

.page-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 30px;
}
.page-head h1 {
  font-weight: 300;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: .5px;
}
.lede {
  margin: 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 58ch;
}

/* --- About --- */

.values { padding-top: 40px; padding-bottom: 40px; }
.values .section-head { margin-bottom: 44px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  padding: 30px 28px 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .3s, border-color .3s;
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(167, 139, 224, .4); }
.value-card h3 { font-weight: 400; font-size: 26px; }
.value-card p { margin: 0; font-size: 14px; font-weight: 300; line-height: 1.65; color: var(--text-muted); }

.pull-quote { padding-top: 80px; padding-bottom: 40px; }
.pull-quote blockquote {
  margin: 0 auto;
  max-width: 22ch;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.25;
  text-align: center;
  color: var(--accent-soft);
}

/* --- CTA band (shared) --- */

.cta-band {
  margin-top: 110px;
  background: var(--bg-band);
  border-top: 1px solid rgba(255, 255, 255, .05);
}
.cta-inner {
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.cta-inner h2 {
  font-weight: 300;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.05;
}

/* --- Gallery --- */

.gallery-page { display: flex; flex-direction: column; gap: 36px; padding-top: 10px; }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-chip {
  background: transparent;
  border: 1px solid var(--hairline-soft);
  border-radius: 999px;
  color: var(--nav-link);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  padding: 11px 20px;
  cursor: pointer;
  transition: border-color .25s, color .25s, background-color .25s;
}
.filter-chip:hover { color: #fff; border-color: rgba(167, 139, 224, .5); }
.filter-chip.is-active {
  color: #fff;
  border-color: var(--accent);
  background: rgba(91, 63, 160, .3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 14px;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--brand-name);
  background: linear-gradient(to top, rgba(10, 8, 14, .8), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover figcaption { opacity: 1; }

/* --- Booking --- */

.booking-steps { padding-top: 40px; padding-bottom: 20px; }
.booking-steps .section-head { margin-bottom: 44px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step { display: flex; flex-direction: column; gap: 10px; }
.step h3 { font-weight: 400; font-size: 26px; }
.step p { margin: 0; font-size: 14px; font-weight: 300; line-height: 1.65; color: var(--text-muted); }

.booking-form-section { padding-top: 60px; padding-bottom: 120px; }
.booking-form-section .section-head { margin-bottom: 44px; }

.booking-form { max-width: 860px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.field { display: flex; flex-direction: column; gap: 9px; }
.field-wide { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--accent);
}
.field input,
.field select,
.field textarea {
  background: var(--bg-card);
  border: 1px solid var(--hairline-soft);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 16px;
  border-radius: 0;
  transition: border-color .25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }
.field select { appearance: none; }
.field input[type="date"] { color-scheme: dark; }

.form-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.form-actions .btn { border: none; cursor: pointer; font-family: var(--sans); }
.form-note { font-size: 13px; font-weight: 300; color: var(--text-dim); }
.form-note a { color: var(--accent-soft); }

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

@media (max-width: 820px) {
  .page-main { padding-top: 140px; }
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { margin-top: 80px; }
  .cta-inner { padding-top: 72px; padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
