/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #F7F4EF;
  --white:        #FFFFFF;
  --dark:         #1A1A1A;
  --forest-deep:  #162B15;
  --forest-mid:   #2D4A2A;
  --cream:        #EDE9E1;
  --gold:         #C99A2E;
  --orange-live:  #D95B2B;
  --muted:        #717171;
  --border:       #E2DDD5;

  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-pill:  10px;

  --shadow-card:  0 4px 28px rgba(0,0,0,0.38);
  --shadow-lift:  0 16px 60px rgba(0,0,0,0.38);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: 'Libre Bodoni', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.4rem, 9vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 5.8vw, 2.6rem); font-weight: 200; }
h3 { font-size: 1.3rem; font-weight: 400; }

em {
  font-style: italic;
}

/* ============================================================
   UTILITY
   ============================================================ */
.section-inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   LOGO MARK
   ============================================================ */
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--dark);
  color: var(--white);
  border-radius: 7px;
  font-family: 'Libre Bodoni', serif;
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.shop-cta {
  font-size: 1.2rem;
}

.btn:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

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

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

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(247, 244, 239, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  max-width: 960px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.nav-rating-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
}

.nav-reviews {
  font-size: 0.7rem;
  color: var(--muted);
}

.nav-cart {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 4px;
  display: flex;
  align-items: center;
  opacity: 0.8;
  position: relative;
}

.nav-cart:hover {
  opacity: 1;
}

.nav-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  padding: 2px 4px;
  border-radius: 999px;
  background: var(--dark);
  color: #FFFFFF;
  font-size: 0.65rem;
  line-height: 1;
  text-align: center;
}

.nav-burger {
  background: none;
  border: none;
  padding: 4px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--dark);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.sidebar.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sidebar-inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 16px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  height: 45px;
  width: auto;
}

.sidebar-close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.sidebar-close-img {
  width: 32px;
  height: 32px;
  display: block;
}

.sidebar-hero {
  margin-inline: -24px; /* pull image to screen edges */
}

.sidebar-hero-img {
  width: 100%;
  display: block;
}

.sidebar-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 20px;
}

.sidebar-cta {
  min-width: 210px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
}

.sidebar-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-support {
  width: 100%;
}

.sidebar-support-panel {
  margin-top: 14px;
  padding: 18px 20px 20px;
  border-radius: 22px;
  background: #ffffff;
  font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sidebar-support-panel h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sidebar-support-panel p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.sidebar-support-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-support-btn {
  display: block;
  text-align: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 600;
}

.sidebar-link {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  cursor: pointer;
  font-weight: 500;
}

.sidebar-link-icon {
  font-size: 1.1rem;
}

.sidebar-arrow {
  width: 16px;
  height: 16px;
  display: block;
  transition: transform 0.16s ease;
}

.sidebar-arrow-down {
  width:24px;
  height: 20px;
}

.sidebar-arrow-right {
  width:22px;
  height: 20px;
}

.sidebar-support-toggle.is-open .sidebar-arrow {
  transform: rotate(180deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 56px;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.02) 25%,
    rgba(0,0,0,0.38) 62%,
    rgba(0,0,0,0.82) 100%
  );
  opacity: 0.3;
}

.hero-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 28px 24px;
  gap: 63px;
}

.hero-frame {
  width: 198px;
  border-radius: 26px;
  background: #FFFFFF;
}

.hero-frame-inner {
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-video {
  display: block;
  width: 100%;
  height:345px;
  object-fit: cover;
}

.hero-copy {
  text-align: center;
  color: var(--white);
}

.hero-copy h1 {
  color: var(--dark);
  margin-bottom: 18px;
  font-size: 23px;
  font-weight: 500;
}

.hero-title-1-span {
  font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
}

.hero-pill {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-rating-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 28px 40px;
  color: var(--white);
}

.rating-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}

.rating-val {
  font-size: 0.85rem;
  font-weight: 600;
}

.rating-reviews {
  font-size: 0.75rem;
  opacity: 0.75;
}

/* ============================================================
   FRAME FEATURE
   ============================================================ */
.frame-feature {
  background: var(--white);
  padding: 64px 24px 72px;
  overflow: hidden;
}

.frame-img-wrap {
  width: min(340px, 88vw);
  margin: 0 auto 44px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.frame-img {
  width: 100%;
  display: block;
}

.frame-copy {
  text-align: center;
}

.spec-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0 40px;
}

.spec-tag {
  
  color: var(--dark);
  font-size: 1rem;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--dark);
}

.frame-copy h2 {
  max-width: 340px;
  margin: 0 auto;
}

.frame-scroll-mask {
  margin: 25px auto 0;
  width: min(360px, 86vw);
  height: 360px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: #000;
  position: relative;
}

.frame-scroll-img {
  width: 100%;
  height: 180%;
  object-fit: cover;
  transition: transform 0.12s linear;
}

/* ============================================================
   WORLD SECTION
   ============================================================ */
.world {
  padding: 0px 0 80px;
  background: var(--white);
  overflow: hidden; /* prevent page-level horizontal scroll from peeking slides */
}

.world-content {
  text-align: center;
}

.world-content h2 {
  margin-bottom: 36px;
}

.world-swiper {
  width: 100%;
  padding: 8px 24px 32px;
  box-sizing: border-box;
  overflow: hidden;
}

.world-swiper-portal {
  width: 100%;
  padding: 8px 0 32px;
  margin: 0;
  box-sizing: border-box;
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 260px;
  margin: 0 auto;
}

.location-thumb {
  width: 100%;
  border-radius: 4px;
  border: 8px solid var(--dark);
  background: #000;
  overflow: hidden;
  aspect-ratio: 3 / 5.1;
}

.location-thumb img,
.location-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 5.2;
}

.location-thumb--list {
  
  
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.location-list-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 14px;
  font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}

.location-name {
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.world-footer {
  text-align: center;
}

.world-cta {
  margin-top: 8px;
  padding-inline: 56px;
  padding-block: 16px;
  border-radius: 999px;
}

/* ============================================================
   TEACHING MOMENTS
   ============================================================ */
.teaching {
  padding: 72px 24px;
  background: var(--bg);
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
  background: var(--bg);
}

.login-main {
  max-width: 520px;
  margin: 96px auto 40px;
  padding: 0 24px;
}

.login-hero {
  text-align: left;
  margin-bottom: 28px;
  text-align: center;
}

.login-hero h1 {
  margin-bottom: 10px;
}

.login-hero p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.login-card {
  background: #FFFFFF;
  border-radius: 26px;
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-card);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-field span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.login-field input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.login-field input:focus {
  border-color: var(--dark);
}

.login-submit {
  margin-top: 8px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--dark);
  color: #FFFFFF;
  font-size: 0.95rem;
  cursor: pointer;
}

.login-meta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.login-link {
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.login-close-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--dark);
  font-size: 1.1rem;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page {
  background: #FFFFFF;
  overflow-x: hidden;
}

.policy-main {
  max-width: 640px;
  margin: 80px auto 48px;
  padding: 0 24px 40px;
}

.policy-section {
  margin-bottom: 24px;
}

.policy-section h1 {
  margin-bottom: 10px;
  font-size: 30px;
}

.policy-section h2 {
  margin-bottom: 8px;
}

.policy-updated {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.policy-list {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-main {
  max-width: 520px;
  margin: 70px auto 96px;
  padding: 0 24px;
}

.product-hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-bottom: 26px;
}

.product-hero-frame {
  width: 100vw;
  height: 260px;
  margin: 0;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #000;
  overflow: hidden;
}

.product-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-hero-thumbs {
  display: flex;
  gap: 8px;
}

.product-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid transparent;
  cursor: pointer;
}

.product-title-span{
  font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.product-thumb.is-active {
  border-color: var(--dark);
}

.product-body {
  margin-bottom: 28px;
}

.product-header h1 {
  text-align: center;
  margin-bottom: 8px;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  justify-content: center;
}

.product-rating-score {
  font-weight: 600;
}

.product-rating-stars {
  color: var(--gold);
  letter-spacing: 1px;
}

.product-rating-reviews {
  color: var(--muted);
}

.product-bullets {
  margin: 16px 0;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-locations {
  margin-top: 8px;
}

.product-network {
  overflow: hidden;
}

.product-copy {
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 14px;
}

.product-subtitle {
  font-size: 1.1rem;
  margin-top: 10px;
}

.product-returns {
  margin-top: 8px;
}

.product-review {
  padding-bottom: 16px;
}

.product-read-reviews{
  width: 100%;
}

.product-review-portal {
  margin-top:20px;
}

.product-read-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
}

.product-sticky-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.06);
  padding: 10px 16px 14px;
  z-index: 260;
}

.product-sticky-inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-sticky-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Fustat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.product-price-sub {
  font-size: 0.72rem;
  color: var(--muted);
}

.product-sticky-btn {
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  background: var(--dark);
  color: #FFFFFF;
  font-size: 1rem;
  white-space: nowrap;
  cursor: pointer;
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-main {
  padding-top: 64px;
}

.cart-hero {
  width: 100%;
}

.cart-hero-img-wrap {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.cart-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.cart-body {
  padding-top: 40px;
  padding-bottom: 72px;
}

.cart-header {
  text-align: center;
  margin-bottom: 36px;
}

.cart-header h1 {
  font-size: 1.9rem;
  letter-spacing: 0.04em;
}

.cart-card {
  border-radius: 26px;
  border: 1.5px solid #111111;
  padding: 28px 20px 32px;
  background: #FFFFFF;
}

.cart-table {
  display: grid;
  row-gap: 18px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 0.9fr;
  column-gap: 8px;
  align-items: center;
  font-size: 0.95rem;
}

.cart-row-head {
  font-weight: 600;
}

.cart-product-name {
  display: block;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cart-qty-static {
  justify-content: flex-start;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #111111;
  background: transparent;
  font-size: 1rem;
  line-height: 1;
}

.cart-qty-value {
  min-width: 10px;
  text-align: center;
}

.cart-price {
  text-align: right;
}

.cart-price-free {
  font-weight: 600;
}

.cart-row-total {
  border-top: 1px solid #111111;
  padding-top: 14px;
  margin-top: 8px;
  font-weight: 600;
}

.cart-total-label {
  font-weight: 600;
}

.cart-total-amount {
  text-align: right;
}

.cart-note {
  margin-top: 28px;
  margin-bottom: 26px;
  text-align: center;
  font-size: 0.83rem;
  color: var(--muted);
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid #111111;
  background: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
}

.cart-empty {
  text-align: center;
  padding: 10px 0 0;
}

.cart-empty-title {
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-empty-body {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-main {
  padding-bottom: 0;
}

.checkout-header h1 {
  font-size: 1.9rem;
  letter-spacing: 0.04em;
}

.checkout-card {
  border-radius: 26px;
  border: 1.5px solid #111111;
  padding: 28px 24px 32px;
  background: #FFFFFF;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-block-title {
  font-family: 'Libre Bodoni', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 4px;
  padding-top: 16px;
}

.checkout-form .checkout-block-title:first-child {
  padding-top: 0;
}

.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 12px;
}

.checkout-summary {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #111111;
}

.checkout-summary-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 10px 0 0;
}

.checkout-submit {
  width: 100%;
  margin-top: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  border: none;
  background: var(--dark);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 480px) {
  .checkout-row {
    grid-template-columns: 1fr;
  }
}

.teaching .section-inner {
  text-align: center;
  padding: 0 10px;
}

.teaching h2 {
  margin-bottom: 36px;
}

.moment-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: left;
  border: 8px solid var(--dark);
}

.moment-img-wrap {
  position: relative;
  overflow: hidden;
}

.moment-img {
  width: 100%;
  aspect-ratio: 3 / 5.2;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.moment-back {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.moment-back span {
  font-size: 1.3rem;
  line-height: 1;
}

.moment-top-right {
  position: absolute;
  top: 26px;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.moment-title {
  font-family: 'Libre Bodoni', serif;
  font-size: 1.6rem;
  color: #FFFFFF;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange-live);
}

.live-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.moment-text-overlay {
  position: absolute;
  inset-inline: 22px;
  bottom: 26px;
  color: #FFFFFF;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 85%;
}

.moment-text-overlay p {
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}


/* ============================================================
   WILDLIFE ID
   ============================================================ */
.wildlife {
  padding: 72px 0 72px;
  background: var(--white);
}

.wildlife .section-inner {
  text-align: center;
}

.wildlife-copy {
  margin-bottom: 40px;
}

.wildlife-copy h2 {
  margin-bottom: 14px;
}

.wildlife-copy p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

.wildlife-device {
  margin: 32px 0 36px;
}

.wildlife-collection-img {
  width: 100vw;
  max-width: none;
  display: block;
  border-radius: 0;
  margin-left: 50%;
  margin-top: -45px;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .wildlife-device {
    margin: 40px auto 40px;
    max-width: 960px;
  }

  .wildlife-collection-img {
    width: 100%;
    max-width: 100%;
    border-radius: 26px;
    margin-left: 0;
    transform: none;
  }
}

.wildlife-cta-wrap {
  text-align: center;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: 40px 0 40px;
  background: var(--bg);
}

.reviews .section-inner {
  text-align: center;
}

.reviews-header .review-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.reviews-swiper {
  padding: 0 24px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 22px 24px;
  border: 1.5px solid #111111;
  text-align: left;
  height:243px;
}

#product-reviews-list .review-card{
  margin-bottom: 20px;
}

.review-stars-inline {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-card h3 {
  font-family: 'Libre Bodoni', serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.reviewer-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--muted);
}

.reviewer-name {
  font-weight: 600;
  color: var(--dark);
}

.reviewer-sep {
  opacity: 0.4;
}

.verified {
  color: var(--dark);
}

.reviews-footer {
  text-align: center;
}

.reviews-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   MOBILE APP SECTION
   ============================================================ */
.app-sec {
  padding: 72px 24px;
  background: var(--white);
  overflow: hidden;
}

.app-sec .section-inner {
  text-align: center;
}

.app-sec h2 {
  margin-bottom: 44px;
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(210px, 56vw);
  background: #18181B;
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 28px 80px rgba(0,0,0,0.32),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}

.phone-dynamic-island {
  width: 78px;
  height: 26px;
  background: #18181B;
  border-radius: 14px;
  margin: 0 auto 6px;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #0D1F12;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.phone-bg-img {
  position: absolute;
  inset: 0;
}

.phone-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 22, 10, 0.55) 0%,
    rgba(8, 22, 10, 0.35) 40%,
    rgba(8, 22, 10, 0.55) 100%
  );
}

.phone-content {
  position: relative;
  padding: 24px 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.phone-time-block {
  text-align: center;
  padding-top: 8px;
}

.phone-date-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}

.phone-time-label {
  color: var(--white);
  font-size: 2.9rem;
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
}

.phone-notif {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,0.09);
}

.notif-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--forest-mid);
  color: var(--white);
  border-radius: 8px;
  font-family: 'Libre Bodoni', serif;
  font-size: 13px;
  font-style: italic;
  flex-shrink: 0;
}

.notif-text {
  flex: 1;
  min-width: 0;
}

.notif-title-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}

.notif-app {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
}

.notif-title {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--white);
}

.notif-msg {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
  margin-bottom: 4px;
}

.notif-time {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   PRODUCT NETWORK SECTION
   ============================================================ */
.product-network {
  background: var(--white);
}

.product-network .section-inner{
  text-align: left;
  padding: 0;
}

.product-network .product-copy {
  margin-bottom: 24px;
}

/* ============================================================
   SOUNDS SECTION
   ============================================================ */
.sounds {
  padding: 72px 24px 80px;
  background: var(--white);
}

.sounds-portal .section-inner{
 text-align: left;
}

.sounds-portal .sounds-content {
  padding:0;
}

.sounds-portal{
  padding:0 0 24px;
}

.sounds-content {
  text-align: center;
}

.sounds-content h2 {
  margin-bottom: 20px;
}

.sounds-body {
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.72;
  max-width: 340px;
  margin: 0 auto;
}

.sounds-integrations {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--dark);
  line-height: 1.6;
}

.sounds-brand {
  font-weight: 600;
}

.sounds-image-wrap {
  margin-top: 32px;
}

.sounds-device-img {
  width: 100%;
  border-radius: 26px;
  display: block;
  box-shadow: var(--shadow-card);
}

/* ============================================================
   CONSERVATION SECTION
   ============================================================ */
.conservation {
  padding: 0px 24px 80px;
  background: var(--white);
  text-align: center;
}

.conservation-content h2 {
  margin-bottom: 14px;
}

.conservation-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 390px;
  margin: 10px auto 0;
}

.conservation-image-wrap {
  margin-top: 32px;
}

.conservation-img {
  width: 100%;
  border-radius: 26px;
  display: block;
  box-shadow: var(--shadow-card);
}

.conservation-cta-wrap {
  text-align: center;
  margin-top: 36px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  padding: 0 24px 80px;
  background: var(--white);
}

.faq-portal{
  padding: 50px 0px 80px;
}

.faq .section-inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 18px;
  border: 1.5px solid #111111;
  padding: 14px 18px;
  background: #FFFFFF;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-item[open] summary {
  margin-bottom: 8px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  padding: 40px 24px 32px;
}

.footer-inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-wordmark {
  font-family: 'Libre Bodoni', serif;
  font-size: 1.3rem;
}

.footer-links-grid {
  display: flex;
  gap: 40px;
  width: 100%;
}

.footer-links-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.92rem;
}

.footer-nav-underline {
  height: 1px;
  background: var(--dark);
}

.footer-copy {
  color: var(--dark);
  font-size: 0.75rem;
  margin-top: 8px;
}

/* ============================================================
   RESPONSIVE — TABLET & UP
   ============================================================ */
@media (min-width: 640px) {
  .hero-body {
    padding: 100px 40px 24px;
  }

  .hero-frame {
    width: min(300px, 60vw);
  }

  .frame-img-wrap {
    width: min(420px, 80vw);
  }

  .location-card {
    width: 180px;
    height: 180px;
  }

  .moment-img {
    height: 340px;
  }

  .sounds {
    min-height: 500px;
  }

  .conservation {
    min-height: 560px;
  }
}

@media (min-width: 900px) {
  .nav-inner {
    padding: 14px 48px;
  }

  .hero-frame {
    width: min(360px, 50vw);
  }

  .frame-feature {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .frame-img-wrap {
    width: 420px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .frame-copy {
    text-align: left;
    flex: 1;
  }

  .spec-tags {
    justify-content: flex-start;
  }

  .frame-copy h2 {
    margin: 0;
  }

  .teaching .section-inner,
  .wildlife .section-inner,
  .reviews .section-inner,
  .app-sec .section-inner {
    max-width: 680px;
  }
}
