/* ═══════════════════════════════════════════════════════════
   ONE PRODUCT – LUXURY LANDING PAGE
   Inspired by Restoration Hardware editorial style
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

.op-landing {
  --lp-primary: #2D5016;
  --lp-secondary: #C4A962;
  --lp-accent: #E8DCC8;
  --lp-bg: #FAFAF7;
  --font-editorial: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --space-section: clamp(6rem, 12vw, 12rem);
  --max-content: 1200px;
  --max-narrow: 720px;
}

.op-landing, .op-landing * { box-sizing: border-box; }

/* Hide header on landing pages for immersive experience */
.single-op_landing .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  transition: background 0.5s, backdrop-filter 0.5s, transform 0.5s;
}

.single-op_landing .site-header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.single-op_landing .site-header.header-hidden {
  transform: translateY(-100%);
}

.single-op_landing .site-title {
  color: #fff;
  transition: color 0.5s;
}

.single-op_landing .header-scrolled .site-title {
  color: var(--color-text);
}

.single-op_landing .cart-link {
  color: #fff;
  transition: color 0.5s;
}

.single-op_landing .header-scrolled .cart-link {
  color: var(--color-text);
}

/* ═══════════════════════════════════════════════════════════
   HERO – CINEMATIC FULLSCREEN
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: #111;
}

.hero__image-wrap {
  position: absolute;
  inset: -15% 0 0 0;
  z-index: 1;
}

.hero__image {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.8);
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 clamp(2rem, 6vw, 8rem);
  padding-bottom: clamp(4rem, 8vh, 8rem);
  max-width: 900px;
  text-align: left;
}

.hero__headline {
  font-family: var(--font-editorial);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero__subheadline {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 3rem;
  right: clamp(2rem, 6vw, 8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__scroll-indicator svg {
  animation: gentle-bounce 3s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes gentle-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS – UNDERSTATED LUXURY
   ═══════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.btn--primary {
  padding: 1.1rem 2.8rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--primary:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.btn--dark {
  padding: 1.1rem 2.8rem;
  background: var(--lp-primary);
  color: #fff;
  border: 1px solid var(--lp-primary);
}

.btn--dark:hover {
  background: #111;
  border-color: #111;
}

.btn--large {
  padding: 1.3rem 3.5rem;
  font-size: 0.85rem;
}

.btn svg { transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════
   PRODUCT SHOWCASE – EDITORIAL GRID
   ═══════════════════════════════════════════════════════════ */

.showcase {
  padding: var(--space-section) clamp(2rem, 6vw, 8rem);
  max-width: 1600px;
  margin: 0 auto;
}

.showcase__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.showcase__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lp-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.showcase__title {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.showcase__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

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

/* Product Card – Luxury */
.product-card {
  overflow: hidden;
  background: var(--color-surface);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f3f0;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.4rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  backdrop-filter: blur(10px);
}

.product-card__info {
  padding: 1.5rem 0.5rem;
}

.product-card__name {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
}

.product-card__price-old {
  text-decoration: line-through;
  color: #bbb;
  font-size: 0.85rem;
  font-weight: 300;
}

.product-card__price-current {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ═══════════════════════════════════════════════════════════
   EDITORIAL DIVIDER
   ═══════════════════════════════════════════════════════════ */

.op-section + .op-section {
  border-top: none;
}

/* ═══════════════════════════════════════════════════════════
   FEATURES – MINIMAL ICONS
   ═══════════════════════════════════════════════════════════ */

.features {
  padding: var(--space-section) clamp(2rem, 6vw, 8rem);
  max-width: var(--max-content);
  margin: 0 auto;
}

.features__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.features__title {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

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

.feature-card {
  text-align: center;
  padding: 1.5rem 0;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--lp-primary);
  opacity: 0.7;
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.25;
}

.feature-card__title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.feature-card__desc {
  font-family: var(--font-sans);
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS – EDITORIAL QUOTES
   ═══════════════════════════════════════════════════════════ */

.testimonials {
  padding: var(--space-section) clamp(2rem, 6vw, 8rem);
  background: #f5f3ef;
}

.testimonials__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.testimonials__title {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.testimonials__carousel {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: #fff;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.5rem;
}

.testimonial-card__stars svg {
  width: 14px;
  height: 14px;
  fill: #c9a96e;
}

.testimonial-card__text {
  font-family: var(--font-editorial);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1.75rem;
  font-style: italic;
  font-weight: 300;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-card__author strong {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-card__author span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   FAQ – CLEAN ACCORDION
   ═══════════════════════════════════════════════════════════ */

.faq {
  padding: var(--space-section) clamp(2rem, 6vw, 8rem);
  max-width: var(--max-narrow);
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.faq__title {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.faq__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.75rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  color: var(--color-text);
  gap: 2rem;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}

.faq__question:hover { color: var(--lp-primary); }

.faq__icon {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.4;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__answer.is-open {
  max-height: 500px;
}

.faq__answer div {
  font-family: var(--font-sans);
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 0.9rem;
  font-weight: 300;
  padding-bottom: 1.75rem;
}

/* ═══════════════════════════════════════════════════════════
   TRUST BADGES – SUBTLE LINE
   ═══════════════════════════════════════════════════════════ */

.trust-badges {
  padding: 5rem clamp(2rem, 6vw, 8rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-badges__grid {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 5rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.trust-badge svg {
  color: var(--color-text);
  opacity: 0.35;
  width: 24px;
  height: 24px;
  stroke-width: 1.25;
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER – EDITORIAL
   ═══════════════════════════════════════════════════════════ */

.cta-banner {
  padding: var(--space-section) clamp(2rem, 6vw, 8rem);
  background: var(--lp-primary);
  text-align: center;
}

.cta-banner__inner {
  max-width: 650px;
  margin: 0 auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.cta-banner__inner::before { display: none; }

.cta-banner__title {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cta-banner__text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.cta-banner .btn--primary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cta-banner .btn--primary:hover {
  background: #fff;
  color: var(--lp-primary);
  border-color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
  }
}

@media (max-width: 768px) {
  .hero { align-items: center; }
  .hero__content { text-align: center; padding: 2rem; max-width: 100%; }
  .hero__subheadline { margin-inline: auto; }
  .hero__scroll-indicator { right: 50%; transform: translateX(50%); }

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

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

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

  .trust-badges__grid {
    gap: 2rem 3rem;
  }
}

@media (max-width: 480px) {
  .showcase__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
