/* ========================================
   THE FOUND-RY — ONLINE STORE STYLES
   ======================================== */

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

:root {
  --stone: #2c2620;
  --warm-cream: #f5f0e8;
  --gold: #b8944f;
  --gold-light: #d4b978;
  --moss: #5a6b4a;
  --moss-light: #7a8b6a;
  --river: #4a6670;
  --blush: #c9a89a;
  --charcoal: #3a3530;
  --white: #ffffff;
  --border: rgba(184,148,79,0.2);
  --border-hover: rgba(184,148,79,0.5);
  --shadow-sm: 0 1px 3px rgba(44,38,32,0.06);
  --shadow-md: 0 4px 12px rgba(44,38,32,0.08);
  --shadow-lg: 0 8px 30px rgba(44,38,32,0.12);
  --radius: 2px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--stone);
  background: var(--warm-cream);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ========================================
   NAVIGATION
   ======================================== */

.store-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--warm-cream);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.store-nav.nav-transparent {
  background: transparent;
  border-color: transparent;
}

.store-nav.nav-scrolled {
  background: var(--warm-cream);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--stone);
  letter-spacing: -0.02em;
}

.nav-logo em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.cart-link {
  position: relative;
  color: var(--stone);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.cart-link:hover { color: var(--gold); }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.cart-badge.visible { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--stone);
  transition: all var(--transition);
}

/* ========================================
   SHOP HERO
   ======================================== */

.shop-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(165deg, var(--warm-cream) 0%, #ede6db 50%, #e8dfd3 100%);
}

.shop-hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.shop-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--stone);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.shop-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.5;
}

/* ========================================
   FILTERS
   ======================================== */

.shop-filters {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 99;
  background: var(--warm-cream);
}

.filters-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.filters-inner::-webkit-scrollbar { display: none; }

.filter-btn {
  white-space: nowrap;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--stone);
  color: var(--warm-cream);
  border-color: var(--stone);
}

/* ========================================
   COLLECTION DESCRIPTION
   ======================================== */

.collection-description {
  padding: 2rem 2rem 0;
}

.collection-desc-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.collection-desc-inner p {
  font-size: 1rem;
  color: #5a534a;
  line-height: 1.8;
}

/* ========================================
   PRODUCT GRID
   ======================================== */

.product-grid-section {
  padding: 3rem 2rem 6rem;
}

.product-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-grid.compact {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-image {
  aspect-ratio: 4/5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,38,32,0.08);
  transition: background var(--transition);
}

.product-card:hover .product-image-overlay {
  background: rgba(44,38,32,0.15);
}

.product-image-icon {
  font-size: 3rem;
  opacity: 0.4;
  transition: all var(--transition);
  filter: grayscale(0.3);
}

.product-card:hover .product-image-icon {
  opacity: 0.6;
  transform: scale(1.1);
}

.product-info {
  padding: 1.25rem 1.25rem 1.5rem;
}

.product-collection {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--stone);
  margin: 0.3rem 0 0.4rem;
  line-height: 1.25;
}

.product-short-desc {
  font-size: 0.85rem;
  color: #7a7268;
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-material-tag {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--moss);
  font-weight: 400;
  white-space: nowrap;
}

.product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--stone);
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: #7a7268;
  font-size: 1.1rem;
}

/* ========================================
   PRODUCT DETAIL
   ======================================== */

.product-detail {
  padding-top: 64px;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
}

.product-detail-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.product-detail-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,38,32,0.1);
}

.product-detail-icon {
  font-size: 6rem;
  opacity: 0.3;
  filter: grayscale(0.3);
}

.product-detail-info {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.product-detail-collection {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.product-detail-collection:hover { color: var(--gold); }

.product-detail-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--stone);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.product-detail-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.product-detail-material {
  font-size: 0.85rem;
  color: var(--moss);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.product-detail-desc {
  margin-bottom: 2rem;
}

.product-detail-desc p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a534a;
}

.product-detail-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-add-cart,
.btn-buy-now {
  padding: 0.9rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  border: none;
}

.btn-add-cart {
  background: var(--stone);
  color: var(--warm-cream);
  flex: 1;
}

.btn-add-cart:hover {
  background: var(--charcoal);
}

.btn-buy-now {
  background: var(--gold);
  color: var(--white);
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-buy-now:hover {
  background: var(--gold-light);
  color: var(--stone);
}

.product-detail-specs,
.product-detail-care {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.product-detail-specs h3,
.product-detail-care h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.product-detail-specs p,
.product-detail-care p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #5a534a;
}

/* ========================================
   RELATED PRODUCTS
   ======================================== */

.related-products {
  padding: 4rem 2rem 6rem;
  background: var(--stone);
}

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

.related-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--warm-cream);
  text-align: center;
  margin-bottom: 2.5rem;
}

.related-products .product-card {
  background: rgba(245,240,232,0.05);
  border-color: rgba(184,148,79,0.15);
}

.related-products .product-card:hover {
  border-color: var(--gold);
  background: rgba(245,240,232,0.1);
}

.related-products .product-info {
  background: transparent;
}

.related-products .product-collection { color: var(--blush); }
.related-products .product-name { color: var(--warm-cream); }
.related-products .product-short-desc { color: #b8b0a5; }
.related-products .product-price { color: var(--gold-light); }

/* ========================================
   CART PAGE
   ======================================== */

.cart-page {
  padding: 8rem 2rem 6rem;
  min-height: 80vh;
}

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

.cart-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 2rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.cart-empty-icon { font-size: 3rem; display: block; margin-bottom: 1rem; opacity: 0.5; }

.cart-empty p {
  font-size: 1.1rem;
  color: #7a7268;
  margin-bottom: 2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-image span { font-size: 1.8rem; opacity: 0.5; }

.cart-item-details h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 0.2rem;
}

.cart-item-details .cart-item-material {
  font-size: 0.8rem;
  color: var(--moss);
  margin-bottom: 0.4rem;
}

.cart-item-details .cart-item-price {
  font-weight: 500;
  color: var(--stone);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
}

.cart-qty button {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--stone);
  transition: color var(--transition);
}

.cart-qty button:hover { color: var(--gold); }

.cart-qty span {
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.cart-remove:hover { color: #c44; }

.cart-summary {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--stone);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #5a534a;
}

.cart-summary-row.cart-total {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--stone);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.btn-checkout {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 1rem;
}

.btn-checkout:hover { background: var(--gold-light); color: var(--stone); }

.btn-continue,
.btn-shop {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.9rem;
  border: 1px solid var(--stone);
  color: var(--stone);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-continue:hover,
.btn-shop:hover {
  background: var(--stone);
  color: var(--warm-cream);
}

/* ========================================
   SUCCESS PAGE
   ======================================== */

.success-page {
  padding: 10rem 2rem 6rem;
  text-align: center;
  min-height: 80vh;
}

.success-inner {
  max-width: 500px;
  margin: 0 auto;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.success-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 1rem;
}

.success-inner p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a534a;
  margin-bottom: 1rem;
}

.success-detail {
  font-size: 0.9rem !important;
  color: #7a7268 !important;
  margin-bottom: 2rem !important;
}

.success-inner .btn-shop {
  max-width: 300px;
  margin: 0 auto;
}

/* ========================================
   FOOTER
   ======================================== */

.store-footer {
  background: var(--charcoal);
  color: #8a8279;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.footer-brand .footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-brand .footer-name em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #8a8279;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.85rem;
  color: #8a8279;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--warm-cream); }

.footer-bottom {
  border-top: 1px solid rgba(184,148,79,0.15);
  padding: 1.5rem 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #666;
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--stone);
  color: var(--warm-cream);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  max-width: 320px;
}

.toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.toast .toast-check {
  color: var(--gold);
  margin-right: 0.5rem;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

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

  .product-detail-image {
    min-height: 350px;
  }

  .product-detail-info {
    padding: 2.5rem 2rem;
    max-width: 100%;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--warm-cream);
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    z-index: 999;
    border-top: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-toggle { display: flex; }

  .shop-hero { padding: 7rem 1.5rem 3rem; }

  .shop-filters { padding: 1rem 1rem; }

  .filter-btn { padding: 0.4rem 0.9rem; font-size: 0.75rem; }

  .product-grid-section { padding: 2rem 1rem 4rem; }

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

  .product-info { padding: 0.9rem; }

  .product-name { font-size: 1.1rem; }

  .product-short-desc { display: none; }

  .product-detail-actions {
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .related-inner h2 { font-size: 1.5rem; }

  .toast { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-image { aspect-ratio: 3/4; }

  .nav-inner { padding: 0 1rem; }
}

/* ========================================
   CHECKOUT MODAL
   ======================================== */

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.checkout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44,38,32,0.6);
  backdrop-filter: blur(4px);
}

.checkout-modal-content {
  position: relative;
  background: var(--white);
  max-width: 440px;
  width: 100%;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.checkout-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.checkout-modal-close:hover { color: var(--stone); }

.checkout-modal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 0.25rem;
}

.checkout-modal-subtitle {
  font-size: 0.9rem;
  color: #7a7268;
  margin-bottom: 1.5rem;
}

.checkout-modal-items {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--warm-cream);
  border: 1px solid var(--border);
}

.checkout-modal-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.checkout-modal-item:last-of-type {
  border-bottom: none;
}

.checkout-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--stone);
  grid-column: 1;
}

.checkout-item-meta {
  font-size: 0.75rem;
  color: #7a7268;
  grid-column: 1;
}

.checkout-item-price {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--stone);
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
}

.checkout-modal-total {
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 2px solid var(--stone);
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--stone);
}

.checkout-field {
  margin-bottom: 1rem;
}

.checkout-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.checkout-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--warm-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--stone);
  transition: border-color var(--transition);
  outline: none;
}

.checkout-field input:focus {
  border-color: var(--gold);
}

.checkout-field input::placeholder {
  color: #b8b0a5;
}

.btn-checkout-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 0.5rem;
}

.btn-checkout-submit:hover { background: var(--gold-light); color: var(--stone); }

.btn-checkout-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-checkout-submit .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.checkout-secure {
  text-align: center;
  font-size: 0.75rem;
  color: #b8b0a5;
  margin-top: 0.75rem;
  letter-spacing: 0.03em;
}

/* ========================================
   ENHANCED SUCCESS PAGE
   ======================================== */

.success-loading {
  padding: 4rem 0;
  text-align: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.success-loading p {
  font-size: 1rem;
  color: #7a7268;
}

.order-details {
  margin: 2rem 0;
  text-align: left;
}

.order-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.order-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.order-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}

.order-status {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}

.order-status.confirmed {
  background: rgba(90,107,74,0.1);
  color: var(--moss);
}

.order-items-list {
  margin-bottom: 1rem;
}

.order-item-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(184,148,79,0.1);
}

.order-item-row:last-child {
  border-bottom: none;
}

.order-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--stone);
}

.order-item-detail {
  font-size: 0.75rem;
  color: #7a7268;
  grid-column: 1;
}

.order-item-price {
  font-weight: 500;
  color: var(--stone);
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 2px solid var(--stone);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--stone);
}

.order-email-note {
  font-size: 0.8rem !important;
  color: #b8b0a5 !important;
  margin-top: 1rem !important;
  text-align: center;
}

.success-note {
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.25rem;
  background: rgba(184,148,79,0.08);
  border-left: 3px solid var(--gold);
  font-size: 0.85rem;
  color: #5a534a;
  text-align: left;
  line-height: 1.6;
}

.success-note strong {
  color: var(--stone);
}

/* ========================================
   MOBILE: CHECKOUT MODAL
   ======================================== */

@media (max-width: 768px) {
  .checkout-modal-content {
    padding: 2rem 1.5rem;
    max-height: 90vh;
    overflow-y: auto;
  }

  .checkout-modal-content h2 {
    font-size: 1.5rem;
  }
}

/* ========================================
   FOOTER MINI CONTACT FORM
   ======================================== */

.footer-contact-section {
  background: var(--stone);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--warm-cream);
}

.footer-contact-inner {
  max-width: 580px;
  margin: 0 auto;
}

.footer-contact-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--warm-cream);
  margin-bottom: 0.6rem;
}

.footer-contact-section p {
  font-size: 0.95rem;
  color: #a09888;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.footer-contact-row {
  display: flex;
  gap: 0.75rem;
}

.footer-contact-form input,
.footer-contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,148,79,0.25);
  color: var(--warm-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
  box-sizing: border-box;
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder { color: #6b6358; }

.footer-contact-form input:focus,
.footer-contact-form textarea:focus { border-color: var(--gold); }

.footer-contact-form button {
  align-self: flex-start;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.footer-contact-form button:hover { background: var(--gold-light); color: var(--stone); }
.footer-contact-form button:disabled { opacity: 0.6; cursor: not-allowed; }

.footer-contact-success {
  color: #7dbf7d;
  font-size: 0.95rem;
  margin-top: 0.8rem;
  text-align: left;
}

.footer-contact-error {
  color: #e07070;
  font-size: 0.88rem;
  margin-top: 0.5rem;
  text-align: left;
}

/* ========================================
   FOOTER SOCIAL LINKS
   ======================================== */

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(184,148,79,0.3);
  color: var(--gold);
  text-decoration: none;
  transition: all var(--transition);
}

.footer-social-link:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.footer-etsy-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: auto;
  padding: 0 0.6rem;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-page {
  padding-top: 80px;
}

.about-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(165deg, var(--warm-cream) 0%, #ede6db 100%);
}

.about-hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--stone);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.about-hero-sub {
  font-size: 1.1rem;
  color: #6b6358;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border);
}

.about-photo-caption {
  position: absolute;
  bottom: -1.2rem;
  left: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  background: var(--white);
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a534a;
  margin-bottom: 1.2rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-values {
  padding: 5rem 2rem;
  background: var(--warm-cream);
  text-align: center;
}

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

.about-values-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.about-values h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 3rem;
}

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

.about-value-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
}

.about-value-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 1rem;
}

.about-value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 0.6rem;
}

.about-value-card p {
  font-size: 0.9rem;
  color: #6b6358;
  line-height: 1.6;
}

.about-cta {
  padding: 5rem 2rem;
  background: var(--stone);
  text-align: center;
  color: var(--warm-cream);
}

.about-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--warm-cream);
  margin-bottom: 1rem;
}

.about-cta p {
  font-size: 1rem;
  color: #a09888;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid var(--gold);
}

.btn-cta-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--stone); }

.btn-cta-outline {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--warm-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid rgba(245,240,232,0.4);
}

.btn-cta-outline:hover { border-color: var(--warm-cream); background: rgba(245,240,232,0.1); }

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-page {
  padding-top: 80px;
}

.contact-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(165deg, var(--warm-cream) 0%, #ede6db 100%);
}

.contact-hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.contact-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--stone);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-hero-sub {
  font-size: 1.05rem;
  color: #6b6358;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-main {
  padding: 5rem 2rem;
  background: var(--white);
}

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

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.95rem;
  color: #5a534a;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.95rem;
  color: #6b6358;
}

.contact-social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  color: var(--stone);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all var(--transition);
}

.contact-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-form-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-field label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

.contact-field input,
.contact-field textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--warm-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--stone);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--gold); background: var(--white); }

.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #b8b0a5; }

.btn-contact-submit {
  align-self: flex-start;
  padding: 0.9rem 2.5rem;
  background: var(--stone);
  color: var(--warm-cream);
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-contact-submit:hover { background: var(--gold); }
.btn-contact-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.contact-form-success {
  color: var(--moss);
  font-size: 0.95rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(90,107,74,0.08);
  border-left: 3px solid var(--moss);
}

.contact-form-error {
  color: #b44;
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

/* ========================================
   PERMANENT COLLECTION — WAITLIST PAGE
   ======================================== */

.permanent-collection-page {
  padding-top: 80px;
}

.permanent-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(165deg, #1e1a17 0%, #2c2620 100%);
  color: var(--warm-cream);
}

.permanent-hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.permanent-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--warm-cream);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.permanent-hero-sub {
  font-size: 1.05rem;
  color: #a09888;
  max-width: 540px;
  margin: 0 auto 1.2rem;
  line-height: 1.7;
}

.permanent-hero-sub-secondary {
  font-size: 1rem;
  color: var(--warm-cream);
  font-weight: 500;
  margin-top: 0;
}

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

.permanent-about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.permanent-about h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.permanent-about p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a534a;
  margin-bottom: 1.2rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.permanent-features-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.permanent-feature {
  text-align: center;
  min-width: 120px;
}

.permanent-feature-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.6rem;
}

.permanent-feature strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--stone);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.permanent-feature span {
  font-size: 0.82rem;
  color: #8a8078;
}

.permanent-waitlist-section {
  padding: 5rem 2rem;
  background: var(--warm-cream);
  text-align: center;
}

.permanent-waitlist-inner {
  max-width: 580px;
  margin: 0 auto;
}

.permanent-waitlist-section .waitlist-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.permanent-waitlist-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.permanent-waitlist-section p {
  font-size: 1rem;
  color: #5a534a;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.permanent-waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.permanent-waitlist-form input {
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--stone);
  outline: none;
  transition: border-color var(--transition);
}

.permanent-waitlist-form input:focus { border-color: var(--gold); }

.permanent-waitlist-form input::placeholder { color: #b8b0a5; }

.permanent-waitlist-form button {
  padding: 0.9rem 1.8rem;
  background: var(--stone);
  color: var(--warm-cream);
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.permanent-waitlist-form button:hover { background: var(--gold); }
.permanent-waitlist-form button:disabled { opacity: 0.6; cursor: not-allowed; }

.permanent-waitlist-success {
  color: #2a5c2a;
  background: #e8f5e8;
  border: 1px solid #b8ddb8;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.permanent-waitlist-error {
  color: #b44;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.permanent-waitlist-note {
  font-size: 0.8rem;
  color: #9a9388;
  margin-top: 0.5rem;
}

/* ========================================
   COLLECTION "COMING SOON" STATE
   ======================================== */

.collection-coming-soon {
  text-align: center;
  padding: 4rem 2rem;
}

.collection-coming-soon-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.collection-coming-soon h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.collection-coming-soon p {
  font-size: 1rem;
  color: #6b6358;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.btn-collection-waitlist {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--stone);
  color: var(--warm-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-collection-waitlist:hover { background: var(--gold); }

/* ========================================
   MOBILE: NEW PAGES
   ======================================== */

@media (max-width: 768px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-photo-caption { left: 0.75rem; }
  .about-values-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .btn-contact-submit { width: 100%; text-align: center; align-self: stretch; }
  .footer-contact-row { flex-direction: column; }
  .footer-contact-form button { width: 100%; text-align: center; align-self: stretch; }
}

/* ABOUT SPREAD */
.about-spread {
  padding: 0 2rem 5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-spread-inner {
  border: 1px solid var(--border);
  overflow: hidden;
  max-height: 420px;
}
.about-spread-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

/* COLLECTION TEASER */
.collection-teaser {
  padding: 0 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}
.collection-teaser-inner {
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.collection-teaser-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}
.collection-teaser-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--stone);
  color: var(--warm-cream);
}
.collection-teaser-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--gold);
  width: fit-content;
}
.collection-teaser-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--warm-cream);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.collection-teaser-content p {
  font-size: 0.9rem;
  color: #a09888;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.teaser-signup-form {
  display: flex;
  gap: 0;
  max-width: 360px;
}
.teaser-signup-form input[type=email] {
  flex: 1;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,148,79,0.25);
  border-right: none;
  color: var(--warm-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}
.teaser-signup-form input[type=email]::placeholder {
  color: #6b6358;
}
.teaser-signup-form input[type=email]:focus {
  border-color: var(--gold);
}
.teaser-signup-form button {
  padding: 0.8rem 1.2rem;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.teaser-signup-form button:hover {
  background: var(--gold-light);
  color: var(--stone);
}
.teaser-signup-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.teaser-signup-success {
  color: #7dbf7d;
  font-size: 0.88rem;
  margin-top: 0.8rem;
}
.teaser-signup-error {
  color: #e07070;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .about-spread { padding: 0 1.5rem 3rem; }
  .collection-teaser { padding: 0 1.5rem 3rem; }
  .collection-teaser-inner { grid-template-columns: 1fr; }
  .collection-teaser-img { min-height: 200px; }
  .teaser-signup-form { flex-direction: column; }
  .teaser-signup-form input[type=email] { border-right: 1px solid rgba(184,148,79,0.25); border-bottom: none; }
}

/* ========================================
   DEDICATED COLLECTION TEASER PAGES
   (Eagle Bluff, Classics)
   ======================================== */

.collection-teaser-page {
  padding-top: 60px;
}

/* Hero */
.collection-teaser-hero {
  padding: 5rem 2rem 4rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.collection-teaser-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--gold);
}
.collection-teaser-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--stone);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.collection-teaser-sub {
  font-size: 1.05rem;
  color: #6b6358;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* Full-width image section */
.collection-teaser-image-section {
  padding: 0 2rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
  max-height: 450px;
  overflow: hidden;
}
.collection-teaser-image-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
  line-height: 0;
  max-height: 420px;
}
.collection-teaser-image-wrap img.collection-teaser-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

/* Coming soon + signup */
.collection-teaser-coming-soon {
  background: var(--stone);
  padding: 5rem 2rem;
  text-align: center;
}
.collection-teaser-coming-inner {
  max-width: 560px;
  margin: 0 auto;
}
.coming-soon-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--gold);
}
.collection-teaser-coming-soon h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--warm-cream);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.collection-teaser-coming-soon p {
  font-size: 0.95rem;
  color: #a09888;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.collection-teaser-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto 0.8rem;
}
.collection-teaser-form input[type=email] {
  flex: 1;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,148,79,0.3);
  border-right: none;
  color: var(--warm-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
}
.collection-teaser-form input[type=email]::placeholder { color: #6b6358; }
.collection-teaser-form input[type=email]:focus { border-color: var(--gold); }
.collection-teaser-form button {
  padding: 0.85rem 1.4rem;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.collection-teaser-form button:hover { background: var(--gold-light); color: var(--stone); }
.collection-teaser-form button:disabled { opacity: 0.6; cursor: not-allowed; }
/* With-name variant: stacks name + email vertically, button full-width */
.collection-teaser-form--with-name {
  flex-direction: column;
  gap: 0.6rem;
  max-width: 420px;
}
.collection-teaser-form--with-name input[type=text],
.collection-teaser-form--with-name input[type=email] {
  flex: none;
  width: 100%;
  border: 1px solid rgba(184,148,79,0.3);
  border-right: 1px solid rgba(184,148,79,0.3);
  box-sizing: border-box;
}
.collection-teaser-form--with-name input[type=text]::placeholder { color: #6b6358; }
.collection-teaser-form--with-name input[type=text]:focus { border-color: var(--gold); outline: none; }
.collection-teaser-form--with-name button { width: 100%; }
.collection-teaser-success {
  color: #2a5c2a;
  background: #e8f5e8;
  border: 1px solid #b8ddb8;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}
.collection-teaser-error {
  color: #e07070;
  font-size: 0.88rem;
  margin-top: 0.6rem;
}
.teaser-signup-note {
  font-size: 0.78rem;
  color: #5a5148;
  margin-top: 1rem;
  letter-spacing: 0.03em;
}

/* About / description section */
.collection-teaser-desc-section {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.collection-teaser-desc-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}
.collection-teaser-desc-inner p {
  font-size: 1rem;
  color: #6b6358;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 660px;
}
.collection-teaser-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.teaser-value-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.teaser-value-icon {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.teaser-value-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--stone);
  letter-spacing: 0.03em;
}
.teaser-value-item span {
  font-size: 0.85rem;
  color: #7a7268;
  line-height: 1.5;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .collection-teaser-hero { padding: 3rem 1.5rem 3rem; }
  .collection-teaser-image-section { padding: 0 1.5rem 3rem; max-height: 320px; }
  .collection-teaser-image-wrap { max-height: 300px; }
  .collection-teaser-image-wrap img.collection-teaser-img { max-height: 280px; }
  .collection-teaser-coming-soon { padding: 3.5rem 1.5rem; }
  .collection-teaser-desc-section { padding: 3.5rem 1.5rem; }
  .collection-teaser-values { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-spread-inner { max-height: 300px; }
  .about-spread-img { max-height: 280px; }
}
@media (max-width: 480px) {
  .collection-teaser-form { flex-direction: column; }
  .collection-teaser-form input[type=email] { border-right: 1px solid rgba(184,148,79,0.3); border-bottom: none; }
  .collection-teaser-form button { border-top: none; }
}

