/* ==========================================================================
   Liora Photo Co. — shared styles
   ========================================================================== */
:root {
  --green: #304945;
  --green-deep: #223532;
  --cream: #fffaf6;
  --cream-dim: #f5ede5;
  --sage: #8fa39e;
  --ink-muted: #5a716c;
  --font-display: 'Instrument Serif', serif;
  --font-serif: 'Prata', serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--green);
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.serif { font-family: 'Prata', serif; font-weight: 400; }
.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
}

/* ---------- NAV ---------- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 6vw;
  position: sticky;
  top: 0;
  background: rgba(255,250,246,0.92);
  backdrop-filter: blur(8px);
  z-index: 50;
  border-bottom: 1px solid rgba(48,73,69,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 1.9rem;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  color: var(--green);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.3rem;
  white-space: nowrap;
}
.nav-links a:not(.btn):not(:first-child)::before {
  content: '';
  position: absolute;
  left: -1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.85rem;
  background: rgba(48,73,69,0.25);
}
.nav-links a:not(.btn)[aria-current="page"] {
  border-bottom: 1px solid var(--green);
}
.nav-links a.btn { color: var(--cream); }
.nav-links a.btn:hover { color: var(--green); }
.nav-links .btn { padding: 0.6rem 1.2rem; font-size: 0.9rem; letter-spacing: 0.06em; }
.btn {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--green);
  transition: background 0.3s, color 0.3s;
}
.btn:hover { background: transparent; color: var(--green); }
.btn-ghost {
  background: transparent;
  color: var(--green);
}
.btn-ghost:hover { background: var(--green); color: var(--cream); }

/* ---------- HERO (home) ---------- */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 6vw 5rem;
  position: relative;
}
.hero-logo {
  width: clamp(15rem, 42vw, 30rem);
  height: auto;
  display: block;
}
.hero-tag {
  margin-top: 1.8rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 34rem;
  color: var(--green);
}
.hero-loc {
  margin-top: 0.8rem;
}
.hero-cta { margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---------- HERO FORK (home — choose your path) ---------- */
.hero-fork {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  width: 100%;
  max-width: 44rem;
}
.fork-card {
  border: 1px solid rgba(48,73,69,0.25);
  padding: 2.4rem 1.6rem;
  text-decoration: none;
  color: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.fork-card h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 400;
}
.fork-card .fork-sub {
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  max-width: 19rem;
}
.fork-card .fork-arrow {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: transform 0.3s;
}
.fork-card:hover {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.fork-card:hover .eyebrow { color: rgba(255,250,246,0.72); }
.fork-card:hover .fork-arrow { transform: translateX(4px); }

/* ---------- STAR DIVIDER ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0 6vw;
}
.divider::before, .divider::after {
  content: '';
  height: 1px;
  background: rgba(48,73,69,0.18);
  flex: 1;
  max-width: 12rem;
}
.divider svg { width: 14px; height: 18px; flex-shrink: 0; }

/* ---------- MARQUEE (reusable infinite scroller) ---------- */
.marquee {
  overflow: hidden;
  background: var(--green);
  padding: 1.3rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  color: var(--cream);
  padding-right: 2.5rem;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- CLIENT REVIEWS (dark band, disabled until real reviews exist) ---------- */
.reviews-marquee { background: var(--green-deep); padding: 5.5rem 0; }
.reviews-marquee .section-head .eyebrow { color: rgba(255,250,246,0.7); }
.reviews-marquee .section-head h2 { color: var(--cream); }
.reviews-marquee .marquee { background: transparent; padding: 1rem 0 0; }
.review-slide {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--cream);
  padding: 0 3rem;
  max-width: 32rem;
  flex-shrink: 0;
  white-space: normal;
}
.review-slide .attribution {
  display: block;
  margin-top: 0.9rem;
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,250,246,0.7);
}

/* ---------- SECTIONS ---------- */
section { padding: 6rem 6vw; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  margin-top: 0.9rem;
  font-weight: 400;
}

/* ---------- PAGE HEADER (interior pages) ---------- */
.page-header {
  padding: 5.5rem 6vw 4rem;
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
}
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  margin-top: 0.9rem;
  line-height: 1.05;
}
.page-header p {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.125rem);
}

/* ---------- GIANT WORD HERO (faq) ---------- */
.giant-hero {
  padding: 5rem 6vw 3rem;
  text-align: center;
}
.giant-hero .giant-word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(5.5rem, 26vw, 14rem);
  line-height: 0.85;
  color: var(--green);
}
.giant-hero .giant-subhead {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  margin-top: 1.2rem;
}
.giant-hero .giant-lead {
  margin-top: 1.3rem;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* ---------- SPLIT HERO (image/text hero, e.g. contact) ---------- */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 62vh;
}
.split-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5vw;
}
.split-hero-content h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin-top: 0.6rem;
}
.split-hero-content p {
  margin-top: 1.3rem;
  max-width: 30rem;
  font-size: 1.05rem;
}
.split-hero-visual {
  background: linear-gradient(155deg, var(--cream-dim), #cdd6d2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: 2rem;
  border-left: 1px solid rgba(48,73,69,0.12);
}
.split-hero-visual svg { width: 18px; height: 22px; }
.split-hero-visual span {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  max-width: 16rem;
}

/* ---------- THE BOOTH ---------- */
.booth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 68rem;
  margin: 0 auto;
}
.booth-visual {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--cream-dim), #e8ddd0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(48,73,69,0.12);
}
.booth-visual span {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.booth-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 400;
  margin: 0.9rem 0 1.4rem;
  line-height: 1.08;
}
.booth-copy p { margin-bottom: 1.2rem; max-width: 30rem; }
.booth-points { list-style: none; margin: 1.8rem 0 2.2rem; }
.booth-points li {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}
.booth-points svg { width: 10px; height: 13px; flex-shrink: 0; transform: translateY(1px); }

/* ---------- SPEC LIST (the booth page) ---------- */
.specs {
  max-width: 68rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}
.spec-item { border-top: 1px solid rgba(48,73,69,0.16); padding-top: 1rem; }
.spec-item h4 {
  font-family: 'Prata', serif;
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.spec-item p { font-size: 1.05rem; }

/* ---------- GALLERY STRIPS ---------- */
.strips-wrap { background: var(--green); }
.strips-wrap .eyebrow { color: rgba(255,250,246,0.7); }
.strips-wrap h2 { color: var(--cream); }
.strips {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.strip {
  background: var(--cream);
  padding: 0.6rem 0.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 9.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}
.strip:nth-child(1) { transform: rotate(-2.5deg); }
.strip:nth-child(2) { transform: rotate(1.5deg) translateY(14px); }
.strip:nth-child(3) { transform: rotate(-1deg); }
.strip:nth-child(4) { transform: rotate(2.5deg) translateY(10px); }
.frame {
  aspect-ratio: 1 / 1;
  background: linear-gradient(150deg, #dcd2c6, #c9bcae);
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame.bw { background: linear-gradient(150deg, #d8d8d6, #b9b9b6); }
.strip-label {
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 0.2rem;
  font-weight: 500;
}

/* ---------- EXPERIENCE / PACKAGES ---------- */
.pkgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 68rem;
  margin: 0 auto;
}
.pkg {
  border: 1px solid rgba(48,73,69,0.16);
  padding: 2.6rem 2.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.pkg:hover { border-color: var(--green); }
.pkg h3 {
  font-family: 'Prata', serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin: 0.8rem 0 0.4rem;
}
.pkg .for {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.4rem;
}
.pkg ul {
  list-style: none;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 2rem;
  flex: 1;
}
.pkg li { padding: 0.45rem 0; border-bottom: 1px solid rgba(48,73,69,0.08); }
.pkg li:last-child { border-bottom: none; }
.pkg .from {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: var(--green);
  font-weight: 500;
}
.pkg .scope-note {
  font-size: 1.05rem;
  margin-top: -0.7rem;
  margin-bottom: 1.2rem;
}

/* ---------- PACKAGE CARD (editorial: pill tab + footer band) ---------- */
.pkg-card {
  position: relative;
  margin-top: 1.2rem;
  border: 1px solid rgba(48,73,69,0.35);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  transition: border-color 0.3s;
}
.pkg-card:hover { border-color: var(--green); }
.pkg-tab {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 0.55rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  white-space: nowrap;
  color: var(--green);
  z-index: 2;
}
.pkg-card-body {
  padding: 2.8rem 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
.pkg-card-body .for {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.4rem;
}
.pkg-card-body ul { list-style: none; font-size: 1.05rem; font-weight: 500; margin-bottom: 2rem; flex: 1; }
.pkg-card-body li { padding: 0.45rem 0; border-bottom: 1px solid rgba(48,73,69,0.08); }
.pkg-card-body li:last-child { border-bottom: none; }
.pkg-card-body .proposal-line {
  font-size: 1.05rem;
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}
.pkg-card-body .scope-note {
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}
.pkg-footer-band {
  background: var(--green);
  color: var(--cream);
  text-align: center;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom-left-radius: 1.4rem;
  border-bottom-right-radius: 1.4rem;
}

/* ---------- LIORA PROMISE ---------- */
.promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 68rem;
  margin: 0 auto;
}
.promise-item { text-align: center; }
.promise-item svg { width: 14px; height: 18px; margin: 0 auto 1.2rem; display: block; }
.promise-item h3 {
  font-family: 'Prata', serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.promise-item p { font-size: 1.05rem; max-width: 22rem; margin: 0 auto; }

/* ---------- ENHANCEMENTS ---------- */
.enh-list { max-width: 68rem; margin: 0 auto; }
.enh-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4.5rem 0;
}
.enh-row:first-child { padding-top: 0; }
.enh-row + .enh-row { border-top: 1px solid rgba(48,73,69,0.16); }
.enh-row:nth-of-type(even) .enh-visual { order: 2; }
.enh-visual {
  aspect-ratio: 4 / 5;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(155deg, var(--cream-dim), #cdd6d2);
  border: 1px solid rgba(48,73,69,0.12);
  object-fit: cover;
}
.enh-visual svg { width: 16px; height: 20px; flex-shrink: 0; }
.enh-visual span {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  max-width: 14rem;
}
.enh-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.08;
  margin: 0.7rem 0 1.1rem;
}
.enh-copy p { margin-bottom: 1.1rem; max-width: 40rem; }
.enh-copy .sub-label {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 1.8rem 0 0.4rem;
}
.enh-tiers { margin: 0.4rem 0 1.8rem; }
.enh-tier {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(48,73,69,0.1);
}
.enh-tier:first-child { border-top: none; padding-top: 0; }
.enh-tier-name {
  font-family: 'Prata', serif;
  font-weight: 400;
  font-size: 1.05rem;
}
.enh-tier-name span.sub {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  margin-top: 0.35rem;
  letter-spacing: normal;
  text-transform: none;
}
.enh-tier-price {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  padding-top: 0.2rem;
}
.enh-note { font-size: 1.05rem; margin-top: -0.6rem; margin-bottom: 1.6rem; }

/* ---------- HOW TO BOOK (steps) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 68rem;
  margin: 0 auto;
  counter-reset: step;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'Prata', serif;
  font-size: 1.05rem;
}
.step h3 {
  font-family: 'Prata', serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.step p { font-size: 1.05rem; max-width: 20rem; margin: 0 auto; }

/* ---------- FAQ ACCORDION ---------- */
.faq-list { max-width: 44rem; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(48,73,69,0.16);
  padding: 1.6rem 0;
}
.faq-item summary {
  font-family: 'Prata', serif;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Figtree', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 38rem;
}

/* ---------- CONTACT FORM ---------- */
.form-wrap { max-width: 38rem; margin: 0 auto; }
.field { margin-bottom: 1.6rem; }
.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(48,73,69,0.3);
  padding: 0.6rem 0.1rem;
  font-family: 'Figtree', sans-serif;
  font-size: 1.05rem;
  color: var(--green);
  font-weight: 400;
}
.field textarea { resize: vertical; min-height: 6rem; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--green);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-muted);
  opacity: 1;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.form-note { font-size: 1.05rem; margin-top: -0.4rem; margin-bottom: 2rem; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--green-deep);
  text-align: center;
  color: var(--cream);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  max-width: 32rem;
  margin: 1rem auto 1.4rem;
  line-height: 1.08;
}
.cta-band p { max-width: 28rem; margin: 0 auto 2.2rem; font-size: 1.05rem; }
.cta-band .btn { background: var(--cream); color: var(--green-deep); border-color: var(--cream); }
.cta-band .btn:hover { background: transparent; color: var(--cream); }
.cta-band .eyebrow { color: rgba(255,250,246,0.65); }

/* ---------- FOOTER ---------- */
footer {
  padding: 2.5rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  flex-wrap: wrap;
  gap: 1rem;
}
footer a { color: var(--green); text-decoration: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 940px) {
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 800px) {
  .booth { grid-template-columns: 1fr; gap: 2.5rem; }
  .pkgs { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .promise { grid-template-columns: 1fr; gap: 2.5rem; }
  .enh-tier { flex-direction: column; gap: 0.3rem; }
  .enh-row { grid-template-columns: 1fr; gap: 1.6rem; padding: 3rem 0; }
  .enh-row:nth-of-type(even) .enh-visual { order: 0; }
  .enh-visual { aspect-ratio: 4 / 5; max-width: 22rem; margin: 0 auto; }
  .specs { grid-template-columns: 1fr; }
  .hero-fork { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  section { padding: 4.5rem 7vw; }
  .split-hero { grid-template-columns: 1fr; min-height: auto; }
  .split-hero-visual { aspect-ratio: 4 / 3; border-left: none; border-top: 1px solid rgba(48,73,69,0.12); }
  .split-hero-content { padding: 3.5rem 7vw; }
  .pkg-card { margin-top: 1.4rem; }
  .marquee-item { font-size: 1.5rem; padding-right: 1.6rem; }
  .review-slide { padding: 0 1.6rem; font-size: 1.05rem; }
}
@media (max-width: 520px) {
  nav { padding: 1.3rem 5vw; }
  .nav-logo img { height: 1.5rem; }
  .btn { padding: 0.55rem 0.9rem; font-size: 0.9rem; letter-spacing: 0.04em; }
  .giant-hero { padding: 3.5rem 6vw 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .marquee-track { animation: none; }
}
