/* Token Touch Co. storefront */

:root {
  --bg: #FFF8F5;
  --ink: #2D2D2D;
  --ink-soft: #6E5A5E;
  --ink-muted: #6E5A5E;
  --ink-faint: #6E5A5E;
  --ink-decorative: #9C8388;
  /* Brand palette from the Token Touch Co. logo */
  --rose: #9E2459;        /* berry — primary */
  --rose-dark: #7C1C46;
  --sage: #87A18B;
  --sage-ink: #5F7A64;
  --sage-wash: #E9F0EA;
  --gold: #E7AB55;
  --pink: #F8C8DC;
  --lavender: #E6D5F3;
  --mint: #C8E6D0;
  --mint-ink: #3E6B4C;
  --wash-pink: #FDF1F4;
  --wash-rose: #F6E7EC;
  --border: #F0E6E8;
  --border-pink: #E8D3D8;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Jost', sans-serif;
  --shadow-rose: 0 8px 24px rgba(158, 36, 89, 0.22);
  --shadow-card: 0 14px 34px rgba(158, 36, 89, 0.13);
  --shadow-panel: 0 14px 40px rgba(158, 36, 89, 0.06);
  --page-width: 1200px;
  --glass-surface: rgba(255, 248, 245, 0.78);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.72);
  --glass-line: rgba(158, 36, 89, 0.12);
  --glass-shadow: 0 18px 45px rgba(158, 36, 89, 0.10);
  --glass-blur: 18px;
  --radius-hero: 28px;
  --radius-card: 18px;
  --radius-control: 12px;
  --section-space: clamp(64px, 7vw, 96px);
  --section-space-compact: clamp(44px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

[hidden] { display: none !important; }

a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--rose-dark); }

button { font-family: var(--font-body); cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: var(--font-body); font-size: inherit; color: var(--ink); }
::placeholder { color: #B9A6AA; }
input:focus, textarea:focus, select:focus { outline: 2px solid var(--pink); outline-offset: 1px; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--ink); }
h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.25rem; }

.page-width { max-width: var(--page-width); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section-pad { padding-top: 4rem; padding-bottom: 4rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.inline-meta { display: inline-flex; align-items: center; gap: 7px; }
.inline-icon { width: 17px; height: 17px; flex: 0 0 auto; color: var(--rose); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes pop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------- Buttons & chips ---------- */
.pill-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.9rem 2rem; min-height: 48px;
  font-size: 1rem; font-weight: 500; line-height: 1.3; text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.pill-btn--primary { background: var(--rose); color: #fff; box-shadow: var(--shadow-rose); }
.pill-btn--primary:hover { background: var(--rose-dark); color: #fff; }
.pill-btn--ghost { background: rgba(255,255,255,0.7); color: var(--ink); border: 1.5px solid var(--border-pink); }
.pill-btn--ghost:hover { border-color: var(--rose); color: var(--rose); }
.pill-btn--outline { background: none; color: var(--rose); border: 1.5px solid var(--rose); }
.pill-btn--outline:hover { background: var(--rose); color: #fff; }
.pill-btn--quiet { background: none; color: var(--rose); border: 1.5px solid var(--border-pink); min-height: 44px; padding: 0.65rem 1.15rem; font-size: 0.875rem; }
.pill-btn--quiet:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.pill-btn--small { min-height: 44px; padding: 0.7rem 1.4rem; font-size: 0.9rem; }
.pill-btn:disabled { background: var(--border-pink); box-shadow: none; cursor: not-allowed; color: #fff; }

.chip {
  border-radius: 999px; padding: 0.65rem 1.25rem; min-height: 44px;
  font-size: 0.9rem; font-weight: 500; background: #fff; color: var(--ink);
  border: 1.5px solid var(--border-pink); transition: all 0.2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.chip:hover { border-color: var(--rose); color: var(--rose); }
.chip.is-selected { background: var(--rose); color: #fff; border-color: var(--rose); }
.chip-row { display: flex; gap: 0.625rem; flex-wrap: wrap; }

.eyebrow { letter-spacing: 0.2em; font-size: 0.78rem; font-weight: 600; color: var(--rose); text-transform: uppercase; }
.link-arrow { font-size: 0.94rem; font-weight: 500; }

/* ---------- Announcement + header ---------- */
.announcement-bar {
  background: var(--rose); color: var(--bg); text-align: center;
  padding: 9px 16px; font-size: 0.84rem; letter-spacing: 0.06em;
}

.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 248, 245, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; gap: 20px; padding-top: 10px; padding-bottom: 10px; }
.header__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header__logo img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.header__logo img.header__logo-mark { width: auto; height: 64px; border-radius: 0; border: none; object-fit: contain; }
.header__logo-text { font-family: var(--font-heading); font-weight: 600; font-size: 1.03rem; color: var(--ink); letter-spacing: 0.04em; }
.header__nav { display: none; flex: 1; gap: 4px; flex-wrap: wrap; }
.header__nav a { padding: 10px 12px; min-height: 44px; font-size: 0.94rem; color: var(--ink); display: inline-flex; align-items: center; border-bottom: 2px solid transparent; }
.header__nav a:hover { color: var(--rose); }
.header__nav a.is-active { color: var(--rose); font-weight: 600; border-bottom-color: var(--rose); }
.header__icons { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.header__icon-btn {
  position: relative; width: 44px; height: 44px; display: flex; align-items: center;
  justify-content: center; color: var(--ink); border-radius: 50%;
}
.header__icon-btn:hover { background: var(--wash-pink); color: var(--ink); }
.header__icon-count {
  position: absolute; top: 2px; right: 0; background: var(--rose); color: #fff;
  font-size: 0.69rem; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.header__menu-toggle { display: flex; }

@media (min-width: 990px) {
  .header__nav { display: flex; }
  .header__menu-toggle { display: none; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; top: 0; left: 0; width: min(360px, 92vw); height: 100vh; height: 100dvh;
  background: var(--bg); z-index: 1200; transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto; padding: 1.5rem; box-shadow: 16px 0 48px rgba(45,45,45,0.12);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid var(--border); margin-bottom: 0.75rem; }
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__nav a { padding: 0.8rem 0; font-size: 1rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--border); }
.mobile-menu__nav a:hover { color: var(--rose); }

/* ---------- Search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 1300; background: rgba(45,45,45,0.35);
  backdrop-filter: blur(3px); display: none;
}
.search-overlay.is-open { display: block; }
.search-overlay__panel {
  max-width: 640px; margin: 64px auto 0; background: var(--bg); border-radius: 20px;
  overflow: hidden; box-shadow: 0 30px 80px rgba(45,45,45,0.25);
}
@media (max-width: 699px) { .search-overlay__panel { margin: 20px 12px 0; } }
.search-overlay__bar { display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-bottom: 1px solid var(--border); }
.search-overlay__input { flex: 1; border: none; background: none; font-size: 1.06rem; }
.search-overlay__input:focus { outline: none; }
.search-overlay__close { font-size: 1.125rem; color: var(--ink-muted); width: 32px; height: 32px; }
.search-overlay__results { max-height: 420px; overflow-y: auto; padding: 10px 0; }
.search-overlay__label { padding: 10px 22px 6px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.search-overlay__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 8px 22px 16px; }
.search-overlay__chips .chip { min-height: 38px; padding: 8px 16px; font-size: 0.85rem; }
.search-result { width: 100%; text-align: left; display: flex; align-items: center; gap: 14px; padding: 12px 22px; color: var(--ink); }
.search-result:hover { background: var(--wash-pink); color: var(--ink); }
.search-result__thumb { width: 44px; height: 52px; border-radius: 10px; flex-shrink: 0; overflow: hidden; }
.search-result__thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-result__text { flex: 1; display: flex; flex-direction: column; }
.search-result__name { font-weight: 500; font-size: 0.94rem; }
.search-result__type { font-size: 0.8rem; color: var(--ink-muted); }
.search-result__price { color: var(--rose); font-weight: 500; font-size: 0.9rem; }
.search-overlay__empty { padding: 32px 22px; text-align: center; color: var(--ink-muted); }

/* ---------- Cart drawer ---------- */
.drawer-scrim { position: fixed; inset: 0; background: rgba(45,45,45,0.4); z-index: 1100; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 94vw);
  background: var(--bg); z-index: 1150; box-shadow: -16px 0 48px rgba(45,45,45,0.18);
  transform: translateX(105%); transition: transform 0.32s cubic-bezier(0.22,0.61,0.36,1);
  display: flex; flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.cart-drawer__head h3 { font-size: 1.19rem; }
.cart-drawer__shipbar { padding: 14px 24px 10px; background: #fff; border-bottom: 1px solid var(--border); }
.cart-drawer__shipbar p { margin-bottom: 8px; font-size: 0.81rem; color: var(--ink-soft); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-drawer__foot { padding: 20px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; background: #fff; }
.cart-drawer__subtotal { display: flex; justify-content: space-between; font-family: var(--font-heading); font-weight: 600; font-size: 1.06rem; }
.cart-drawer__note { font-size: 0.78rem; color: var(--ink-faint); }

.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-line__thumb { width: 68px; height: 80px; border-radius: 12px; flex-shrink: 0; overflow: hidden; }
.cart-line__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-line__name { font-weight: 500; font-size: 0.94rem; line-height: 1.35; color: var(--ink); }
.cart-line__variant { font-size: 0.81rem; color: var(--ink-muted); }
.cart-line__qty { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.cart-line__qty button { width: 30px; height: 30px; border: 1px solid var(--border-pink); border-radius: 8px; color: var(--rose); font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.cart-line__qty span { min-width: 26px; text-align: center; font-size: 0.875rem; font-weight: 500; }
.cart-line__right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-line__price { font-weight: 500; font-size: 0.94rem; color: var(--rose); }
.cart-line__remove { font-size: 0.78rem; color: var(--ink-faint); text-decoration: underline; padding: 6px 0; }

.tt-progress { height: 10px; border-radius: 999px; background: var(--border); overflow: hidden; }
.tt-progress--slim { height: 8px; }
.tt-progress__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--rose)); transition: width 0.4s; width: 0; }

/* ---------- Product cards ---------- */
.pcard { display: flex; flex-direction: column; gap: 12px; }
.pcard__media-wrap { position: relative; }
.pcard__media { position: relative; display: block; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 5; transition: box-shadow 0.25s; }
.pcard__media:hover { box-shadow: var(--shadow-card); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; }
.pcard__badge { position: absolute; top: 10px; left: 10px; background: var(--ink); color: #fff; font-size: 0.69rem; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.05em; z-index: 2; }
.pcard__info { display: flex; flex-direction: column; gap: 2px; }
.pcard__title { color: var(--ink); font-weight: 500; font-size: 1rem; }
.pcard__title:hover { color: var(--rose); }
.pcard__meta { font-size: 0.78rem; color: var(--ink-faint); }
.pcard__price { color: var(--rose); font-weight: 500; font-size: 0.94rem; }
.pcard__quick-add { align-self: flex-start; }
.pcard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }

.wish-btn {
  position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,248,245,0.92); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(45,45,45,0.1); z-index: 2;
}
.wish-btn svg { width: 18px; height: 18px; fill: none; stroke: var(--rose); stroke-width: 1.7; transition: fill 0.15s; }
.wish-btn.is-active svg { fill: var(--rose); }
.wish-btn--large { width: 42px; height: 42px; top: 14px; right: 14px; }
.wish-btn--large svg { width: 21px; height: 21px; }

.wash { background: var(--wash-rose); }

/* ---------- Section scaffolding ---------- */
.section-head-center { text-align: center; display: flex; flex-direction: column; gap: 8px; margin-bottom: 36px; }
.section-head-center p { color: var(--ink-muted); font-size: 1.03rem; }
.section-row-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.section-row-head p { color: var(--ink-muted); }

/* ---------- Hero ---------- */
.hero-split { background: linear-gradient(160deg, #FDF1F4 0%, #FFF8F5 55%, #F2F8F3 100%); }
.hero-split__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 48px; align-items: center; padding-top: 72px; padding-bottom: 72px; }
.hero-split__copy { display: flex; flex-direction: column; gap: 20px; animation: fadeUp 0.6s ease both; }
.hero-split__copy h1 { font-size: clamp(34px, 4.5vw, 52px); line-height: 1.12; }
.hero-split__sub { font-size: 1.125rem; color: var(--ink-soft); max-width: 46ch; }
.hero-split__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-split__proof { margin-top: 6px; font-size: 0.875rem; color: var(--ink-faint); }
.hero-split__media { position: relative; animation: fadeUp 0.6s 0.12s ease both; }
.hero-split__media > img { width: 100%; border-radius: 28px; box-shadow: 0 24px 60px rgba(183,110,121,0.18); }
/* ---------- Offerings ---------- */
.offer-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.offer-card {
  flex: 1; min-width: 180px; max-width: 230px; background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 24px 18px; text-align: center; display: flex; flex-direction: column;
  gap: 8px; align-items: center; color: var(--ink); transition: box-shadow 0.25s, transform 0.25s;
}
.offer-card:hover { box-shadow: 0 10px 28px rgba(183,110,121,0.12); transform: translateY(-2px); color: var(--ink); }
.offer-card__glyph {
  width: 52px; height: 52px; border-radius: 50%; background: var(--wash-rose);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.19rem; color: #7C5A60;
}
.offer-card__title { font-family: var(--font-heading); font-weight: 600; font-size: 0.97rem; }
.offer-card__desc { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.45; }

/* ---------- Package cards ---------- */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.package-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; color: var(--ink); transition: box-shadow 0.25s, transform 0.25s;
}
.package-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); color: var(--ink); }
.package-card__wash { height: 110px; position: relative; }
.package-card__wash::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.55), transparent 60%); }
.package-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.package-card__title { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; line-height: 1.3; }
.package-card__tagline { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.45; flex: 1; }
.package-card__cta { font-size: 0.84rem; font-weight: 500; color: var(--rose); }

/* ---------- Builder banner ---------- */
.builder-banner { background: linear-gradient(120deg, #F6E7EC, #EFE3F5); }
.builder-banner__inner { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; padding-top: 56px; padding-bottom: 56px; }
.builder-banner__copy { display: flex; flex-direction: column; gap: 8px; max-width: 560px; }
.builder-banner__copy h2 { font-size: 1.75rem; }
.builder-banner__copy p { color: var(--ink-soft); font-size: 1.03rem; }

/* ---------- Feature splits ---------- */
.feature-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; }
.feature-split__media { border-radius: 24px; overflow: hidden; aspect-ratio: 16 / 11; }
.feature-split__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-split__copy { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.feature-split__copy h2 { font-size: 1.75rem; }
.feature-split__copy p { color: var(--ink-soft); }

/* ---------- Way cards ---------- */
.way-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 36px; }
.way-card {
  background: transparent; border: 0; border-top: 1px solid var(--border-pink); border-radius: 0; padding: 24px 0;
  display: flex; flex-direction: column; gap: 10px; color: var(--ink);
  transition: color 0.2s, border-color 0.2s;
}
.way-card:hover { box-shadow: none; transform: none; border-color: var(--rose); color: var(--rose-dark); }
.way-card__glyph { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; }
.way-card__title { font-family: var(--font-heading); font-weight: 600; font-size: 1.03rem; }
.way-card__desc { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.45; flex: 1; }
.way-card__cta { font-size: 0.84rem; font-weight: 500; color: var(--rose); }

/* ---------- Guide cards ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.guide-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; color: var(--ink); transition: box-shadow 0.25s, transform 0.25s;
}
.guide-card:hover { box-shadow: 0 12px 30px rgba(183,110,121,0.13); transform: translateY(-3px); color: var(--ink); }
.guide-card__media { aspect-ratio: 16 / 9; }
.guide-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.guide-card__tag { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-ink); font-weight: 600; }
.guide-card__title { font-family: var(--font-heading); font-weight: 600; font-size: 1.06rem; line-height: 1.3; }
.guide-card__excerpt { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.5; }
.guide-card__meta { font-size: 0.78rem; color: var(--ink-faint); }

/* ---------- Testimonials ---------- */
.band-pink { background: var(--wash-pink); }
.tcard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.tcard { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.tcard__stars { color: var(--gold); letter-spacing: 3px; font-size: 0.94rem; }
.tcard__quote { font-size: 0.97rem; line-height: 1.55; color: #4A3B3E; flex: 1; }
.tcard__author { font-size: 0.875rem; color: var(--ink-muted); }
.tcard__author strong { color: var(--ink); font-weight: 600; }

/* ---------- Newsletter + footer ---------- */
.newsletter-cta { background: linear-gradient(120deg, #F8C8DC22, #E6D5F344, #C8E6D022); border-top: 1px solid var(--border); }
.newsletter-cta__inner { max-width: 640px; margin: 0 auto; padding: 56px 24px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.newsletter-cta__inner h2 { font-size: 1.625rem; }
.newsletter-cta__inner p { color: var(--ink-muted); }
.newsletter-cta__form { display: flex; gap: 10px; width: 100%; max-width: 440px; flex-wrap: wrap; justify-content: center; }
.newsletter-cta__form .tt-input--pill { flex: 1; min-width: 220px; }
.newsletter-cta__done { color: var(--mint-ink); font-size: 0.94rem; }

.footer { background: var(--ink); color: #EFE3E6; }
.footer__inner { padding-top: 56px; padding-bottom: 32px; display: flex; flex-direction: column; gap: 40px; }
.footer__top { display: flex; gap: 48px; flex-wrap: wrap; justify-content: space-between; }
.footer__brand { display: flex; flex-direction: column; gap: 12px; max-width: 300px; }
.footer__brand-name { font-family: var(--font-heading); font-weight: 600; font-size: 1.125rem; color: #fff; }
.footer__brand-desc { font-size: 0.875rem; color: #B9A6AA; line-height: 1.6; }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.footer__col a { color: #EFE3E6; font-size: 0.9rem; }
.footer__col a:hover { color: #fff; }
.footer__legal { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 0.81rem; color: var(--ink-faint); }

/* ---------- Panels, forms, misc ---------- */
.tt-panel { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 36px; box-shadow: var(--shadow-panel); }
@media (max-width: 749px) { .tt-panel { padding: 24px; } }
.tt-panel--center { text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.success-check { width: 64px; height: 64px; border-radius: 50%; background: var(--mint); display: flex; align-items: center; justify-content: center; font-size: 1.625rem; color: var(--mint-ink); animation: pop 0.4s ease both; }

.tt-input, .tt-textarea, .tt-select {
  border: 1.5px solid var(--border-pink); border-radius: 12px; padding: 13px 16px;
  font-size: 0.9rem; background: #FFFCFA; width: 100%;
}
.tt-input--pill { border-radius: 999px; padding: 13px 20px; background: #fff; }
.tt-textarea { min-height: 120px; resize: vertical; }
.tt-field-label { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em; display: block; margin-bottom: 8px; }
.tt-field { display: flex; flex-direction: column; min-width: 0; }
.field-hint { color: var(--ink-soft); font-weight: 400; }
.page-title { font-size: clamp(2.75rem, 5vw, 3.25rem); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.tt-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 599px) { .tt-form-grid { grid-template-columns: 1fr; } }

.tt-toggle {
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 14px; border: 1.5px solid var(--border-pink); border-radius: 12px; background: #fff;
  transition: border-color 0.2s, background 0.2s; width: 100%; text-align: left;
}
.tt-toggle.is-on { border-color: var(--rose); background: var(--wash-pink); }
.tt-toggle__labels { display: flex; flex-direction: column; }
.tt-toggle__title { font-size: 0.9rem; font-weight: 500; }
.tt-toggle__sub { font-size: 0.81rem; color: var(--ink-muted); }
.tt-toggle__track { width: 44px; height: 26px; border-radius: 999px; background: var(--border-pink); position: relative; flex-shrink: 0; transition: background 0.2s; }
.tt-toggle.is-on .tt-toggle__track { background: var(--rose); }
.tt-toggle__knob { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: left 0.2s; }
.tt-toggle.is-on .tt-toggle__knob { left: 21px; }

.summary-box { display: flex; flex-direction: column; gap: 12px; background: var(--wash-pink); border-radius: 16px; padding: 20px; }
.summary-box__row { display: flex; justify-content: space-between; gap: 16px; }
.summary-box__row > span:first-child { color: var(--ink-muted); font-size: 0.875rem; }
.summary-box__row > span:last-child { font-weight: 500; font-size: 0.9rem; text-align: right; max-width: 60%; }

.step-dots { display: flex; gap: 8px; justify-content: center; margin-bottom: 36px; }
.step-dots span { width: 34px; height: 6px; border-radius: 999px; background: var(--border-pink); transition: background 0.25s; }
.step-dots span.is-done { background: var(--rose); }
.wizard-step { display: none; }
.wizard-step.is-active { display: block; }
.wizard-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 32px; }
.wizard-back { font-size: 0.94rem; font-weight: 500; color: var(--ink-muted); padding: 10px 6px; min-height: 44px; }
.wizard-back:hover { color: var(--rose); }
.wizard-back[disabled] { visibility: hidden; }
.tt-range { width: 100%; accent-color: var(--rose); }

.tt-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.tt-calendar__weekday { text-align: center; font-size: 0.69rem; color: var(--ink-faint); font-weight: 600; padding-bottom: 2px; }
.tt-calendar__day { aspect-ratio: 1; border-radius: 10px; border: 1.5px solid transparent; background: var(--wash-pink); font-size: 0.85rem; transition: all 0.15s; }
.tt-calendar__day:hover:not(:disabled) { border-color: var(--rose); }
.tt-calendar__day.is-selected { background: var(--rose); color: #fff; font-weight: 600; }
.tt-calendar__day:disabled { background: none; color: #D8C7CB; cursor: default; }
.tt-calendar__day--empty { visibility: hidden; }
.tt-cal-nav { width: 32px; height: 32px; border: 1px solid var(--border-pink); border-radius: 8px; color: var(--rose); font-size: 1rem; display: inline-flex; align-items: center; justify-content: center; }

.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-item__q { width: 100%; text-align: left; padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1rem; font-weight: 500; min-height: 44px; }
.faq-item__icon { color: var(--rose); font-size: 1.25rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { display: none; padding: 0 22px 22px; color: var(--ink-soft); font-size: 0.94rem; }
.faq-item.is-open .faq-item__a { display: block; }

.plan-card {
  text-align: left; background: #fff; border: 2px solid var(--border); border-radius: 20px;
  padding: 26px; display: flex; flex-direction: column; gap: 8px; position: relative;
  transition: border-color 0.2s, background 0.2s; color: var(--ink); width: 100%;
}
.plan-card:hover { border-color: var(--border-pink); color: var(--ink); }
.plan-card.is-selected { border-color: var(--rose); background: var(--wash-pink); }
.plan-card__badge { position: absolute; top: 16px; right: 16px; background: var(--mint); color: var(--mint-ink); font-size: 0.69rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.plan-card__name { font-family: var(--font-heading); font-weight: 600; font-size: 1.125rem; }
.plan-card__note { font-size: 0.94rem; color: var(--ink-muted); }
.plan-card__price { font-family: var(--font-heading); font-weight: 600; font-size: 1.625rem; color: var(--rose); margin-top: 4px; }
.plan-card__per { font-size: 0.875rem; color: var(--ink-faint); font-weight: 400; }

.trust-row { display: flex; flex-wrap: wrap; gap: 14px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-row__item { display: flex; align-items: center; gap: 8px; font-size: 0.81rem; color: var(--ink-soft); }
.trust-row__icon { width: 26px; height: 26px; border-radius: 50%; background: var(--sage-wash); display: flex; align-items: center; justify-content: center; color: var(--sage-ink); font-size: 0.81rem; flex-shrink: 0; }

.notify-box { background: var(--wash-pink); border: 1px solid var(--border); border-radius: 18px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.notify-box__row { display: flex; gap: 10px; flex-wrap: wrap; }
.notify-box__row .tt-input { flex: 1; min-width: 180px; }
.notify-box__done { color: var(--mint-ink); font-size: 0.9rem; }

.empty-state { text-align: center; padding: 64px 0; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.empty-state__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--wash-pink); display: flex; align-items: center; justify-content: center; color: var(--rose); }
.empty-state p { color: var(--ink-muted); }

.gift-options { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 24px; display: flex; flex-direction: column; gap: 18px; }

/* ---------- Product page ---------- */
.product-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 48px; margin-top: 24px; }
.product-main-img { position: relative; border-radius: 22px; aspect-ratio: 1; overflow: hidden; }
.product-info { display: flex; flex-direction: column; gap: 18px; }
.product-info h1 { font-size: 2rem; line-height: 1.2; }
.product-price { font-size: 1.375rem; font-weight: 500; color: var(--rose); }
.qty-picker { display: inline-flex; align-items: center; border: 1.5px solid var(--border-pink); border-radius: 999px; overflow: hidden; }
.qty-picker button { width: 44px; height: 44px; font-size: 1.125rem; color: var(--rose); }
.qty-picker span { min-width: 36px; text-align: center; font-weight: 500; }
.buy-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.buy-row .pill-btn--primary { flex: 1; min-width: 200px; }
.tab-row { display: flex; gap: 24px; border-bottom: 1px solid var(--border); }
.tab-row button { padding: 6px 0 10px; font-size: 0.94rem; font-weight: 600; color: var(--ink-faint); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab-row button.is-active { color: var(--ink); border-bottom-color: var(--rose); }
.tab-body { color: var(--ink-soft); font-size: 0.94rem; padding-top: 14px; }
.cross-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; align-items: start; }
.checkout-summary { position: sticky; top: 90px; }
.mode-tab { flex: 1; min-width: 140px; border-radius: 12px; padding: 12px; min-height: 44px; font-size: 0.875rem; font-weight: 500; background: #fff; border: 1.5px solid var(--border-pink); }
.mode-tab.is-selected { background: var(--wash-pink); border-color: var(--rose); color: var(--rose); }

/* ---------- Page banners ---------- */
.page-head-center { text-align: center; display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.page-head-center p { color: var(--ink-muted); }
.about-hero { background: linear-gradient(160deg, #FDF1F4, #F2F8F3); }
.about-hero__inner { max-width: 760px; margin: 0 auto; padding: 64px 24px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.about-hero__inner img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 8px 24px rgba(183,110,121,0.18); }
.about-hero__inner p { font-size: 1.19rem; color: var(--ink-soft); max-width: 52ch; }

/* ---------- Brand polish: reveals & micro-interactions ---------- */
::selection { background: var(--pink); color: var(--ink); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

.pill-btn { transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s; }
.pill-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(158, 36, 89, 0.3); }
.pill-btn--primary:active { transform: translateY(0); }

.pcard__media img,
.guide-card__media img { transition: transform 0.45s ease; }
.pcard__media:hover img,
.guide-card:hover .guide-card__media img { transform: scale(1.04); }

@keyframes heartPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.wish-btn.is-active svg { animation: heartPop 0.35s ease; }

@keyframes badgePulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.45); }
  100% { transform: scale(1); }
}
.header__icon-count.is-pulsing { animation: badgePulse 0.4s ease; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pcard__media img, .guide-card__media img { transition: none; }
  .pcard__media:hover img, .guide-card:hover .guide-card__media img { transform: none; }
  .wish-btn.is-active svg, .header__icon-count.is-pulsing { animation: none; }
  .hero-split__copy, .hero-split__media { animation: none; }
}

/* ---------- Bow divider (brand motif) ---------- */
.bow-divider {
  display: flex; align-items: center; gap: 20px;
  max-width: 420px; margin: 0 auto; padding: 20px 24px;
}
.bow-divider::before, .bow-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border-pink);
}
.bow-divider img { width: 46px; height: auto; opacity: 0.9; flex-shrink: 0; }

/* ---------- Toast ---------- */
.tt-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--ink); color: #fff; padding: 12px 22px; border-radius: 999px;
  font-size: 0.9rem; z-index: 1400; opacity: 0; transition: all 0.3s; pointer-events: none;
}
.tt-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   Storefront hierarchy + trust refresh
   ============================================================ */
html { overflow-x: clip; }
body {
  font-size: 17px;
  background:
    radial-gradient(circle at 8% 4%, rgba(248, 200, 220, 0.18), transparent 28rem),
    radial-gradient(circle at 94% 18%, rgba(200, 230, 208, 0.18), transparent 30rem),
    var(--bg);
}

h1 { font-size: clamp(2.75rem, 5vw, 3.5rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2rem, 3.2vw, 2.5rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.02em; }

a, button, input, select, textarea { outline-offset: 3px; }
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
}
.search-overlay__input:focus-visible { outline: 3px solid var(--rose); outline-offset: -3px; }

/* Skip-to-content link — visible only when focused (keyboard/screen reader) */
.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 2000;
  background: var(--rose); color: #fff; padding: 12px 20px;
  border-radius: 10px; font-weight: 600; text-decoration: none;
  transition: top 0.16s ease;
}
.skip-link:focus { top: 12px; outline: 3px solid #fff; outline-offset: 2px; }
main:focus { outline: none; }

/* Cookie consent banner */
.cookie-banner {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 1500;
  max-width: 720px; margin: 0 auto;
  background: var(--cream, #FFF8F5); border: 1px solid var(--border-pink, #f0d5de);
  border-radius: 16px; padding: 16px 20px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  box-shadow: 0 8px 30px rgba(158, 36, 89, 0.14);
}
.cookie-banner__text { margin: 0; flex: 1; min-width: 240px; font-size: 0.85rem; line-height: 1.55; color: var(--ink-soft); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 520px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .pill-btn { flex: 1; }
}


.page-width { padding-inline: clamp(20px, 3vw, 32px); }
.page-section { padding-top: var(--section-space); padding-bottom: var(--section-space); }
.section-compact { padding-block: var(--section-space-compact); }
.content-wide { max-width: 1100px; }
.content-narrow { max-width: 760px; }
.content-medium { max-width: 900px; }
.account-page { max-width: 560px; }
.contact-page { max-width: 640px; }
.checkout-page { max-width: 920px; }
.checkout-title { margin: 16px 0 36px; }
.checkout-address-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.button-full { width: 100%; }

.surface-glass,
.surface-glass-strong {
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(120%);
  backdrop-filter: blur(var(--glass-blur)) saturate(120%);
}
.surface-glass-strong { background: var(--glass-strong); }
.surface-solid {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-panel);
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .surface-glass { background: #FFF8F5; }
  .surface-glass-strong { background: #fff; }
}

.page-hero {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.page-hero--compact { margin-bottom: 36px; }
.page-hero--row { max-width: none; flex-direction: row; align-items: end; justify-content: space-between; gap: 28px; }
.page-hero h1 { margin: 0; }
.page-hero__lead { max-width: 58ch; color: var(--ink-soft); font-size: 1.125rem; }
.page-head-center { margin-bottom: 44px; }
.page-head-center h1 { font-size: clamp(2.75rem, 5vw, 3.5rem); }
.page-head-center p,
.section-head-center p,
.section-row-head p { color: var(--ink-soft); }
.section-row-head { margin-bottom: 30px; }

/* Header and overlays */
.header {
  background: rgba(255, 248, 245, 0.78);
  border-bottom-color: rgba(158, 36, 89, 0.08);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  transition: box-shadow .2s ease, background .2s ease;
}
.header.is-scrolled { background: rgba(255, 248, 245, 0.9); box-shadow: 0 12px 32px rgba(80, 45, 59, 0.09); }
.header__inner { min-height: 80px; padding-top: 8px; padding-bottom: 8px; }
.header__logo img.header__logo-mark { height: 58px; }
.header__nav { justify-content: center; }
.header__nav a { font-weight: 500; border-bottom-width: 2px; }
.header__icon-btn { min-width: 44px; min-height: 44px; }
.mobile-menu { background: var(--glass-strong); border-right: 1px solid var(--glass-border); }
.search-overlay { background: rgba(45,45,45,0.22); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.search-overlay__panel { border: 1px solid var(--glass-border); }
.search-overlay__bar svg { color: var(--rose); flex: 0 0 auto; }
.cart-drawer { background: var(--glass-strong); border-left: 1px solid var(--glass-border); }
.cart-drawer__head,
.cart-drawer__foot { background: rgba(255,255,255,.68); }

/* Hero and homepage rhythm */
.hero-split {
  background:
    radial-gradient(circle at 18% 24%, rgba(248,200,220,.38), transparent 24rem),
    radial-gradient(circle at 84% 76%, rgba(200,230,208,.35), transparent 24rem),
    linear-gradient(160deg, #FDF1F4 0%, #FFF8F5 56%, #F2F8F3 100%);
}
.hero-split__inner { min-height: 680px; padding-top: clamp(72px, 8vw, 112px); padding-bottom: clamp(72px, 8vw, 112px); }
.hero-split__copy { max-width: 620px; gap: 24px; }
.hero-split__copy h1 { font-size: clamp(3.5rem, 6vw, 4rem); letter-spacing: -0.055em; }
.hero-split__sub { font-size: clamp(1.1rem, 2vw, 1.25rem); }
.hero-split__media > img { border-radius: var(--radius-hero); box-shadow: 0 30px 70px rgba(96,58,73,.16); }
.hero-worktable {
  min-height: 470px;
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  place-items: center;
  overflow: visible;
  border: 1px solid rgba(158,36,89,.08);
  border-radius: var(--radius-hero);
  background:
    linear-gradient(90deg, transparent 48%, rgba(231,171,85,.18) 48%, rgba(231,171,85,.18) 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(231,171,85,.18) 48%, rgba(231,171,85,.18) 52%, transparent 52%),
    linear-gradient(145deg, #f4e6ed, #edf4ee);
  box-shadow: 0 30px 70px rgba(96,58,73,.13);
}
.hero-worktable__sheet {
  width: min(100%, 430px);
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(110,90,94,.12);
  border-radius: 4px;
  background: #fffdf9;
  box-shadow: 0 22px 45px rgba(73,52,60,.14);
  transform: rotate(-1.2deg);
}
.hero-worktable__sheet > img { width: 132px; margin-bottom: 24px; }
.hero-worktable__sheet h2 { margin: 8px 0 24px; font-size: clamp(1.7rem, 3vw, 2.2rem); }
.packing-checklist { list-style: none; display: flex; flex-direction: column; gap: 13px; color: var(--ink-soft); }
.packing-checklist li { display: flex; align-items: flex-start; gap: 10px; padding-bottom: 13px; border-bottom: 1px solid var(--border); }
.packing-checklist li span { color: var(--rose); font-weight: 700; }
.hero-worktable__note { margin-top: 20px; font-size: .88rem; color: var(--ink-soft); }
.home-services { margin-top: 0; padding-top: 28px; position: relative; z-index: 2; }
.service-tray { padding: 0; border-block: 1px solid var(--border-pink); border-radius: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.service-link { min-height: 120px; padding: 22px 18px; border-radius: 0; border-left: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; color: var(--ink); }
.service-link:first-child { border-left: 0; }
.service-link:hover { background: rgba(255,255,255,.35); color: var(--rose-dark); transform: none; }
.service-link__icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--wash-pink); color: var(--rose); }
.service-link__icon svg { width: 21px; height: 21px; }
.service-link strong { font-family: var(--font-heading); font-size: 1rem; }
.service-link span:last-child { color: var(--ink-soft); font-size: .85rem; line-height: 1.45; }

.proof-band { padding-block: var(--section-space-compact); }
.proof-band__inner { border-block: 1px solid var(--border-pink); border-radius: 0; padding: clamp(32px, 5vw, 52px) 0; }
.proof-band__head { max-width: 640px; margin-bottom: 28px; }
.proof-band__head h2 { margin: 8px 0 10px; }
.proof-band__head p { color: var(--ink-soft); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: process; }
.process-step { counter-increment: process; padding: 0 24px; border-radius: 0; background: transparent; border: 0; border-left: 1px solid var(--border); }
.process-step:first-child { border-left: 0; padding-left: 0; }
.process-step:last-child { padding-right: 0; }
.process-step::before { content: "0" counter(process); display: block; margin-bottom: 18px; color: var(--rose); font-family: var(--font-heading); font-weight: 700; font-size: .78rem; letter-spacing: .12em; }
.process-step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.process-step p { color: var(--ink-soft); font-size: .9rem; }

.band-pink { background: rgba(253,241,244,.72); }
.builder-banner { padding-block: 8px; background: transparent; }
.builder-banner__inner { padding: clamp(30px, 5vw, 52px); border-radius: 24px; background: linear-gradient(125deg, rgba(246,231,236,.92), rgba(239,227,245,.88)); box-shadow: var(--shadow-panel); }

/* Intentional media fallbacks */
.media-fallback {
  --media-c1: var(--pink);
  --media-c2: var(--wash-pink);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,.86), transparent 34%),
    radial-gradient(circle at 84% 80%, rgba(255,255,255,.44), transparent 35%),
    linear-gradient(135deg, var(--media-c1), var(--media-c2));
}
.media-fallback::after {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: -1;
  background: url('/assets/img/favicon.svg') center / contain no-repeat;
  opacity: .075;
  filter: grayscale(1);
}
.media-fallback::before {
  content: attr(data-fallback-kicker) "\A" attr(data-fallback-label);
  white-space: pre-line;
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: rgba(45,45,45,.82);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .01em;
}
.media-fallback.has-image::before,
.media-fallback.has-image::after,
.media-fallback:has(img)::before,
.media-fallback:has(img)::after { display: none; }
.media-fallback > img { position: relative; z-index: 0; width: 100%; height: 100%; object-fit: cover; }

/* Product cards and catalog */
.pcard-grid { grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); gap: 24px; }
.pcard { gap: 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-card); background: rgba(255,255,255,.8); box-shadow: 0 8px 25px rgba(91,54,69,.05); transition: transform .2s ease, box-shadow .2s ease; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pcard__media { border-radius: 0; }
.pcard__info { padding: 16px 16px 10px; gap: 5px; }
.pcard__title { font-family: var(--font-heading); font-weight: 600; }
.pcard__price { color: var(--rose-dark); font-size: 1rem; }
.pcard__quick-add { margin: 4px 16px 16px; }
.wish-btn { background: rgba(255,248,245,.76); border: 1px solid rgba(255,255,255,.78); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.catalog-page { min-height: 70vh; }
.catalog-toolbar { position: sticky; top: 96px; z-index: 20; display: flex; gap: 10px; overflow-x: auto; margin-bottom: 36px; padding: 12px; border-radius: 18px; scrollbar-width: none; }
.catalog-toolbar::-webkit-scrollbar { display: none; }
.catalog-toolbar .chip { flex: 0 0 auto; }

/* Product detail */
.product-page > .link-arrow { display: inline-flex; margin-bottom: 28px; }
.product-layout { grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr); gap: clamp(40px, 6vw, 76px); }
.product-gallery { min-width: 0; }
.product-main-img { border-radius: var(--radius-hero); }
.product-info { position: sticky; top: 112px; padding: clamp(26px, 4vw, 38px); border-radius: 24px; }
.product-info__head { display: flex; flex-direction: column; gap: 10px; }
.product-info h1 { font-size: clamp(2.5rem, 4vw, 3.25rem); }
.product-price { font-size: 1.75rem; margin-top: 6px; }
.product-lead { color: var(--ink-soft); font-size: 1.05rem; }
.purchase-stack { margin-top: 2px; display: flex; flex-direction: column; gap: 20px; padding-top: 24px; border-top: 1px solid var(--border); }
.option-group { margin: 0; padding: 0; border: 0; }
.option-group legend { margin-bottom: 10px; }
.option-help { margin-top: 10px; color: var(--ink-soft); font-size: .9rem; }
.option-summary { padding-block: 4px; }
.option-summary strong { display: block; font-family: var(--font-heading); font-size: 1rem; }
.option-summary p { margin-top: 5px; color: var(--ink-soft); font-size: .9rem; }
.purchase-facts { list-style: none; display: grid; gap: 10px; padding-top: 18px; border-top: 1px solid var(--border); }
.purchase-facts li { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: .88rem; }
.purchase-facts svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--rose); }
.purchase-help { margin-top: -6px; color: var(--ink-soft); font-size: .88rem; }
.purchase-help a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.notify-box__title { font-family: var(--font-heading); font-weight: 600; }
.notify-box p { color: var(--ink-soft); }
.trust-row { margin-top: 2px; }
.product-tabs { display: flex; flex-direction: column; }
.cross-sell-section { margin-top: var(--section-space-compact); }
.cross-sell-section .section-row-head h2 { font-size: clamp(1.75rem, 3vw, 2.2rem); }

/* Builder, service and transactional pages */
[data-page="builder"] main,
[data-page="guestbook"] main,
[data-page="subscription"] main,
[data-page="group"] main,
[data-page="corporate"] main { background: linear-gradient(180deg, rgba(253,241,244,.48), transparent 42rem); }
[data-page="builder"] .tt-panel,
[data-page="guestbook"] .tt-panel,
[data-page="subscription"] .tt-panel,
[data-page="group"] .tt-panel,
[data-page="corporate"] .tt-panel {
  background: var(--glass-surface);
  border-color: var(--glass-border);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
}
.step-dots span { height: 7px; }
.tt-input, .tt-textarea, .tt-select { background: #fff; color: var(--ink); border-radius: var(--radius-control); }
::placeholder { color: var(--ink-muted); opacity: 1; }
.checkout-summary { top: 112px; }
.checkout-layout .tt-panel,
[data-page="account"] .tt-panel,
[data-page="contact"] .tt-panel { background: #fff; box-shadow: var(--shadow-panel); }

/* About and editorial */
.about-story-hero { padding-block: var(--section-space); background: linear-gradient(140deg, rgba(253,241,244,.86), rgba(242,248,243,.82)); }
.about-story-hero__grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); align-items: center; gap: clamp(40px, 7vw, 90px); }
.about-story-hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.about-story-hero__copy p:last-child { color: var(--ink-soft); font-size: 1.16rem; max-width: 54ch; }
.about-story-hero__media { aspect-ratio: 4 / 3; border-radius: var(--radius-hero); overflow: hidden; box-shadow: 0 30px 70px rgba(96,58,73,.14); }
.about-story-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.about-origin-note {
  max-width: 570px;
  justify-self: end;
  padding: clamp(38px, 6vw, 64px);
  border: 1px solid rgba(110,90,94,.13);
  border-radius: 4px;
  background: #fffdf9;
  box-shadow: 0 28px 65px rgba(96,58,73,.14);
  transform: rotate(.7deg);
}
.about-origin-note__lead { margin-top: 12px; color: var(--ink-soft); font-size: 1.05rem; }
.about-origin-note__question { margin: 24px 0; padding-block: 24px; border-block: 1px solid var(--border); font-family: var(--font-heading); font-size: clamp(1.55rem, 3vw, 2.15rem); font-weight: 600; line-height: 1.35; }
.about-origin-note__signoff { color: var(--ink-soft); }
.about-story-body { max-width: 1000px; }
.story-intro { max-width: 720px; margin-bottom: 48px; }
.story-intro p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.75; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.value-card { padding: 24px 0 0; border-top: 1px solid var(--border-pink); }
.value-card__icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 0; background: transparent; color: var(--rose); margin-bottom: 16px; }
.value-card__icon svg { width: 22px; height: 22px; }
.value-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.value-card p { color: var(--ink-soft); font-size: .92rem; }
.story-cta { margin-top: 44px; padding: 30px; border-radius: 20px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.story-cta h2 { font-size: clamp(1.6rem, 3vw, 2rem); }
.article-page { max-width: 820px; }
.article-header { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin: 22px 0 28px; }
.article-header h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
.article-meta, .guide-card__meta { color: var(--ink-soft); }
.article-hero { aspect-ratio: 16 / 8; border-radius: var(--radius-hero); margin-bottom: 36px; }
.article-body { display: flex; flex-direction: column; gap: 20px; color: #4A3B3E; font-size: 1.08rem; line-height: 1.75; }
.article-cta { margin-top: 44px; padding: 28px; border-radius: 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.article-cta h2 { font-size: 1.5rem; margin-top: 5px; }
.article-more { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.article-more h2 { font-size: 1.6rem; margin-bottom: 24px; }
.guide-card__media { border-radius: 18px 18px 0 0; }

/* Compact newsletter and footer */
.newsletter-cta { padding-inline: 24px; background: linear-gradient(120deg, rgba(248,200,220,.16), rgba(230,213,243,.22), rgba(200,230,208,.16)); }
.newsletter-cta__inner { max-width: 1000px; padding: clamp(24px, 4vw, 34px); border-radius: 22px; display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.9fr); gap: 28px; align-items: center; text-align: left; }
.newsletter-cta__inner h2 { margin: 6px 0; font-size: clamp(1.55rem, 3vw, 2rem); }
.newsletter-cta__inner p { color: var(--ink-soft); }
.newsletter-cta__done { grid-column: 1 / -1; }
.footer__inner { padding-top: 56px; padding-bottom: 22px; }
.footer__logo { width: 156px; height: auto; }
.footer__legal, .footer__col h4 { color: rgba(255,255,255,.68); }

.store-facts { margin-top: 32px; padding-block: 16px; border-block: 1px solid var(--border); display: flex; flex-wrap: wrap; align-items: center; gap: 10px 28px; color: var(--ink-soft); font-size: .88rem; }
.store-facts span, .store-facts a { display: inline-flex; align-items: center; gap: 8px; }
.store-facts span::before, .store-facts a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

@media (max-width: 989px) {
  .hero-split__inner { min-height: auto; }
  .service-tray { grid-template-columns: repeat(3, 1fr); }
  .service-link:nth-child(3n + 1) { border-left: 0; }
  .service-link:nth-child(n + 4) { border-top: 1px solid var(--border); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .product-info { position: static; }
  .about-story-hero__grid { grid-template-columns: 1fr; }
  .about-story-hero__media { max-width: 760px; width: 100%; }
  .about-origin-note { justify-self: stretch; max-width: 760px; }
  .newsletter-cta__inner { grid-template-columns: 1fr; }
}

@media (max-width: 699px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(2.5rem, 12vw, 3rem); }
  h2 { font-size: clamp(1.75rem, 8vw, 2.1rem); }
  .page-width { padding-inline: 20px; }
  .page-section { padding-top: 48px; padding-bottom: 48px; }
  .header__inner { min-height: 70px; gap: 8px; }
  .header__logo img.header__logo-mark { height: 50px; }
  .header__icons .header__icon-btn[aria-label="Account"] { display: none; }
  .hero-split__inner { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 64px; gap: 38px; }
  .hero-split__copy h1 { font-size: clamp(2.75rem, 13vw, 3.5rem); }
  .hero-split__actions { align-items: stretch; }
  .hero-split__actions .pill-btn { flex: 1 1 100%; }
  .hero-worktable { min-height: 430px; padding: 28px 22px; }
  .hero-worktable__sheet { padding: 28px 24px; }
  .hero-worktable__sheet > img { width: 112px; }
  .home-services { margin-top: 0; padding-top: 12px; }
  .service-tray { grid-template-columns: 1fr; padding: 0; }
  .service-link, .service-link:nth-child(3n + 1) { min-height: auto; padding: 16px 0; border-left: 0; border-top: 1px solid var(--border); display: grid; grid-template-columns: 40px minmax(0,1fr); column-gap: 12px; align-items: center; }
  .service-link:first-child { border-top: 0; }
  .service-link__icon { grid-row: 1 / 3; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step:first-child, .process-step:last-child { padding: 22px 0; border-left: 0; border-top: 1px solid var(--border); }
  .process-step:first-child { border-top: 0; padding-top: 0; }
  .process-step::before { margin-bottom: 12px; }
  .page-hero--row { align-items: flex-start; flex-direction: column; }
  .catalog-toolbar { top: 82px; margin-inline: -4px; }
  .pcard-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .pcard__info { padding: 12px 12px 8px; }
  .pcard__title { font-size: .88rem; line-height: 1.3; }
  .pcard__price { font-size: .9rem; }
  .pcard__quick-add { min-width: 0; min-height: 40px; margin: 2px 12px 12px; padding: 8px 10px; font-size: .78rem; }
  .pcard__badge { font-size: .62rem; }
  .wish-btn { width: 34px; height: 34px; }
  .media-fallback::before { left: 12px; right: 12px; bottom: 12px; font-size: .7rem; }
  .product-layout { gap: 22px; }
  .product-layout:not(:has(.product-main-img img)) .product-info { order: -1; }
  .product-main-img:not(:has(img)) { aspect-ratio: 16 / 8; }
  .product-info { padding: 24px 20px; }
  .product-info h1 { font-size: 2.35rem; }
  .buy-row { flex-direction: column; }
  .qty-picker { align-self: flex-start; }
  .values-grid { grid-template-columns: 1fr; }
  .way-grid { grid-template-columns: 1fr; }
  .store-facts { align-items: flex-start; flex-direction: column; gap: 8px; }
  .story-cta { align-items: flex-start; flex-direction: column; }
  .about-story-hero__grid { gap: 34px; }
  .about-story-hero__media { aspect-ratio: 1 / 1; }
  .about-origin-note { padding: 34px 26px; }
  .newsletter-cta { padding-inline: 14px; }
  .newsletter-cta__inner { padding: 24px 20px; }
  .newsletter-cta__form { align-items: stretch; flex-direction: column; }
  .newsletter-cta__form .tt-input--pill { min-width: 0; max-width: none; }
  .checkout-address-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
}

@media (prefers-reduced-transparency: reduce) {
  .surface-glass, .surface-glass-strong, .header, .wish-btn { -webkit-backdrop-filter: none; backdrop-filter: none; background: #fff; }
}
