/* =========================================================
   SHARKWOOD — style.css
   Dark editorial · Military-grade aesthetic
   ========================================================= */

:root {
  --gold:      #c9a227;
  --gold-lt:   #e2bc57;
  --bg:        #0c0c0e;
  --bg2:       #111115;
  --bg3:       #18181f;
  --card:      #141418;
  --border:    rgba(255,255,255,0.07);
  --text:      #dddde8;
  --muted:     #68687f;
  --white:     #ffffff;
  --ff-display:'Bebas Neue', sans-serif;
  --ff-body:   'Inter', sans-serif;
  --ease:      cubic-bezier(.22,1,.36,1);
  --r:         10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  font-size: 16px;
  overflow-x: clip !important;
  max-width: 100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  position: relative;
  touch-action: pan-y;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
[hidden] { display: none !important; }

/* ── TYPOGRAPHY ── */
.js-split-hero, .js-split-title { overflow: hidden; }
.js-split-hero .word { overflow: hidden; display: inline-block; }
.js-split-title .char { display: inline-block; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.nav.scrolled {
  padding: 14px 40px;
  background: rgba(12,12,14,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 1.35rem;
  letter-spacing: .12em;
  color: var(--white);
}
.nav__logo-img { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }
.nav__cta {
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,162,39,.4);
  padding: 9px 20px;
  border-radius: 50px;
  transition: background .25s, color .25s, border-color .25s;
}
.nav__cta:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ── CTA BUTTON ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s var(--ease), box-shadow .25s;
}
.cta-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,162,39,.25);
}
.cta-btn--full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform .25s var(--ease); }
.cta-btn:hover .btn-arrow { transform: translateX(4px); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  height: 100vh;
  min-height: 640px;
  background: var(--bg);
  overflow: hidden;
}

/* LEFT — photo */
.hero__left {
  position: relative;
  overflow: hidden;
}
.hero__photo-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__photo {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  top: -7.5%;
  position: absolute;
  left: 0;
  will-change: transform;
}
.hero__photo-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 50px;
}

/* RIGHT — text */
.hero__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 60px 60px 64px;
  background: var(--bg);
  border-left: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
}
.hero__h1 {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: .92;
  letter-spacing: .02em;
  color: var(--white);
  margin-bottom: 40px;
  overflow: hidden;
}
.hero__h1 em {
  font-style: normal;
  color: var(--gold);
}

/* Specs row */
.hero__specs {
  display: flex;
  gap: 0;
  margin-bottom: 44px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero__spec {
  padding: 14px 20px 14px 0;
  flex: 1;
  min-width: 0;
}
.hero__spec + .hero__spec {
  padding-left: 20px;
  border-left: 1px solid var(--border);
}
.hero__spec-val {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: var(--gold);
  line-height: 1;
}
.hero__spec-key {
  display: block;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* Foot */
.hero__foot {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
}



/* ── STRIP ── */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 16px 0;
  contain: paint;
}
.strip__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.strip__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  animation: stripScroll 22s linear infinite;
  flex-shrink: 0;
}
.strip__sep { flex-shrink: 0; }
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ── GALLERY ── */
.gallery {
  padding: 120px 40px;
  background: var(--bg);
}
.gallery__header {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.gallery__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: .06em;
  color: var(--white);
}
.gallery__note {
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--muted);
  text-transform: uppercase;
  max-width: 240px;
  text-align: right;
}
.gallery__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px 320px;
  gap: 10px;
}
.gallery__link {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery__cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: pointer;
}
.gallery__cell img, .gallery__cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery__cell:hover img, .gallery__cell:hover video { transform: scale(1.05); }
.gallery__cell figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.gallery__cell:hover figcaption { opacity: 1; transform: none; }
.gallery__count {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,.52);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 4px 9px 4px 25px;
  border-radius: 20px;
  z-index: 3;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 7px center;
  background-size: 13px 13px;
}

/* Grid layout */
.gallery__cell--a { grid-column: 1 / 6;  grid-row: 1 / 3; }
.gallery__cell--b { grid-column: 6 / 9;  grid-row: 1; }
.gallery__cell--c { grid-column: 9 / 13; grid-row: 1; }
.gallery__cell--d { grid-column: 6 / 9;  grid-row: 2; }
.gallery__cell--e { grid-column: 9 / 13; grid-row: 2; }
.gallery__cell--f { grid-column: 1 / 7;  grid-row: 3; }
.gallery__cell--g { grid-column: 7 / 13; grid-row: 3; }

/* reveal clip */
.gallery__cell .img-clip {
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform-origin: top;
  z-index: 1;
}

/* ── OFFER ── */
.offer {
  padding: 120px 40px;
  background: var(--bg2);
}
.offer__head {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.offer__eyebrow {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.offer__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: .05em;
  line-height: .95;
  color: var(--white);
}
.offer__head-desc {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 380px;
  align-self: end;
  text-align: right;
}
.offer__tiers {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.offer__tier {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), border-color .3s;
  position: relative;
}
.offer__tier:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,.2);
}
.offer__tier--featured {
  border-color: rgba(201,162,39,.35);
  background: linear-gradient(180deg, rgba(201,162,39,.06) 0%, var(--card) 40%);
}
.offer__tier--featured:hover { border-color: rgba(201,162,39,.6); }
.offer__tier-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gold);
  color: #000;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}
.offer__tier-photo {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.offer__tier--featured .offer__tier-photo { height: 300px; }
.offer__tier-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.offer__tier:hover .offer__tier-photo img { transform: scale(1.06); }
.offer__tier-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.offer__tier-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.offer__tier-num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: .06em;
  color: rgba(201,162,39,.3);
  line-height: 1;
}
.offer__tier-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: .05em;
  color: var(--white);
  line-height: 1;
}
.offer__tier-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}
.offer__tier-includes {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 4px;
}
.offer__tier-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  line-height: 1.4;
}
.offer__tier-item svg { flex-shrink: 0; }
.offer__tier-item--yes { color: var(--text); }
.offer__tier-item--no  { color: var(--muted); }
.offer__tier-price {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold);
  margin: 16px 0 12px;
  letter-spacing: .01em;
}
.offer__tier-price span { font-size: .85rem; font-weight: 400; color: var(--muted); }
.offer__tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 13px 24px;
  border-radius: 50px;
  border: 1px solid rgba(201,162,39,.35);
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s, border-color .25s, color .25s, transform .25s var(--ease);
}
.offer__tier-cta:hover {
  background: rgba(201,162,39,.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.offer__tier-cta--featured {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.offer__tier-cta--featured:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: #000;
}
.offer__footnote {
  max-width: 1200px;
  margin: 28px auto 0;
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
}

/* ── PHOTO ROW ── */
.photorow { background: var(--bg); overflow: hidden; }
.photorow__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 380px;
  gap: 4px;
}
.photorow__item {
  overflow: hidden;
  position: relative;
}
.photorow__item img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: -10%;
  left: 0;
  will-change: transform;
  transition: none;
}
.photorow__item:hover img { transform: scale(1.04); }

/* ── HOW ── */
.how { padding: 120px 40px; background: var(--bg2); }
.how__inner { max-width: 900px; margin: 0 auto; }
.how__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 64px;
}
.how__list { display: flex; flex-direction: column; }
.how__item {
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  align-items: center;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.how__item:first-child { border-top: 1px solid var(--border); }
.how__n {
  font-family: var(--ff-display);
  font-size: 2rem;
  letter-spacing: .06em;
  color: rgba(201,162,39,.25);
  line-height: 1;
  transition: color .3s;
}
.how__item:hover .how__n { color: var(--gold); }
.how__content strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.how__content p { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.how__icon {
  color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .3s;
}
.how__item:hover .how__icon { color: var(--gold); }

/* ── ORDER ── */
.order {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.order__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  padding: 100px 40px;
}
.order__text {
  align-self: center;
}
.order__h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: .04em;
  line-height: .95;
  color: var(--white);
  margin-bottom: 20px;
}
.order__sub {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.order__timing {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  color: var(--gold);
  background: rgba(201,162,39,.08);
  border: 1px solid rgba(201,162,39,.25);
  border-radius: 6px;
  padding: 6px 12px;
  margin-bottom: 20px;
}
.order__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding: 0;
}
.order__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
  line-height: 1.4;
}
.order__features li svg { flex-shrink: 0; }
.order__contact { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.tg-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #229ED9;
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 13px 24px;
  border-radius: 50px;
  transition: background .25s, transform .25s;
  width: fit-content;
}
.tg-btn:hover { background: #1a8bbf; transform: translateY(-2px); }
.order__or {
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Form */
.order__form { display: flex; flex-direction: column; gap: 20px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-group { display: flex; flex-direction: column; gap: 8px; }
.f-group label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.f-group input,
.f-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.f-group input:focus,
.f-group textarea:focus {
  border-color: rgba(201,162,39,.6);
  box-shadow: 0 0 0 3px rgba(201,162,39,.1);
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--muted); }
.f-group textarea { resize: vertical; min-height: 88px; }
.f-group input.error { border-color: #c0392b; }

/* Chips (radio) */
.f-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.chip {
  cursor: pointer;
  display: flex;
  flex: 1 1 0%;
  min-width: 110px;
}
.chip input { display: none; }
.chip > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
  gap: 1px;
  text-align: center;
}
.chip > span small { display: block; font-size: .66rem; color: var(--muted); font-weight: 400; }
.chip input:checked + span {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,39,.08);
}
.chip:hover > span { border-color: rgba(201,162,39,.3); color: var(--text); }

/* Check cards */
.f-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.check-card { cursor: pointer; }
.check-card input { display: none; }
.check-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 6px;
  padding: 18px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--card);
  transition: border-color .2s, background .2s;
}
.check-card__icon { color: var(--muted); transition: color .2s; }
.check-card__inner strong { font-size: .85rem; color: var(--text); font-weight: 500; }
.check-card__inner small { font-size: .72rem; color: var(--muted); }
.check-card input:checked + .check-card__inner {
  border-color: var(--gold);
  background: rgba(201,162,39,.07);
}
.check-card input:checked + .check-card__inner .check-card__icon { color: var(--gold); }
.check-card:hover .check-card__inner { border-color: rgba(201,162,39,.25); }

.f-privacy {
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  margin-top: -6px;
}

/* Success */
.order__success {
  grid-column: 2;
  display: none;
  align-items: center;
  justify-content: center;
}
.order__success[hidden] { display: none !important; }
.order__success:not([hidden]) { display: flex; }
.order__success-inner {
  text-align: center;
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.success-icon { margin-bottom: 8px; }
.order__success-inner h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  letter-spacing: .06em;
  color: var(--white);
}
.order__success-inner p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ── FOOTER ── */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__brand {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: .12em;
  color: var(--white);
}
.footer__nav {
  display: flex;
  gap: 24px;
  flex: 1;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.footer__nav a:hover { color: var(--gold); }
.footer__copy {
  font-size: .72rem;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
  margin-left: auto;
}

/* ── REVIEWS ── */
.reviews {
  padding: 120px 40px;
  background: var(--bg);
}
.reviews__inner { max-width: 1200px; margin: 0 auto; }
.reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 56px;
}
.reviews__head-left { display: flex; flex-direction: column; gap: 4px; }
.reviews__arrows { display: none; gap: 12px; justify-content: center; margin-top: 0; }
.reviews__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
}
.reviews__arrow:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.05); }
.reviews__arrow:active { transform: scale(0.95); }
.reviews__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: .06em;
  color: var(--white);
}
.reviews__count {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .3s;
}
.review-card:hover { border-color: rgba(201,162,39,.2); }
.review-card__stars {
  display: flex;
  gap: 4px;
}
.review-card__star {
  color: var(--gold);
  width: 16px;
  height: 16px;
}
.review-card__text {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}
.review-card__text::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 2rem;
  color: rgba(201,162,39,.3);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.review-card__name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
}
.review-card__meta {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ── FAQ ── */
.faq {
  padding: 120px 40px;
  background: var(--bg2);
}
.faq__inner { max-width: 820px; margin: 0 auto; }
.faq__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 56px;
}
.faq__list { display: flex; flex-direction: column; }
.faq__item {
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color .2s;
}
.faq__q:hover { color: var(--gold); }
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s, transform .35s var(--ease);
}
.faq__item.open .faq__icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq__icon svg { color: var(--muted); transition: color .25s; }
.faq__item.open .faq__icon svg { color: #000; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.faq__a-inner {
  padding: 0 0 24px;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 280px);
  }
  .gallery__cell--a { grid-column: 1 / 2; grid-row: 1 / 3; }
  .gallery__cell--b { grid-column: 2 / 3; grid-row: 1; }
  .gallery__cell--c { grid-column: 2 / 3; grid-row: 2; }
  .gallery__cell--d { grid-column: 1 / 2; grid-row: 3; }
  .gallery__cell--e { grid-column: 2 / 3; grid-row: 3; }
  .gallery__cell--f { grid-column: 1 / 2; grid-row: 4; }
  .gallery__cell--g { grid-column: 2 / 3; grid-row: 4; }

  .offer { padding: 80px 24px; }
  .offer__head { grid-template-columns: 1fr; gap: 16px; }
  .offer__tiers { grid-template-columns: 1fr; }
  .offer__tier--featured .offer__tier-photo { height: 260px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .faq { padding: 80px 24px; }

  .order__inner { grid-template-columns: 1fr; gap: 48px; }
  .order__success { grid-column: 1; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav__logo span { display: none; }
  .hero { grid-template-columns: 1fr; grid-template-rows: 50vh 1fr; height: auto; min-height: 100svh; }
  .hero__right { padding: 40px 20px 48px; width: 100%; overflow: hidden; }
  .hero__foot { justify-content: center; }
  .hero__h1 { font-size: clamp(2.8rem, 10vw, 4.5rem); margin-bottom: 28px; word-break: break-word; }
  .hero__specs { flex-wrap: nowrap; }
  .hero__spec { padding: 12px 0; flex: 1; border-left: none !important; }
  .hero__spec + .hero__spec { padding-left: 16px; border-left: 1px solid var(--border) !important; }
  .gallery { padding: 80px 20px; }
  .gallery__header { flex-direction: column; gap: 8px; }
  .gallery__note { text-align: left; max-width: none; }
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: repeat(7, 260px); }
  .gallery__cell { grid-column: 1 !important; }
  .gallery__count { display: block; }
  .gallery__cell figcaption { opacity: 1; transform: none; }
  .gallery__cell--a { grid-row: 1; }
  .gallery__cell--b { grid-row: 2; }
  .gallery__cell--c { grid-row: 3; }
  .gallery__cell--d { grid-row: 4; }
  .gallery__cell--e { grid-row: 5; }
  .gallery__cell--f { grid-row: 6; }
  .gallery__cell--g { grid-row: 7; }
  .photorow { display: none; }
  .offer { padding: 60px 20px; overflow: clip; position: relative; width: 100%; max-width: 100%; contain: paint; }
  .offer__head-desc { text-align: left; max-width: none; }
  .offer__tiers { 
    display: flex; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    gap: 16px; 
    margin: 0 -20px; 
    padding: 0 20px 24px; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .offer__tiers::-webkit-scrollbar { display: none; }
  .offer__tier { 
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center; 
  }
  .offer__tier-body { padding: 24px 20px 20px; }
  .offer__tier-cta { display: flex; width: 100%; }
  .reviews { padding: 60px 20px; overflow: clip; position: relative; width: 100%; max-width: 100%; contain: paint; }
  .reviews__head { flex-direction: row; align-items: center; }
  .reviews__arrows { display: flex; }
  .reviews__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0 -20px;
    padding: 0 20px 24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .reviews__grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
  }
  .faq { padding: 60px 20px; }
  .how { padding: 80px 20px; }
  .how__item { grid-template-columns: 40px 1fr; }
  .how__icon { display: none; }
  .f-row { grid-template-columns: 1fr; }
  .f-checks { grid-template-columns: 1fr; }
  .order__inner { padding: 60px 20px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__nav { gap: 16px 24px; }
  .footer__copy { margin-left: 0; }
  .chip { min-width: 90px; }
  .chip > span { padding: 8px 12px; font-size: 0.78rem; }
}

/* Fancybox Overrides */
.fancybox__caption {
  font-family: var(--ff-body);
  font-size: 0.9rem;
}
