:root {
  --deep-navy: #0a1628;
  --ocean-blue: #1a3a5c;
  --storm-teal: #2d6a7e;
  --salt-white: #f0ece4;
  --sand: #e8dfd0;
  --rope-gold: #c9a84c;
  --kelp-green: #4a7c59;
  --sunset-orange: #d4703f;
  --foam: #ffffff;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--salt-white);
  color: var(--deep-navy);
  font-family: var(--font-display);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--deep-navy) 0%, var(--ocean-blue) 40%, var(--storm-teal) 100%);
  overflow: hidden;
  text-align: center;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--rope-gold);
  top: -200px;
  right: -150px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--storm-teal);
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--sunset-orange);
  top: 30%;
  left: 10%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 120px;
}

.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--rope-gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 8px 20px;
  border-radius: 4px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--foam);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero h1 .accent {
  color: var(--rope-gold);
}

.lede {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--sand);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 400;
  opacity: 0.9;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
}

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

/* ===== STORY ===== */
.story {
  background: var(--sand);
  padding: 100px 0 80px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.story-text p {
  font-size: 1.05rem;
  color: var(--ocean-blue);
  margin-bottom: 16px;
  max-width: 480px;
}

.story-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: var(--foam);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
  transition: transform 0.2s ease;
}

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

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

.stat-number {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-right: 12px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--ocean-blue);
  line-height: 1.3;
}

/* ===== FEATURES ===== */
.features {
  background: var(--salt-white);
  padding: 100px 0;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.feature-card {
  background: var(--foam);
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid rgba(10, 22, 40, 0.06);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--storm-teal);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--storm-teal);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--deep-navy);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--ocean-blue);
  line-height: 1.65;
}

/* ===== OREGON ===== */
.oregon {
  background: var(--deep-navy);
  padding: 100px 0;
}

.oregon-banner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.oregon-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--foam);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.oregon-text p {
  font-size: 1.05rem;
  color: var(--sand);
  opacity: 0.85;
  max-width: 480px;
  line-height: 1.65;
}

.oregon-seasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.season {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s ease;
}

.season:hover {
  background: rgba(255, 255, 255, 0.1);
}

.season-name {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rope-gold);
  margin-bottom: 8px;
}

.season-catch {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foam);
}

/* ===== CLOSING ===== */
.closing {
  background: var(--sand);
  padding: 120px 0;
  text-align: center;
}

.closing h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  color: var(--deep-navy);
}

.closing h2 .accent {
  color: var(--sunset-orange);
}

.closing-text {
  font-size: 1.1rem;
  color: var(--ocean-blue);
  max-width: 520px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--deep-navy);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--foam);
}

.footer-location {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--sand);
  opacity: 0.6;
  letter-spacing: 1px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 60px 20px 100px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .oregon-banner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .oregon-seasons {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .stat-card {
    padding: 20px 24px;
  }

  .feature-card {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.4rem;
    letter-spacing: -1px;
  }

  .badge {
    font-size: 0.65rem;
    padding: 6px 14px;
  }

  .oregon-seasons {
    grid-template-columns: 1fr;
  }

  .closing {
    padding: 80px 0;
  }
}

/* ===== SHARED BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--rope-gold);
  color: var(--deep-navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.02em;
}

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

/* ===== NAV ===== */
.shop-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--deep-navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 0;
}

.shop-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-brand {
  font-weight: 800;
  font-size: 1rem;
  color: var(--foam);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-brand:hover {
  color: var(--rope-gold);
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: var(--rope-gold);
}

/* ===== SHOP HEADER ===== */
.shop-header {
  position: relative;
  background: linear-gradient(160deg, var(--deep-navy) 0%, var(--ocean-blue) 40%, var(--storm-teal) 100%);
  text-align: center;
  overflow: hidden;
  padding-bottom: 0;
}

.shop-header-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shop-header-bg .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.shop-header-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px 80px;
}

.shop-header-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--foam);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

/* ===== FILTER BAR ===== */
.shop-filter-bar {
  background: var(--salt-white);
  padding: 28px 0 0;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(10,22,40,0.07);
}

.pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--foam);
  border: 1px solid rgba(10,22,40,0.12);
  color: var(--ocean-blue);
  text-decoration: none;
  transition: all 0.15s ease;
}

.pill:hover {
  background: var(--ocean-blue);
  color: var(--foam);
  border-color: var(--ocean-blue);
}

.pill.active {
  background: var(--deep-navy);
  color: var(--foam);
  border-color: var(--deep-navy);
}

.pill-count {
  display: inline-block;
  margin-left: 6px;
  opacity: 0.6;
}

/* ===== PRODUCT GRID ===== */
.shop-main {
  background: var(--salt-white);
  padding: 48px 0 80px;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--foam);
  border-radius: 16px;
  border: 1px solid rgba(10,22,40,0.06);
  overflow: hidden;
  text-decoration: none;
  color: var(--deep-navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,22,40,0.1);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--storm-teal);
}

.product-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10,22,40,0.75);
  color: var(--sand);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  gap: 10px;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--deep-navy);
}

.product-desc {
  font-size: 0.88rem;
  color: var(--ocean-blue);
  line-height: 1.5;
  flex: 1;
}

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

.product-price {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-navy);
}

.product-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--storm-teal);
}

/* ===== SHOP EMPTY ===== */
.shop-empty {
  text-align: center;
  padding: 80px 0;
}

.shop-empty p {
  font-size: 1.1rem;
  color: var(--ocean-blue);
  margin-bottom: 28px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--sand);
  padding: 14px 0;
  border-bottom: 1px solid rgba(10,22,40,0.06);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ocean-blue);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--ocean-blue);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.15s;
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--deep-navy);
}

.bc-sep {
  opacity: 0.4;
}

.bc-current {
  font-weight: 600;
  color: var(--deep-navy);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-main {
  background: var(--salt-white);
  padding: 60px 0 80px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-detail-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sand);
}

.product-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.product-detail-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10,22,40,0.75);
  color: var(--sand);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}

.product-detail-name {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.product-detail-price {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rope-gold);
  margin-bottom: 24px;
}

.product-detail-desc {
  font-size: 1rem;
  color: var(--ocean-blue);
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-detail-origin {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--storm-teal);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

/* ===== NOTIFY FORM ===== */
.product-cta-box {
  background: var(--sand);
  border-radius: 14px;
  padding: 28px 28px;
  border: 1px solid rgba(10,22,40,0.07);
}

.cta-note {
  font-size: 0.9rem;
  color: var(--ocean-blue);
  margin-bottom: 16px;
  line-height: 1.5;
}

.notify-form {
  display: flex;
  gap: 10px;
}

.notify-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid rgba(10,22,40,0.15);
  font-family: var(--font-display);
  font-size: 0.9rem;
  background: var(--foam);
  color: var(--deep-navy);
  outline: none;
  transition: border-color 0.15s;
}

.notify-input:focus {
  border-color: var(--storm-teal);
}

.notify-confirm {
  font-size: 0.9rem;
  color: var(--kelp-green);
  font-weight: 600;
  padding: 8px 0;
}

/* ===== RELATED ===== */
.related-section {
  background: var(--sand);
  padding: 60px 0 80px;
}

.related-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== LANDING PAGE CTA BUTTON ===== */
.hero-cta {
  margin-top: 40px;
}

.hero-cta .btn-primary {
  font-size: 1.05rem;
  padding: 16px 40px;
}

/* ===== SHOP RESPONSIVE ===== */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

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

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

  .notify-form {
    flex-direction: column;
  }

  .shop-header-content h1 {
    font-size: 2.4rem;
  }
}