/*
 * Oceaneros 1.0 Design System and Phase 3 Coastal Editorial polish.
 * Additive visual layer. Protected navigation and commerce behavior are unchanged.
 */

:root {
  --oe-logo-blue: #0526e8;
  --oe-logo-coral: #f27777;
}

.ce-homepage {
  background:
    radial-gradient(circle at 8% 20%, rgba(191, 217, 210, 0.18), transparent 24rem),
    var(--oe-surface-paper);
}

.ce-hero__overlay {
  background:
    linear-gradient(90deg, rgba(247, 244, 236, 0.99) 0%, rgba(247, 244, 236, 0.91) 31%, rgba(247, 244, 236, 0.42) 54%, rgba(247, 244, 236, 0.02) 76%),
    linear-gradient(0deg, rgba(7, 29, 49, 0.14), transparent 55%);
}

.ce-hero__h1 { text-wrap: balance; }

.ce-hero__actions .ce-btn--primary {
  box-shadow: 0 12px 30px rgba(5, 38, 232, 0.2);
}

.ce-collections .ce-grid-4 { align-items: stretch; }

.ce-collection-card {
  display: flex;
  flex-direction: column;
}

.ce-collection-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 0.45rem 1rem;
  padding-top: 1.15rem;
}

.ce-collection-card__story {
  grid-column: 1 / -1;
  max-width: 30ch;
  color: var(--ce-muted);
  font-family: var(--ce-font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-style: italic;
  line-height: 1.25;
}

.ce-product-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ce-product-card__image {
  overflow: hidden;
  background: linear-gradient(145deg, var(--oe-surface-foam), var(--oe-surface-glass));
  border-radius: 1.4rem 1.4rem 0.25rem 1.4rem;
}

.ce-product-card__image img {
  transition: transform 700ms var(--ce-ease-out), filter 350ms ease;
}

.ce-product-card:hover .ce-product-card__image img {
  transform: scale(1.018);
  filter: saturate(1.03);
}

.ce-product-card__badge {
  background: var(--oe-logo-coral);
  color: var(--oe-surface-abyss);
}

.ce-product-card__price {
  color: var(--ce-muted);
  font-size: 0.82rem;
}

.ce-ocean-pause {
  position: relative;
  display: grid;
  min-height: clamp(32rem, 72vw, 52rem);
  overflow: hidden;
  isolation: isolate;
}

.ce-ocean-pause > img,
.ce-ocean-pause__veil,
.ce-ocean-pause__content { grid-area: 1 / 1; }

.ce-ocean-pause > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.02);
}

.ce-ocean-pause__veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 29, 49, 0.84), rgba(7, 29, 49, 0.18) 68%),
    linear-gradient(0deg, rgba(7, 29, 49, 0.5), transparent 60%);
}

.ce-ocean-pause__content {
  z-index: 2;
  align-self: end;
  width: 100%;
  padding-block: clamp(4rem, 9vw, 8rem);
  color: var(--oe-cream);
}

.ce-ocean-pause__eyebrow {
  margin-bottom: 1.2rem;
  color: var(--oe-logo-coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ce-ocean-pause h2 {
  max-width: 12ch;
  color: inherit;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-wrap: balance;
}

.ce-ocean-pause__content > p:last-child {
  max-width: 37ch;
  margin-top: 1.75rem;
  color: rgba(247, 244, 236, 0.84);
  font-size: var(--ce-text-base);
}

.ce-brand-story { background: var(--oe-surface-foam); }
.ce-brand-story__title { margin-top: var(--ce-space-4); }
.ce-brand-story__intro {
  max-width: 48ch;
  margin-top: var(--ce-space-5);
  color: var(--ce-muted);
  line-height: var(--ce-leading-normal);
}
.ce-brand-story__points { margin-top: var(--ce-space-6); }
.ce-brand-story__link { display: inline-flex; margin-top: var(--ce-space-8); }

.ce-impact-teaser {
  background:
    radial-gradient(circle at 50% 0, rgba(5, 38, 232, 0.2), transparent 34rem),
    var(--oe-surface-abyss);
}

.ce-newsletter__inner {
  overflow: hidden;
  background: rgba(251, 250, 246, 0.78);
  border: 1px solid var(--oe-border-soft);
  box-shadow: var(--oe-shadow-float);
}

.ce-policy-links { border-top: 3px solid var(--oe-logo-coral); }

.ce-footer__closing {
  max-width: 11ch;
  margin: 1rem 0;
  color: var(--oe-cream);
  font-family: var(--ce-font-display);
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

@media (max-width: 767px) {
  .ce-ocean-pause { min-height: 38rem; }
  .ce-ocean-pause > img { object-position: 68% center; }
  .ce-ocean-pause__veil {
    background: linear-gradient(0deg, rgba(7, 29, 49, 0.92), rgba(7, 29, 49, 0.18) 76%);
  }
  .ce-ocean-pause h2 { font-size: clamp(3.3rem, 16vw, 5.3rem); }
  .ce-collection-card__body { grid-template-columns: 1fr; }
  .ce-collection-card__count { grid-row: 3; }
}

@media (prefers-reduced-motion: reduce) {
  .ce-product-card__image img,
  .ce-product-card:hover .ce-product-card__image img,
  .ce-ocean-pause > img { transform: none; transition: none; }
}
