/* ===========================================================
   ShotByJord styles.css
   Dark editorial luxury · warm near-black + gold · photo-forward
   Type: Cormorant Garamond (display) + Jost (sans)
   =========================================================== */

:root {
  --bg:       #131110;   /* warm near-black */
  --bg-2:     #1a1714;   /* alt sections */
  --card:     #1e1a16;
  --text:     #f3efe8;   /* warm off-white */
  --text-soft:#c9c2b6;
  --muted:    #948d7f;
  --muted-2:  #6f695d;
  --line:     #302b24;
  --accent:   #cda86f;   /* warm gold, CTAs & highlights */
  --accent-2: #e2c590;   /* lighter gold */
  --accent-ink:#1a140a;  /* dark text on gold buttons */
  --radius:   4px;
  --radius-lg:8px;
  --maxw:     1240px;
  --ease:     cubic-bezier(.22,.61,.36,1);
  --shadow:   0 26px 70px rgba(0,0,0,.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Jost', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 18px;
}
.eyebrow-light { color: rgba(255,255,255,.82); }

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.05; letter-spacing: .005em; color: var(--text);
}
.section-lede { color: var(--text-soft); max-width: 56ch; margin: 20px auto 0; font-size: 1.02rem; font-weight: 300; }
.stars { color: var(--accent); letter-spacing: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Jost', sans-serif; font-weight: 500; font-size: .76rem;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 15px 30px; border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: all .35s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); position: relative; overflow: hidden; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease); pointer-events: none;
}
.btn-primary:hover::after { left: 140%; }

.btn-outline { background: transparent; color: var(--text); border-color: var(--line); }
.btn-outline:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

.btn-line-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-line-light:hover { background: #fff; color: var(--bg); border-color: #fff; }

.btn-lg { padding: 17px 38px; }
.btn-block { width: 100%; }

/* ---------- Announcement ---------- */
.announce {
  background: var(--bg-2); color: var(--text-soft); border-bottom: 1px solid var(--line);
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; text-align: center;
  padding: 11px 18px; display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.announce-link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50; background: transparent;
  transition: background .4s var(--ease), box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled { background: rgba(19,17,16,.86); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 20px; }

.brand { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 1.15rem; letter-spacing: .26em; color: #fff; transition: color .4s; }
.brand-accent { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links > a:not(.btn) {
  position: relative;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.88); font-weight: 400; transition: color .25s;
}
.nav-links > a:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -5px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links > a:not(.btn):hover::after { transform: scaleX(1); }
.header.scrolled .nav-links > a:not(.btn) { color: var(--text-soft); }
.nav-links > a:not(.btn):hover { color: var(--accent); }
.nav-cta { padding: 11px 24px; }

.nav-cta-mobile {
  display: none; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--accent); color: var(--accent); padding: 8px 16px; border-radius: var(--radius);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; z-index: 60; }
.nav-toggle span { width: 24px; height: 1.5px; background: #fff; transition: transform .3s var(--ease), opacity .3s, background .3s; }
.header.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.open span { background: var(--text); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; margin-top: -80px; }
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
  transform-origin: center center;
  animation: heroDrift 10s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroDrift { from { transform: scale(1.001); } to { transform: scale(1.06); } }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  opacity: 0; transition: opacity 1.6s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Slide focal points - desktop (50% X is safe for portrait images; Y controls vertical crop) */
.hs-1 { background-position: 50% 30%; }
.hs-2 { background-position: 50% 38%; }
.hs-3 { background-position: 50% 18%; }
.hs-4 { background-position: 50% 26%; }
.hs-5 { background-position: 50% 20%; }
.hs-6 { background-position: 50% 25%; }
.hs-7 { background-position: 50% 30%; }
.hs-8 { background-position: 50% 25%; }
.hs-9 { background-position: 50% 25%; }
.hs-10 { background-position: 50% 25%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,8,6,.5) 0%, rgba(10,8,6,.22) 38%, rgba(10,8,6,.86) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 0 32px 96px; max-width: 900px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(3.4rem, 10vw, 7rem); line-height: .98; letter-spacing: .01em; color: #fff; margin-bottom: 26px; }
.hero-title em { font-weight: 400; color: var(--accent-2); }
.hero-sub { font-size: clamp(1.02rem, 2vw, 1.25rem); color: rgba(255,255,255,.9); font-weight: 300; max-width: 48ch; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-hint { position: absolute; bottom: 34px; right: 40px; z-index: 2; color: rgba(255,255,255,.82); font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-hint::after { content: ''; display: block; width: 1px; height: 40px; margin: 12px auto 0; background: rgba(255,255,255,.55); animation: lineGrow 2s infinite; }
@keyframes lineGrow { 0%,100% { transform: scaleY(.4); opacity: .5; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Staggered reveals (grouped grids) ---------- */
:is(.cat-grid, .testimonials, .steps, .policies-grid) > .reveal:nth-child(2) { transition-delay: .09s; }
:is(.cat-grid, .testimonials, .steps, .policies-grid) > .reveal:nth-child(3) { transition-delay: .18s; }
:is(.cat-grid, .testimonials, .steps, .policies-grid) > .reveal:nth-child(4) { transition-delay: .27s; }
:is(.cat-grid, .testimonials, .steps, .policies-grid) > .reveal:nth-child(5) { transition-delay: .36s; }
:is(.cat-grid, .testimonials, .steps, .policies-grid) > .reveal:nth-child(6) { transition-delay: .45s; }
:is(.cat-grid, .testimonials, .steps, .policies-grid) > .reveal:nth-child(7) { transition-delay: .54s; }

/* ---------- Statement ---------- */
.statement { padding: clamp(56px, 8vw, 100px) 0 clamp(34px, 4.5vw, 56px); text-align: center; }
.statement-text { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2.4rem, 6.5vw, 5rem); line-height: 1.05; letter-spacing: .01em; }
.statement-text em { color: var(--accent); }
.statement-sub { color: var(--muted); max-width: 46ch; margin: 24px auto 0; font-weight: 300; font-size: 1.05rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }

/* ---------- Categories ---------- */
.categories { padding-top: clamp(40px, 5vw, 64px); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3/4; display: block; background: var(--bg-2); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.cat-card:hover img { transform: scale(1.07); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,8,6,.1), rgba(10,8,6,.7)); transition: background .4s; }
.cat-card:hover .cat-overlay { background: linear-gradient(180deg, rgba(10,8,6,.15), rgba(10,8,6,.8)); }
.cat-label { position: absolute; left: 22px; bottom: 22px; right: 22px; color: #fff; z-index: 2; }
.cat-label em { display: block; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.7rem; line-height: 1.1; }
.cat-label small { display: block; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: 6px; }

/* ---------- Portfolio ---------- */
.filters { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 42px; }
.filter {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  padding: 9px 22px; border-radius: 100px;
  font-family: 'Jost', sans-serif; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 400;
  cursor: pointer; transition: all .3s var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--text-soft); }
.filter.is-active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

.gallery { columns: 3; column-gap: 18px; }
.gallery-item {
  position: relative; break-inside: avoid; margin-bottom: 18px; overflow: hidden;
  border-radius: var(--radius); cursor: pointer; background: var(--bg-2);
  opacity: 0; transform: translateY(16px); animation: fadeUp .6s var(--ease) forwards;
}
.gallery-item img { width: 100%; transition: transform .8s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,8,6,.6)); opacity: 0; transition: opacity .35s; }
.gallery-item::after { content: attr(data-label); position: absolute; left: 16px; bottom: 14px; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: #fff; opacity: 0; transform: translateY(6px); transition: opacity .35s, transform .35s; z-index: 2; }
.gallery-item:hover::before, .gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-item.hide { display: none; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.portfolio-cta { text-align: center; margin-top: 54px; }
.portfolio-cta p { color: var(--muted); margin-bottom: 20px; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; }
.step { text-align: center; padding: 0 10px; position: relative; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--accent); font-weight: 300; display: block; line-height: 1; }
.step h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.6rem; margin: 14px 0 12px; }
.step p { color: var(--text-soft); font-weight: 300; }
.step + .step::before { content: ''; position: absolute; left: -20px; top: 24px; width: 1px; height: 70%; background: var(--line); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.about-stat { position: absolute; bottom: -24px; left: -22px; background: var(--accent); color: var(--accent-ink); padding: 20px 26px; text-align: center; border-radius: var(--radius); }
.about-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; line-height: 1; letter-spacing: .04em; }
.about-stat span { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; }
.about-copy p { color: var(--text-soft); margin-top: 20px; font-weight: 300; font-size: 1.05rem; }
.about-list { list-style: none; margin: 26px 0 32px; display: grid; gap: 14px; }
.about-list li { position: relative; padding-left: 28px; color: var(--text-soft); font-weight: 300; }
.about-list li::before { content: ''; position: absolute; left: 0; top: 11px; width: 14px; height: 1px; background: var(--accent); }

/* ---------- Services / Consultation ---------- */
.consult { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: stretch; max-width: 1040px; margin: 0 auto; }
.consult-included { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 38px; }
.consult-included h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.7rem; margin-bottom: 8px; }
.consult-included p.sub { color: var(--muted); font-weight: 300; margin-bottom: 22px; }
.included-grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.included-grid li { position: relative; padding-left: 26px; color: var(--text-soft); font-weight: 300; font-size: .96rem; }
.included-grid li::before { content: ''; position: absolute; left: 0; top: 12px; width: 12px; height: 1px; background: var(--accent); }
.consult-cta { background: linear-gradient(180deg, var(--card), var(--bg-2)); border: 1px solid var(--accent); border-radius: var(--radius-lg); padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; text-align: center; box-shadow: var(--shadow); }
.consult-cta h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.9rem; margin-bottom: 12px; }
.consult-cta p { color: var(--text-soft); font-weight: 300; margin-bottom: 26px; }
.consult-cta .btn { width: 100%; }
.consult-cta small { display: block; margin-top: 16px; color: var(--muted); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

/* ---------- Testimonials ---------- */
.rating-summary { display: inline-block; margin-top: 18px; color: var(--muted); font-weight: 300; letter-spacing: .02em; text-decoration: none; transition: color .25s var(--ease); }
a.rating-summary:hover { color: var(--text); }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 34px; }
.quote blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.32rem; line-height: 1.5; color: var(--text); font-style: italic; font-weight: 400; margin-bottom: 20px; }
.quote figcaption { color: var(--muted); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

/* ---------- VIP ---------- */
.vip { text-align: center; }
.vip-inner { max-width: 640px; margin: 0 auto; }
.vip-lede { color: var(--text-soft); font-weight: 300; margin: 18px auto 30px; max-width: 48ch; }
.vip-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.vip-form input { flex: 1; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 15px 18px; font-family: 'Jost', sans-serif; font-size: .95rem; color: var(--text); transition: border-color .25s, box-shadow .25s; }
.vip-form input::placeholder { color: var(--muted-2); }
.vip-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(205,168,111,.18); }
.vip-form input.invalid { border-color: #d07b73; }
.vip-status { margin-top: 16px; min-height: 1.2em; font-weight: 400; letter-spacing: .02em; }
.vip-status.success { color: #9ccf8f; }
.vip-status.error { color: #d07b73; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: 10px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; font-size: 1.18rem; font-weight: 400; font-family: 'Cormorant Garamond', serif; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 1.5rem; font-family: 'Jost'; transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-soft); font-weight: 300; padding-bottom: 24px; max-width: 64ch; }

/* ---------- Category pages / hub ---------- */
.cat-switch { margin-bottom: 42px; }
.gallery.is-empty { columns: 1; }
.gallery-empty { text-align: center; color: var(--muted); font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; padding: 60px 0; line-height: 1.6; }
.gallery-empty a { color: var(--accent); font-style: normal; font-family: 'Jost', sans-serif; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; border-bottom: 1px solid var(--accent); }
.cat-label small[data-cat-count] { color: var(--accent-2); }

/* ---------- Policies ---------- */
.policies-wrap { max-width: 1000px; }
.policies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.policy { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 30px; transition: border-color .3s; }
.policy:hover { border-color: var(--accent); }
.policy h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.4rem; margin-bottom: 8px; }
.policy h3 .pnum { color: var(--accent); font-size: 1rem; margin-right: 10px; letter-spacing: .04em; }
.policy p { color: var(--text-soft); font-weight: 300; font-size: .96rem; }

/* ---------- Booking ---------- */
.section-book { background: var(--bg-2); }
.book-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
.book-lede { color: var(--text-soft); margin-top: 18px; font-weight: 300; font-size: 1.08rem; }
.book-primary { margin: 28px 0 6px; }
.book-or { color: var(--muted); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; margin: 18px 0 6px; }
.book-points { list-style: none; margin: 24px 0; display: grid; gap: 13px; }
.book-points li { display: flex; gap: 13px; align-items: center; color: var(--text-soft); font-weight: 300; }
.book-points span { color: var(--accent-ink); background: var(--accent); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .7rem; flex: none; }
.book-contact { margin-top: 30px; display: grid; gap: 8px; }
.book-contact a { color: var(--text); font-weight: 400; width: fit-content; border-bottom: 1px solid transparent; transition: border-color .25s, color .25s; }
.book-contact a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.book-loc { color: var(--muted); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; }

.book-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.book-form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; margin-bottom: 6px; }
.book-form-sub { color: var(--muted); font-weight: 300; font-size: .92rem; margin-bottom: 24px; }
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; margin-bottom: 8px; color: var(--text-soft); }
.optional { color: var(--muted-2); font-weight: 400; letter-spacing: 0; text-transform: none; }
.field input, .field select, .field textarea { width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 15px; color: var(--text); font-family: 'Jost', sans-serif; font-size: .96rem; transition: border-color .2s, box-shadow .2s; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(205,168,111,.18); }
.field input.invalid, .field textarea.invalid { border-color: #d07b73; }
.field textarea { resize: vertical; }
.form-fineprint { font-size: .76rem; color: var(--muted); text-align: center; margin-top: 16px; font-weight: 300; }
.form-status { margin-top: 14px; text-align: center; font-weight: 400; min-height: 1.2em; }
.form-status.success { color: #9ccf8f; }
.form-status.error { color: #d07b73; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 64px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; gap: 34px; flex-wrap: wrap; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.footer .brand { font-size: 1.1rem; color: var(--text); display: inline-block; }
.footer-logo { width: 76px; height: 76px; display: block; }
.footer-brand p { color: var(--muted); margin-top: 14px; max-width: 34ch; font-weight: 300; }
.footer-nav, .footer-social { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-nav a, .footer-social a { color: var(--text-soft); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; transition: color .2s; }
.footer-nav a:hover, .footer-social a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; color: var(--muted); font-size: .76rem; letter-spacing: .06em; flex-wrap: wrap; gap: 10px; }
.to-top { text-transform: uppercase; letter-spacing: .14em; }
.to-top:hover { color: var(--accent); }

/* ---------- Mobile sticky book bar ---------- */
.mobile-book-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40; background: var(--accent); color: var(--accent-ink); text-align: center; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding: 15px 16px; border-radius: var(--radius); box-shadow: 0 14px 34px rgba(0,0,0,.45); display: none; transform: translateY(130%); transition: transform .45s var(--ease); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mobile-book-bar.show { transform: translateY(0); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(8,6,5,.94); backdrop-filter: blur(6px); z-index: 100; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox-close, .lightbox-nav { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #fff; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.26); }
.lightbox-close { top: 24px; right: 24px; width: 46px; height: 46px; font-size: 1.6rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .consult { grid-template-columns: 1fr; max-width: 560px; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-stat { left: 16px; }
  .testimonials { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; gap: 44px; max-width: 460px; }
  .step + .step::before { display: none; }
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }
  /* Blur on the sticky header turns it into a containing block for the fixed
     menu (iOS), which breaks full-screen coverage + causes overflow. Use a
     solid header background on mobile instead. */
  .header { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .header.scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(19,17,16,.97); }
  .nav-links {
    position: fixed; inset: 0; width: 100%;
    flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    background: var(--bg);
    padding: 90px 32px 48px;
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a:not(.btn) { color: var(--text) !important; font-size: 1.1rem; padding: 15px 0; letter-spacing: .2em; }
  .nav-links .nav-cta { display: inline-flex; margin-top: 22px; font-size: .82rem; padding: 15px 36px; }
  .nav-toggle { display: flex; }
  .nav-cta-mobile { display: inline-flex; }
  .gallery { columns: 1; }
  .cat-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .policies-grid { grid-template-columns: 1fr; }
  .testimonials {
    grid-template-columns: none; display: flex; max-width: none;
    overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 14px; margin: 0 -22px; padding: 4px 22px 6px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .testimonials::-webkit-scrollbar { display: none; }
  .quote { flex: 0 0 82%; scroll-snap-align: center; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .vip-form { flex-direction: column; }
  .footer-inner { flex-direction: column; }
  .scroll-hint { right: 22px; }
  /* Slide focal points - mobile (X% shifts horizontal crop for portrait images filling by height) */
  .hs-1 { background-position: 52% 30%; }
  .hs-2 { background-position: 50% 38%; }
  .hs-3 { background-position: 50% 18%; }
  .hs-4 { background-position: 46% 26%; }
  .hs-5 { background-position: 56% 20%; }
  .hs-6 { background-position: 50% 25%; }
  .hs-7 { background-position: 50% 30%; }
  .hs-8 { background-position: 50% 25%; }
  .hs-9 { background-position: 50% 25%; }
  .hs-10 { background-position: 50% 25%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
