/* ===== Yogis + Weirdos — shared styles ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amethyst: #cd00ff;
  --turquoise: #00aed6;
  --charcoal: #2e2e2e;
  --cream: #FAF7F2;
  --warm: #F5EFE6;
  --warm2: #EDE3D6;
  --peach: #FBEEE4;
  --cool: #E9F3F6;
  --cool2: #EFEAF8;
  --muted: #8c8c8c;
  --grad: linear-gradient(135deg, var(--turquoise), var(--amethyst));
  --hero-wash: linear-gradient(155deg, var(--warm) 0%, var(--cool2) 55%, var(--cool) 100%);
}

html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--charcoal); overflow-x: hidden; }
section[id], header[id] { scroll-margin-top: 84px; }

.serif { font-family: 'Cormorant Garamond', serif; }
.gradient-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* grain overlay for dark sections */
.grain::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── NAV ──────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px 56px; display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, box-shadow 0.5s, padding 0.4s;
}
nav.scrolled, nav.solid {
  background: rgba(250,247,242,0.96); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07); padding: 16px 56px;
}
.nav-logo-wrap { position: relative; height: 46px; display: flex; align-items: center; }
.nav-logo { height: 46px; display: block; transition: opacity 0.4s; position: absolute; top: 50%; transform: translateY(-50%); }
.nav-logo-light { opacity: 0; }
.nav-logo-dark { opacity: 1; }
.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  text-decoration: none; color: var(--charcoal); transition: color 0.3s; position: relative;
}
.nav-links a:hover { color: var(--amethyst); }
.nav-links a.active { color: var(--amethyst); }
.nav-cta {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; padding: 10px 24px;
  border: 1px solid var(--charcoal); color: var(--charcoal); background: transparent; text-decoration: none; transition: all 0.3s;
}
.nav-cta:hover { background: var(--amethyst); border-color: var(--amethyst); color: white !important; }

/* ── SHARED ELEMENTS ──────────────────────────── */
.eyebrow { display: block; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 32px; }
.btn-grad {
  display: inline-block; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  padding: 18px 46px; background: var(--grad); color: white; text-decoration: none; transition: opacity 0.3s, transform 0.3s;
}
.btn-grad:hover { opacity: 0.88; transform: translateY(-1px); }
.link-quiet {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--charcoal);
  text-decoration: none; border-bottom: 1px solid rgba(46,46,46,0.3); padding-bottom: 3px; transition: color 0.3s, border-color 0.3s;
}
.link-quiet:hover { color: var(--amethyst); border-color: var(--amethyst); }

/* ── MARQUEE ──────────────────────────────────── */
.marquee-strip { background: var(--grad); padding: 16px 0; overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 34s linear infinite; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.92); font-weight: 500; padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.85); flex-shrink: 0; }

/* ── PAGE HEADER (interior pages) ─────────────── */
.page-header { position: relative; background: var(--hero-wash); padding: 184px 56px 96px; text-align: center; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(205,0,255,0.12) 0%, transparent 68%); pointer-events: none; }
.page-header::after { content: ''; position: absolute; bottom: -40%; right: -8%; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(0,174,214,0.14) 0%, transparent 66%); pointer-events: none; }
.page-header .ph-eyebrow { color: var(--turquoise); margin-bottom: 22px; position: relative; z-index: 2; }
.page-header h1 { position: relative; z-index: 2; font-family: 'Cormorant Garamond', serif; font-size: clamp(50px, 6.4vw, 96px); font-weight: 300; color: var(--charcoal); line-height: 1.06; }
.page-header h1 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.page-header p { position: relative; z-index: 2; margin: 24px auto 0; max-width: 600px; font-size: 19px; line-height: 1.8; color: #5a5a5a; font-weight: 300; }

/* ── MANTRA ───────────────────────────────────── */
#mantra { background: var(--cream); padding: 144px 56px; }
.mantra-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.mantra-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 7vw, 104px); font-weight: 400; line-height: 1.18; color: var(--charcoal); font-style: italic; }
.mantra-quote em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.mantra-rule { width: 48px; height: 1px; background: var(--grad); margin: 44px auto 0; }

/* ── BE YOU ───────────────────────────────────── */
#be-you { background: var(--cool2); padding: 120px 56px; text-align: center; }
.be-you-q { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 5.2vw, 72px); font-weight: 300; line-height: 1.28; color: var(--charcoal); }
.be-you-q em { font-style: italic; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.be-you-attr { display: block; margin-top: 28px; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

/* ── WAITLIST ─────────────────────────────────── */
#waitlist { background: linear-gradient(135deg, rgba(233,243,246,0.93) 0%, rgba(239,234,248,0.9) 50%, rgba(251,238,228,0.93) 100%), url('photos/outdoor_landscape.jpg'); background-size: cover; background-position: center; padding: 120px 56px; text-align: center; position: relative; overflow: hidden; }
#waitlist::before { content: ''; position: absolute; top: -180px; left: 50%; transform: translateX(-50%); width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(205,0,255,0.10) 0%, transparent 70%); pointer-events: none; }
.wl-eyebrow { color: var(--turquoise); margin-bottom: 20px; }
#waitlist h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 4.8vw, 66px); font-weight: 300; color: var(--charcoal); line-height: 1.18; margin-bottom: 18px; }
#waitlist h2 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
#waitlist > p { font-size: 18px; color: #5a5a5a; font-weight: 300; margin-bottom: 52px; max-width: 440px; margin-left: auto; margin-right: auto; position: relative; z-index: 2; }
.wl-form { display: flex; max-width: 460px; margin: 0 auto; position: relative; z-index: 2; }
.wl-form input { flex: 1; padding: 16px 18px; font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 300; background: rgba(255,255,255,0.8); border: 1px solid rgba(46,46,46,0.18); border-right: none; color: var(--charcoal); outline: none; transition: border-color 0.3s; }
.wl-form input::placeholder { color: var(--muted); }
.wl-form input:focus { border-color: rgba(205,0,255,0.5); }
.wl-form button { padding: 16px 32px; background: var(--grad); border: none; font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; color: white; cursor: pointer; transition: opacity 0.3s; white-space: nowrap; }
.wl-form button:hover { opacity: 0.86; }
.wl-note { margin-top: 18px; font-size: 12px; color: var(--muted); letter-spacing: 0.05em; position: relative; z-index: 2; }

/* ── FOOTER ───────────────────────────────────── */
footer { background: var(--warm2); padding: 60px 56px 40px; }
.footer-top { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; padding-bottom: 40px; border-bottom: 1px solid rgba(46,46,46,0.12); }
.footer-logo { height: 40px; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #6a6a6a; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--amethyst); }
.footer-copy { max-width: 1160px; margin: 32px auto 0; font-size: 12px; color: var(--muted); letter-spacing: 0.06em; text-align: center; }

/* ── SCROLL REVEAL ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.12s; } .d2 { transition-delay: 0.24s; } .d3 { transition-delay: 0.36s; }

/* ===== HOME ===== */
#home-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(155deg, rgba(245,239,230,0.93) 0%, rgba(239,234,248,0.9) 52%, rgba(233,243,246,0.93) 100%), url('photos/team_june_2.jpg');
  background-size: cover; background-position: center 30%; overflow: hidden; padding: 120px 24px; }
#home-hero::before { content: ''; position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 760px; height: 760px; border-radius: 50%; background: radial-gradient(circle, rgba(205,0,255,0.14) 0%, transparent 62%); pointer-events: none; }
#home-hero::after { content: ''; position: absolute; bottom: -20%; right: -10%; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(0,174,214,0.16) 0%, transparent 62%); pointer-events: none; }
.home-hero-inner { position: relative; z-index: 3; max-width: 760px; }
.hero-kicker { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 36px; }
.hero-kicker .line { width: 38px; height: 1px; background: var(--grad); }
.hero-kicker span { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.home-logo { width: clamp(340px, 48vw, 600px); margin: 0 auto 34px; display: block; filter: drop-shadow(0 8px 30px rgba(205,0,255,0.18)); }
.home-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(54px, 7.2vw, 112px); font-weight: 300; line-height: 1.02; color: var(--charcoal); letter-spacing: -0.01em; }
.home-title em { font-style: italic; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.home-desc { font-size: 20px; line-height: 1.85; color: #5a5a5a; font-weight: 300; max-width: 540px; margin: 30px auto 42px; }
.home-actions { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.home-meta { margin-top: 56px; display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.home-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--amethyst); }

/* brand statement */
#statement { background: var(--cream); padding: 132px 56px; }
.statement-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.statement-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4.4vw, 66px); font-weight: 300; line-height: 1.22; color: var(--charcoal); }
.statement-inner h2 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.statement-inner p { margin-top: 28px; font-size: 20px; line-height: 1.95; color: #555; font-weight: 300; max-width: 680px; margin-left: auto; margin-right: auto; }

/* values trio */
#values { background: var(--cool); padding: 120px 56px; position: relative; overflow: hidden; }
.values-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(46,46,46,0.1); position: relative; z-index: 2; }
.value-cell { background: var(--cool); padding: 56px 36px; text-align: center; }
.value-cell .v-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 24px; color: var(--turquoise); margin-bottom: 18px; }
.value-cell h3 { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 400; color: var(--charcoal); margin-bottom: 16px; }
.value-cell h3 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.value-cell p { font-size: 16px; line-height: 1.8; color: #5a5a5a; font-weight: 300; }

/* ===== HOME TEE FEATURE (quirky) ===== */
#home-tee { background: var(--warm); padding: 132px 56px; overflow: hidden; }
.hometee-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
.hometee-text .ht-eyebrow { color: var(--amethyst); }
.hometee-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 5vw, 78px); font-weight: 300; line-height: 1.08; color: var(--charcoal); }
.hometee-text h2 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hometee-text .ht-sub { margin-top: 24px; font-size: 19px; line-height: 1.8; color: #555; font-weight: 300; max-width: 440px; }
.hometee-text .ht-cta { margin-top: 38px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hometee-text .ht-cta .btn-grad { color: #fff; }
.hometee-text .ht-cta .ht-link { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--charcoal); text-decoration: none; border-bottom: 1px solid rgba(46,46,46,0.3); padding-bottom: 3px; transition: color 0.3s, border-color 0.3s; }
.hometee-text .ht-cta .ht-link:hover { color: var(--amethyst); border-color: var(--amethyst); }
.hometee-photo { position: relative; }
.hometee-photo .img-frame { position: relative; overflow: hidden; }
.hometee-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; transition: transform 0.9s ease; }
.hometee-photo:hover img { transform: scale(1.04); }
.hometee-photo::before { content: ''; position: absolute; top: -16px; left: -16px; width: 52%; height: 52%; border: 1px solid rgba(0,174,214,0.4); pointer-events: none; z-index: 1; }
.hometee-photo .tee-badge { position: absolute; right: -18px; bottom: 30px; z-index: 3; background: var(--charcoal); color: #fff; padding: 14px 22px; box-shadow: 0 18px 50px rgba(0,0,0,0.3); }
.hometee-photo .tee-badge .tb-q { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; line-height: 1.2; }
.hometee-photo .tee-badge .tb-sub { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 6px; }
@media (max-width: 980px) { .hometee-grid { grid-template-columns: 1fr; gap: 44px; } }
@media (max-width: 880px) { #home-tee { padding: 76px 24px; } .hometee-photo::before { display: none; } .hometee-photo .tee-badge { right: 12px; bottom: 12px; } }

/* ===== STORY ===== */
#story-body, #story { position: relative; background: var(--cool); padding: 110px 56px; overflow: hidden; }
.story-grid { max-width: 1180px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 92px; align-items: center; }
.story-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 3.9vw, 60px); font-weight: 300; line-height: 1.14; color: var(--charcoal); margin-bottom: 30px; }
.story-text h2 em { font-style: italic; color: var(--amethyst); }
.story-text p { font-size: 18px; line-height: 1.9; color: #5a5a5a; font-weight: 300; margin-bottom: 18px; }
.story-text p strong { color: var(--charcoal); font-weight: 500; font-style: italic; }
.story-photo-wrap { position: relative; }
.story-photo-wrap .img-frame { position: relative; overflow: hidden; }
.story-photo-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 28%; display: block; transition: transform 0.9s ease; }
.story-photo-wrap:hover img { transform: scale(1.04); }
.story-photo-wrap .img-frame::after { content: ''; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,0.28); pointer-events: none; }
.story-photo-wrap .plate { position: absolute; left: -22px; bottom: 34px; z-index: 3; background: var(--cream); padding: 16px 24px; max-width: 240px; box-shadow: 0 18px 50px rgba(0,0,0,0.45); }
.story-photo-wrap .plate .p-q { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 21px; color: var(--charcoal); line-height: 1.25; }
.story-photo-wrap .plate .p-loc { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.story-photo-wrap::before { content: ''; position: absolute; top: -16px; right: -16px; width: 50%; height: 50%; border: 1px solid rgba(205,0,255,0.3); pointer-events: none; z-index: 1; }

/* ===== FOUNDERS ===== */
#founders-body, #founders { background: var(--warm); padding: 110px 56px; }
.founders-pair { max-width: 1080px; margin: 0 auto 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.founder-card { text-align: center; }
.founder-photo { position: relative; overflow: hidden; background: var(--warm2); }
.founder-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 20%; display: block; transition: transform 0.9s ease; }
.founder-card:hover .founder-photo img { transform: scale(1.04); }
.founder-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 500; color: var(--charcoal); margin-top: 24px; }
.founder-card .f-role { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 8px; }
.founder-card.t .f-role { color: var(--turquoise); }
.founder-card.a .f-role { color: var(--amethyst); }
.founders-together { position: relative; max-width: 560px; margin: 0 auto 56px; }
.founders-together .img-frame { position: relative; overflow: hidden; }
.founders-together img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 22%; display: block; transition: transform 0.9s ease; }
.founders-together:hover img { transform: scale(1.04); }
.founders-together .img-frame::after { content: ''; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,0.55); pointer-events: none; }
.founders-together::before { content: ''; position: absolute; top: -16px; left: -16px; width: 48%; height: 48%; border: 1px solid rgba(0,174,214,0.4); pointer-events: none; z-index: 1; }
.founders-together::after { content: ''; position: absolute; bottom: -16px; right: -16px; width: 48%; height: 48%; border: 1px solid rgba(205,0,255,0.4); pointer-events: none; z-index: 1; }
.founders-together .plate { position: absolute; left: 50%; transform: translateX(-50%); bottom: -26px; z-index: 3; background: var(--cream); padding: 12px 28px; box-shadow: 0 16px 44px rgba(0,0,0,0.16); white-space: nowrap; }
.founders-together .plate .p-names { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 24px; color: var(--charcoal); }
.founders-note { max-width: 720px; margin: 0 auto; text-align: center; }
.founders-note p { font-size: 20px; line-height: 1.95; color: #555; font-weight: 300; margin-bottom: 18px; }
.founders-note p em { font-style: italic; color: var(--amethyst); }

/* ===== TEES ===== */
#tees-body, #products { background: var(--cream); padding: 110px 56px; }
.tees-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.tee-card { position: relative; }
.tee-photo { position: relative; overflow: hidden; background: var(--warm2); }
.tee-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; transition: transform 0.9s ease; }
.tee-card:hover .tee-photo img { transform: scale(1.05); }
.tee-info { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-top: 20px; }
.tee-info h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 28px; color: var(--charcoal); }
.tee-info .tee-tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--turquoise); font-weight: 500; white-space: nowrap; }
.tee-card p { margin-top: 10px; font-size: 16px; line-height: 1.7; color: #666; font-weight: 300; }

/* ===== GALLERY / COMMUNITY ===== */
#gallery { position: relative; background: var(--cool2); padding: 100px 40px 116px; overflow: hidden; }
.gallery-grid { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: repeat(12, 1fr); gap: 10px; }
.gc { overflow: hidden; position: relative; }
.gc img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.gc:hover img { transform: scale(1.06); }
.gc.c8 { grid-column: span 8; } .gc.c4 { grid-column: span 4; } .gc.c6 { grid-column: span 6; }
.gc.c5 { grid-column: span 5; } .gc.c7 { grid-column: span 7; } .gc.c3 { grid-column: span 3; } .gc.c9 { grid-column: span 9; }
.gc.h-lg { height: 460px; } .gc.h-md { height: 300px; } .gc.h-sm { height: 220px; }

/* community feature (mauve set) */
#feature, #community { background: var(--warm); padding: 110px 56px; }
.feature-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature-photos .fp { overflow: hidden; }
.feature-photos .fp img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s ease; }
.feature-photos .fp:hover img { transform: scale(1.05); }
.feature-photos .fp.tall { grid-row: span 2; }
.feature-photos.single { display: block; position: relative; }
.feature-photos.single .fp { aspect-ratio: 4/5; }
.feature-photos.single .fp img { aspect-ratio: 4/5; }
.feature-photos.single::after { content: ''; position: absolute; bottom: -16px; right: -16px; width: 50%; height: 50%; border: 1px solid rgba(205,0,255,0.35); pointer-events: none; }
.feature-text .f-eyebrow { color: var(--amethyst); }
.feature-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4.1vw, 60px); font-weight: 300; color: var(--charcoal); line-height: 1.16; margin-bottom: 24px; }
.feature-text h2 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.feature-text p { font-size: 18px; line-height: 1.9; color: #555; font-weight: 300; margin-bottom: 18px; }

/* placeholder slot (ferrari) */
.slot { border: 1px dashed rgba(46,46,46,0.3); background: rgba(255,255,255,0.4); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; text-align: center; }
.slot span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); max-width: 180px; line-height: 1.6; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 980px) {
  .story-grid { grid-template-columns: 1fr; gap: 52px; }
  .feature-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 880px) {
  nav, nav.scrolled, nav.solid { padding: 16px 20px; }
  .nav-links { display: none; }
  #mantra, #be-you, #waitlist, #statement, #values, #story-body, #founders-body, #tees-body, #feature { padding: 76px 24px; }
  .page-header { padding: 140px 24px 72px; }
  .values-grid { grid-template-columns: 1fr; }
  .founders-pair { grid-template-columns: 1fr; gap: 28px; }
  .tees-grid { grid-template-columns: 1fr; }
  .story-photo-wrap::before { display: none; }
  .story-photo-wrap .plate { left: 16px; bottom: 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gc.c8,.gc.c4,.gc.c6,.gc.c5,.gc.c7,.gc.c3,.gc.c9 { grid-column: span 2; }
  .gc.h-lg,.gc.h-md,.gc.h-sm { height: 220px; }
  #gallery { padding: 72px 16px 88px; }
  footer { padding: 48px 20px 32px; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .wl-form { flex-direction: column; max-width: 320px; }
  .wl-form input { border-right: 1px solid rgba(255,255,255,0.14); border-bottom: none; }
}
