/** Shopify CDN: Minification failed

Line 844:0 Expected "}" to go with "{"

**/
/* =====================
   CASCADE + CACTUS THEME
   ===================== */

:root {
  --cream: #F7F2EC;
  --sand: #E8DDD0;
  --warm-white: #FBF8F4;
  --dusty-pink: #D4A090;
  --blush: #E8C4B8;
  --navy: #2D3A52;
  --tan: #C4A882;
  --dark: #2C2420;
  --mid: #7A6558;
  --light-text: #A89080;
  --border: rgba(180,150,130,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--dark);
  overflow-x: hidden;
}

/* =====================
   ANNOUNCEMENT BAR
   ===================== */
.announcement-bar {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 11px 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
}
.announcement-bar span { color: var(--blush); margin: 0 10px; }

/* =====================
   HEADER
   ===================== */
.site-header {
  background: var(--warm-white);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-left { display: flex; gap: 32px; align-items: center; }
.nav-left a {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; font-weight: 400; transition: color 0.2s;
}
.nav-left a:hover { color: var(--dark); }

.site-logo {
  position: absolute; left: 50%; transform: translateX(-50%);
  text-align: center; text-decoration: none;
}
.site-logo img { height: 44px; width: auto; display: block; }

.nav-right { display: flex; gap: 24px; align-items: center; }
.nav-right a {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; font-weight: 400;
}
.nav-right .cart-count {
  background: var(--dark); color: white;
  font-size: 9px; width: 18px; height: 18px;
  border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center;
  margin-left: 4px;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  display: grid;
  grid-template-columns: 400px 1fr;
  height: 90vh;
  min-height: 700px;
}

.hero-left {
  background: var(--sand);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 56px 52px; position: relative; z-index: 2;
}

.hero-eyebrow {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--dusty-pink); margin-bottom: 20px; font-weight: 400;
  opacity: 0; animation: fadeUp 0.6s 0.1s ease forwards;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 66px; font-weight: 300; line-height: 0.95;
  color: var(--dark); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.6s 0.25s ease forwards;
}
.hero-headline em { font-style: italic; color: var(--tan); display: block; }
.hero-sub {
  font-size: 13px; color: var(--mid); font-weight: 300;
  line-height: 1.75; margin-bottom: 44px; max-width: 300px;
  opacity: 0; animation: fadeUp 0.6s 0.4s ease forwards;
}
.hero-btn {
  display: inline-block; background: var(--dark); color: white;
  padding: 17px 38px; font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; text-decoration: none;
  font-family: 'Jost', sans-serif; align-self: flex-start;
  transition: background 0.25s;
  opacity: 0; animation: fadeUp 0.6s 0.55s ease forwards;
}
.hero-btn:hover { background: var(--navy); }

.hero-right {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px; overflow: hidden;
  background: var(--sand); position: relative;
}
.hero-photo-main { grid-row: 1 / 3; overflow: hidden; position: relative; }
.hero-photo-main img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; transition: transform 0.8s ease; display: block;
}
.hero-photo-main:hover img { transform: scale(1.03); }

.hero-photo-sm { overflow: hidden; position: relative; }
.hero-photo-sm img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; transition: transform 0.8s ease; display: block;
}
.hero-photo-sm.two-kids img { object-position: center center; }
.hero-photo-sm:hover img { transform: scale(1.04); }

.hero-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: white; padding: 12px 18px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1); z-index: 2;
}
.hero-tag-top {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--dark); line-height: 1;
}
.hero-tag-bot { font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light-text); margin-top: 3px; }
@media (max-width: 768px) {
  .hero-tag { display: none; }
}

.hero-ticker {
  position: absolute; bottom: 0; left: -400px; right: 0;
  background: var(--navy); padding: 10px 0;
  overflow: hidden; white-space: nowrap; z-index: 10;
}
.ticker-track { display: inline-block; animation: ticker 22s linear infinite; }
.ticker-track span {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-right: 40px;
}
.ticker-track .dot { color: var(--dusty-pink); }

/* =====================
   SHARED COMPONENTS
   ===================== */
.section { padding: 88px 80px; }
.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 48px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; color: var(--dark); line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--tan); }

.view-all {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: all 0.2s;
}
.view-all:hover { color: var(--dark); border-color: var(--dark); }

.btn-primary {
  display: inline-block; background: var(--dark); color: white;
  padding: 16px 38px; font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; text-decoration: none;
  font-family: 'Jost', sans-serif; transition: background 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--navy); }

.divider { display: flex; align-items: center; gap: 16px; margin: 0 80px; }
.div-line { flex: 1; height: 1px; background: var(--border); }
.div-icon { font-size: 16px; opacity: 0.25; }

/* =====================
   COLLECTIONS GRID
   ===================== */
.collections-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; }
.col-card {
  position: relative; overflow: hidden;
  cursor: pointer; text-decoration: none; display: block;
}
.col-card:hover .col-img-inner { transform: scale(1.04); }
.col-img { width: 100%; aspect-ratio: 3/4; overflow: hidden; position: relative; }
.col-img-inner {
  width: 100%; height: 100%; transition: transform 0.6s ease;
  overflow: hidden; position: absolute; top: 0; left: 0;
}
.col-img-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.col-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
}
.col-card:nth-child(1) .col-img-placeholder { background: linear-gradient(160deg, #EDD4C8, #C49888); }
.col-card:nth-child(2) .col-img-placeholder { background: linear-gradient(160deg, #C8D4E0, #6880A8); }
.col-card:nth-child(3) .col-img-placeholder { background: linear-gradient(160deg, #E0D4C0, #B8A080); }
.col-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(transparent, rgba(44,36,32,0.62));
}
.col-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: white; }
.col-sub { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* =====================
   PRODUCT CARDS
   ===================== */
.products-section { padding: 0 80px 88px; }
.collection-row-header {
  display: flex; align-items: center; gap: 20px; padding: 56px 0 36px;
}
.row-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--dark); white-space: nowrap;
}
.row-title em { font-style: italic; color: var(--tan); }
.row-title .new-pill {
  background: var(--dusty-pink); color: white; font-size: 8px;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 4px 10px;
  margin-left: 14px; font-family: 'Jost', sans-serif;
  vertical-align: middle; position: relative; top: -3px;
}
.row-line { flex: 1; height: 1px; background: var(--border); }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.product-card { text-decoration: none; color: inherit; display: block; }
.product-card:hover .product-img { transform: scale(1.025); }

.product-img-wrap {
  overflow: hidden; aspect-ratio: 3/4;
  margin-bottom: 15px; position: relative; background: var(--sand);
}
.product-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.new-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--dark); color: white;
  font-size: 8px; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 5px 12px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 400; color: var(--dark); margin-bottom: 3px;
}
.product-colorway {
  font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--light-text); margin-bottom: 7px;
}
.product-price { font-size: 13px; color: var(--mid); }
.product-swatches { display: flex; gap: 6px; margin-top: 8px; }
.swatch {
  width: 15px; height: 15px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1); cursor: pointer;
}

/* =====================
   FOUNDER SECTION
   ===================== */
.founder {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px; background: var(--sand);
}
.founder-img {
  overflow: hidden; position: relative;
}
.founder-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-img-placeholder {
  width: 100%; height: 100%; min-height: 500px;
  background: linear-gradient(135deg, #C4B0A0, #A89080);
  display: flex; align-items: center; justify-content: center;
}
.founder-content {
  padding: 80px; display: flex; flex-direction: column; justify-content: center;
}
.founder-eyebrow {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--dusty-pink); margin-bottom: 24px;
}
.founder-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300; line-height: 1.15;
  color: var(--dark); margin-bottom: 24px;
}
.founder-headline em { font-style: italic; color: var(--tan); }
.founder-body {
  font-size: 14px; line-height: 1.9; color: var(--mid);
  font-weight: 300; margin-bottom: 40px; max-width: 420px;
}

/* =====================
   TRUST STRIP
   ===================== */
.trust {
  background: var(--dark); padding: 48px 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.trust-label {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 8px;
}
.trust-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300; color: white;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials { padding: 88px 80px; background: var(--cream); }
.test-header { text-align: center; margin-bottom: 60px; }
.test-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; color: var(--dark);
}
.test-header h2 em { font-style: italic; color: var(--tan); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.test-card {
  background: var(--warm-white); padding: 40px;
  border-top: 2px solid var(--dusty-pink);
}
.test-stars { color: var(--dusty-pink); font-size: 11px; letter-spacing: 3px; margin-bottom: 18px; }
.test-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300; font-style: italic;
  color: var(--dark); line-height: 1.7; margin-bottom: 22px;
}
.test-author { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light-text); }

/* =====================
   EMAIL SIGNUP
   ===================== */
.email-block {
  background: var(--warm-white); padding: 72px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.email-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300; color: var(--dark);
  line-height: 1.2; margin-bottom: 10px;
}
.email-left h2 em { font-style: italic; color: var(--tan); }
.email-left p { font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.7; }
.email-form { display: flex; }
.email-form input {
  flex: 1; padding: 16px 20px; border: 1px solid var(--border);
  background: var(--cream); font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 300; color: var(--dark); outline: none;
}
.email-form input::placeholder { color: var(--light-text); }
.email-form button {
  background: var(--dark); color: white; border: none;
  padding: 16px 30px; font-family: 'Jost', sans-serif;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.email-form button:hover { background: var(--navy); }
.email-sub { font-size: 10px; color: var(--light-text); margin-top: 10px; }

/* =====================
   FOOTER
   ===================== */
footer { background: var(--dark); padding: 72px 80px 40px; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo-wrap img { height: 36px; width: auto; margin-bottom: 16px; display: block; }
.footer-desc {
  font-size: 12px; line-height: 1.8;
  color: rgba(255,255,255,0.4); font-weight: 300; max-width: 220px;
}
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12); padding: 7px 14px; transition: all 0.2s;
}
.social-link:hover { color: white; border-color: rgba(255,255,255,0.35); }
.footer-col h4 {
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 12px; color: rgba(255,255,255,0.55);
  text-decoration: none; margin-bottom: 10px; font-weight: 300; transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between;
  font-size: 10px; color: rgba(255,255,255,0.25); letter-spacing: 0.1em;
}

/* =====================
   PRODUCT PAGE
   ===================== */
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh;
}
.product-gallery { padding: 48px; background: var(--cream); }
.main-image {
  width: 100%; aspect-ratio: 4/5; background: var(--sand);
  margin-bottom: 16px; position: relative; overflow: hidden;
}
.main-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumbnail-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.thumbnail {
  aspect-ratio: 1; background: var(--sand); cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.2s; overflow: hidden;
}
.thumbnail img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumbnail.active { border-color: var(--dark); }

.product-info { padding: 64px 72px 64px 64px; display: flex; flex-direction: column; }
.product-eyebrow {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--dusty-pink); margin-bottom: 16px;
}
.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; color: var(--dark);
  line-height: 1.1; margin-bottom: 8px;
}
.product-subtitle { font-size: 16px; color: var(--mid); font-weight: 300; margin-bottom: 24px; }
.product-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.stars { color: var(--dusty-pink); letter-spacing: 2px; font-size: 12px; }
.rating-text { font-size: 11px; color: var(--light-text); }
.product-price-block { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.price { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--dark); }
.price-note { font-size: 11px; color: var(--light-text); margin-top: 4px; }

.selector-block { margin-bottom: 32px; }
.selector-label {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 12px;
  display: flex; justify-content: space-between;
}
.selector-label span { color: var(--dark); font-weight: 400; }

.color-options { display: flex; gap: 10px; }
.color-option {
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s;
}
.color-option.active {
  border-color: var(--dark);
  box-shadow: 0 0 0 2px white, 0 0 0 3px var(--dark);
}

.size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
  border: 1px solid var(--border); padding: 10px 16px;
  font-size: 11px; letter-spacing: 0.15em; cursor: pointer;
  transition: all 0.2s; color: var(--mid); background: transparent;
  font-family: 'Jost', sans-serif;
}
.size-btn:hover { border-color: var(--dark); color: var(--dark); }
.size-btn.active { background: var(--dark); color: white; border-color: var(--dark); }
.size-guide-link {
  font-size: 10px; color: var(--mid); letter-spacing: 0.15em;
  text-decoration: underline; cursor: pointer;
  margin-top: 10px; display: inline-block; background: none; border: none;
}

.btn-add-cart {
  width: 100%; background: var(--dark); color: white; border: none;
  padding: 20px; font-family: 'Jost', sans-serif; font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s; margin-bottom: 12px;
}
.btn-add-cart:hover { background: var(--navy); }
.btn-buy-now {
  width: 100%; background: transparent; color: var(--dark);
  border: 1px solid var(--border); padding: 18px;
  font-family: 'Jost', sans-serif; font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase; cursor: pointer; transition: all 0.2s;
}
.btn-buy-now:hover { border-color: var(--dark); }

.product-details { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border); }
.detail-accordion { border-bottom: 1px solid var(--border); }
.detail-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark); font-weight: 400;
  background: none; border: none; width: 100%; text-align: left;
}
.detail-body {
  padding-bottom: 20px; font-size: 13px;
  line-height: 1.8; color: var(--mid); font-weight: 300; display: none;
}
.detail-body p { margin-bottom: 12px; }
.detail-body h1, .detail-body h2, .detail-body h3, .detail-body h4 {
  font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dark); font-weight: 500; margin: 20px 0 8px;
}
.detail-body.open { display: block; }
.product-description-body {
  padding-bottom: 20px; font-size: 13px; line-height: 1.8;
  color: var(--mid); font-weight: 300;
}
.product-description-body p { margin-bottom: 14px; }
.product-description-body strong { font-weight: 500; color: var(--dark); font-size: 11px; letter-spacing: 0.1em; display: block; margin: 16px 0 6px; }
.product-description-body ul { padding-left: 16px; margin-bottom: 12px; }
.product-description-body ul li { margin-bottom: 5px; }
.product-description-body em { font-style: italic; }
.detail-body ul { padding-left: 16px; }
.detail-body ul li { margin-bottom: 6px; }

.size-guide-table { background: var(--cream); padding: 24px; margin-top: 12px; display: none; }
.size-guide-table.open { display: block; }
.size-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.size-table th {
  text-align: left; padding: 8px 12px; font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-text); border-bottom: 1px solid var(--border);
}
.size-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--mid); font-weight: 300; }
.size-table-note { font-size: 11px; color: var(--light-text); margin-top: 12px; font-weight: 300; }

.product-features {
  padding: 80px; background: var(--cream);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  border-top: 1px solid var(--border);
}
.feature-item { text-align: center; }
.feature-icon { font-size: 28px; margin-bottom: 16px; opacity: 0.6; }
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--dark); margin-bottom: 8px;
}
.feature-desc { font-size: 12px; color: var(--mid); font-weight: 300; line-height: 1.7; }

/* =====================
   COLLECTIONS PAGE
   ===================== */
.page-header {
  background: var(--sand); padding: 80px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300; color: var(--dark); line-height: 1.0;
}
.page-header h1 em { font-style: italic; color: var(--tan); }
.product-count { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light-text); }

.filter-bar {
  padding: 20px 80px; display: flex; align-items: center;
  justify-content: space-between; border-bottom: 1px solid var(--border);
  background: var(--warm-white); position: sticky; top: 80px; z-index: 50;
}
.filter-tabs { display: flex; }
.filter-tab {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-text); cursor: pointer; padding: 8px 20px;
  border: 1px solid var(--border); margin-right: -1px;
  transition: all 0.2s; background: transparent; font-family: 'Jost', sans-serif;
}
.filter-tab:hover { color: var(--dark); }
.filter-tab.active { background: var(--dark); color: white; border-color: var(--dark); z-index: 1; }

.new-drop-callout {
  background: var(--dusty-pink); margin: 40px 80px; padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.callout-badge {
  background: white; color: var(--dusty-pink); font-size: 8px;
  letter-spacing: 0.25em; text-transform: uppercase; padding: 8px 16px; font-weight: 500;
}
.callout-text h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: white;
}
.callout-text p { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 4px; }
.btn-white-sm {
  background: white; color: var(--dark); padding: 12px 28px;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none; font-weight: 400; font-family: 'Jost', sans-serif;
}

/* =====================
   ABOUT PAGE
   ===================== */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 85vh; }
.about-hero-content {
  background: var(--sand); padding: 120px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-eyebrow { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--dusty-pink); margin-bottom: 32px; }
.about-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300; line-height: 1.0; color: var(--dark); margin-bottom: 32px;
}
.about-hero-headline em { font-style: italic; color: var(--tan); }
.about-hero-body { font-size: 16px; line-height: 1.9; color: var(--mid); font-weight: 300; max-width: 440px; }
.about-hero-image { overflow: hidden; }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pull-quote { padding: 100px 160px; text-align: center; background: var(--warm-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pull-quote blockquote { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; font-style: italic; color: var(--dark); line-height: 1.4; margin-bottom: 24px; }
.pull-quote cite { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--light-text); font-style: normal; }

.story-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.story-section.reverse { direction: rtl; }
.story-section.reverse > * { direction: ltr; }
.story-image { overflow: hidden; min-height: 500px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-image-placeholder { width: 100%; height: 100%; min-height: 500px; display: flex; align-items: center; justify-content: center; }
.story-image-placeholder.sand { background: linear-gradient(135deg, #E8DDD0, #D0C0B0); }
.story-image-placeholder.cream { background: linear-gradient(135deg, #F0E8E0, #E0D0C4); }
.story-image-placeholder.pink { background: linear-gradient(135deg, #EDD4C8, #D4A090); }
.story-content { padding: 80px; display: flex; flex-direction: column; justify-content: center; background: var(--warm-white); }
.story-number { font-family: 'Cormorant Garamond', serif; font-size: 80px; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: -16px; }
.story-eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dusty-pink); margin-bottom: 20px; }
.story-headline { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: var(--dark); line-height: 1.2; margin-bottom: 24px; }
.story-headline em { font-style: italic; color: var(--tan); }
.story-body { font-size: 14px; line-height: 1.9; color: var(--mid); font-weight: 300; max-width: 440px; }

.values-section { background: var(--dark); padding: 100px 80px; }
.values-header { text-align: center; margin-bottom: 72px; }
.values-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: white; line-height: 1.1; }
.values-header h2 em { font-style: italic; color: var(--dusty-pink); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.value-item { text-align: center; padding: 48px 32px; border: 1px solid rgba(255,255,255,0.1); }
.value-icon { font-size: 32px; margin-bottom: 20px; opacity: 0.7; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: white; margin-bottom: 16px; }
.value-desc { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.8; }

.about-cta { background: var(--dusty-pink); padding: 80px; text-align: center; }
.about-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: white; margin-bottom: 20px; line-height: 1.1; }
.about-cta h2 em { font-style: italic; }
.about-cta p { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 300; margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.btn-white { background: white; color: var(--dark); padding: 18px 48px; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none; font-weight: 400; font-family: 'Jost', sans-serif; display: inline-block; transition: background 0.2s; }
.btn-white:hover { background: var(--cream); }

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb {
  padding: 20px 80px; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--light-text); border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--light-text); text-decoration: none; }
.breadcrumb span { margin: 0 8px; }

/* =====================
   ANIMATIONS
   ===================== */
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-left { padding: 48px 32px; }
  .hero-headline { font-size: 48px; }
  .hero-right { height: 400px; grid-template-columns: 1fr 0.6fr; }
  .section { padding: 60px 32px; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .email-block { grid-template-columns: 1fr; gap: 32px; padding: 48px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-layout { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .story-section { grid-template-columns: 1fr; }
  .story-section.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .nav-left { display: none; }
  .hero-left { padding: 40px 24px; }
  .hero-headline { font-size: 40px; }
  .collections-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section { padding: 48px 20px; }
  .products-section { padding: 0 20px 48px; }
  .trust { grid-template-columns: repeat(2, 1fr); padding: 40px 20px; }
  .testimonials { padding: 60px 20px; }
  .footer-top { grid-template-columns: 1fr; padding: 0; }
  footer { padding: 48px 20px 32px; }
  .page-header { padding: 48px 20px; }
  .page-header h1 { font-size: 40px; }
  .filter-bar { padding: 16px 20px; overflow-x: auto; }
  .new-drop-callout { margin: 20px; flex-direction: column; gap: 20px; text-align: center; }
  .pull-quote { padding: 60px 24px; }
  .pull-quote blockquote { font-size: 24px; }
  .story-content { padding: 48px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-hero-content { padding: 60px 24px; }
  .about-hero-headline { font-size: 48px; }
  .product-info { padding: 32px 24px; }
  .product-gallery { padding: 24px; }
  .product-features { grid-template-columns: 1fr; padding: 48px 24px; }
  .founder-content { padding: 48px 24px; }
  .breadcrumb { padding: 16px 20px; }
}

/* =====================
   FINAL OVERRIDES
   ===================== */

/* Logo text-based */
.site-logo {
  position: absolute; left: 50%; transform: translateX(-50%);
  text-align: center; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; letter-spacing: 0.14em;
  color: var(--dark); display: block; line-height: 1; text-transform: uppercase;
}
.logo-tagline {
  font-size: 8px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--light-text); font-weight: 300;
}

/* Nav icon */
.nav-shop-wrap {
  display: flex; align-items: center; gap: 8px; text-decoration: none;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mid); font-weight: 400; transition: color 0.2s;
}
.nav-shop-wrap:hover { color: var(--dark); }
.nav-icon-img { height: 48px; width: auto; }

/* Hero tag — top right */
.hero-tag {
  position: absolute; top: 20px; right: 20px; bottom: auto; left: auto;
  background: white; padding: 12px 18px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1); z-index: 2;
}
.hero-tag-top {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 400; color: var(--dark); line-height: 1.4;
}
.hero-tag-bot { display: none; }

/* Social icons */
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.social-icon-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: all 0.2s; border-radius: 4px;
}
.social-icon-link:hover { color: white; border-color: rgba(255,255,255,0.4); }
.social-icon-link svg { width: 16px; height: 16px; fill: currentColor; }

/* Mobile header */
.mobile-header { display: none; }
.hamburger { background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); margin: 5px 0; }
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--warm-white); z-index: 200; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 28px; font-family: 'Cormorant Garamond', serif; font-weight: 300; color: var(--dark); text-decoration: none; letter-spacing: 0.08em; }
.mobile-nav a em { font-style: italic; color: var(--tan); }
.mobile-nav-close { position: absolute; top: 24px; right: 24px; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--mid); }
.mobile-cart-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--mid); stroke-width: 1.5; }

/* Free shipping $100 */
.price-note { font-size: 11px; color: var(--light-text); margin-top: 4px; }

@media (max-width: 768px) {
  .site-header { display: none; }
  .mobile-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px; height: 64px; background: var(--warm-white);
    border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100;
  }
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-left { padding: 40px 24px 36px; order: 1; }
  .hero-headline { font-size: 52px; }
  .hero-right { order: 2; height: 420px; grid-template-columns: 1fr 0.6fr; }
  .collections-grid { grid-template-columns: 1fr; gap: 10px; }
  .col-img { aspect-ratio: 3/2; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .founder { grid-template-columns: 1fr; }
  .founder-img { min-height: 320px; }
  .founder-content { padding: 40px 24px; }
  .trust { grid-template-columns: repeat(2, 1fr); padding: 40px 20px; }
  .test-grid { grid-template-columns: 1fr; gap: 16px; }
  .email-block { grid-template-columns: 1fr; gap: 24px; padding: 48px 20px; }
  footer { padding: 48px 20px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } 
