@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&display=swap');

/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --bg: #F8F6F1;
  --bg-alt: #EEEADE;
  --bg-dark: #25211E;
  --text: #59250D;
  --text-muted: #333333;
  --accent: #74361A;
  --nav-hover: #737373;
  --btn-bg: #222222;
  --btn-hover: #116E56;
  --badge-bg: #E9C651;
  --border: #DDD7CE;
  --white: #FFFFFF;
  --font-serif: 'Cormorant', Georgia, serif;
  --font-sans: 'Cormorant', Georgia, serif;
  --max-w: 1280px;
  --announce-h: 46px;
  --header-h: 72px;
  --nav-h: calc(var(--announce-h) + var(--header-h));
  --transition: 0.25s ease;
}

/* ─── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
ul { list-style: none; }
input, select { font-family: var(--font-sans); }

/* ─── Typography ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; }
p { font-size: 0.95rem; color: var(--text); line-height: 1.75; }

/* ─── Layout ─────────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ─── Announcement Bar ───────────────────────────────────────────────────────── */
.announce-bar {
  position: sticky; top: 0; z-index: 999;
  min-height: var(--announce-h);
  background: #59250D; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
  font-size: 0.851rem; letter-spacing: 0.07em; line-height: 1.4;
}
.announce-bar a {
  color: white; font-weight: 700; text-decoration: underline; text-underline-offset: 2px;
  transition: color var(--transition);
}
.announce-bar a:hover { color: rgba(255,255,255,0.7); }

/* ─── Header ─────────────────────────────────────────────────────────────────── */
.header {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: #EEEADE !important;
  min-height: 70px !important;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 40px !important;
  min-height: 70px !important;
  max-width: var(--max-w); margin: 0 auto;
}
.header-nav { display: flex; gap: 40px; align-items: center; }
.header-nav a {
  font-size: 0.975rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); transition: color var(--transition);
}
.header-nav a:hover, .header-nav a.active { color: var(--nav-hover); }
.logo {
  text-align: center; font-family: var(--font-serif);
  font-size: 1.7rem; letter-spacing: 0.1em; color: var(--accent);
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.7; }
.logo img { max-height: 45px !important; width: auto !important; display: block !important; opacity: 1 !important; }
.header-right { display: flex; align-items: center; gap: 20px; }
.social-icon-link {
  display: flex; align-items: center;
  color: var(--accent); transition: color var(--transition);
}
.social-icon-link:hover { color: var(--nav-hover); }
.cart-btn {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); transition: color var(--transition);
}
.cart-btn:hover { color: var(--nav-hover); }
.cart-count {
  display: flex; align-items: center; justify-content: center;
  width: 19px; height: 19px;
  background: var(--accent); color: white;
  border-radius: 50%; font-size: 0.62rem; font-weight: 500;
}
.cart-count.hidden { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--accent); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Mobile Nav ─────────────────────────────────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--bg); z-index: 99;
  flex-direction: column; justify-content: center; align-items: center; gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-serif); font-size: 2.2rem; color: var(--accent); }
.mobile-nav a:hover { color: var(--nav-hover); }
.mobile-nav-more-toggle {
  font-family: var(--font-serif); font-size: 2.2rem;
  color: var(--accent); background: none; border: none;
  cursor: pointer; padding: 0; transition: color var(--transition);
}
.mobile-nav-more-toggle:hover { color: var(--nav-hover); }
.mobile-nav-more-items {
  display: none; flex-direction: column; align-items: center; gap: 36px;
}
.mobile-nav-more-items.open { display: flex; }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all var(--transition); font-family: var(--font-sans);
}
.btn-primary { background: var(--btn-bg); color: var(--white); }
.btn-primary:hover { background: var(--btn-hover); }
.btn-outline { border: 1.5px solid var(--btn-bg); color: var(--btn-bg); }
.btn-outline:hover { background: var(--btn-bg); color: var(--white); }

/* ─── Hero — Split Layout ────────────────────────────────────────────────────── */
.hero-split {
  display: flex;
  height: 85vh;
}

/* ─── Hero — Slideshow (left column) ────────────────────────────────────────── */
.hero-slideshow {
  position: relative;
  flex: 0 0 55%;
  overflow: hidden;
  background: #1a1714;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  overflow: hidden;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.hero-slide.active img {
  animation: kenburns 5500ms ease-out forwards;
}

@keyframes kenburns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.05); }
}

/* ─── Hero — Text Block (right column) ──────────────────────────────────────── */
.hero-text {
  flex: 0 0 45%;
  background: #F8F6F1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px;
}

.hero-text-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #59250D;
  margin: 0;
  line-height: 1.2;
}

.hero-text-body {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #59250D;
  max-width: 340px;
  margin: 25px auto 0;
  line-height: 1.7;
}

.hero-text-attribution {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: #59250D;
  margin-top: 30px;
}

/* ─── Marquee Strip ──────────────────────────────────────────────────────────── */
.marquee-strip { background: var(--bg-dark); padding: 13px 0; overflow: hidden; }
.marquee-inner { display: flex; gap: 48px; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Section ────────────────────────────────────────────────────────────────── */
.section { padding: 60px 0; }
.hero-split + .section { padding-top: 40px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: none; margin: 0 auto; font-size: 1.14rem; white-space: nowrap; }

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

/* ─── Product Card ───────────────────────────────────────────────────────────── */
.product-card { cursor: pointer; }
.product-card-image {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1; background: var(--bg-alt); margin-bottom: 14px;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--badge-bg); color: var(--text);
  font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 11px;
}
.product-badge--preorder { background: var(--btn-bg); color: white; }
.product-card-quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(26, 22, 20, 0.88); color: white;
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px; text-align: center;
  transform: translateY(100%); transition: transform 0.3s ease;
}
.product-card:hover .product-card-quick-add { transform: translateY(0); }
.product-card-info h4 {
  font-family: var(--font-serif); font-size: 1.08rem;
  font-weight: 700; margin-bottom: 5px; color: var(--text);
}
.product-card-info .price { font-size: 0.88rem; color: #59250D; font-weight: 500; }

/* ─── About Strip ────────────────────────────────────────────────────────────── */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.about-strip-image { overflow: hidden; }
.about-strip-image img { width: 100%; height: 100%; object-fit: cover; }
.about-strip-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px; background: var(--bg-alt);
}
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.about-strip-content h2 { margin-bottom: 20px; }
.about-strip-content p { margin-bottom: 14px; font-size: 1rem; line-height: 1.8; }
.about-strip-content .btn { align-self: flex-start; margin-top: 20px; }

/* ─── Shop by Series ─────────────────────────────────────────────────────────── */
.series-container {
  display: flex;
  gap: 8px;
  height: 500px;
  overflow: hidden;
}
.series-card {
  flex: 1;
  transition: flex 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.series-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.series-container:hover .series-card { flex: 1; }
.series-container .series-card:hover { flex: 3; }
.series-container:not(:hover) .series-card:first-child { flex: 3; }
.collection-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,20,0.65) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 28px;
}
.collection-overlay h3 { color: white; font-size: 1.4rem; }
.collection-overlay span {
  display: block; color: rgba(255,255,255,0.65);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px;
}

/* ─── Newsletter ─────────────────────────────────────────────────────────────── */
.newsletter { background: var(--bg-alt); padding: 60px 0; text-align: center; }
.newsletter h2 { margin-bottom: 12px; }
.newsletter > .container > p { margin-bottom: 36px; font-size: 1.14rem; }
.newsletter-form { display: flex; max-width: 420px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 14px 18px;
  background: white; border: 1px solid var(--border); border-right: none;
  font-size: 0.88rem; color: var(--text); outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: #999999; }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
  padding: 14px 26px; background: var(--btn-bg); color: white;
  font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--btn-hover); }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
footer { background: var(--bg-dark); color: rgba(255,255,255,0.55); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-serif); font-size: 1.9rem; color: white; margin-bottom: 14px; }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; max-width: 240px; color: rgba(255,255,255,0.45); }
.footer-col h5 {
  font-family: var(--font-sans); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: white; margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: white; }
.footer-social-link { display: flex; align-items: center; gap: 8px; }
.footer-social-link svg { flex-shrink: 0; }
.footer-bottom-socials { display: flex; gap: 14px; align-items: center; }
.footer-bottom-social { color: rgba(255,255,255,0.35); transition: color var(--transition); display: flex; align-items: center; }
.footer-bottom-social:hover { color: rgba(255,255,255,0.7); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ─── Page Header ────────────────────────────────────────────────────────────── */
.page-header { padding: 64px 0; text-align: center; background: var(--bg-alt); }
.page-header h1 { margin-bottom: 10px; }
.page-header p { max-width: 400px; margin: 0 auto; }

/* ─── Shop Controls ──────────────────────────────────────────────────────────── */
.shop-controls {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--border); margin-bottom: 48px;
  flex-wrap: wrap; gap: 16px;
}
.filter-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.filter-tab {
  padding: 9px 18px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid transparent; transition: all var(--transition);
}
.filter-tab:hover { color: var(--text); }
.filter-tab.active { border-color: var(--text); color: var(--text); }
.shop-meta { display: flex; align-items: center; gap: 16px; }
#product-count { font-size: 0.82rem; color: var(--text-muted); }
.shop-meta select {
  padding: 9px 16px; border: 1px solid var(--border);
  background: transparent; font-size: 0.82rem; color: var(--text-muted);
  outline: none; cursor: pointer;
}

/* ─── Product Detail ─────────────────────────────────────────────────────────── */
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  padding: 60px 0 96px; align-items: start;
}
.product-images { display: grid; grid-template-columns: 80px 1fr; gap: 12px; }
.product-thumbnails { display: flex; flex-direction: column; gap: 8px; }
.product-thumbnail {
  width: 80px; height: 96px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color var(--transition);
}
.product-thumbnail.active { border-color: var(--text); }
.product-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.product-main-image { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--bg-alt); }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.2s ease; }
.product-main-image img.is-fading { opacity: 0; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.85); z-index: 2;
  transition: background var(--transition);
}
.gallery-arrow:hover { background: white; }
.gallery-arrow--prev { left: 12px; }
.gallery-arrow--next { right: 12px; }
.product-info { padding-top: 12px; }
.product-info .category {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.product-info h1 { font-size: 2.2rem; margin-bottom: 16px; }
.product-price { font-size: 1.35rem; margin-bottom: 24px; color: var(--text); }
.product-description {
  margin-bottom: 28px; font-size: 1rem; line-height: 1.8;
  border-bottom: 1px solid var(--border); padding-bottom: 28px; color: #333333;
}
.quantity-selector {
  display: flex; align-items: center; width: fit-content;
  border: 1px solid var(--border); margin-bottom: 16px;
}
.qty-btn {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text-muted); transition: all var(--transition);
}
.qty-btn:hover { background: var(--bg-alt); color: var(--text); }
.qty-display {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
}
.add-to-cart-btn {
  width: 100%; padding: 16px; background: var(--btn-bg); color: white;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px; transition: background var(--transition);
}
.add-to-cart-btn:hover { background: var(--btn-hover); }
.preorder-note {
  font-size: 0.78rem; color: #59250D; line-height: 1.6;
  margin-top: -6px; margin-bottom: 14px;
}
.product-meta { margin-top: 28px; }
.meta-item {
  display: flex; gap: 16px; padding: 13px 0;
  border-top: 1px solid var(--border); font-size: 0.88rem;
}
.meta-item strong { width: 100px; flex-shrink: 0; color: var(--text); }
.meta-item span { color: #59250D; }
.related-section { padding: 0 0 96px; }
.related-section h2 { font-size: 1.8rem; margin-bottom: 36px; }

/* ─── Cart ───────────────────────────────────────────────────────────────────── */
.cart-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 56px;
  padding: 60px 0 96px; align-items: start;
}
.cart-section-title { font-size: 1.8rem; margin-bottom: 32px; }
.cart-items-header {
  display: grid; grid-template-columns: 1fr auto auto; gap: 24px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
}
.cart-item {
  display: grid; grid-template-columns: 100px 1fr auto auto;
  gap: 20px; align-items: center;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.cart-item-image { width: 100px; height: 120px; overflow: hidden; background: var(--bg-alt); }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 4px; }
.cart-item-cat {
  font-size: 0.76rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px;
}
.cart-item-price { font-size: 0.88rem; color: var(--text-muted); }
.cart-remove {
  font-size: 0.74rem; color: var(--text-muted); text-decoration: underline;
  cursor: pointer; margin-top: 8px; transition: color var(--transition);
}
.cart-remove:hover { color: var(--text); }
.cart-item-qty { display: flex; align-items: center; border: 1px solid var(--border); }
.cart-item-qty .qty-btn { width: 36px; height: 36px; font-size: 1rem; }
.cart-item-qty .qty-display { width: 36px; height: 36px; font-size: 0.85rem; }
.cart-item-total { min-width: 72px; text-align: right; font-size: 0.92rem; }
.cart-summary {
  background: var(--bg-alt); padding: 30px;
  position: sticky; top: 90px;
}
.cart-summary h3 { font-size: 1.3rem; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.summary-row {
  display: flex; justify-content: space-between;
  margin-bottom: 12px; font-size: 0.9rem;
}
.summary-row span:first-child { color: var(--text-muted); }
.summary-row.total {
  font-size: 1.05rem; font-weight: 500; color: var(--text);
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); margin-bottom: 24px;
}
.free-shipping-note {
  font-size: 0.8rem; color: var(--accent); margin-bottom: 12px;
}
.checkout-btn {
  display: block; width: 100%; padding: 15px; background: var(--btn-bg); color: white;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; transition: background var(--transition); cursor: pointer;
}
.checkout-btn:hover { background: var(--btn-hover); }
.empty-cart { text-align: center; padding: 80px 0; }
.empty-cart-icon { font-size: 3rem; color: var(--border); margin-bottom: 20px; }
.empty-cart h3 { font-size: 1.8rem; margin-bottom: 10px; }
.empty-cart p { margin-bottom: 32px; }

/* ─── About Page ─────────────────────────────────────────────────────────────── */
.about-hero {
  min-height: 85vh; display: grid; grid-template-columns: 1fr 1fr;
}
.about-hero-image { overflow: hidden; }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px; background: var(--bg-alt);
}
.about-hero-content h1 { font-size: clamp(2.5rem, 4vw, 4.2rem); margin-bottom: 24px; }
.about-hero-content p { font-size: 1.05rem; line-height: 1.85; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; padding: 100px 0; }
.value-card { text-align: center; }
.value-number { font-family: var(--font-serif); font-size: 3.5rem; color: var(--accent); opacity: 0.7; margin-bottom: 14px; }
.value-card h4 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 10px; }
.process-section { background: var(--bg-alt); padding: 100px 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 56px; }
.process-step { }
.process-step-img { aspect-ratio: 1; overflow: hidden; margin-bottom: 18px; background: var(--bg); }
.process-step-img img { width: 100%; height: 100%; object-fit: cover; }
.process-step h4 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 8px; }
.studio-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.studio-strip-images { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; overflow: hidden; }
.studio-strip-images img { width: 100%; height: 100%; object-fit: cover; }
.studio-strip-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px; background: var(--bg-dark);
}
.studio-strip-content .eyebrow { color: var(--accent); }
.studio-strip-content h2 { color: white; margin-bottom: 20px; }
.studio-strip-content p { color: rgba(255,255,255,0.55); margin-bottom: 12px; font-size: 1rem; line-height: 1.8; }
.studio-strip-content .btn { align-self: flex-start; margin-top: 20px; border-color: white; color: white; }
.studio-strip-content .btn:hover { background: white; color: var(--text); }

/* ─── About Story ────────────────────────────────────────────────────────────── */
.about-story { max-width: 680px; margin: 0 auto; }
.about-story p { font-size: 1.1rem; line-height: 1.9; margin-bottom: 24px; color: var(--text); }
.about-quote {
  font-family: var(--font-serif); font-size: 1.4rem; font-style: italic;
  color: var(--accent); line-height: 1.6;
  margin: 40px 0; padding-left: 28px;
  border-left: 2px solid var(--accent);
}

/* ─── Toast ──────────────────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg-dark); color: white;
  padding: 13px 28px; font-size: 0.83rem; letter-spacing: 0.05em;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 200; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  /* accordion stays active at tablet — no overrides needed */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { gap: 28px; }
}

@media (max-width: 768px) {
  :root { --announce-h: 72px; --header-h: 60px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .logo img { max-height: 35px; }
  .announce-bar { font-size: 11px; letter-spacing: 0; padding: 8px 15px; }

  .hero-split { flex-direction: column; height: auto; }
  .hero-slideshow { flex: none; height: 60vh; width: 100%; order: 1; }
  .hero-text { flex: none; width: 100%; padding: 40px 24px; order: 2; }
  .hero-text-body { font-size: 1.05rem; max-width: none; }
  .section-header p { white-space: normal; max-width: 320px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .about-strip { grid-template-columns: 1fr; }
  .about-strip-image { height: 380px; }
  .about-strip-content { padding: 44px 24px; }

  .series-container { flex-direction: column; height: auto; }
  .series-card { flex: 0 0 240px !important; height: 240px; }

  .product-layout { grid-template-columns: 1fr; gap: 36px; }
  .product-info h1 { font-size: 1.6rem; }
  .product-images { grid-template-columns: 1fr; }
  .product-thumbnails { flex-direction: row; }
  .product-thumbnail { width: 72px; height: 84px; }

  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .cart-item { grid-template-columns: 84px 1fr auto; }
  .cart-item-total { display: none; }

  .about-hero { grid-template-columns: 1fr; }
  .about-hero-image { height: 380px; }
  .about-hero-content { padding: 44px 24px; }
  .about-values { grid-template-columns: 1fr; padding: 60px 0; gap: 40px; }
  .studio-strip { grid-template-columns: 1fr; }
  .studio-strip-images { height: 300px; }
  .studio-strip-content { padding: 44px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--border); border-bottom: none; }

  .cart-items-header { display: none; }
}

@media (max-width: 480px) {
  .products-grid { gap: 12px; }
}

/* ─── Instagram Feed ─────────────────────────────────────────────────────────── */
.instagram-feed {
  padding-top: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #EEEADE;
}

.instagram-feed__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #59250D;
  text-align: center;
  margin: 0 auto 32px;
  padding: 0 20px;
}

.instagram-feed__grid {
  display: flex;
  gap: 4px;
}

.instagram-feed__item {
  flex: 1;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  min-width: 0;
}

.instagram-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.instagram-feed__item:hover img {
  opacity: 0.85;
}
