:root {
  --deep-blue: #1a3a4a;
  --ocean: #2c5f6e;
  --seafoam: #5fb8a3;
  --seafoam-light: #8fd4c4;
  --sand: #f5efe6;
  --sand-dark: #e8dfd3;
  --sunset: #e87c3e;
  --sunset-light: #f09b65;
  --coral: #d4695a;
  --white: #ffffff;
  --text-dark: #1a2a30;
  --text-mid: #4a5e65;
  --text-light: #8a9ea5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sand);
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(26, 58, 74, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  font-size: 1.4rem;
  color: var(--seafoam);
}

.logo-text {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--seafoam-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0f2b38 0%, #1a4a5a 30%, #2c6e6e 55%, #3a8070 80%, #5fb8a3 100%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(232, 124, 62, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(95, 184, 163, 0.2) 0%, transparent 60%);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}

.hero-location {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--seafoam-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  font-weight: 300;
}

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 6rem 2rem;
  background: var(--sand);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 1.5rem;
}

.manifesto-text {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.4;
  color: var(--deep-blue);
  margin-bottom: 3.5rem;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--sand-dark);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-number {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--ocean);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 400;
}

/* ─── COLLECTIONS ─── */
.collections {
  padding: 5rem 2rem 6rem;
  background: var(--white);
}

.collections-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset);
  background: rgba(232, 124, 62, 0.08);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--deep-blue);
  line-height: 1.15;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.collection-card {
  background: var(--sand);
  border-radius: 12px;
  padding: 2.5rem;
  transition: transform 0.2s ease;
}

.collection-card:hover {
  transform: translateY(-2px);
}

.collection-card--large {
  grid-row: span 2;
  background: var(--deep-blue);
  color: var(--white);
}

.collection-card--large h3 {
  color: var(--white);
}

.collection-card--large p {
  color: rgba(255,255,255,0.7);
}

.collection-card--accent {
  background: var(--seafoam);
  color: var(--deep-blue);
}

.collection-card--accent p {
  color: rgba(26, 58, 74, 0.8);
}

.collection-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.collection-card h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--deep-blue);
  margin-bottom: 0.6rem;
}

.collection-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.collection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  list-style: none;
}

.collection-tags li {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 20px;
  background: rgba(95, 184, 163, 0.2);
  color: var(--seafoam-light);
}

/* ─── PRODUCTS ─── */
.products {
  padding: 5rem 2rem;
  background: var(--deep-blue);
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header--light .section-tag--light {
  background: rgba(95, 184, 163, 0.15);
  color: var(--seafoam);
}

.section-title--light {
  color: var(--white) !important;
}

.products-marquee {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.product-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.8rem;
  transition: background 0.2s ease;
}

.product-item:hover {
  background: rgba(255,255,255,0.1);
}

.product-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sunset);
  background: rgba(232, 124, 62, 0.12);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.product-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ─── STORY ─── */
.story {
  padding: 6rem 2rem;
  background: var(--sand);
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-content h2 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--deep-blue);
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}

.story-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.story-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 3.5rem;
}

.story-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--sand-dark);
}

.detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sunset);
}

.detail-value {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--deep-blue);
}

/* ─── CLOSING ─── */
.closing {
  padding: 6rem 2rem;
  background: linear-gradient(160deg, var(--ocean) 0%, var(--deep-blue) 100%);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.closing-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

.closing-tagline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--seafoam);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── FOOTER ─── */
.footer {
  padding: 2.5rem 2rem;
  background: var(--text-dark);
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.footer-brand .logo-icon {
  font-size: 1rem;
  color: var(--seafoam);
}

.footer-location {
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer-email {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-content {
    padding: 7rem 1.5rem 5rem;
  }

  .manifesto-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .collection-card--large {
    grid-row: span 1;
  }

  .products-marquee {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-details {
    padding-top: 0;
  }

  .nav-tagline {
    display: none;
  }

  .hero-wave svg {
    height: 60px;
  }

  .manifesto,
  .collections,
  .products,
  .story,
  .closing {
    padding: 3.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .collection-card {
    padding: 1.8rem;
  }
}

/* ─── NAV LINKS (inner pages) ─── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.75rem 2rem 1rem;
  gap: 0.1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s;
}

.nav-mobile-menu a:hover {
  color: var(--seafoam);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--sunset);
  color: var(--white);
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

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

.btn-primary.btn-full {
  width: 100%;
  text-align: center;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

/* ─── HERO CTAs ─── */
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ─── COLLECTION CARD LINKS (homepage) ─── */
.collection-card--link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.collection-card--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.collection-cta {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sunset);
}

.collection-card--large .collection-cta {
  color: var(--seafoam);
}

.collection-card--accent .collection-cta {
  color: var(--deep-blue);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(160deg, #0f2b38 0%, #1a4a5a 40%, #2c6e6e 100%);
  text-align: center;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--seafoam);
  background: rgba(95, 184, 163, 0.12);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.page-hero-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--seafoam);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb-sep {
  color: var(--text-light);
}

/* ─── COLLECTIONS INDEX PAGE ─── */
.coll-grid-section {
  padding: 4rem 2rem 5rem;
  background: var(--sand);
}

.coll-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.coll-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2.5rem;
  text-decoration: none;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--sand-dark);
}

.coll-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26,58,74,0.1);
}

.coll-card--featured {
  background: var(--deep-blue);
  border-color: transparent;
  grid-column: span 2;
  padding: 3rem;
}

.coll-card-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.coll-card-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--deep-blue);
  margin-bottom: 0.3rem;
}

.coll-card--featured .coll-card-name {
  color: var(--white);
  font-size: 1.6rem;
}

.coll-card-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 0.6rem;
}

.coll-card--featured .coll-card-tagline {
  color: var(--seafoam);
}

.coll-card-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.coll-card--featured .coll-card-desc {
  color: rgba(255,255,255,0.65);
}

.coll-card-cta {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sunset);
}

.coll-card--featured .coll-card-cta {
  color: var(--seafoam-light);
}

/* ─── COLLECTION SHOW PAGE ─── */
.page-hero--collection-show {
  padding: 7rem 2rem 3.5rem;
  text-align: left;
}

.page-hero--collection-show .page-hero-inner {
  text-align: left;
}

.collection-show-icon {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}

.product-grid-section {
  padding: 3rem 2rem 5rem;
  background: var(--sand);
}

.product-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.collection-desc-full {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 2px solid var(--sand-dark);
}

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

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--sand-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(26,58,74,0.1);
}

.product-card-img {
  position: relative;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--deep-blue) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.product-card-img-icon {
  font-size: 3rem;
  opacity: 0.6;
}

.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--sunset);
  color: var(--white);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
}

.product-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--deep-blue);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card-price {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--deep-blue);
}

.product-card-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sunset);
}

/* ─── OTHER COLLECTIONS STRIP ─── */
.other-collections {
  padding: 2.5rem 2rem 3rem;
  background: var(--white);
  border-top: 1px solid var(--sand-dark);
}

.other-collections-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.other-collections-heading {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: 1.2rem;
}

.other-collections-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.other-coll-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-dark);
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  padding: 0.55rem 1.1rem;
  border-radius: 30px;
  transition: background 0.18s, border-color 0.18s;
}

.other-coll-pill:hover {
  background: var(--seafoam);
  border-color: var(--seafoam);
  color: var(--deep-blue);
}

/* ─── PRODUCT DETAIL PAGE ─── */
.pdp {
  padding: 6rem 2rem 4rem;
  background: var(--sand);
}

.pdp-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.pdp-image {
  position: relative;
}

.pdp-image-placeholder {
  background: linear-gradient(135deg, #1a4a5a 0%, #0f2b38 100%);
  border-radius: 16px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.pdp-image-icon {
  font-size: 5rem;
  opacity: 0.5;
}

.pdp-image-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.pdp-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--sunset);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
}

.pdp-collection-tag {
  margin-bottom: 0.6rem;
}

.pdp-collection-tag a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seafoam);
  text-decoration: none;
  background: rgba(95, 184, 163, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  transition: background 0.15s;
}

.pdp-collection-tag a:hover {
  background: rgba(95, 184, 163, 0.2);
}

.pdp-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--deep-blue);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.pdp-price {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--ocean);
  margin-bottom: 1.5rem;
}

.pdp-description {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pdp-actions {
  margin-bottom: 2rem;
}

.pdp-ship-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

.pdp-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand-dark);
}

.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: var(--text-mid);
}

.pdp-trust-icon {
  font-size: 1rem;
}

/* ─── PDP RELATED ─── */
.pdp-related {
  border-top: 2px solid var(--sand-dark);
  padding-top: 2.5rem;
}

.pdp-related-heading {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--deep-blue);
  margin-bottom: 1.5rem;
}

.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pdp-related-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--sand-dark);
  transition: transform 0.18s;
}

.pdp-related-card:hover {
  transform: translateY(-2px);
}

.pdp-related-img {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--deep-blue) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.75;
}

.pdp-related-info {
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pdp-related-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--deep-blue);
}

.pdp-related-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ocean);
}

/* ─── ABOUT PAGE ─── */
.about-hero {
  position: relative;
  padding: 8rem 2rem 5rem;
  background: linear-gradient(160deg, #0f2b38 0%, #1a4a5a 35%, #2c6e6e 100%);
  overflow: hidden;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
}

.about-hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.65;
}

.about-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.about-hero-wave svg {
  display: block;
  width: 100%;
}

.about-manifesto {
  padding: 5rem 2rem 4rem;
  background: var(--sand);
}

.about-manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-pull-quote {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--deep-blue);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
  border-left: 4px solid var(--seafoam);
}

.about-manifesto-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-manifesto-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.about-fact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--sand-dark);
}

.about-fact:last-child { border-bottom: none; }

.about-fact-num {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--ocean);
  line-height: 1;
}

.about-fact-label {
  font-size: 0.85rem;
  color: var(--text-mid);
}

.about-values {
  padding: 5rem 2rem;
  background: var(--white);
}

.about-values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-values-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--deep-blue);
  margin-bottom: 2.5rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-value-card {
  background: var(--sand);
  border-radius: 12px;
  padding: 2rem;
}

.about-value-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.about-value-card h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
}

.about-value-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.about-location {
  padding: 5rem 2rem;
  background: var(--deep-blue);
}

.about-location-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-location-text .page-tag {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--seafoam);
  background: rgba(95, 184, 163, 0.12);
}

.about-location-text h2 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.about-location-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.about-location-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-loc-stat {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.about-loc-stat strong {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.about-loc-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.about-cta {
  padding: 5rem 2rem;
  background: var(--sand);
  text-align: center;
}

.about-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.about-cta h2 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 0.8rem;
}

.about-cta p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 1.8rem;
}

/* ─── ERROR PAGE ─── */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  background: var(--sand);
  text-align: center;
}

.error-inner {
  max-width: 480px;
}

.error-icon {
  font-size: 4rem;
  margin-bottom: 1.2rem;
}

.error-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--deep-blue);
  margin-bottom: 0.8rem;
}

.error-msg {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

/* ─── INNER PAGE RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .nav-menu-btn {
    display: block;
  }

  .nav-tagline {
    display: none;
  }

  .coll-grid-inner {
    grid-template-columns: 1fr;
  }

  .coll-card--featured {
    grid-column: span 1;
  }

  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pdp-related-grid {
    grid-template-columns: 1fr;
  }

  .about-manifesto-inner,
  .about-location-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-location-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 6rem 1.5rem 3rem;
  }

  .pdp {
    padding: 5rem 1.5rem 3rem;
  }
}

/* ─── PRODUCT IMAGES ─── */

/* Product detail page — main image */
.pdp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Product detail page — related product thumbnails */
.pdp-related-img-actual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Collection grid — product card images */
.product-card-img {
  position: relative;
  overflow: hidden;
}

.product-card-img-actual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img-actual {
  transform: scale(1.04);
}

/* ─── COLLECTION IMAGES ─── */

/* Collection index cards — hero image */
.coll-card-hero {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.coll-card-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.coll-card--featured .coll-card-hero {
  height: 220px;
}

.coll-card:hover .coll-card-hero-img {
  transform: scale(1.04);
}

/* Collection show page — hero background image */
.page-hero--has-img {
  position: relative;
  overflow: hidden;
}

.page-hero-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: brightness(0.45) saturate(0.8);
}

.page-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,58,74,0.3) 0%, rgba(26,58,74,0.7) 100%);
}

.page-hero--has-img .page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero--has-img .page-hero-title,
.page-hero--has-img .page-hero-sub {
  color: var(--white);
}

.page-hero--has-img .collection-show-icon {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* ============================================================
   Inventory badges — inline availability indicators
   ============================================================ */

.pdp-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.inv-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.inv-badge--instock  { background: #d4f0e0; color: #1a6640; }
.inv-badge--pod      { background: #e8eef8; color: #2c4a7e; }
.inv-badge--low      { background: #fff0d6; color: #7a4e00; }
.inv-badge--out      { background: #f5e8e8; color: #7a2020; }
.inv-badge--ship     { background: var(--sand); color: var(--deep-ocean); }

/* Variant selector UI */
.variant-selectors {
  margin-bottom: 20px;
}

.variant-group {
  margin-bottom: 14px;
}

.variant-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-option-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border: 1.5px solid var(--sand);
  border-radius: 6px;
  background: var(--white);
  color: var(--slate);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.variant-option-btn:hover {
  border-color: var(--gulf);
  color: var(--deep-ocean);
}

.variant-option-btn.active {
  border-color: var(--gulf);
  background: var(--gulf);
  color: var(--white);
}

.variant-stock-note {
  margin-top: 8px;
  min-height: 28px;
}

/* Inventory availability badge on collection cards (bottom-left corner) */
.product-card-img {
  position: relative;
}

.inv-card-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 12px;
  pointer-events: none;
}

.inv-card-badge--instock { background: rgba(212,240,224,0.95); color: #1a6640; }
.inv-card-badge--pod     { background: rgba(232,238,248,0.95); color: #2c4a7e; }