/* ==============================================
   Photography by Liam Anderson — Global Styles
   Brand guide 2024: Lora + Inter · Charcoal palette
   ============================================== */

:root {
  /* ── Brand palette ───────────────────────── */
  --bg:          #6b6060;   /* Charcoal — primary backgrounds       */
  --bg-dark:     #504949;   /* Darker — nav scrolled, CTA, footer   */
  --bg-card:     #756b6b;   /* Card / input backgrounds             */
  --bg-light:    #eceaea;   /* Off-White — contrast sections        */
  --white:       #ffffff;

  --text:        #c0c0c0;   /* Silver — text on dark                */
  --text-dk:     #504949;   /* Deep Charcoal — text on light        */
  --text-muted:  #b0aaaa;   /* Secondary text on dark               */
  --text-ml:     #706968;   /* Secondary text on light              */

  --accent:      #bab3ab;   /* Soft Amber                           */
  --accent-lt:   #ddd5d5;   /* Light Grey                           */

  --border:      #625858;   /* Border on dark                       */
  --border-lt:   #ddd5d5;   /* Border on light                      */

  --nav-h:       72px;
  --font-serif:  'Lora', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* ── Typography ────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

/* ── Navigation ────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-nav.scrolled {
  background: var(--bg-dark);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.3s;
}

.site-nav.scrolled .nav-logo { color: var(--text); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.site-nav.scrolled .nav-links a { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 201;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: rgba(255,255,255,0.9);
  transition: transform 0.35s var(--ease), opacity 0.25s, background 0.4s;
  transform-origin: center;
}

.site-nav.scrolled .nav-toggle span { background: var(--text); }

/* Hamburger → X animation */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--text) !important; }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--text) !important; }

/* ── Book a Call nav CTA ────────────────────────────────────────────── */
.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
}
.site-nav.scrolled .nav-cta {
  color: var(--text);
  border-color: var(--text);
}
.site-nav.scrolled .nav-cta:hover {
  background: var(--text);
  color: var(--white);
}

/* ── Calendly embed section ─────────────────────────────────────────── */
.calendly-section {
  padding: 5rem 2.5rem;
  background: var(--bg-dark);
  text-align: center;
}
.calendly-section .section-intro {
  margin-bottom: 2.5rem;
}
.calendly-inline-widget {
  max-width: 900px;
  margin: 0 auto;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
/* Brand guide: border-radius 4px throughout */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s;
}

/* Primary: silver bg + white text (brand guide spec) */
.btn-primary {
  background: var(--text);    /* #c0c0c0 */
  color: var(--white);
  border-color: var(--text);
}
.btn-primary:hover {
  background: var(--accent-lt);
  border-color: var(--accent-lt);
  color: var(--text-dk);
}

/* Secondary: silver outline — for dark section backgrounds */
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-secondary:hover {
  background: rgba(192,192,192,0.12);
  border-color: var(--accent-lt);
}

/* Light: white outline — for hero and dark CTA strip */
.btn-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

/* White outline alias */
.btn-white-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

/* Dark: deep charcoal — for light section backgrounds */
.btn-dark {
  color: var(--text-dk);
  border-color: var(--text-dk);
  background: transparent;
}
.btn-dark:hover {
  background: var(--text-dk);
  color: var(--bg-light);
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  animation: heroZoom 9s var(--ease) forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.38) 0%,
    transparent 25%,
    transparent 55%,
    rgba(0,0,0,0.65) 100%
  );
}

.hero-content {
  position: relative;
  padding: 0 3rem 4.5rem;
  color: var(--white);
  max-width: 680px;
}

.hero-content h1 {
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 2.25rem;
  display: block;
}

/* ── Section base ────────────────────────────────────────────────────── */
section { padding: 5.5rem 2.5rem; }

.section-intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3.5rem;
}

.section-intro h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-intro p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ── Story strip (dark bg — inherits body) ─────────────────────────── */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}

.story-img { aspect-ratio: 2/3; overflow: hidden; }

.story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.story-img:hover img { transform: scale(1.04); }

.story-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.94rem;
  line-height: 1.85;
}

.story-text .btn { margin-top: 0.75rem; }

/* ── Services (LIGHT bg section) ────────────────────────────────────── */
.services-section {
  padding: 0;
  background: var(--bg-light);
}

.services-header {
  text-align: center;
  padding: 5rem 2.5rem 3rem;
}

.services-header .eyebrow { color: var(--text-ml); }
.services-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--text-dk);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease);
}

.service-card:hover img { transform: scale(1.08); }

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.75rem;
  color: var(--white);
  transition: background 0.4s;
}

.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 55%);
}

.service-overlay h3 { font-size: 1.6rem; margin-bottom: 0.2rem; }
.service-overlay span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ── Portfolio teaser (dark bg) ─────────────────────────────────────── */
.portfolio-teaser {
  background: var(--bg);
  padding: 6rem 2.5rem;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1400px;
  margin: 0 auto;
}

.teaser-item {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 2/3;
}

.teaser-item.landscape { aspect-ratio: 4/3; }

.teaser-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.teaser-item:hover img { transform: scale(1.05); }

.teaser-cta { text-align: center; margin-top: 2.5rem; }

/* ── About strip (LIGHT bg section) ────────────────────────────────── */
.about-strip {
  background: var(--bg-light);
  display: grid;
  grid-template-columns: 5fr 6fr;
  align-items: center;
}

.about-strip-img { aspect-ratio: 3/4; overflow: hidden; }

.about-strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-strip-text { padding: 4rem 4.5rem; }

.about-strip-text .eyebrow { color: var(--text-ml); }

.about-strip-text h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  color: var(--text-dk);
  margin-bottom: 1.5rem;
}

.about-strip-text p {
  color: var(--text-ml);
  margin-bottom: 1.25rem;
  font-size: 0.93rem;
  line-height: 1.85;
}

.about-strip-text .btn { margin-top: 0.5rem; }

/* ── CTA strip (dark) ───────────────────────────────────────────────── */
.cta-strip {
  background: var(--bg-dark);
  color: var(--text);
  text-align: center;
  padding: 6rem 2.5rem;
}

.cta-strip h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-strip p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 0.93rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 3rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-social a {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--accent); }

.footer-divider {
  width: 1px; height: 12px;
  background: var(--border);
}

.footer-copy {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ── Lightbox ────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
  /* Force GPU compositing layer — fixes iOS Safari bleed-through */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
  font-weight: 200;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

/* ── Page hero (inner pages) ─────────────────────────────────────────── */
.page-hero {
  height: 50vh;
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 3rem;
  color: var(--white);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.38) 0%,
    transparent 30%,
    transparent 50%,
    rgba(0,0,0,0.6) 100%
  );
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero-content .eyebrow { color: rgba(255,255,255,0.7); }

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Portfolio page ──────────────────────────────────────────────────── */
.portfolio-section {
  padding: 4rem 2.5rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-filters {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  transition: color 0.3s, border-color 0.3s;
}
.filter-btn:hover { color: var(--text); }
.filter-btn.active { color: var(--accent); border-bottom-color: var(--accent); }

.portfolio-grid {
  columns: 3;
  column-gap: 6px;
}

/* Hide entire portfolio section while lightbox is open — prevents iOS bleed-through.
   .portfolio-filters is a sibling of .portfolio-grid so hiding just the grid wasn't enough. */
body.lightbox-open .portfolio-section {
  display: none;
}

.port-item {
  break-inside: avoid;
  overflow: hidden;
  position: relative; /* needed for button overlay */
  cursor: pointer;
  touch-action: manipulation;
  margin-bottom: 6px;
  transition: opacity 0.35s;
}
.port-item.hidden { display: none; }

.port-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease);
}
.port-item:hover img { transform: scale(1.05); }

/* ── About page ──────────────────────────────────────────────────────── */
.about-page {
  padding: 5rem 2.5rem 7rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 6rem;
}

.about-page-portrait {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-page-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-page-bio h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.about-page-bio .subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 2rem;
}

.about-page-bio p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-page-bio .btn { margin-top: 1rem; }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.value-item {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  text-align: center;
}

.value-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.value-item h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.value-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }


/* ── Contact page ────────────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2.5rem 7rem;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.contact-detail .label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-detail a,
.contact-detail span {
  font-size: 0.9rem;
  color: var(--text);
}

.contact-detail a:hover { color: var(--accent); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.5; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* ── Scroll reveal ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── Hero scroll indicator ───────────────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  animation: scrollBob 1.8s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ── Booking steps ───────────────────────────────────────────────────── */
.booking-steps {
  padding: 6rem 2.5rem;
  background: var(--bg-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 3.5rem auto 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--border);
}

.step {
  padding: 0 2.5rem;
  text-align: center;
  position: relative;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Testimonials ────────────────────────────────────────────────────── */
.testimonials-section {
  padding: 6rem 2.5rem;
  background: var(--bg);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3.5rem auto 0;
}

.testimonial-card {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.85;
  color: var(--text);
  flex: 1;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.author-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

.author-detail {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Pricing page ────────────────────────────────────────────────────── */
.pricing-section {
  padding: 5rem 2.5rem 7rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.pricing-intro p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-top: 1rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 5rem;
}

.package-card {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  background: var(--bg-dark);
}

.package-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.package-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 2.2rem;
  font-family: var(--font-serif);
  color: var(--white);
  margin-bottom: 0.25rem;
}

.package-duration {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  margin-bottom: 2.5rem;
}

.package-features li {
  font-size: 0.87rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}

.package-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.package-extras {
  margin-top: 4rem;
}

.package-extras h3 {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.extra-item {
  background: var(--bg-card);
  padding: 1.5rem;
  text-align: center;
}

.extra-item h4 {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.extra-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq-section {
  padding: 6rem 2.5rem;
  background: var(--bg-dark);
}

.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1rem;
  text-align: left;
  padding: 1.4rem 2.5rem 1.4rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.25s;
}

.faq-question:hover { color: var(--white); }

.faq-icon {
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.faq-icon::before { width: 18px; height: 1.5px; top: 8px; left: 0; }
.faq-icon::after  { width: 1.5px; height: 18px; top: 0; left: 8px; }

.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  padding-bottom: 1.5rem;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: 1fr; }
  .extras-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-img { max-height: 420px; }

  .testimonials-grid { flex-direction: column; align-items: center; }
  .testimonial-card  { flex: none; width: 100%; max-width: 560px; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .step { padding: 2rem 1rem; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }

  .about-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-values    { grid-template-columns: 1fr; }

  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .form-row     { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-nav { padding: 0 1.25rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  /* Full-screen overlay — display:none when closed so it never blocks taps */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.75rem;
    background: var(--bg-dark);
    animation: none;
  }

  .nav-links.open {
    display: flex;
    animation: navSlideIn 0.32s var(--ease) both;
  }

  @keyframes navSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links a {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: var(--text);
  }

  .nav-links a::after { display: none; }

  .portfolio-grid { columns: 2; }

  .hero-content h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .teaser-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  .pricing-section { padding: 3rem 1.25rem 5rem; }
  .faq-section     { padding: 4rem 1.25rem; }
  .booking-steps   { padding: 4rem 1.25rem; }
  .testimonials-section { padding: 4rem 1.25rem; }
  .contact-wrap    { padding: 3rem 1.25rem 5rem; }

  .extras-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid  { grid-template-columns: 1fr; }
  .teaser-grid    { grid-template-columns: 1fr; }
  .portfolio-grid { columns: 1; }

  .footer-links { flex-wrap: wrap; gap: 1rem; justify-content: center; }
}
