:root {
  --primary: #d4a5a5;
  --primary-dark: #b88b8b;
  --bg: #f8f4f0;
  --bg-alt: #ffffff;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --accent: #b8860b;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.06);
  --shadow-md: 0 0.5rem 1.75rem rgba(0,0,0,0.10);
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; display: block; }
.container { max-width: 75rem; margin: 0 auto; padding: 0 1.25rem; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  height: 5rem;
  background: rgba(248,244,240,0.95);
  backdrop-filter: blur(0.625rem);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1rem 1.5rem;
}
header.scrolled { box-shadow: var(--shadow); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; color: var(--primary-dark); }
.logo span { font-style: italic; color: var(--accent); }
.mobile-toggle { background: none; border: none; cursor: pointer; padding: 0.25rem; color: var(--text); }
.mobile-toggle span { display: block; width: 1.5rem; height: 2px; background: currentColor; margin: 5px 0; transition: all 0.3s; }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

nav ul {
  display: none;
  position: absolute; top: 4rem; left: 0; right: 0;
  background: var(--bg); flex-direction: column;
  padding: 1.25rem 1.5rem; gap: 1.125rem; text-align: center;
  box-shadow: var(--shadow-md); list-style: none;
}
nav ul.active { display: flex; }
nav a { font-weight: 500; font-size: 0.9rem; letter-spacing: 0.5px; color: var(--text-light); }
nav a:hover, nav a.active { color: var(--primary-dark); }
.nav-shop-btn { display: none; }

/* ── MOBILE SHOP FAB ── */
.mobile-shop-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 99;
  background: var(--primary); color: white;
  padding: 0.875rem 1.375rem; border-radius: 2rem;
  font-size: 0.85rem; font-weight: 500;
  box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.15);
  transition: background 0.3s, transform 0.2s;
}
.mobile-shop-fab:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ── HERO ── */
.hero { padding-top: 4.5rem; display: flex; flex-direction: column; }
.hero-image { position: relative; height: 60vw; min-height: 20rem; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-image-badge {
  position: absolute; bottom: 1.25rem; right: 1.25rem;
  background: white; border-radius: var(--radius);
  padding: 0.75rem 1rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.625rem;
}
.badge-icon { font-size: 1.3rem; }
.badge-text strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); }
.badge-text span { font-size: 0.72rem; color: var(--text-light); }

.hero-content { display: flex; flex-direction: column; padding: 80px 0 2.5rem; text-align: center; }
.hero-eyebrow { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; }
.hero-eyebrow span { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); }
.eyebrow-line { display: block; width: 2rem; height: 1px; background: var(--accent); }
.hero h1 { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 600; line-height: 1.15; color: var(--text); margin-bottom: 2rem; }
.hero h1 em { font-style: italic; color: var(--primary-dark); }
.hero p { font-size: 1rem; color: var(--text-light); margin-bottom: 2.5rem; line-height: 1.8; }
.hero-actions { display: flex; flex-direction: column; gap: 1.5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; background: var(--primary); color: white;
  font-weight: 500; border-radius: var(--radius); transition: all 0.3s;
  border: 2px solid transparent; font-family: var(--font-body); cursor: pointer;
  font-size: 0.9rem;
}
.btn:hover { background: transparent; color: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; background: transparent; color: var(--text-light);
 
  font-weight: 500; border-radius: var(--radius); transition: all 0.3s;
  border: 2px solid rgba(0,0,0,0.12); font-family: var(--font-body); font-size: 0.9rem;
}
.btn-outline:hover { border-color: var(--primary-dark); color: var(--primary-dark); }
.hero-stats {
  display: flex; text-align: center; gap: 1.75rem; margin-top: 2.25rem;
  padding-top: 1.75rem; border-top: 1px solid rgba(0,0,0,0.08); margin-inline-start: 0; padding-inline-start: 0;
}
.stat strong { display: block; font-family: var(--font-heading); font-size: 1.7rem; color: var(--text); }
.stat span { font-size: 0.72rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--text-light); }

/* ── MARQUEE ── */
.marquee-strip { background: var(--text); color: white; padding: 13px 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-block; animation: marquee 30s linear infinite; }
.marquee-inner span { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; margin: 0 1.5rem; opacity: 0.65; }
.marquee-inner em { color: var(--primary); font-style: normal; opacity: 1 !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION SHARED ── */
section { padding: 72px 0; }
.section-tag { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.625rem; display: block; text-align: center; }
.section-title { font-family: var(--font-heading); font-size: 2rem; text-align: center; margin-bottom: 0.75rem; color: var(--text); }
.section-title em { font-style: italic; color: var(--primary-dark); }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 3rem; line-height: 1.8; }

/* ── ABOUT ── */
#about { background: var(--bg-alt); }
.about-images { position: relative; height: 21.25rem; margin-bottom: 2.5rem; }
.about-img-main { position: absolute; top: 0; left: 0; width: 70%; height: 76%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 52%; height: 52%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 5px solid var(--bg-alt); }
.about-images img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: 46%; left: 63%; transform: translate(-50%,-50%);
  background: white; border-radius: 50%; width: 76px; height: 76px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); font-family: var(--font-heading);
  font-size: 0.6rem; color: var(--primary-dark); text-align: center; z-index: 10;
  border: 2px solid rgba(212,165,165,0.3);
}
.about-badge strong { font-size: 1rem; font-weight: 600; }
.about-text h2 { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.2; }
.about-text h2 em { font-style: italic; color: var(--primary-dark); }
.about-text p { color: var(--text-light); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; margin: 1.5rem 0; }
.value-pill { padding: 0.75rem 0.875rem; background: var(--bg); border-radius: var(--radius); border-left: 3px solid var(--primary); }
.value-pill strong { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 2px; color: var(--text); }
.value-pill p { margin: 0; font-size: 0.78rem; color: var(--text-light); }
.signature { font-family: var(--font-heading); font-style: italic; color: var(--primary-dark); font-size: 1.3rem; margin-top: 0.5rem; }

/* ── COLLECTIONS ── */
#collections { background: var(--bg); }
.collections-tabs { display: flex; gap: 0.5rem; margin-bottom: 2.25rem; flex-wrap: wrap; justify-content: center; }
.tab-btn {
  padding: 0.4375rem 1rem; font-size: 0.76rem; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 500; background: none; border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 1.5rem; cursor: pointer; color: var(--text-light);
  transition: all 0.25s; font-family: var(--font-body);
}
.tab-btn:hover, .tab-btn.active { background: var(--primary-dark); color: white; border-color: var(--primary-dark); }
.collection-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.collection-card { background: var(--bg-alt); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.collection-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-img-wrap { position: relative; overflow: hidden; height: 300px; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.collection-card:hover .card-img-wrap img { transform: scale(1.05); }
.card-season { position: absolute; top: 0.75rem; left: 0.75rem; background: rgba(248,244,240,0.92); border-radius: 1.25rem; padding: 0.25rem 0.75rem; font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary-dark); font-weight: 500; }
.card-hover-cta { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,0.92); padding: 0.875rem; text-align: center; font-weight: 500; font-size: 0.84rem; opacity: 0; transform: translateY(0.5rem); transition: all 0.3s; color: var(--text); }
.collection-card:hover .card-hover-cta { opacity: 1; transform: translateY(0); }
.card-body { padding: 1.125rem 1.25rem 1.375rem; }
.card-body h3 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 6px; color: var(--text); }
.card-body p { font-size: 0.83rem; color: var(--text-light); margin-bottom: 0.75rem; }
.card-meta { display: flex; justify-content: space-between; align-items: center; }
.card-price { font-size: 0.78rem; color: var(--accent); font-weight: 500; }
.card-arrow { width: 1.75rem; height: 1.75rem; border-radius: 50%; border: 1.5px solid rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: all 0.25s; color: var(--text-light); }
.collection-card:hover .card-arrow { background: var(--primary); color: white; border-color: var(--primary); }

/* ── LOOKBOOK ── */
#lookbook { background: var(--bg-alt); }
.lookbook-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; border-radius: var(--radius); overflow: hidden; margin-bottom: 2.25rem; }
.look-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; }
.look-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.look-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.look-item:hover img { transform: scale(1.06); }
.look-label { position: absolute; bottom: 0.75rem; left: 0.75rem; background: rgba(255,255,255,0.92); border-radius: var(--radius); padding: 5px 0.75rem; font-size: 0.74rem; font-weight: 500; color: var(--text); opacity: 0; transform: translateY(6px); transition: all 0.3s; }
.look-item:hover .look-label { opacity: 1; transform: translateY(0); }
.lookbook-footer { text-align: center; }
.lookbook-footer p { color: var(--text-light); margin-bottom: 1.125rem; font-size: 0.93rem; }

/* ── PROCESS ── */
#process { background: var(--bg); }
.process-img { border-radius: var(--radius); overflow: hidden; height: 37.5rem; box-shadow: var(--shadow-md); margin-bottom: 2.5rem; }
.process-img img { width: 100%; height: 100%; object-fit: cover; }
.process-step { display: flex; gap: 1.125rem; padding-bottom: 1.75rem; margin-bottom: 1.75rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.process-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 600; color: rgba(212,165,165,0.3); line-height: 1; flex-shrink: 0; width: 44px; }
.step-body h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 6px; color: var(--text); }
.step-body p { font-size: 0.86rem; color: var(--text-light); line-height: 1.75; }
.step-icon { font-size: 0.95rem; margin-bottom: 0.25rem; }

/* ── SIZING ── */
#sizing { background: var(--bg-alt); }
.sizing-left { margin-bottom: 2.5rem; }
.sizing-left h2 { font-family: var(--font-heading); font-size: 1.9rem; margin-bottom: 0.75rem; color: var(--text); }
.sizing-left h2 em { font-style: italic; color: var(--primary-dark); }
.sizing-left p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 1.25rem; line-height: 1.8; }
.size-chips { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.5rem; margin-bottom: 1.25rem; }
.size-chip { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--radius); font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: all 0.2s; color: var(--text); }
.size-chip:hover, .size-chip.active { background: var(--primary); color: white; border-color: var(--primary); }
.sizing-note { background: #fef9f0; border-radius: var(--radius); padding: 13px 1rem; font-size: 0.82rem; color: var(--text-light); border-left: 3px solid var(--accent); }
.sizing-note strong { color: var(--accent); }
.sizing-table-wrap { overflow-x: auto; }
.sizing-table { width: 100%; border-collapse: collapse; font-size: 0.83rem; }
.sizing-table th { text-align: left; padding: 11px 0.875rem; font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid rgba(0,0,0,0.07); font-weight: 500; }
.sizing-table td { padding: 11px 0.875rem; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--text-light); }
.sizing-table tr:hover td { background: #fef9f0; color: var(--text); }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--bg); }
.testimonial-feat-img { border-radius: var(--radius); overflow: hidden; height: 300px; box-shadow: var(--shadow-md); margin-bottom: 1.75rem; }
.testimonial-feat-img img { width: 100%; height: 100%; object-fit: cover; }
.stars { color: var(--accent); font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 0.875rem; }
.feat-quote { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 400; color: var(--text); line-height: 1.55; margin-bottom: 1.25rem; }
.feat-quote em { font-style: italic; color: var(--primary-dark); }
.client-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(0,0,0,0.07); }
.client-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(212,165,165,0.2); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1rem; color: var(--primary-dark); flex-shrink: 0; }
.client-name { font-weight: 500; font-size: 0.88rem; color: var(--text); }
.client-role { font-size: 0.76rem; color: var(--text-light); }
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.t-card { padding: 1.5rem; background: var(--bg-alt); border-radius: var(--radius); box-shadow: var(--shadow); border-top: 3px solid var(--primary); }
.t-card .stars { font-size: 0.82rem; margin-bottom: 0.625rem; }
.t-quote { font-style: italic; font-size: 0.88rem; color: var(--text-light); margin-bottom: 0.75rem; line-height: 1.75; }
.t-client { font-weight: 500; font-size: 0.8rem; color: var(--primary-dark); }
.t-sub { font-size: 0.73rem; color: var(--text-light); }

/* ── NEWSLETTER ── */
#contact {
  background: linear-gradient(135deg, #f8f4f0 0%, #f2ebe8 50%, #f8f4f0 100%);
  text-align: center; position: relative; overflow: hidden;
}
#contact::before { content: 'SG'; position: absolute; right: -1.25rem; top: -0.625rem; font-family: var(--font-heading); font-size: 10rem; font-weight: 600; color: rgba(212,165,165,0.07); pointer-events: none; user-select: none; line-height: 1; }
.newsletter-inner { position: relative; z-index: 1; }
.newsletter-inner h2 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 0.75rem; color: var(--text); }
.newsletter-inner h2 em { font-style: italic; color: var(--primary-dark); }
.newsletter-inner > p { color: var(--text-light); margin-bottom: 0.875rem; font-size: 0.95rem; line-height: 1.7; }
.newsletter-perks { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; margin-bottom: 1.75rem; }
.perk { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.perk-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.625rem; }
.newsletter-form input { padding: 13px 1.125rem; border: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem; background: white; outline: none; transition: border-color 0.25s; }
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form input::placeholder { color: #b0a8a4; }
.form-note { font-size: 0.73rem; color: var(--text-light); margin-top: 0.75rem; }

/* ── INSTAGRAM ── */
#instagram { background: var(--bg-alt); padding: 56px 0; }
.insta-header { text-align: center; margin-bottom: 1.125rem; }
.insta-header a { font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary-dark); font-weight: 500; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.insta-header a:hover { color: var(--accent); }
.insta-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.25rem; }
.insta-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay { position: absolute; inset: 0; background: rgba(58,58,58,0.38); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-size: 1.3rem; }
.insta-item:hover .insta-overlay { opacity: 1; }

/* ── FOOTER ── */
footer { background: var(--text); color: white; padding: 3.25rem 0 1.5rem; }
.footer-brand { margin-bottom: 2.25rem; }
.footer-brand .logo { color: white; display: block; margin-bottom: 0.75rem; }
.footer-brand .logo span { color: var(--primary); }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 17.5rem; }
.footer-social { display: flex; gap: 0.625rem; margin-top: 1.125rem; }
.social-btn { width: 2.125rem; height: 2.125rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; color: rgba(255,255,255,0.45); transition: all 0.25s; cursor: pointer; }
.social-btn:hover { border-color: var(--primary); color: var(--primary); }
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-col h5 { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5625rem; }
.footer-col a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: color 0.25s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; flex-direction: column; gap: 6px; padding-top: 1.375rem; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.76rem; color: rgba(255,255,255,0.3); }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(1.5rem); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.d1 { transition-delay: 0.1s; }
.fade-in.d2 { transition-delay: 0.2s; }
.fade-in.d3 { transition-delay: 0.3s; }

/* ════════════════════════════════
   MIN-WIDTH: 37.5rem
════════════════════════════════ */
@media (min-width: 37.5rem) {
  .hero-actions { flex-direction: row; }
  .newsletter-form { flex-direction: row; justify-content: center; }
  .newsletter-form input { width: 17.5rem; }
  .newsletter-perks { flex-direction: row; justify-content: center; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(6,1fr); }
  .footer-links-grid { grid-template-columns: repeat(3,1fr); }
}

/* ════════════════════════════════
   MIN-WIDTH: 48rem
════════════════════════════════ */
@media (min-width: 48rem) {
  .mobile-toggle { display: none; }
  .mobile-shop-fab { display: none; }
  nav {display: flex; align-items: center; justify-content: center; gap: 1.5rem;}
  nav ul { display: flex; position: static; background: none; flex-direction: row; padding: 0; gap: 1.75rem; box-shadow: none; }
  .nav-shop-btn { display: inline-block; font-size: 0.85rem; font-weight: 500; padding: 0.5625rem 1.375rem; background: var(--primary); color: white; border-radius: var(--radius); transition: background 0.3s, transform 0.2s; }
  .nav-shop-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

  .hero { flex-direction: row; min-height: 100vh; align-items: stretch; }
  .hero-content { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 100px 56px 80px 0; order: 1; }
  .hero-image { flex: 1; height: auto; min-height: 100vh; order: 2; }
  .hero-image-badge { bottom: 2.5rem; right: auto; left: -1rem; }
  .hero h1 { font-size: clamp(2.6rem, 4vw, 4rem); }
  .hero-actions { flex-direction: row; }

  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .about-images { height: 460px; margin-bottom: 0; }

  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .collection-card.featured { grid-column: span 2; }
  .collection-card.featured .card-img-wrap { height: 26.25rem; }

  .lookbook-grid { grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: 17.5rem 17.5rem; }
  .look-item { aspect-ratio: unset; }
  .look-item:first-child { grid-column: 1; grid-row: 1 / 3; aspect-ratio: unset; }

  .process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .process-img { height: 750px; margin-bottom: 0; }

  .sizing-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .sizing-left { margin-bottom: 0; }

  .testimonial-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(0,0,0,0.07); }
  .testimonial-feat-img { height: 26.25rem; margin-bottom: 0; }
  .client-row { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .testimonial-grid { grid-template-columns: repeat(3,1fr); margin-top: 3rem; }

  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand { margin-bottom: 0; }
  .footer-links-grid { display: contents; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ════════════════════════════════
   MIN-WIDTH: 64rem
════════════════════════════════ */
@media (min-width: 64rem) {
  .btn {
    padding: 0.4375rem 1.75rem;
  }
  header {padding-inline: 6rem;}
  .hero-eyebrow {justify-content: flex-start;}
  .hero-content { padding-left: max(1.25rem, calc((100vw - 1200px) / 2 + 1.25rem)); text-align: left;}
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  #contact::before { font-size: 16rem; }
}
