/* ═══════════════════════════════════════════════════════════
   East Wind Social Club — store stylesheet
   ═══════════════════════════════════════════════════════════ */
:root {
  --navy: #0F2A44; --navy-deep: #091C30;
  --cream: #F2EAD3; --paper: #F6F0DC; --paper-2: #EFE7CF;
  --signal: #B8323A; --signal-deep: #952028;
  --rope: #C9A66B; --rope-deep: #A98548;
  --ink: #1B2733; --ink-soft: #3B4A5A; --ink-mute: #6A7682;
  --line: rgba(27,39,51,0.14);
  --line-2: rgba(27,39,51,0.22);

  --f-display: "Bodoni Moda", serif;
  --f-script: "Pinyon Script", cursive;
  --f-body: "Cormorant Garamond", serif;
  --f-han: "Noto Serif SC", serif;

  --pad: clamp(20px, 5vw, 88px);
  --maxw: 1320px;
  --ann-h: 34px;
  --hdr-h: 74px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body); color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
button:disabled { cursor: not-allowed; }
img, svg { display: block; }
a { color: inherit; }

.ew-app { overflow-x: clip; }
.ew-main { min-height: 60vh; }
section { position: relative; }

/* ─────────── Shared type ─────────── */
.ew-kicker {
  display: inline-block; font-family: var(--f-display); font-weight: 500;
  font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--signal); margin: 0 0 20px;
}
.ew-kicker--gold { color: var(--rope-deep); }
.ew-sec-title {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(30px, 3.6vw, 50px); line-height: 1.02; letter-spacing: -0.02em;
  color: var(--navy); margin: 0;
}
.ew-sec-title--center { text-align: center; }
.ew-sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin: 0 0 40px; flex-wrap: wrap;
}
.ew-sec-link {
  font-family: var(--f-display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy);
  padding-bottom: 4px; border-bottom: 1px solid var(--rope); transition: gap .2s, color .2s;
}
.ew-sec-link:hover { color: var(--signal); border-color: var(--signal); }

/* ─────────── Buttons ─────────── */
.ew-btn {
  font-family: var(--f-display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase; line-height: 1;
  padding: 17px 32px; transition: transform .15s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.ew-btn:active { transform: translateY(1px); }
.ew-btn:disabled { opacity: .58; pointer-events: none; }
.ew-btn--full { width: 100%; }
.ew-btn--sm { padding: 13px 20px; font-size: 12px; }
.ew-btn--solid { background: var(--navy); color: var(--cream); }
.ew-btn--solid:hover { background: var(--signal); }
.ew-btn--solid-cream { background: var(--cream); color: var(--navy); }
.ew-btn--solid-cream:hover { background: #fff; }
.ew-btn--ghost { color: var(--navy); padding-left: 6px; padding-right: 6px; }
.ew-btn--ghost:hover { color: var(--signal); }
.ew-btn--line, .ew-btn--line-cream {
  padding: 0 0 5px; font-size: 13px; border-bottom: 1px solid var(--rope);
  align-self: flex-start;
}
.ew-btn--line { color: var(--navy); }
.ew-btn--line:hover { color: var(--signal); border-color: var(--signal); }
.ew-btn--line-cream { color: var(--cream); border-color: var(--rope); }
.ew-btn--line-cream:hover { color: #fff; }

/* ─────────── Announcement ─────────── */
.ew-announce {
  height: var(--ann-h); background: var(--navy-deep); color: var(--cream);
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--f-display); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; overflow: hidden;
}
.ew-announce__dot { color: var(--rope); }
.ew-announce__text { animation: annIn .6s ease; }
@keyframes annIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ─────────── Header ─────────── */
.ew-header {
  position: sticky; top: 0; z-index: 60; height: var(--hdr-h);
  background: rgba(246,240,220,0.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.ew-header.is-scrolled { border-color: var(--line); background: rgba(246,240,220,0.94); }
.ew-nav {
  max-width: var(--maxw); margin: 0 auto; height: 100%; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.ew-nav__group { display: flex; align-items: center; gap: 30px; }
.ew-nav__group--right { justify-content: flex-end; }
.ew-nav__link {
  font-family: var(--f-display); font-weight: 500; font-size: 12.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy);
  padding: 6px 0; position: relative; transition: color .2s;
}
.ew-nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--signal); transition: right .25s ease;
}
.ew-nav__link:hover { color: var(--signal); }
.ew-nav__link:hover::after, .ew-nav__link.is-active::after { right: 0; }
.ew-nav__brand { display: flex; align-items: center; gap: 12px; }
.ew-nav__wordmark {
  display: flex; flex-direction: column; line-height: 0.9; white-space: nowrap;
  font-family: var(--f-script); font-size: 23px; color: var(--navy);
  padding-bottom: 2px;
}
.ew-nav__wordmark em {
  font-family: var(--f-display); font-style: normal; font-size: 8px;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--rope-deep);
  margin-top: 6px; padding-left: 2px;
}
.ew-nav__icon, .ew-nav__cart { color: var(--navy); position: relative; padding: 6px; transition: color .2s; }
.ew-nav__icon:hover, .ew-nav__cart:hover { color: var(--signal); }
.ew-nav__cart-count {
  position: absolute; top: -3px; right: -4px; min-width: 16px; height: 16px;
  padding: 0 4px; border-radius: 9px; background: var(--signal); color: var(--cream);
  font-family: var(--f-display); font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

/* ─────────── Layout helpers ─────────── */
.ew-home > section, .ew-page > section,
.ew-strip, .ew-ribbon, .ew-look { padding-left: var(--pad); padding-right: var(--pad); }
.ew-grid { display: grid; gap: clamp(18px, 2.4vw, 34px); max-width: var(--maxw); margin: 0 auto; }
.ew-grid--4 { grid-template-columns: repeat(4, 1fr); }
.ew-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ─────────── Product card ─────────── */
.ew-card { display: flex; flex-direction: column; }
.ew-card__media {
  position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden;
  display: block; padding: 0; border: 1px solid var(--line);
}
.ew-card__garment {
  position: absolute; inset: 6% 8%; transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.ew-product-img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.ew-product-fallback { width: 100%; height: 100%; display: grid; place-items: center; }
.ew-card:hover .ew-card__garment { transform: scale(1.045) translateY(-6px); }
.no-hover .ew-card:hover .ew-card__garment { transform: none; }
.garment-svg { width: 100%; height: 100%; }
.ew-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--f-display); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cream); background: var(--signal);
  padding: 5px 11px;
}
.ew-card__quickadd {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3;
  opacity: 0; transform: translateY(10px); transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.ew-card__quickadd.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.ew-card__body { display: block; text-align: left; padding: 16px 2px 0; }
.ew-card__row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.ew-card__name {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 24px; color: var(--navy); margin: 0; letter-spacing: -0.01em;
}
.ew-card__price { font-family: var(--f-display); font-size: 17px; color: var(--ink-soft); }
.ew-card__meta { display: flex; align-items: center; gap: 9px; margin-top: 5px; }
.ew-card__sub {
  font-family: var(--f-display); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute);
}
.ew-card__sw { width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--line-2); margin-left: auto; }
.ew-card__cw { font-size: 15px; font-style: italic; color: var(--ink-soft); }

/* ═══════════════ HERO ═══════════════ */
.ew-hero {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: clamp(36px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 88px);
  display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.ew-eyebrow {
  font-family: var(--f-display); font-weight: 500; font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--rope-deep);
}
.ew-hero__title {
  font-family: var(--f-display); font-weight: 400; font-size: clamp(52px, 7vw, 108px);
  line-height: 0.92; letter-spacing: -0.03em; color: var(--navy); margin: 22px 0 24px;
}
.ew-hero__title em { font-style: italic; color: var(--signal); }
.ew-hero__lede {
  font-size: clamp(19px, 1.5vw, 23px); line-height: 1.5; color: var(--ink-soft);
  max-width: 30em; margin: 0 0 30px; text-wrap: pretty;
}
.ew-hero__cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.ew-hero__deal { margin-top: 40px; }

.ew-hero__stage { position: relative; aspect-ratio: 5 / 6; }
.ew-hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background: linear-gradient(160deg, #16344f, #0c2236);
  border: 1px solid var(--line-2);
}
.ew-hero__float {
  position: absolute; left: -6%; bottom: -5%; width: 47%; z-index: 3;
  border: 1px solid var(--line-2); box-shadow: 0 24px 50px -24px rgba(15,42,68,0.5);
}
.ew-hero__floatg { aspect-ratio: 4 / 5; position: relative; }
.ew-hero__floatg .garment-svg { position: absolute; inset: 5% 8%; width: 84%; height: 90%; }
.ew-hero__floatbtn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 12px 15px; background: var(--cream); border-top: 1px solid var(--line);
  font-family: var(--f-display); font-style: italic; font-size: 17px; color: var(--navy);
}
.ew-hero__floatbtn em { font-style: normal; font-size: 13px; letter-spacing: 0.06em; color: var(--signal); }
.ew-hero__floatbtn:hover em { text-decoration: underline; }
.ew-hero__seal {
  position: absolute; top: -22px; right: -14px; z-index: 4;
  background: var(--paper); border-radius: 50%; padding: 14px;
  box-shadow: 0 10px 26px -12px rgba(15,42,68,0.45);
}

/* ─────────── Deal hand (tiles) ─────────── */
.ew-deal { }
.ew-deal__rail { display: flex; gap: 10px; }
.ew-tile {
  width: 52px; height: 72px; padding: 0; perspective: 600px; background: none;
  transform: translateY(0); transition: transform .45s cubic-bezier(.2,.8,.3,1);
}
.ew-tile.is-dealt { transform: translateY(-8px); }
.ew-tile__inner {
  display: block; width: 100%; height: 100%; position: relative;
  transform-style: preserve-3d; transition: transform .55s cubic-bezier(.4,.1,.2,1);
}
.ew-tile.is-dealt .ew-tile__inner { transform: rotateY(180deg); }
.ew-tile__back, .ew-tile__face {
  position: absolute; inset: 0; backface-visibility: hidden;
  display: flex; align-items: center; justify-content: center;
  border-radius: 7px; border: 1px solid var(--navy);
}
.ew-tile__back { background: var(--navy); }
.ew-tile__face {
  background: var(--cream); transform: rotateY(180deg);
  box-shadow: inset 0 -3px 0 rgba(15,42,68,0.12);
}
.ew-tile__char { font-family: var(--f-han); font-weight: 700; font-size: 38px; line-height: 1; }
.ew-deal__cap {
  margin: 16px 0 0; font-family: var(--f-display); font-style: italic;
  font-size: 16px; color: var(--ink-mute);
}

/* ═══════════════ STRIP ═══════════════ */
.ew-strip { padding-top: clamp(40px, 5vw, 70px); padding-bottom: clamp(40px, 5vw, 70px); border-top: 1px solid var(--line); }

/* ═══════════════ STORY BAND ═══════════════ */
.ew-story {
  background: var(--navy); color: var(--cream);
  padding: clamp(56px, 8vw, 120px) var(--pad);
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.ew-story__seal { display: flex; justify-content: center; opacity: 0.96; }
.ew-story__title {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(32px, 4vw, 56px); line-height: 1.04; color: var(--cream);
  margin: 0 0 24px; letter-spacing: -0.02em;
}
.ew-story__copy .ew-kicker--gold { color: var(--rope); }
.ew-story__copy p { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.55; color: rgba(242,234,211,0.86); margin: 0 0 18px; max-width: 40em; }
.ew-story__sig { font-family: var(--f-display); font-style: italic; color: var(--rope) !important; font-size: 22px !important; margin-bottom: 28px !important; }

/* ═══════════════ COLOR RIBBON ═══════════════ */
.ew-ribbon { padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(48px, 6vw, 88px); text-align: center; }
.ew-ribbon .ew-kicker { color: var(--signal); }
.ew-swatches {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(18px, 3vw, 44px);
  margin-top: 44px; max-width: var(--maxw); margin-left: auto; margin-right: auto;
}
.ew-swatch { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ew-swatch__sw {
  width: clamp(54px, 6vw, 78px); height: clamp(54px, 6vw, 78px); border-radius: 50%;
  border: 1px solid var(--line-2); transition: transform .25s;
}
.ew-swatch:hover .ew-swatch__sw { transform: scale(1.08); }
.ew-swatch__nm { font-family: var(--f-display); font-style: italic; font-size: 16px; color: var(--ink-soft); }

/* ═══════════════ CLUB BAND ═══════════════ */
.ew-club-band {
  background: var(--signal);
  background-image: radial-gradient(circle at 50% -40%, #c5424a, var(--signal) 55%);
  color: var(--cream); padding: clamp(56px, 8vw, 110px) var(--pad); text-align: center;
}
.ew-club-band__inner { max-width: 760px; margin: 0 auto; }
.ew-club-band .ew-kicker--gold { color: #F2D9B0; }
.ew-club-band__title {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(34px, 4.4vw, 60px); line-height: 1.02; margin: 0 0 22px; letter-spacing: -0.02em;
}
.ew-club-band p { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.5; color: rgba(242,234,211,0.92); margin: 0 auto 32px; max-width: 38em; }
.ew-club-band__cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.ew-club-band__note { font-family: var(--f-display); font-style: italic; font-size: 15px; color: #F2D9B0; }

/* ═══════════════ LOOKBOOK ═══════════════ */
.ew-look { padding-top: clamp(48px, 6vw, 84px); padding-bottom: clamp(56px, 7vw, 100px); }
.ew-look__grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 240px 240px;
  gap: clamp(14px, 1.8vw, 22px); max-width: var(--maxw); margin: 0 auto;
}
.ew-look__a { grid-row: 1 / 3; }
.ew-look__b { grid-column: 2 / 4; }
.ew-look__c { }
.ew-look__grid image-slot {
  width: 100%; height: 100%; background: linear-gradient(150deg, #e7dcc2, #ded2b4);
  border: 1px solid var(--line);
}

/* ═══════════════ PAGE / SHOP ═══════════════ */
.ew-page { max-width: var(--maxw); margin: 0 auto; padding: clamp(28px, 4vw, 56px) var(--pad) 0; }
.ew-pagehead { text-align: center; max-width: 720px; margin: 0 auto clamp(34px, 4vw, 52px); }
.ew-pagehead__title {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(40px, 5.5vw, 78px); color: var(--navy); margin: 14px 0 18px; letter-spacing: -0.025em;
}
.ew-pagehead__lede { font-size: clamp(18px, 1.4vw, 21px); line-height: 1.5; color: var(--ink-soft); margin: 0; text-wrap: pretty; }
.ew-filter {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding-bottom: 26px; margin-bottom: 38px; border-bottom: 1px solid var(--line);
}
.ew-chip {
  font-family: var(--f-display); font-weight: 500; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-soft); padding: 9px 18px;
  border: 1px solid var(--line-2); border-radius: 40px; transition: all .2s;
}
.ew-chip:hover { border-color: var(--navy); color: var(--navy); }
.ew-chip.is-active { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.ew-filter__count { margin-left: auto; font-family: var(--f-display); font-style: italic; font-size: 16px; color: var(--ink-mute); }
.ew-shopgrid { padding-bottom: clamp(48px, 6vw, 90px); }
.ew-commerce-alert {
  max-width: 760px; margin: 0 auto 28px; padding: 13px 16px; border: 1px solid rgba(184,50,58,.35);
  background: rgba(184,50,58,.06); color: var(--signal-deep); font-family: var(--f-display); font-size: 14px;
}

/* ═══════════════ PDP ═══════════════ */
.ew-back {
  font-family: var(--f-display); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 24px; transition: color .2s;
}
.ew-back:hover { color: var(--signal); }
.ew-pdp__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.ew-pdp__media { position: sticky; top: calc(var(--hdr-h) + 20px); }
.ew-pdp__hero {
  position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--line); overflow: hidden;
}
.ew-pdp__hero .garment-svg { position: absolute; inset: 5% 8%; width: 84%; height: 90%; }
.ew-pdp__thumbs { display: flex; gap: 12px; margin-top: 14px; }
.ew-pdp__thumb {
  width: 84px; height: 100px; border: 1px solid var(--line); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: 0;
}
.ew-pdp__thumb.is-active { border-color: var(--navy); }
.ew-pdp__thumb .garment-svg { position: absolute; inset: 6%; width: 88%; height: 88%; }
.ew-pdp__thumblabel { font-family: var(--f-han); font-weight: 700; font-size: 40px; color: var(--cream); }
.ew-pdp__thumb--slot { background: linear-gradient(150deg, #e7dcc2, #ded2b4); }

.ew-pdp__crumbs {
  display: flex; justify-content: space-between; font-family: var(--f-display);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.ew-pdp__crumbs span:first-child { color: var(--signal); }
.ew-pdp__run { color: var(--ink-mute); }
.ew-pdp__name {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(40px, 4.6vw, 62px); color: var(--navy); margin: 14px 0 8px; letter-spacing: -0.025em;
}
.ew-pdp__tag { font-family: var(--f-display); font-style: italic; font-size: 21px; color: var(--rope-deep); margin: 0 0 18px; }
.ew-pdp__price { font-family: var(--f-display); font-size: 26px; color: var(--navy); margin-bottom: 22px; }
.ew-pdp__story { font-size: 19px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 30px; padding-bottom: 30px; border-bottom: 1px solid var(--line); text-wrap: pretty; }
.ew-pdp__block { margin-bottom: 26px; }
.ew-pdp__blabel {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 13px;
  font-family: var(--f-display); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft);
}
.ew-pdp__blabel em { font-style: italic; letter-spacing: 0; text-transform: none; font-size: 17px; color: var(--navy); }
.ew-pdp__blabel a { font-size: 11px; color: var(--ink-mute); text-decoration: underline; text-underline-offset: 3px; }
.ew-pdp__sws { display: flex; gap: 11px; }
.ew-pdp__sw {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2);
  padding: 0; position: relative; transition: transform .15s;
}
.ew-pdp__sw:hover { transform: scale(1.1); }
.ew-pdp__sw.is-active { box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--navy); }
.ew-pdp__sizes { display: flex; gap: 10px; flex-wrap: wrap; }
.ew-size {
  min-width: 52px; height: 48px; padding: 0 14px; border: 1px solid var(--line-2);
  font-family: var(--f-display); font-size: 15px; color: var(--navy); transition: all .15s;
}
.ew-size:hover { border-color: var(--navy); }
.ew-size.is-active { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.ew-size.is-err { border-color: var(--signal); }
.ew-size:disabled, .ew-size.is-soldout { opacity: .36; text-decoration: line-through; }
.ew-pdp__errmsg { display: block; margin-top: 10px; font-family: var(--f-display); font-style: italic; font-size: 14px; color: var(--signal); }
.ew-pdp__buy { display: flex; gap: 12px; margin: 30px 0 14px; }
.ew-pdp__ship { font-family: var(--f-display); font-size: 13px; letter-spacing: 0.04em; color: var(--ink-mute); margin: 0 0 30px; }
.ew-pdp__accs { border-top: 1px solid var(--line); }

/* Qty stepper */
.ew-qty { display: flex; align-items: center; border: 1px solid var(--line-2); }
.ew-qty button { width: 38px; height: 38px; font-size: 18px; color: var(--navy); transition: background .15s; }
.ew-qty button:hover { background: rgba(15,42,68,0.06); }
.ew-qty span { min-width: 30px; text-align: center; font-family: var(--f-display); font-size: 16px; }
.ew-qty--lg button { width: 50px; height: 56px; }
.ew-qty--lg span { font-size: 18px; min-width: 36px; }

/* Accordion */
.ew-acc { border-bottom: 1px solid var(--line); }
.ew-acc__head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-family: var(--f-display); font-size: 14px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy);
}
.ew-acc__pm { font-size: 20px; color: var(--rope-deep); }
.ew-acc__body { padding: 0 0 20px; }
.ew-acc__body p { font-size: 18px; line-height: 1.55; color: var(--ink-soft); margin: 0; text-wrap: pretty; }
.ew-pdp__list { list-style: none; margin: 0; padding: 0; }
.ew-pdp__list li { display: flex; gap: 14px; padding: 7px 0; font-size: 18px; color: var(--ink); }
.ew-pdp__list li span { min-width: 88px; font-family: var(--f-display); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); padding-top: 4px; }
.ew-related { margin-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(48px, 6vw, 90px); border-top: 1px solid var(--line); padding-top: clamp(40px, 5vw, 64px); }

/* ═══════════════ THE LINE ═══════════════ */
.ew-drophero { text-align: center; max-width: 800px; margin: 0 auto clamp(40px, 5vw, 72px); display: flex; flex-direction: column; align-items: center; }
.ew-drophero__title { font-family: var(--f-display); font-weight: 400; font-size: clamp(52px, 7vw, 100px); color: var(--navy); margin: 14px 0 22px; }
.ew-drophero__title em { font-style: italic; }
.ew-drophero__lede { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55; color: var(--ink-soft); margin: 0 0 30px; text-wrap: pretty; }
.ew-linelist { display: flex; flex-direction: column; gap: clamp(40px, 6vw, 96px); padding-bottom: clamp(56px, 7vw, 100px); }
.ew-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.ew-row__media {
  aspect-ratio: 4 / 5; border: 1px solid var(--line); position: relative; overflow: hidden; padding: 0;
}
.ew-row__media .garment-svg { position: absolute; inset: 5% 8%; width: 84%; height: 90%; transition: transform .5s; }
.ew-row__media:hover .garment-svg { transform: scale(1.04); }
.ew-row--flip .ew-row__media { order: 2; }
.ew-row__no { font-family: var(--f-display); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--signal); }
.ew-row__name { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: clamp(34px, 4vw, 54px); color: var(--navy); margin: 14px 0 10px; letter-spacing: -0.02em; }
.ew-row__tag { font-family: var(--f-display); font-style: italic; font-size: 21px; color: var(--rope-deep); margin: 0 0 16px; }
.ew-row__story { font-size: 19px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 20px; max-width: 34em; text-wrap: pretty; }
.ew-row__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; font-family: var(--f-display); font-style: italic; font-size: 17px; color: var(--ink-soft); }
.ew-row__dot { color: var(--rope); }

/* ═══════════════ STORY PAGE ═══════════════ */
.ew-storypage__hero { text-align: center; padding: clamp(20px, 3vw, 40px) 0 clamp(40px, 5vw, 64px); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ew-storypage__tag { font-family: var(--f-display); font-style: italic; font-size: 24px; color: var(--rope-deep); margin: 0; }
.ew-storypage__lead { max-width: 760px; margin: 0 auto clamp(48px, 6vw, 80px); text-align: center; }
.ew-storypage__lead p { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.4; color: var(--navy); margin: 0; text-wrap: pretty; }
.ew-storypage__why { display: grid; grid-template-columns: 0.6fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; padding: clamp(40px, 5vw, 64px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ew-storypage__char { display: flex; justify-content: center; }
.ew-storypage__char span { font-family: var(--f-han); font-weight: 700; font-size: clamp(160px, 22vw, 280px); color: var(--signal); line-height: 0.8; }
.ew-storypage__why h2 { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: clamp(28px, 3.4vw, 46px); color: var(--navy); margin: 0 0 18px; letter-spacing: -0.02em; }
.ew-storypage__why p { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55; color: var(--ink-soft); margin: 0; text-wrap: pretty; }
.ew-voice { text-align: center; padding: clamp(48px, 6vw, 84px) 0 clamp(56px, 7vw, 100px); display: flex; flex-direction: column; align-items: center; }
.ew-voice__list { margin: 14px 0 36px; max-width: 880px; }
.ew-voice__line { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: clamp(26px, 3.2vw, 44px); line-height: 1.25; color: var(--navy); padding: 16px 0; border-bottom: 1px solid var(--line); margin: 0; }
.ew-voice__line span { color: var(--rope-deep); }

/* Founder narrative */
.ew-storynarr {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px);
  max-width: 980px; margin: 0 auto; padding: clamp(36px, 4vw, 56px) 0 clamp(44px, 5vw, 72px);
}
.ew-storynarr__col p { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.62; color: var(--ink-soft); margin: 0 0 20px; text-wrap: pretty; }
.ew-storynarr__sign { font-family: var(--f-display); font-style: italic; font-size: 26px !important; color: var(--navy) !important; line-height: 1.3 !important; }
.ew-storynarr__sign span { display: block; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rope-deep); margin-top: 8px; }

/* Give-back band */
.ew-give {
  background: var(--navy); color: var(--cream); text-align: center;
  margin: clamp(40px, 5vw, 64px) calc(-1 * var(--pad)) 0;
  padding: clamp(52px, 7vw, 96px) var(--pad);
  display: flex; flex-direction: column; align-items: center;
}
.ew-give__seal { margin-bottom: 22px; }
.ew-give .ew-kicker--gold { color: var(--rope); }
.ew-give__title { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: clamp(30px, 4vw, 52px); line-height: 1.05; margin: 0 0 22px; letter-spacing: -0.02em; max-width: 16em; }
.ew-give__body { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.6; color: rgba(242,234,211,0.86); margin: 0; max-width: 36em; text-wrap: pretty; }

.ew-storycta { text-align: center; padding: clamp(48px, 6vw, 88px) 0 clamp(56px, 7vw, 100px); }

/* ═══════════════ CLUB PAGE ═══════════════ */
.ew-clubpage { }
.ew-clubhero { text-align: center; max-width: 760px; margin: 0 auto clamp(44px, 5vw, 72px); display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ew-clubhero__title { font-family: var(--f-display); font-weight: 400; font-style: italic; font-size: clamp(44px, 6vw, 84px); color: var(--navy); margin: 6px 0 14px; letter-spacing: -0.025em; }
.ew-clubhero__lede { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55; color: var(--ink-soft); margin: 0; text-wrap: pretty; }
.ew-clubhero__seats { margin-top: 8px; font-family: var(--f-display); font-style: italic; font-size: 18px; color: var(--ink-mute); }
.ew-clubhero__seats strong { color: var(--signal); font-weight: 600; }
.ew-perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 32px); padding: clamp(36px, 4vw, 56px) 0; border-top: 1px solid var(--line); }
.ew-perk { border-top: 2px solid var(--signal); padding-top: 18px; }
.ew-perk__no { font-family: var(--f-display); font-size: 13px; letter-spacing: 0.2em; color: var(--rope-deep); }
.ew-perk h3 { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: 25px; color: var(--navy); margin: 10px 0 10px; }
.ew-perk p { font-size: 17px; line-height: 1.5; color: var(--ink-soft); margin: 0; text-wrap: pretty; }
.ew-join { padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 7vw, 100px); display: flex; justify-content: center; }
.ew-join__card { width: 100%; max-width: 520px; background: var(--navy); color: var(--cream); padding: clamp(34px, 4vw, 52px); text-align: center; }
.ew-join__card .ew-kicker { color: var(--rope); }
.ew-join__price { margin: 4px 0 26px; }
.ew-join__price span { font-family: var(--f-display); font-style: italic; font-size: 54px; color: var(--cream); }
.ew-join__price em { display: block; font-family: var(--f-display); font-style: italic; font-size: 16px; color: var(--rope); margin-top: 4px; }
.ew-join__form { display: flex; flex-direction: column; gap: 12px; }
.ew-join__form input, .ew-news input {
  width: 100%; padding: 15px 16px; background: rgba(242,234,211,0.06); border: 1px solid rgba(242,234,211,0.28);
  color: var(--cream); font-family: var(--f-body); font-size: 17px;
}
.ew-join__form input::placeholder { color: rgba(242,234,211,0.5); }
.ew-join__form input:focus { outline: none; border-color: var(--rope); }
.ew-join__fine { font-family: var(--f-display); font-style: italic; font-size: 14px; color: rgba(242,234,211,0.6); margin: 16px 0 0; }

/* ═══════════════ CART DRAWER ═══════════════ */
.ew-scrim { position: fixed; inset: 0; z-index: 80; background: rgba(9,28,48,0.42); opacity: 0; pointer-events: none; transition: opacity .35s; }
.ew-scrim.is-open { opacity: 1; pointer-events: auto; }
.ew-cart {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90; width: min(440px, 92vw);
  background: var(--paper); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.4,.1,.2,1);
  box-shadow: -20px 0 50px -30px rgba(9,28,48,0.5);
}
.ew-cart.is-open { transform: none; }
.ew-cart__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.ew-cart__title { font-family: var(--f-display); font-style: italic; font-size: 24px; color: var(--navy); }
.ew-cart__title em { font-style: normal; font-size: 15px; color: var(--ink-mute); }
.ew-cart__close { color: var(--navy); padding: 4px; }
.ew-cart__close:hover { color: var(--signal); }
.ew-cart__ship { padding: 16px 24px; background: var(--paper-2); }
.ew-cart__ship p { margin: 0 0 10px; font-family: var(--f-display); font-style: italic; font-size: 15px; color: var(--ink-soft); }
.ew-cart__ship strong { color: var(--signal); font-weight: 600; }
.ew-cart__track { height: 3px; background: rgba(27,39,51,0.12); }
.ew-cart__fill { height: 100%; background: var(--rope); transition: width .4s; }
.ew-cart__body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.ew-cart__empty { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 60px 20px; text-align: center; }
.ew-cart__empty p { font-family: var(--f-display); font-style: italic; font-size: 26px; color: var(--navy); margin: 12px 0 0; }
.ew-cart__empty span { font-size: 17px; color: var(--ink-soft); margin-bottom: 14px; }

.ew-line { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.ew-line__media { width: 80px; height: 100px; flex: none; border: 1px solid var(--line); position: relative; overflow: hidden; }
.ew-line__media .garment-svg { position: absolute; inset: 6%; width: 88%; height: 88%; }
.ew-line__info { flex: 1; display: flex; flex-direction: column; }
.ew-line__top { display: flex; justify-content: space-between; align-items: flex-start; }
.ew-line__top h4 { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: 21px; color: var(--navy); margin: 0; }
.ew-line__x { font-size: 13px; color: var(--ink-mute); padding: 2px 4px; }
.ew-line__x:hover { color: var(--signal); }
.ew-line__sub { font-family: var(--f-display); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-mute); margin: 4px 0 0; }
.ew-line__bottom { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; }
.ew-line__price { font-family: var(--f-display); font-size: 17px; color: var(--navy); }
.ew-cart__foot { padding: 20px 24px 24px; border-top: 1px solid var(--line); background: var(--paper); }
.ew-cart__sub { display: flex; justify-content: space-between; font-family: var(--f-display); font-size: 20px; color: var(--navy); margin-bottom: 6px; }
.ew-cart__sub span:last-child { font-style: italic; }
.ew-cart__note { font-size: 14px; color: var(--ink-mute); margin: 0 0 16px; }
.ew-cart__error { margin: 0 0 14px; color: var(--signal-deep); font-family: var(--f-display); font-size: 13px; line-height: 1.4; }
.ew-cart__cont { display: block; width: 100%; text-align: center; margin-top: 12px; font-family: var(--f-display); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.ew-cart__cont:hover { color: var(--signal); }

/* ═══════════════ TOAST ═══════════════ */
.ew-toast {
  position: fixed; right: 24px; bottom: 24px; z-index: 100; width: min(330px, 88vw);
  background: var(--navy); color: var(--cream); display: flex; align-items: center; gap: 14px;
  padding: 14px; box-shadow: 0 20px 44px -20px rgba(9,28,48,0.6); animation: toastIn .35s cubic-bezier(.2,.8,.3,1);
}
@keyframes toastIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.ew-toast__media { width: 50px; height: 62px; flex: none; position: relative; overflow: hidden; }
.ew-toast__media .garment-svg { position: absolute; inset: 4%; width: 92%; height: 92%; }
.ew-toast__copy { display: flex; flex-direction: column; line-height: 1.3; }
.ew-toast__msg { font-family: var(--f-display); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rope); }
.ew-toast__copy strong { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: 19px; }
.ew-toast__sub { font-size: 13px; color: rgba(242,234,211,0.7); }
.ew-toast__check { margin-left: auto; width: 26px; height: 26px; border-radius: 50%; background: var(--rope); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 14px; }

/* ═══════════════ FOOTER ═══════════════ */
.ew-foot { background: var(--navy); color: var(--cream); padding: clamp(48px, 6vw, 80px) var(--pad) 0; }
.ew-foot__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(36px, 5vw, 80px); padding-bottom: clamp(40px, 5vw, 64px); }
.ew-foot__brand { }
.ew-foot__tag { font-family: var(--f-display); font-style: italic; font-size: 19px; color: var(--rope); margin: 8px 0 0; }
.ew-foot__cols { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: clamp(24px, 3vw, 48px); }
.ew-foot__col h5 { font-family: var(--f-display); font-weight: 500; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rope); margin: 0 0 18px; }
.ew-foot__col button { display: block; text-align: left; font-size: 17px; color: rgba(242,234,211,0.82); padding: 5px 0; transition: color .2s; }
.ew-foot__col button:hover { color: var(--cream); }
.ew-foot__col--news p { font-size: 17px; line-height: 1.5; color: rgba(242,234,211,0.78); margin: 0 0 16px; }
.ew-news { display: flex; border: 1px solid rgba(242,234,211,0.28); }
.ew-news input { border: none; background: transparent; }
.ew-news button { width: 50px; flex: none; background: var(--rope); color: var(--navy); font-size: 18px; }
.ew-news button:hover { background: var(--cream); }
.ew-foot__bar { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid rgba(242,234,211,0.18); font-family: var(--f-display); font-size: 12px; letter-spacing: 0.08em; color: rgba(242,234,211,0.6); }
.ew-foot__links { display: flex; gap: 20px; }
.ew-foot__links a { text-decoration: none; transition: color .2s; }
.ew-foot__links a:hover { color: var(--cream); }

/* ═══════════════ CITIES ═══════════════ */
.ew-citygrid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 3vw, 44px);
  max-width: var(--maxw); margin: 0 auto; padding-bottom: clamp(20px, 3vw, 40px);
}
.ew-citycard { display: flex; flex-direction: column; }
.ew-citycard__media {
  position: relative; width: 100%; aspect-ratio: 16 / 10; overflow: hidden;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
}
.ew-citycard.is-soon .ew-citycard__media { filter: saturate(0.62); }
.ew-citycard__status {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--f-display); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 5px 11px;
}
.ew-citycard__status.is-open { color: var(--cream); background: var(--signal); }
.ew-citycard__status.is-soon { color: var(--navy); background: rgba(255,255,255,0.66); border: 1px solid var(--line-2); }
.ew-citycard__season {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  font-family: var(--f-display); font-style: italic; font-size: 14px; color: var(--ink-soft);
}
.ew-citycard__emblem {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.ew-citycard:hover .ew-citycard__emblem { transform: scale(1.045) translateY(-4px); }
.no-hover .ew-citycard:hover .ew-citycard__emblem { transform: none; }
.ew-citycard__script {
  font-family: var(--f-script); font-size: 38px; color: var(--navy); line-height: 0.8;
  margin-top: -8px;
}
.ew-citycard__body { padding: 18px 2px 0; }
.ew-citycard__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.ew-citycard__name {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px); color: var(--navy); margin: 0; letter-spacing: -0.015em;
}
.ew-citycard__region {
  font-family: var(--f-display); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute); white-space: nowrap;
}
.ew-citycard__meta {
  display: flex; align-items: center; gap: 10px; margin: 9px 0 14px;
  font-family: var(--f-display); font-style: italic; font-size: 16px; color: var(--ink-soft);
}
.ew-citycard__note { font-size: 18px; line-height: 1.5; color: var(--ink-soft); margin: 0 0 20px; max-width: 38em; text-wrap: pretty; }
.ew-citycard__foot {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding-top: 16px; border-top: 1px solid var(--line); flex-wrap: wrap;
}
.ew-citycard__seats { font-family: var(--f-display); font-style: italic; font-size: 15px; color: var(--signal); }
.ew-citycard__seats.is-soon { color: var(--rope-deep); }

/* The Line anchor */
.ew-cityline {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 5vw, 72px);
  align-items: center; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(30px, 4vw, 48px) 0 clamp(38px, 5vw, 60px);
  border-top: 1px solid var(--line); margin-bottom: clamp(34px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
}
.ew-cityline__copy .ew-cityline__title {
  font-family: var(--f-display); font-weight: 400; font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.04; color: var(--navy); margin: 0 0 16px; letter-spacing: -0.02em;
}
.ew-cityline__title em { font-style: italic; color: var(--signal); }
.ew-cityline__copy p { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; color: var(--ink-soft); margin: 0 0 22px; max-width: 34em; text-wrap: pretty; }
.ew-cityline__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 20px); }
.ew-cityline__tile {
  aspect-ratio: 4 / 5; border: 1px solid var(--line); position: relative; overflow: hidden; padding: 0;
}
.ew-cityline__tile .garment-svg { position: absolute; inset: 6% 8%; width: 84%; height: 88%; transition: transform .45s; }
.ew-cityline__tile:hover .garment-svg { transform: scale(1.05); }

/* Request your city */
.ew-request-wrap {
  margin: clamp(40px, 5vw, 72px) calc(-1 * var(--pad)) 0;
  padding: clamp(52px, 7vw, 96px) var(--pad);
  background: var(--navy);
  background-image: radial-gradient(circle at 50% -30%, #163450, var(--navy) 60%);
}
.ew-request__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 80px); align-items: center;
}
.ew-request__copy .ew-kicker--gold { color: var(--rope); }
.ew-request__title {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(34px, 4.2vw, 58px); line-height: 1.02; color: var(--cream);
  margin: 0 0 22px; letter-spacing: -0.02em;
}
.ew-request__copy > p { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55; color: rgba(242,234,211,0.84); margin: 0 0 30px; max-width: 34em; text-wrap: pretty; }
.ew-request__demandlabel {
  display: block; font-family: var(--f-display); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rope); margin-bottom: 14px;
}
.ew-request__chips { display: flex; flex-wrap: wrap; gap: 9px; }
.ew-request__chip {
  font-family: var(--f-display); font-size: 13px; letter-spacing: 0.04em; color: var(--cream);
  padding: 8px 15px; border: 1px solid rgba(242,234,211,0.28); border-radius: 40px; transition: all .2s;
}
.ew-request__chip:hover { border-color: var(--rope); background: rgba(201,166,107,0.14); }

.ew-request__panel { background: rgba(242,234,211,0.05); border: 1px solid rgba(242,234,211,0.2); padding: clamp(28px, 3vw, 42px); }
.ew-request__form { display: flex; flex-direction: column; gap: 16px; }
.ew-request__form .ew-kicker { color: var(--rope); margin-bottom: 4px; }
.ew-request__field { display: flex; flex-direction: column; gap: 8px; }
.ew-request__field span {
  font-family: var(--f-display); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(242,234,211,0.66);
}
.ew-request__field input {
  width: 100%; padding: 14px 16px; background: rgba(242,234,211,0.06);
  border: 1px solid rgba(242,234,211,0.28); color: var(--cream);
  font-family: var(--f-body); font-size: 18px;
}
.ew-request__field input::placeholder { color: rgba(242,234,211,0.48); }
.ew-request__field input:focus { outline: none; border-color: var(--rope); }
.ew-request__fine { font-family: var(--f-display); font-style: italic; font-size: 14px; color: rgba(242,234,211,0.6); margin: 4px 0 0; }
.ew-request__done { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 10px 0; }
.ew-request__done h3 { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: 30px; color: var(--cream); margin: 12px 0 0; }
.ew-request__done p { font-size: 18px; line-height: 1.5; color: rgba(242,234,211,0.82); margin: 4px 0 18px; max-width: 24em; }
.ew-request__done p em { font-style: italic; color: var(--rope); }
.ew-request__again {
  font-family: var(--f-display); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); border-bottom: 1px solid var(--rope); padding-bottom: 4px; transition: color .2s;
}
.ew-request__again:hover { color: var(--rope); }

/* ═══════════════ CONTACT ═══════════════ */
.ew-contact { padding-bottom: clamp(56px, 7vw, 100px); }
.ew-contact__grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 5vw, 80px);
  max-width: var(--maxw); margin: 0 auto; align-items: start;
}
.ew-contact__list { list-style: none; margin: 8px 0 0; padding: 0; }
.ew-contact__item { padding: 22px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 5px; }
.ew-contact__item:first-child { border-top: 1px solid var(--line); }
.ew-contact__label {
  font-family: var(--f-display); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--signal);
}
.ew-contact__email {
  font-family: var(--f-display); font-style: italic; font-size: clamp(20px, 2vw, 26px);
  color: var(--navy); text-decoration: none; width: fit-content; transition: color .2s;
}
.ew-contact__email:hover { color: var(--signal); }
.ew-contact__note { font-size: 16px; line-height: 1.45; color: var(--ink-soft); text-wrap: pretty; }
.ew-contact__aside {
  display: flex; gap: 16px; align-items: flex-start; margin-top: 28px;
  padding: 22px; background: var(--paper-2); border: 1px solid var(--line);
}
.ew-contact__aside svg { flex: none; }
.ew-contact__aside p { font-size: 16px; line-height: 1.5; color: var(--ink-soft); margin: 0; text-wrap: pretty; }
.ew-contact__inline {
  font-family: var(--f-display); font-style: italic; font-size: 16px; color: var(--signal);
  border-bottom: 1px solid var(--rope); padding: 0 0 1px;
}
.ew-contact__inline:hover { color: var(--signal-deep); }

.ew-contact__panel { background: var(--navy); color: var(--cream); padding: clamp(28px, 3.4vw, 48px); }
.ew-contact__form { display: flex; flex-direction: column; gap: 16px; }
.ew-contact__form .ew-kicker { color: var(--rope); margin-bottom: 4px; }
.ew-contact__field { display: flex; flex-direction: column; gap: 8px; }
.ew-contact__field > span {
  font-family: var(--f-display); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(242,234,211,0.66);
}
.ew-contact__field input, .ew-contact__field textarea {
  width: 100%; padding: 14px 16px; background: rgba(242,234,211,0.06);
  border: 1px solid rgba(242,234,211,0.28); color: var(--cream);
  font-family: var(--f-body); font-size: 18px; resize: vertical;
}
.ew-contact__field input::placeholder, .ew-contact__field textarea::placeholder { color: rgba(242,234,211,0.48); }
.ew-contact__field input:focus, .ew-contact__field textarea:focus { outline: none; border-color: var(--rope); }
.ew-contact__topics { display: flex; flex-wrap: wrap; gap: 9px; }
.ew-contact__topic {
  font-family: var(--f-display); font-size: 13px; letter-spacing: 0.04em; color: var(--cream);
  padding: 9px 15px; border: 1px solid rgba(242,234,211,0.28); border-radius: 40px; transition: all .2s;
}
.ew-contact__topic:hover { border-color: var(--rope); }
.ew-contact__topic.is-active { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.ew-contact__fine { font-family: var(--f-display); font-style: italic; font-size: 14px; color: rgba(242,234,211,0.6); margin: 4px 0 0; }
.ew-contact__done { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 18px 0; }
.ew-contact__done h3 { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: 30px; color: var(--cream); margin: 12px 0 0; }
.ew-contact__done p { font-size: 18px; line-height: 1.5; color: rgba(242,234,211,0.82); margin: 4px 0 18px; max-width: 24em; }
.ew-contact__done p em { font-style: italic; color: var(--rope); }
.ew-contact__again {
  font-family: var(--f-display); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); border-bottom: 1px solid var(--rope); padding-bottom: 4px; transition: color .2s;
}
.ew-contact__again:hover { color: var(--rope); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1080px) {
  .ew-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ew-hero { grid-template-columns: 1fr; }
  .ew-hero__stage { max-width: 460px; aspect-ratio: 5/5; margin-top: 12px; }
  .ew-story { grid-template-columns: 1fr; text-align: center; }
  .ew-story__seal svg { width: 200px; height: 200px; }
  .ew-pdp__grid { grid-template-columns: 1fr; }
  .ew-pdp__media { position: static; }
  .ew-perks { grid-template-columns: repeat(2, 1fr); }
  .ew-foot__top { grid-template-columns: 1fr; }
  .ew-cityline { grid-template-columns: 1fr; }
  .ew-cityline__tiles { max-width: 460px; }
  .ew-request__inner { grid-template-columns: 1fr; }
  .ew-contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .ew-nav { grid-template-columns: auto 1fr auto; }
  .ew-nav__group--left { display: none; }
  .ew-nav__group--right { gap: 16px; }
  .ew-nav__brand { justify-self: start; }
  .ew-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .ew-row, .ew-row--flip .ew-row__media { grid-template-columns: 1fr; order: 0; }
  .ew-storypage__why { grid-template-columns: 1fr; text-align: center; }
  .ew-foot__cols { grid-template-columns: 1fr 1fr; }
  .ew-look__grid { grid-template-rows: 200px 160px 160px; }
  .ew-look__a { grid-row: 1; grid-column: 1 / -1; }
  .ew-look__b { grid-column: 1 / -1; }
  .ew-citygrid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ew-grid--3, .ew-grid--4 { grid-template-columns: 1fr; }
  .ew-perks { grid-template-columns: 1fr; }
  .ew-foot__cols { grid-template-columns: 1fr; }
  .ew-hero__cta { flex-direction: column; align-items: stretch; }
  .ew-pdp__buy { flex-direction: column; }
}
