/* ════════════════════════════════════════════════════════════
   ВСЯ В ЗЕФИРЕ — Editorial Boutique Patisserie Design System
   Inspired by Ladurée, Angelina, Kinfolk magazine
   ════════════════════════════════════════════════════════════ */

:root {
  --cream: #F7EBE4;
  --cream-deep: #F1E0D5;
  --ivory: #FDF8F3;
  --paper: #FFFFFF;

  --rose: #C9506B;
  --rose-deep: #A03E54;
  --rose-soft: #E8C5CE;
  --rose-pale: #F5E0E4;

  --sage: #8FA68B;
  --sage-pale: #D5DFD0;

  --lilac: #C5B4CD;
  --lilac-pale: #E8DFEB;

  --honey: #C4A584;
  --cocoa: #8B6F5C;

  --ink: #2E2A27;
  --ink-soft: #4A4340;
  --ink-muted: #7A7168;
  --ink-faint: #A8A098;

  --line: #D8CDBF;
  --line-faint: #E8DFD0;

  --f-display: 'Cormorant Garamond', 'Didot', 'Georgia', serif;
  --f-body: 'Manrope', 'Helvetica Neue', system-ui, sans-serif;
  --f-script: 'Caveat', 'Marck Script', cursive;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 10% 5%, var(--rose-pale) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 60%, var(--sage-pale) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 90%, var(--lilac-pale) 0%, transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--rose); color: var(--paper); }

.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.08; mix-blend-mode: multiply;
}

.ornament {
  position: fixed; width: 240px; height: 240px;
  color: var(--rose); pointer-events: none; z-index: 1;
  opacity: 0.7;
}
.ornament--top-left { top: -60px; left: -60px; }
.ornament--bottom-right { bottom: -60px; right: -60px; color: var(--sage); }

/* ═══════════════ TYPOGRAPHY HELPERS ═══════════════ */

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex; align-items: center; gap: 0.8em;
}
.eyebrow::before {
  content: ''; width: 2em; height: 1px; background: currentColor; opacity: 0.5;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 1rem; margin-bottom: 1.5rem;
  max-width: 16ch;
}
.section-title--huge {
  font-size: clamp(3rem, 7vw, 6rem); max-width: 20ch;
}
.section-title--center { margin-left: auto; margin-right: auto; text-align: center; max-width: 18ch; }

.section-lead {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 58ch;
}

/* ═══════════════ BUTTONS ═══════════════ */

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 12px 24px;
  font-family: var(--f-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover {
  background: var(--rose); transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201, 80, 107, 0.25);
}
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.btn--ghost {
  background: transparent; color: var(--ink-soft);
  padding: 8px; border-radius: 999px;
}
.btn--ghost:hover { background: var(--rose-pale); color: var(--rose-deep); }
.btn--lg { padding: 16px 32px; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }

/* ═══════════════ HEADER ═══════════════ */

.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 16px 0;
  backdrop-filter: blur(18px);
  background: rgba(247, 235, 228, 0.78);
  border-bottom: 1px solid rgba(216, 205, 191, 0.4);
  padding-top: calc(16px + env(safe-area-inset-top));
}
.site-header__inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
}
.brand { display: flex; flex-direction: column; gap: 2px; }
.brand__label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-muted);
}
.brand__name {
  font-family: var(--f-display);
  font-weight: 600; font-style: italic;
  font-size: 22px; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1;
}

.site-nav ul { display: flex; gap: 28px; list-style: none; justify-content: center; }
.site-nav a {
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft); position: relative;
  transition: color 0.2s;
}
.site-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--rose);
  transition: width 0.3s var(--ease-out);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { width: 100%; }

.site-header__actions { display: flex; align-items: center; gap: 12px; justify-self: end; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  border-radius: 50%; border: 1.5px solid var(--line);
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink); border-radius: 1px;
  transition: all 0.3s var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 72px 0 0 0; z-index: 40;
  background: rgba(247, 235, 228, 0.98);
  backdrop-filter: blur(24px);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 24px;
  transform: translateY(-20px); opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  display: block; padding: 18px 8px;
  font-family: var(--f-display);
  font-size: 28px; font-weight: 500; font-style: italic;
  color: var(--ink); border-bottom: 1px solid var(--line-faint);
}
.mobile-menu a:hover { color: var(--rose); }

/* ═══════════════ HERO ═══════════════ */

.hero {
  position: relative;
  max-width: 1400px; margin: 0 auto;
  padding: 80px 24px 120px;
  min-height: calc(100vh - 72px);
  display: flex; flex-direction: column;
  justify-content: center; gap: 32px;
}

.hero__kicker {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-muted);
}
.hero__kicker::before { content: '· '; color: var(--rose); font-weight: 700; }

.hero__title { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.hero__title-row { display: flex; align-items: flex-end; gap: 0.3em; }
.hero__title-row--mid { padding-left: 2em; }

.hero__word {
  font-family: var(--f-display);
  line-height: 0.88;
  letter-spacing: -0.02em;
}
.hero__word--script {
  font-style: italic; font-weight: 500;
  font-size: clamp(5rem, 14vw, 13rem);
  color: var(--ink);
}
.hero__word--small {
  font-style: italic; font-weight: 400;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--rose); position: relative; top: -0.5em;
}
.hero__word--serif {
  font-weight: 600;
  font-size: clamp(5rem, 14vw, 13rem);
  color: var(--rose-deep);
}

.hero__sprig {
  width: clamp(60px, 10vw, 120px);
  height: clamp(60px, 10vw, 120px);
  color: var(--sage);
  align-self: flex-start;
  margin-left: 0.5em; margin-top: 0.5em;
}

.hero__tagline {
  font-family: var(--f-display);
  font-weight: 400; font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  color: var(--ink-soft);
  margin-top: 12px; max-width: 40ch;
}
.hero__subline {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7; color: var(--ink-muted);
  max-width: 50ch; margin-top: -8px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; }

.hero__floating { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero__floating-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-script);
  font-size: 1.25rem; color: var(--ink-soft);
  box-shadow: 0 4px 12px rgba(46, 42, 39, 0.04);
  transition: all 0.3s var(--ease-out);
}
.hero__floating-chip::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose); flex-shrink: 0;
}
.hero__floating-chip:hover {
  transform: translateY(-2px) rotate(0deg) !important;
  box-shadow: 0 8px 20px rgba(46, 42, 39, 0.08);
}

.hero__scroll {
  position: absolute; bottom: 32px; left: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-body);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0;
  animation: fadeIn 1.2s 1.2s var(--ease-out) forwards;
}
.hero__scroll svg { color: var(--rose); animation: bob 2s ease-in-out infinite; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ═══════════════ MANIFESTO ═══════════════ */

.manifesto { max-width: 1400px; margin: 0 auto; padding: 100px 24px; }
.manifesto__grid {
  display: grid; gap: 32px; margin-top: 48px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.manifesto__card {
  padding: 32px 8px;
  border-top: 1px solid var(--ink);
  display: flex; flex-direction: column; gap: 12px;
}
.manifesto__num {
  font-family: var(--f-display);
  font-weight: 400; font-style: italic;
  font-size: 48px; line-height: 1;
  color: var(--rose); margin-bottom: 4px;
}
.manifesto__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 28px; line-height: 1.1;
  color: var(--ink);
}
.manifesto__text { font-size: 15px; line-height: 1.7; color: var(--ink-muted); }

/* ═══════════════ DIVIDER ═══════════════ */
.divider { max-width: 400px; margin: 40px auto; color: var(--rose); opacity: 0.6; }

/* ═══════════════ PRICE STRIP ═══════════════ */

.price-strip { max-width: 1400px; margin: 0 auto; padding: 80px 24px; }
.price-strip__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.price-strip__head .eyebrow { justify-content: center; }
.price-strip__head .eyebrow::before { display: none; }
.price-strip__head .eyebrow::after {
  content: ''; width: 2em; height: 1px; background: currentColor; opacity: 0.5;
}
.price-strip__head .section-lead { margin-left: auto; margin-right: auto; text-align: center; }

.price-strip__grid {
  display: grid; gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.price-chip {
  padding: 28px 20px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(253, 248, 243, 0.5);
  transition: background 0.3s;
  text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.price-chip:hover { background: var(--paper); }
.price-chip__name {
  font-family: var(--f-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted);
}
.price-chip__from {
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: 10px; color: var(--ink-faint); margin-top: 4px;
}
.price-chip__price {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--rose-deep); line-height: 1;
}
.price-chip__unit { font-size: 11px; color: var(--ink-faint); letter-spacing: 0.05em; }

/* ═══════════════ COLLECTION ═══════════════ */

.collection { padding: 120px 0; position: relative; }
.collection__head {
  max-width: 1400px; margin: 0 auto 80px; padding: 0 24px;
  text-align: center;
}
.collection__head .eyebrow { justify-content: center; }
.collection__head .eyebrow::before { display: none; }
.collection__head .eyebrow::after {
  content: ''; width: 2em; height: 1px; background: currentColor; opacity: 0.5;
}
.collection__head .section-lead { margin-left: auto; margin-right: auto; text-align: center; }

.collection__list { display: flex; flex-direction: column; gap: 120px; }
.collection__item {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.collection__item--reverse { direction: rtl; }
.collection__item--reverse > * { direction: ltr; }

.collection__image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px; overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
  box-shadow: 0 30px 60px -30px rgba(46, 42, 39, 0.25);
}
.collection__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(46, 42, 39, 0.2));
}
.collection__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.collection__item:hover .collection__image img { transform: scale(1.04); }

.collection__image--placeholder {
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8) 0%, transparent 50%),
    linear-gradient(135deg, var(--accent-fill, var(--rose-soft)) 0%, var(--ivory) 100%);
}
.collection__image--placeholder::before {
  content: '';
  position: absolute; inset: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  pointer-events: none;
}
.collection__image--placeholder span {
  position: relative;
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--paper);
  text-shadow: 0 2px 12px rgba(46, 42, 39, 0.25);
}

.collection__num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--f-display);
  font-weight: 400; font-style: italic;
  font-size: 20px;
  color: var(--paper); background: var(--rose-deep);
  padding: 8px 16px; border-radius: 999px;
  z-index: 2; letter-spacing: 0.05em;
}

.collection__body { display: flex; flex-direction: column; gap: 20px; }

.collection__category {
  font-family: var(--f-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rose);
}
.collection__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--ink); margin: -8px 0 0;
}
.collection__title em { font-weight: 500; color: var(--rose-deep); font-style: italic; }

.collection__tagline {
  font-family: var(--f-display);
  font-weight: 400; font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--ink-soft); margin-top: -8px;
}

.collection__description {
  font-size: 15px; line-height: 1.7;
  color: var(--ink-muted); max-width: 46ch;
}

.collection__sizes {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.collection__size-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}
.collection__size-label {
  font-family: var(--f-body);
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
}
.collection__size-price {
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: 1.4rem; color: var(--ink);
  white-space: nowrap;
}
.collection__size-old {
  color: var(--ink-faint); text-decoration: line-through;
  margin-right: 8px;
  font-size: 0.85em; font-style: normal; font-weight: 400;
}

.collection__flavors {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 12px;
}
.collection__flavor {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--f-body);
  font-size: 12px; font-weight: 500;
  background: var(--paper); color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.collection__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: 18px; color: var(--rose-deep);
  border-bottom: 1px solid var(--rose-deep);
  padding-bottom: 4px;
  width: fit-content;
}
.collection__cta svg { transition: transform 0.3s var(--ease-out); }
.collection__cta:hover svg { transform: translateX(4px); }

/* ═══════════════ PROCESS ═══════════════ */

.process { max-width: 1400px; margin: 0 auto; padding: 120px 24px; }
.process__track {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 56px;
}
.process__step {
  position: relative; padding: 32px 24px;
  background: var(--paper); border-radius: 8px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.4s var(--ease-out);
}
.process__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(46, 42, 39, 0.15);
  border-color: var(--rose-soft);
}
.process__num {
  font-family: var(--f-display);
  font-weight: 400; font-style: italic;
  font-size: 14px; letter-spacing: 0.15em;
  color: var(--rose); text-transform: uppercase;
}
.process__title {
  font-family: var(--f-display);
  font-weight: 600; font-size: 28px;
  line-height: 1.1; color: var(--ink);
}
.process__text { font-size: 14px; line-height: 1.7; color: var(--ink-muted); }

/* ═══════════════ SOCIAL PROOF ═══════════════ */

.social { max-width: 1400px; margin: 0 auto; padding: 100px 24px; }
.social__stats {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 48px 0 80px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.social__stat { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.social__stat-big {
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1; color: var(--rose-deep);
}
.social__stat-small {
  font-family: var(--f-body);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; color: var(--ink-muted);
  max-width: 22ch; margin: 0 auto;
}

.social__quotes {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.social__quote {
  position: relative;
  padding: 48px 32px 32px;
  background: var(--paper); border-radius: 8px;
  border: 1px solid var(--line);
}
.social__quote::before {
  content: '“';
  position: absolute; top: 8px; left: 24px;
  font-family: var(--f-display);
  font-size: 80px; font-weight: 400;
  color: var(--rose);
  line-height: 0.8; font-style: italic;
}
.social__quote-text {
  font-family: var(--f-display);
  font-weight: 400; font-style: italic;
  font-size: 1.05rem; line-height: 1.55;
  color: var(--ink-soft); margin-bottom: 20px;
}
.social__quote-foot { display: flex; flex-direction: column; gap: 2px; }
.social__quote-name {
  font-family: var(--f-body);
  font-size: 14px; font-weight: 700;
  color: var(--ink);
}
.social__quote-context {
  font-family: var(--f-body);
  font-size: 12px; color: var(--ink-faint); font-weight: 500;
}

/* ═══════════════ CONTACT ═══════════════ */

.contact {
  padding: 100px 24px 120px;
  background: linear-gradient(180deg, transparent 0%, var(--cream-deep) 40%);
  position: relative;
}
.contact::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--rose); opacity: 0.4;
}
.contact__inner {
  max-width: 920px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.contact__title {
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95; letter-spacing: -0.02em;
  color: var(--ink); margin-top: 12px;
  max-width: 14ch;
}
.contact__description {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--ink-soft);
  max-width: 48ch; margin-bottom: 20px;
}

.contact__methods {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0 32px;
}
.contact__method {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600; font-size: 15px;
  transition: all 0.3s var(--ease-out);
  border: 1.5px solid transparent;
}
.contact__method--primary { background: var(--ink); color: var(--paper); }
.contact__method--primary:hover {
  background: var(--rose-deep); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 80, 107, 0.3);
}
.contact__method--secondary {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.contact__method--secondary:hover {
  border-color: var(--ink); background: var(--paper); transform: translateY(-2px);
}
.contact__method small { font-size: 12px; font-weight: 400; opacity: 0.7; }

.contact__footer {
  display: flex; gap: 24px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--line);
  width: 100%; max-width: 600px;
}
.contact__meta {
  font-family: var(--f-body);
  font-size: 12px; font-weight: 500;
  color: var(--ink-muted); letter-spacing: 0.02em;
}

/* ═══════════════ FOOTER ═══════════════ */

.site-footer {
  padding: 48px 24px calc(32px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--cream-deep);
}
.site-footer__inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 24px;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 4px; }
.site-footer__name {
  font-family: var(--f-display);
  font-weight: 600; font-style: italic;
  font-size: 20px; color: var(--ink);
}
.site-footer__tagline { font-size: 12px; color: var(--ink-muted); letter-spacing: 0.05em; }
.site-footer__meta {
  font-size: 12px; font-weight: 500;
  color: var(--ink-muted); letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; gap: 8px;
}
.site-footer__made {
  width: 100%; text-align: center;
  font-family: var(--f-script);
  font-size: 1.2rem; color: var(--rose);
  margin-top: 16px; padding-top: 16px;
  border-top: 1px dashed var(--line);
}

/* ═══════════════ REVEAL ANIMATIONS ═══════════════ */

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 960px) {
  .site-nav { display: none; }
  .site-header__actions .btn--primary { display: none; }
  .nav-toggle { display: flex; }

  .collection__item { grid-template-columns: 1fr; gap: 32px; }
  .collection__item--reverse { direction: ltr; }
  .collection__image { aspect-ratio: 1 / 1; max-width: 100%; }

  .hero { padding: 56px 20px 80px; min-height: auto; gap: 24px; }
  .hero__title-row--mid { padding-left: 1em; }

  .manifesto, .price-strip, .process, .social { padding: 72px 20px; }
  .collection { padding: 80px 0; }
  .collection__list { gap: 80px; }
  .collection__head { padding: 0 20px; margin-bottom: 56px; }

  .contact { padding: 72px 20px 80px; }
}

@media (max-width: 640px) {
  .site-header__inner { grid-template-columns: auto auto; gap: 16px; padding: 0 16px; }
  .site-header__actions { gap: 8px; }
  .site-header__actions .btn--ghost { display: none; }

  .brand__name { font-size: 18px; }
  .brand__label { font-size: 8px; }

  .hero { padding: 48px 20px 80px; }
  .hero__sprig { display: none; }
  .hero__word--script, .hero__word--serif { font-size: clamp(4rem, 18vw, 6rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  .manifesto__grid { gap: 24px; margin-top: 32px; }
  .manifesto__card { padding: 24px 4px; }

  .price-strip__grid { grid-template-columns: repeat(2, 1fr); }

  .collection__list { gap: 64px; }
  .collection__title { font-size: clamp(2rem, 8vw, 3rem); }

  .process__track { margin-top: 40px; gap: 12px; }
  .process__step { padding: 24px 20px; }

  .social__stats { margin: 32px 0 48px; padding: 24px 0; gap: 24px; }
  .social__quote { padding: 40px 24px 24px; }

  .contact__methods { flex-direction: column; align-items: stretch; }
  .contact__method { justify-content: center; }
  .contact__footer { flex-direction: column; gap: 8px; text-align: center; }

  .site-footer__inner { flex-direction: column; text-align: center; }
  .site-footer__meta { justify-content: center; }
}

@media (max-width: 400px) {
  .price-strip__grid { grid-template-columns: 1fr; }
  .hero__word--script, .hero__word--serif { font-size: 3.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
