/* ========================================
   Sorvu.store — Premium Outdoor Adventure
   ======================================== */

:root {
  --snow: #FCFCF8;
  --sand: #F2EFE8;
  --forest: #355E3B;
  --forest-deep: #2A4A2F;
  --burnt: #C96A2B;
  --burnt-hover: #A85622;
  --sky: #4FA3D9;
  --slate: #2A2F36;
  --stone: #737B84;
  --border: #E4E0D8;
  --white: #FFFFFF;
  --overlay: rgba(42, 47, 54, 0.45);
  --overlay-strong: rgba(42, 47, 54, 0.62);
  --font-heading: "Libre Baskerville", Georgia, serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;
  --header-h: 72px;
  --announce-h: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 12px 40px rgba(42, 47, 54, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--announce-h));
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate);
  background: var(--snow);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--forest), var(--burnt));
  z-index: 1000;
  transition: width 0.05s linear;
}

/* ---------- Announcement ---------- */
.announcement {
  position: relative;
  z-index: 101;
  background: var(--forest);
  color: var(--snow);
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.65rem 1rem;
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-solid {
  background: rgba(252, 252, 248, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.site-header.is-over-hero:not(.is-solid) {
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
  width: min(1280px, calc(100% - 2rem));
  margin-inline: auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--snow);
  transition: color 0.3s;
  flex-shrink: 0;
}

.site-header.is-solid .logo,
.site-header:not(.is-over-hero) .logo {
  color: var(--forest);
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-primary a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(252, 252, 248, 0.9);
  transition: color 0.25s;
  position: relative;
}

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

.nav-primary a:hover::after,
.nav-primary a:focus-visible::after {
  width: 100%;
}

.site-header.is-solid .nav-primary a,
.site-header:not(.is-over-hero) .nav-primary a {
  color: var(--slate);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: var(--snow);
  transition: background 0.25s, color 0.25s;
  position: relative;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-solid .icon-btn,
.site-header:not(.is-over-hero) .icon-btn {
  color: var(--slate);
}

.site-header.is-solid .icon-btn:hover,
.site-header:not(.is-over-hero) .icon-btn:hover {
  background: var(--sand);
}

.cart-count {
  position: absolute;
  top: 6px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--burnt);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--snow);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.site-header.is-solid .nav-toggle,
.site-header:not(.is-over-hero) .nav-toggle {
  color: var(--slate);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s, transform 0.25s;
}

.btn:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--burnt);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--burnt-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--snow);
  border: 1.5px solid rgba(252, 252, 248, 0.7);
}

.btn-secondary:hover {
  background: rgba(252, 252, 248, 0.12);
  border-color: var(--snow);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--snow);
}

.btn-dark {
  background: var(--forest);
  color: var(--snow);
}

.btn-dark:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--snow);
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 47, 54, 0.35) 0%, rgba(42, 47, 54, 0.15) 35%, rgba(42, 47, 54, 0.72) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 0 0 clamp(4rem, 10vh, 7rem);
  max-width: 640px;
  margin-left: max(1.25rem, calc((100% - 1180px) / 2 + 1.25rem));
}

.hero-brand {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.15s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 1rem;
  max-width: 28ch;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(252, 252, 248, 0.88);
  margin-bottom: 2rem;
  max-width: 42ch;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}

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

/* ---------- Section Commons ---------- */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-sand {
  background: var(--sand);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 560px;
}

.section-header.centered {
  text-align: center;
  margin-inline: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burnt);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate);
  margin-bottom: 0.85rem;
}

.section-desc {
  color: var(--stone);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Shop by Adventure ---------- */
.adventure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.adventure-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  color: var(--snow);
}

.adventure-card:nth-child(1),
.adventure-card:nth-child(4) {
  aspect-ratio: 3 / 3.4;
}

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

.adventure-card:hover img,
.adventure-card:focus-visible img {
  transform: scale(1.08);
}

.adventure-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42, 47, 54, 0.75) 100%);
  pointer-events: none;
}

.adventure-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.adventure-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
}

.compass-icon {
  width: 36px;
  height: 36px;
  opacity: 0;
  transform: rotate(-45deg) scale(0.8);
  transition: opacity 0.4s, transform 0.5s var(--ease);
  flex-shrink: 0;
}

.adventure-card:hover .compass-icon,
.adventure-card:focus-visible .compass-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.compass-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ---------- Featured Gear ---------- */
.products-slider-wrap {
  position: relative;
}

.products-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.product-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sand);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s var(--ease);
}

.product-media .img-alt {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .img-main {
  opacity: 0;
}

.product-card:hover .img-alt {
  opacity: 1;
}

.product-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  background: var(--sand);
  color: var(--forest);
  border: 1px solid var(--border);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate);
}

.btn-quick-add {
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--forest);
  color: var(--snow);
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}

.btn-quick-add:hover {
  background: var(--forest-deep);
}

.btn-quick-add.added {
  background: var(--burnt);
}

.slider-controls {
  display: none;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--slate);
  display: grid;
  place-items: center;
  transition: border-color 0.25s, background 0.25s;
}

.slider-btn:hover:not(:disabled) {
  border-color: var(--forest);
  background: var(--sand);
}

.slider-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---------- Why Choose ---------- */
.features-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.feature-block:nth-child(even) {
  direction: rtl;
}

.feature-block:nth-child(even) > * {
  direction: ltr;
}

.feature-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.feature-block:hover .feature-image img {
  transform: scale(1.04);
}

.feature-copy {
  max-width: 420px;
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--burnt);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.feature-copy h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.feature-copy p {
  color: var(--stone);
  margin-bottom: 1.25rem;
}

.feature-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.03em;
  border-bottom: 1.5px solid var(--forest);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.feature-link:hover {
  color: var(--burnt);
  border-color: var(--burnt);
}

/* ---------- Journal ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.journal-card {
  display: block;
  position: relative;
  overflow: hidden;
  color: var(--snow);
  min-height: 280px;
}

.journal-card.featured {
  grid-row: 1 / 3;
  min-height: 100%;
}

.journal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1s var(--ease);
}

.journal-card:hover img {
  transform: scale(1.06);
}

.journal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(42, 47, 54, 0.8) 100%);
}

.journal-card-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.75rem;
}

.journal-meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.5rem;
}

.journal-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.journal-card.featured h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.journal-excerpt {
  font-size: 0.95rem;
  color: rgba(252, 252, 248, 0.85);
  max-width: 40ch;
}

/* ---------- Customer Adventures ---------- */
.scrapbook {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.scrap-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.75rem;
  transition: transform 0.35s var(--ease);
}

.scrap-item:hover {
  transform: rotate(0deg) translateY(-4px) !important;
}

.scrap-item:nth-child(1) {
  grid-column: span 5;
  transform: rotate(-1.2deg);
}

.scrap-item:nth-child(2) {
  grid-column: span 4;
  transform: rotate(1deg);
  margin-top: 2rem;
}

.scrap-item:nth-child(3) {
  grid-column: span 3;
  transform: rotate(-0.8deg);
}

.scrap-item:nth-child(4) {
  grid-column: span 4;
  transform: rotate(0.6deg);
  margin-top: -1rem;
}

.scrap-item:nth-child(5) {
  grid-column: span 5;
  transform: rotate(-0.5deg);
}

.scrap-item:nth-child(6) {
  grid-column: span 3;
  transform: rotate(1.2deg);
  margin-top: 1rem;
}

.scrap-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.scrap-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scrap-destination {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.scrap-products {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--burnt);
  margin-bottom: 0.5rem;
}

.scrap-story {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.55;
}

/* ---------- Bundle ---------- */
.bundle {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.bundle-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.bundle-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1rem 0.75rem;
  text-align: center;
}

.bundle-item:first-child {
  grid-column: span 2;
}

.bundle-item:nth-child(2) {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bundle-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 0.65rem;
}

.bundle-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--stone);
}

.bundle-copy .savings {
  display: inline-block;
  background: var(--burnt);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
}

.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 1.25rem 0 1.75rem;
}

.bundle-price .current {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--forest);
}

.bundle-price .original {
  font-size: 1.15rem;
  color: var(--stone);
  text-decoration: line-through;
}

.bundle-list {
  margin: 1.25rem 0 1.75rem;
}

.bundle-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
}

.bundle-list li svg {
  flex-shrink: 0;
  color: var(--forest);
}

/* ---------- Sustainability ---------- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--forest), var(--sky), var(--burnt), var(--forest));
}

.timeline-item {
  position: relative;
  padding: 0 0 2.75rem 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--snow);
  border: 3px solid var(--forest);
  z-index: 1;
}

.timeline-item:nth-child(2) .timeline-marker {
  border-color: var(--sky);
}

.timeline-item:nth-child(3) .timeline-marker {
  border-color: var(--burnt);
}

.timeline-item:nth-child(4) .timeline-marker {
  border-color: var(--forest);
}

.timeline-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
  color: var(--forest);
}

.timeline-item h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--stone);
  max-width: 48ch;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--snow);
  overflow: hidden;
}

.final-cta-media {
  position: absolute;
  inset: 0;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 47, 54, 0.55);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  max-width: 560px;
}

.final-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.final-cta-content p {
  font-size: 1.1rem;
  color: rgba(252, 252, 248, 0.9);
  margin-bottom: 2rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--slate);
  color: rgba(252, 252, 248, 0.85);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--snow);
  margin-bottom: 1.15rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  padding: 0.3rem 0;
  color: rgba(252, 252, 248, 0.7);
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--snow);
}

.footer-brand {
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: var(--snow);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  max-width: 36ch;
  font-size: 0.9rem;
  color: rgba(252, 252, 248, 0.65);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0 2rem;
  font-size: 0.8125rem;
  color: rgba(252, 252, 248, 0.55);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-meta a:hover {
  color: var(--snow);
}

.payment-methods {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.pay-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  color: rgba(252, 252, 248, 0.7);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(252, 252, 248, 0.75);
  transition: background 0.25s, color 0.25s;
}

.social-links a:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--snow);
}

/* ---------- Search Overlay ---------- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(42, 47, 54, 0.7);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-form {
  width: min(560px, calc(100% - 2rem));
  background: var(--snow);
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
  transform: translateY(-16px);
  transition: transform 0.35s var(--ease);
}

.search-overlay.is-open .search-form {
  transform: translateY(0);
}

.search-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--slate);
  outline: none;
}

.search-form input::placeholder {
  color: var(--stone);
}

.search-close {
  color: var(--stone);
  padding: 0.25rem;
}

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

  .products-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .products-track::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 min(300px, 80vw);
    scroll-snap-align: start;
  }

  .slider-controls {
    display: flex;
  }

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

  .journal-card.featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }

  .scrapbook {
    grid-template-columns: repeat(2, 1fr);
  }

  .scrap-item:nth-child(n) {
    grid-column: span 1;
    margin-top: 0;
    transform: none;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-primary {
    position: fixed;
    top: calc(var(--announce-h) + var(--header-h));
    left: 0;
    right: 0;
    background: var(--snow);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.35s, visibility 0.35s;
  }

  .nav-primary.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-primary a {
    color: var(--slate) !important;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .site-header.is-over-hero:not(.is-solid) {
    background: transparent;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

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

  .adventure-card,
  .adventure-card:nth-child(1),
  .adventure-card:nth-child(4) {
    aspect-ratio: 16 / 10;
  }

  .feature-block,
  .feature-block:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

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

  .bundle-visual {
    grid-template-columns: repeat(2, 1fr);
  }

  .bundle-item:first-child,
  .bundle-item:nth-child(2) {
    grid-column: span 1;
    grid-row: auto;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .header-actions .icon-btn:nth-child(2),
  .header-actions .icon-btn:nth-child(3) {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
