/* ─── Classy You — Shared Stylesheet ─── */
@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');

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

:root {
  --cream: #EDE8DF;
  --cream-light: #F7F4EF;
  --brown: #8B6B4A;
  --brown-dark: #6B4E32;
  --text: #2C2416;
  --text-light: #7A6A5A;
  --white: #FFFFFF;
  --border: #DDD5C8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Announcement Bar ── */
.announcement {
  background: var(--brown);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand .logo-img {
  height: 40px;
}

nav { display: flex; gap: 28px; align-items: center; }

nav a {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--brown);
  transition: width 0.3s;
}

nav a:hover { color: var(--brown); }
nav a:hover::after { width: 100%; }
nav a.active { color: var(--brown); }
nav a.active::after { width: 100%; }

.header-actions { display: flex; gap: 20px; align-items: center; }

.header-actions a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.header-actions a:hover { color: var(--brown); }
.header-actions svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-white { background: var(--white); color: var(--text); }
.btn-white:hover { background: var(--cream); }
.btn-brown { background: var(--brown); color: var(--white); }
.btn-brown:hover { background: var(--brown-dark); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn-outline:hover { background: var(--text); color: var(--white); }
.btn-outline-brown { background: transparent; color: var(--brown); border: 1px solid var(--brown); padding: 12px 32px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: all 0.3s; display: inline-block; }
.btn-outline-brown:hover { background: var(--brown); color: var(--white); }

/* ── Section Wrapper ── */
.section { padding: 80px 32px; }
.section-narrow { max-width: 1300px; margin: 0 auto; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 56px;
}

/* ── Index: Collections Grid ── */
.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  text-decoration: none;
  display: block;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover img { transform: scale(1.05); }

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,12,4,0.55) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  color: var(--white);
}

.collection-card-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 6px;
}

.collection-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}

.collection-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.collection-card-link:hover { border-color: var(--white); }

/* ── Index: Featured Split ── */
.featured-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--cream-light);
}

.featured-split-img { overflow: hidden; }

.featured-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.featured-split-img:hover img { transform: scale(1.03); }

.featured-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
}

.featured-split-content .eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;
}

.featured-split-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}

.featured-split-content h2 em { font-style: italic; color: var(--brown); }

.featured-split-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 380px;
}

/* ── Index: Products Row ── */
.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card { cursor: pointer; }

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 16px;
  background: var(--cream-light);
}

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

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

.product-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--brown);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
}

.product-card-action {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(44, 36, 22, 0.85);
  color: var(--white);
  text-align: center;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-action { transform: translateY(0); }

.product-card-name {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--text);
}

.product-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--brown);
}

/* ── Marquee ── */
.marquee-strip {
  background: var(--brown);
  color: var(--white);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-inner {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-inner span {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0 40px;
  flex-shrink: 0;
}

.marquee-inner span::before { content: '✦'; margin-right: 40px; opacity: 0.7; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Perks ── */
.perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.perk {
  padding: 48px 40px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.perk:last-child { border-right: none; }
.perk-icon { font-size: 28px; margin-bottom: 16px; }

.perk-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.perk-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ── Instagram Section ── */
.instagram-section {
  background: var(--cream-light);
  padding: 80px 32px;
  text-align: center;
}

.instagram-handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 12px;
  font-style: italic;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 48px;
}

.instagram-thumb { aspect-ratio: 1; overflow: hidden; position: relative; }

.instagram-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.instagram-thumb:hover img { transform: scale(1.08); }

.instagram-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 107, 74, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.instagram-thumb:hover .instagram-thumb-overlay { opacity: 1; }
.instagram-thumb-overlay svg { width: 28px; height: 28px; stroke: white; fill: none; stroke-width: 1.5; }

/* ── Contact Strip ── */
.contact-strip {
  background: var(--text);
  color: var(--white);
  padding: 56px 32px;
  text-align: center;
}

.contact-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 12px;
}

.contact-strip p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.contact-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.contact-buttons a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.contact-buttons a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #1ebe5d; }
.btn-ig { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4); }
.btn-ig:hover { border-color: white; background: rgba(255,255,255,0.05); }

/* ── Footer ── */
footer {
  background: var(--cream);
  padding: 64px 32px 32px;
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
  margin-top: 12px;
}

.footer-social { display: flex; gap: 14px; }

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover { border-color: var(--brown); color: var(--brown); }
.footer-social a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--brown); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-light);
}

.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--brown); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: var(--text-light); text-decoration: none; }
.footer-contact-item a:hover { color: var(--brown); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--brown); }

/* ── Mobile Nav ── */
.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger svg { width: 22px; height: 22px; stroke: var(--text); fill: none; stroke-width: 1.5; }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 32px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-bottom: 32px;
}

.mobile-nav-close svg { width: 24px; height: 24px; stroke: var(--text); fill: none; stroke-width: 1.5; }

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--brown); }

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-footer a {
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  border: none;
  padding: 4px 0;
}

/* ── Hero (index) ── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,20,10,0.55) 0%, rgba(30,20,10,0.1) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 72px;
  color: var(--white);
  max-width: 640px;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title em { font-style: italic; }

.hero-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 380px;
}

/* ══════════════════════════════════════
   COLLECTION / SHOP PAGES
══════════════════════════════════════ */

/* ── Page Banner ── */
.page-banner {
  background: var(--cream-light);
  padding: 52px 32px 44px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--brown); }
.breadcrumb span { margin: 0 8px; }

.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.page-banner-desc {
  font-size: 14px;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Shop Layout ── */
.shop-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.shop-count { font-size: 13px; color: var(--text-light); }

.sort-select, .shop-sort {
  border: 1px solid var(--border);
  padding: 9px 28px 9px 14px;
  font-size: 12px;
  background: white;
  color: var(--text);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238B6B4A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 8px;
  letter-spacing: 0.5px;
}

/* ── Shop Grid ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 28px;
}

.shop-card { cursor: pointer; }

.shop-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-light);
  margin-bottom: 16px;
}

.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.shop-card:hover .shop-card-img img { transform: scale(1.05); }

.shop-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--brown);
  color: white;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 1;
}

.shop-card-sold {
  background: var(--text-light);
}

/* Quick-buy overlay — slides up from bottom of image on hover */
.shop-card-quick {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(44, 36, 22, 0.88);
  color: white;
  border: none;
  padding: 14px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.3s;
  z-index: 1;
}
.shop-card:hover .shop-card-quick { transform: translateY(0); }

/* Card body below the image */
.shop-card-body { padding: 0; }

/* CTA button below card info */
.shop-card-cta {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 11px 16px;
  background: transparent;
  border: 1px solid var(--brown);
  color: var(--brown);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.shop-card-cta:hover { background: var(--brown); color: white; }

.shop-card-name {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  color: var(--text);
}

.shop-card-sizes {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.shop-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--brown);
}

.shop-more {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.shop-more p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   TEXT / POLICY PAGES
══════════════════════════════════════ */

.text-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}

.policy-date {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.text-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  margin: 40px 0 14px;
  color: var(--text);
}

.text-wrap h2:first-of-type { margin-top: 0; }

.text-wrap p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 16px;
}

.text-wrap ul, .text-wrap ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.text-wrap li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 8px;
}

.text-wrap a { color: var(--brown); text-decoration: underline; }
.text-wrap strong { color: var(--text); font-weight: 500; }

.policy-contact-box {
  background: var(--cream-light);
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin-top: 40px;
}

.policy-contact-box p {
  margin-bottom: 8px;
}

.policy-contact-box p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */

.about-hero {
  height: 70vh;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,20,10,0.65) 0%, transparent 60%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 0 60px 60px;
}

.about-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.05;
}

.about-hero-content h1 em { font-style: italic; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 32px;
}

.about-story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.1;
}

.about-story-text h2 em { font-style: italic; color: var(--brown); }

.about-story-text p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 18px;
}

.about-story-img { aspect-ratio: 4/5; overflow: hidden; }
.about-story-img img { width: 100%; height: 100%; object-fit: cover; }

.about-values-section {
  background: var(--cream-light);
  padding: 80px 32px;
  text-align: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 52px auto 0;
}

.about-value-icon { font-size: 36px; margin-bottom: 16px; }

.about-value h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.about-value p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px 80px;
}

.contact-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-left h2 em { font-style: italic; color: var(--brown); }

.contact-left > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-of-type { border-top: 1px solid var(--border); }

.contact-item svg {
  width: 22px; height: 22px;
  stroke: var(--brown); fill: none; stroke-width: 1.5;
  flex-shrink: 0; margin-top: 2px;
}

.contact-item-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-item-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.contact-item-val:hover { color: var(--brown); }
.contact-item-note { font-size: 12px; color: var(--text-light); margin-top: 4px; line-height: 1.6; }

.contact-faq {
  background: var(--cream-light);
  padding: 36px 40px;
}

.contact-faq h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 28px;
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

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

.faq-q {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.faq-a {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

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

@media (max-width: 1100px) {
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .products-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .about-values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-story-img { aspect-ratio: 4/3; max-height: 420px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: block; }
  .hero-content { padding: 0 24px 48px; }
  .section { padding: 56px 20px; }
  .featured-split { grid-template-columns: 1fr; }
  .featured-split-img { height: 60vw; min-height: 300px; }
  .featured-split-content { padding: 40px 28px; }
  .perks { grid-template-columns: 1fr; }
  .perk { border-right: none; border-bottom: 1px solid var(--border); }
  .perk:last-child { border-bottom: none; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .collections-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .header-inner { padding: 0 20px; }
  .shop-wrap { padding: 32px 20px 64px; }
  .page-banner { padding: 40px 20px 32px; }
  .contact-faq { padding: 28px 24px; }
}

@media (max-width: 560px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .products-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-hero-content { padding: 0 24px 40px; }
  .about-story { padding: 48px 20px; }
  .about-values-section { padding: 48px 20px; }
  .contact-layout { padding: 48px 20px 64px; }
  .text-wrap { padding: 40px 20px 60px; }
}

/* ══════════════════════════════════════
   REVEAL ANIMATION (shop cards)
══════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   SIZE PICKER MODAL
══════════════════════════════════════ */

.size-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 6, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.size-modal-overlay.open { opacity: 1; }
.size-modal-overlay.open .size-modal {
  transform: translateY(0);
  opacity: 1;
}

.size-modal {
  background: white;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  position: relative;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.size-modal-img {
  width: 240px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: top;
}

.size-modal-body {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.size-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: white;
  border: 1px solid var(--border);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text);
  z-index: 1;
  transition: background 0.2s;
}
.size-modal-close:hover { background: var(--cream-light); }

.size-modal-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--brown);
  color: white;
  padding: 3px 10px;
  align-self: flex-start;
}

.size-modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

.size-modal-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--brown);
}

.size-modal-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 2px;
}

.size-modal-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 6px;
}

.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  padding: 8px 16px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  border-radius: 2px;
}
.size-btn:hover { border-color: var(--brown); color: var(--brown); }
.size-btn.selected { background: var(--brown); color: white; border-color: var(--brown); }

.size-modal-confirm { margin-top: 4px; }
.size-modal-confirm .btn-primary {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 13px 20px;
  background: var(--brown);
  color: white;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.size-modal-confirm .btn-primary:hover { background: var(--brown-dark); }

.size-modal-wa-link {
  display: block;
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
  text-decoration: underline;
  margin-top: 4px;
  transition: color 0.2s;
}
.size-modal-wa-link:hover { color: var(--brown); }

@media (max-width: 600px) {
  .size-modal { flex-direction: column; max-height: 95vh; }
  .size-modal-img { width: 100%; height: 260px; }
  .size-modal-body { padding: 20px 20px 24px; }
}
