/* ==========================================================================
   Break the Ice Clo. — Design System
   ========================================================================== */

:root {
  --vintage-white: #F1E9DC;
  --page-cream: #FAF5EC;
  --rust-red: #7A2E27;
  --rust-red-dark: #5E211C;
  --washed-black: #1C1917;
  --ink: #262220;
  --line: rgba(28, 25, 23, 0.12);
  --line-on-dark: rgba(241, 233, 220, 0.18);

  --font-head: 'Fraunces', Georgia, serif;
  --font-logo: 'PT Serif', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius-sm: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page-cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
button { font-family: inherit; cursor: pointer; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-red);
}

/* ---------- Logo ---------- */
.logo {
  font-family: var(--font-logo);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 0.92;
  text-align: left;
  color: var(--rust-red);
}
.logo .logo-script {
  font-family: var(--font-logo);
  font-style: italic;
  font-weight: 700;
  font-size: 25px;
  display: block;
  color: var(--rust-red);
  margin: -2px 0 0;
}
.logo .logo-swash {
  display: block;
  color: var(--rust-red);
  margin: 1px 0 -3px 1px;
}
.logo .logo-clo {
  font-family: var(--font-logo);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 700;
  display: block;
  text-align: right;
  margin-right: 2px;
  color: var(--rust-red);
}
.logo.on-dark, .logo.on-dark .logo-clo, .logo.on-dark .logo-swash { color: var(--vintage-white); }
.logo.on-dark .logo-script { color: var(--vintage-white); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--page-cream);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { border-color: var(--rust-red); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-cta { padding: 10px 18px; font-size: 11px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--washed-black);
}
.mobile-panel { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--rust-red); color: var(--vintage-white); }
.btn-primary:hover { background: var(--rust-red-dark); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-dark { background: var(--washed-black); color: var(--vintage-white); }
.btn-dark:hover { opacity: 0.85; }
.btn-outline { background: transparent; border-color: currentColor; }
.btn-outline.on-dark { color: var(--vintage-white); }
.btn-outline.on-light { color: var(--washed-black); border-color: var(--washed-black); }
.btn-block { width: 100%; }

/* ---------- Announcement Bar ---------- */
.announce-bar {
  background: var(--washed-black);
  color: var(--vintage-white);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 12px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--washed-black);
  color: var(--vintage-white);
  padding: 64px 0 48px;
  text-align: center;
}
.hero .eyebrow { color: #D8A79A; letter-spacing: 0.2em; margin-bottom: 18px; display: block; }
.hero h1 {
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto 22px;
}
.hero p.sub {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241,233,220,0.7);
  margin-bottom: 34px;
}
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.scroll-cue { display: inline-flex; color: rgba(241,233,220,0.5); transition: color 0.15s ease; }
.scroll-cue:hover { color: var(--vintage-white); }
.scroll-cue .scroll-dot { animation: scroll-cue-move 1.6s ease-in-out infinite; }
@keyframes scroll-cue-move {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(9px); opacity: 0.3; }
  61% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ---------- Proof Band ---------- */
.proof-band {
  background: var(--vintage-white);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.proof-band span:nth-child(even) { color: rgba(38,34,32,0.35); font-weight: 400; }

/* ---------- Shop Section ---------- */
.shop-section { padding: 72px 0 90px; }
.shop-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.gallery-main {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--vintage-white);
  border: 1px solid var(--line);
  position: relative;
}
.gallery-main .photo-placeholder { height: 100%; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.gallery-thumbs button {
  flex: 1;
  aspect-ratio: 1/1;
  border-radius: 3px;
  border: 1px solid var(--line);
  background: var(--vintage-white);
  overflow: hidden;
  padding: 0;
  opacity: 0.6;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.gallery-thumbs button.active { opacity: 1; border-color: var(--rust-red); }
.gallery-thumbs .photo-placeholder { height: 100%; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* photo placeholder treatment (no real photography yet) */
.photo-placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(28,25,23,0.04) 0 2px, transparent 2px 14px),
    var(--swatch-bg, var(--vintage-white));
  color: rgba(28,25,23,0.45);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.photo-placeholder span { max-width: 160px; }

.waitlist-box { padding-top: 4px; }
.limited-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust-red);
  border: 1px solid var(--rust-red);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  margin-bottom: 12px;
}
.waitlist-box .product-title {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 10px;
}
.waitlist-box .product-statement {
  font-size: 14px;
  color: rgba(38,34,32,0.65);
  margin: 0 0 28px;
  max-width: 46ch;
}

.waitlist-form-wrap {
  background: var(--vintage-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  margin-bottom: 28px;
}
.waitlist-heading { font-size: 20px; margin-bottom: 8px; }
.waitlist-copy { font-size: 13px; color: rgba(38,34,32,0.65); margin: 0 0 20px; max-width: 42ch; }
.wl-field { margin-bottom: 14px; }
.wl-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.wl-field .optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(38,34,32,0.5); }
.wl-field input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--page-cream);
}
.wl-field input:focus { outline: 2px solid var(--rust-red); outline-offset: 1px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.wl-status { font-size: 13px; margin: 12px 0 0; min-height: 18px; }
.wl-status.success { color: #3B6B3E; font-weight: 600; }
.wl-status.error { color: var(--rust-red-dark); font-weight: 600; }

.buy-box-wrap {
  background: var(--vintage-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  margin-bottom: 28px;
}
.buy-box-wrap .price-row { margin-bottom: 20px; }
.buy-box-wrap .price { font-family: var(--font-head); font-size: 28px; font-weight: 700; }
.buy-box-wrap .option-group { margin-bottom: 20px; }
.buy-box-wrap .option-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.buy-box-wrap .option-value { font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(38,34,32,0.55); }
.buy-box-wrap .swatches { display: flex; gap: 10px; }
.buy-box-wrap .swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 0;
}
.buy-box-wrap .swatch.selected { outline: 2px solid var(--rust-red); outline-offset: 2px; }
.buy-box-wrap .size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.buy-box-wrap .size-btn {
  min-width: 46px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--page-cream);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.buy-box-wrap .size-btn.selected { border-color: var(--rust-red); background: var(--rust-red); color: var(--vintage-white); }
.buy-box-wrap .qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.buy-box-wrap .qty-stepper button {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--page-cream);
  font-size: 16px;
  cursor: pointer;
}
.buy-box-wrap .qty-stepper span { min-width: 32px; text-align: center; font-size: 14px; font-weight: 600; }

.spec-list { border-top: 1px solid var(--line); padding-top: 20px; }
.spec-list li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  padding: 6px 0;
  color: rgba(38,34,32,0.8);
}
.spec-list li::before { content: "—"; color: var(--rust-red); }

/* ---------- Statement Section ---------- */
.statement-section {
  background: var(--vintage-white);
  padding: 84px 0;
  text-align: center;
}
.statement-section blockquote {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.4vw, 38px);
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.25;
}
.statement-section .statement-copy {
  max-width: 520px;
  margin: 0 auto 40px;
  color: rgba(38,34,32,0.75);
  font-size: 15px;
}
.trait-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 260px));
  gap: 40px;
  justify-content: center;
  text-align: left;
}
.trait-cols h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--rust-red);
  margin-bottom: 12px;
}
.trait-cols li {
  font-size: 14px;
  padding: 4px 0;
  color: var(--ink);
}

/* ---------- Details / Fabric Section ---------- */
.details-section { padding: 84px 0; }
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 { font-size: clamp(26px, 3vw, 34px); margin-top: 10px; }
.section-heading .eyebrow { display: block; margin-bottom: 8px; }

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.detail-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 22px 18px;
  text-align: center;
}
.detail-card .icon { font-size: 22px; margin-bottom: 12px; }
.detail-card h3 { font-family: var(--font-body); font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.detail-card p { font-size: 12px; color: rgba(38,34,32,0.6); margin: 0; }

/* ---------- Branding / Print Section ---------- */
.print-section { background: var(--washed-black); color: var(--vintage-white); padding: 84px 0; }
.print-section .section-heading .eyebrow { color: #D8A79A; }
.print-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.print-card {
  border: 1px solid var(--line-on-dark);
  border-radius: 4px;
  padding: 32px;
}
.print-card .print-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D8A79A;
  margin-bottom: 16px;
}
.print-card .print-visual { --swatch-bg: transparent; aspect-ratio: 16/10; border: 1px dashed var(--line-on-dark); border-radius: 3px; margin-bottom: 16px; color: rgba(241,233,220,0.5); }
.print-card p.copy { font-size: 14px; color: rgba(241,233,220,0.75); margin: 0; }
.print-card .print-copy-text { font-family: var(--font-head); font-size: 20px; margin-bottom: 8px; }

/* ---------- Care / Packaging Strip ---------- */
.strip-section {
  background: var(--rust-red);
  color: var(--vintage-white);
  padding: 60px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.strip-col h3 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #F1D6CE;
}
.care-list { display: flex; gap: 24px; flex-wrap: wrap; }
.care-item { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.care-item .icon { font-size: 18px; }
.strip-col p { font-size: 14px; color: rgba(241,233,220,0.85); max-width: 40ch; margin: 0; }

/* ---------- FAQ ---------- */
.faq-section { padding: 56px 0 84px; background: var(--page-cream); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 4px;
  font-weight: 600;
  font-size: 15px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--rust-red);
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 4px 20px; font-size: 14px; color: rgba(38,34,32,0.75); }
.faq-item .faq-answer .link-btn { margin-top: 8px; display: inline-block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--page-cream);
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(38,34,32,0.55);
}
.footer-col p, .footer-col a { font-size: 14px; margin: 0 0 8px; display: block; }
.footer-col ul li { margin-bottom: 8px; font-size: 14px; }
.footer-taglines li { font-style: italic; font-family: var(--font-head); font-size: 15px; color: var(--rust-red); margin-bottom: 6px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: rgba(38,34,32,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Size Guide Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,25,23,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--page-cream);
  border-radius: 4px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
}
.modal-box h3 { margin-bottom: 4px; }
.modal-box .modal-sub { font-size: 13px; color: rgba(38,34,32,0.6); margin-bottom: 20px; }
.modal-close { float: right; background: none; border: none; font-size: 20px; }
table.size-table { width: 100%; border-collapse: collapse; font-size: 13px; }
table.size-table th, table.size-table td { padding: 10px 8px; text-align: center; border-bottom: 1px solid var(--line); }
table.size-table th:first-child, table.size-table td:first-child { text-align: left; }
table.size-table thead th { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(38,34,32,0.55); }
.modal-box .fit-note { font-size: 12px; color: rgba(38,34,32,0.55); margin-top: 16px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--washed-black);
  color: var(--vintage-white);
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 400;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Simple pages (About / Contact) ---------- */
.page-hero {
  background: var(--washed-black);
  color: var(--vintage-white);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); }
.prose-section { padding: 72px 0; }
.prose-section .container { max-width: 720px; }
.prose-section p { font-size: 16px; color: rgba(38,34,32,0.8); margin-bottom: 20px; }
.prose-section h2 { font-size: 24px; margin: 40px 0 16px; }
.about-audience { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 12px; }
.contact-card {
  background: var(--vintage-white);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  margin-top: 20px;
}
.contact-card a.email { font-family: var(--font-head); font-size: 22px; color: var(--rust-red); }
.contact-card .handle { margin-top: 10px; font-size: 14px; color: rgba(38,34,32,0.6); }

/* ---------- Sticky Buy Bar (scroll-triggered, both breakpoints) ---------- */
.sticky-buy-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--page-cream);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.sticky-buy-bar.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.sticky-buy-bar.suppressed { opacity: 0 !important; pointer-events: none !important; transform: translateY(100%) !important; }
.sticky-buy-bar .sb-info { display: flex; flex-direction: column; margin-right: auto; }
.sticky-buy-bar .sb-title { font-size: 13px; font-weight: 600; }
.sticky-buy-bar .sb-price { font-weight: 700; font-size: 15px; white-space: nowrap; }
.sticky-buy-bar .sb-actions { display: flex; gap: 8px; }
.sticky-buy-bar .btn { padding: 13px 18px; white-space: nowrap; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .shop-grid { grid-template-columns: 1fr; gap: 32px; }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .print-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trait-cols { grid-template-columns: 1fr; }
  .about-audience { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-panel {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0 16px;
    border-top: 1px solid var(--line);
  }
  .mobile-panel.open { display: flex; }
  .mobile-panel a { padding: 12px 4px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
  .hero { padding: 40px 0 32px; }
  .shop-section { padding: 44px 0 110px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .details-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .detail-card { padding: 16px 10px; }
  .care-list { gap: 16px; }
}

@media (max-width: 480px) {
  .sticky-buy-bar .sb-title { display: none; }
}

/* ==========================================================================
   VIP Gate (index.html) — single-view pre-launch page, no other content reachable
   ========================================================================== */
.gate-body {
  min-height: 100vh;
  background: var(--page-cream);
  display: flex;
  flex-direction: column;
}
.gate-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  border-bottom: 2px solid var(--rust-red);
}
.gate-badge {
  background: var(--rust-red);
  color: var(--vintage-white);
  border-color: var(--rust-red);
  margin-bottom: 0;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 6px 12px;
}
.gate-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 56px 40px 64px;
  animation: gate-fade-in 0.6s ease both;
}
@keyframes gate-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.gate-photo {
  aspect-ratio: 4/5;
  max-height: 76vh;
  border-radius: 6px;
  overflow: hidden;
  justify-self: center;
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px -20px rgba(28,25,23,0.28);
}
.gate-photo img { width: 100%; height: 100%; object-fit: cover; }
.gate-content { color: var(--ink); padding: 0; }
.gate-content .eyebrow { margin-bottom: 18px; display: block; letter-spacing: 0.2em; }
.gate-content h1 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--rust-red);
}
.gate-sub { font-size: 15px; color: rgba(38,34,32,0.7); margin: 0 0 32px; max-width: 42ch; }
.gate-content .wl-field { margin-bottom: 16px; }
.gate-content .wl-field input {
  background: var(--vintage-white);
  height: 50px;
  border-color: rgba(28,25,23,0.16);
  transition: border-color 0.15s ease;
}
.gate-content .wl-field input:hover { border-color: rgba(28,25,23,0.3); }
.gate-content #waitlistSubmit { height: 52px; letter-spacing: 0.1em; }
.gate-note { font-size: 12px; color: rgba(38,34,32,0.45); margin: 14px 0 0; }
.gate-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 32px 36px;
  font-size: 12px;
  color: rgba(38,34,32,0.4);
  border-top: 1px solid var(--line);
}
.footer-admin-link {
  color: inherit;
  text-decoration: none;
  cursor: default;
}
.gate-footer .gate-tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 14px;
  color: var(--rust-red);
  opacity: 0.7;
}

@media (max-width: 900px) {
  .gate-main { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
  .gate-photo { max-height: 46vh; width: 100%; max-width: 360px; }
  .gate-content { text-align: center; padding: 0; }
  .gate-sub { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .gate-header { padding: 20px 20px; }
  .gate-main { padding: 28px 20px 40px; }
  .gate-footer { padding: 20px 20px 28px; }
}
