/* ==========================================================================
   Fitpink India Private Limited - Core Stylesheet
   Apparel & garments. Blush / rose / plum, editorial serif display.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --bg:        #fffafb;
  --bg-2:      #fdeef2;
  --paper:     #ffffff;
  --ink:       #24121c;
  --ink-2:     #4a3340;
  --muted:     #6f5b66;
  --dim:       #9c8b95;

  --line:      #f1dfe5;
  --line-2:    #e3c9d3;

  --rose:      #e0417a;
  --rose-dk:   #b62a5e;
  --plum:      #6d2348;
  --coral:     #ff7d5c;
  --gold:      #c9944a;
  --mint:      #2f8f7a;

  --grad:      linear-gradient(118deg, #e0417a, #ff7d5c 55%, #c9944a);
  --grad-2:    linear-gradient(140deg, #6d2348, #e0417a);
  --grad-soft: linear-gradient(140deg, #ffe6ee, #ffeede);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 6px -3px rgba(109, 35, 72, .18);
  --shadow:    0 20px 44px -26px rgba(109, 35, 72, .42);
  --shadow-lg: 0 40px 70px -36px rgba(224, 65, 122, .48);

  --ff:        "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ff-head:   "Fraunces", "Georgia", "Times New Roman", serif;

  --shell:     1180px;
  --pad:       clamp(1.15rem, 4vw, 2.25rem);
  --sec-y:     clamp(4.25rem, 8.5vw, 7rem);
  --ease:      cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff);
  font-size: 16px; line-height: 1.7;
  color: var(--ink-2);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0 0 .58em; font-family: var(--ff-head); font-weight: 600; line-height: 1.12; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 6.6vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(1.95rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.12rem, 2vw, 1.35rem); }
p  { margin: 0 0 1.05rem; color: var(--muted); }
a  { color: inherit; text-decoration: none; }
ul, ol { margin: 0 0 1.05rem; padding-left: 1.15rem; color: var(--muted); }
li { margin-bottom: .5rem; }
strong { color: var(--ink); font-weight: 600; }
svg, img { max-width: 100%; display: block; }
:focus-visible { outline: 2.5px solid var(--rose); outline-offset: 3px; border-radius: 6px; }
::selection { background: #ffd7e4; color: var(--ink); }

/* ---------- 3. Layout ---------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--pad); }
.section { position: relative; padding-block: var(--sec-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--tint { background: var(--bg-2); }
.section--paper { background: var(--paper); border-block: 1px solid var(--line); }
.section--plum { background: var(--plum); color: #f6e3ea; }
.section--plum h2, .section--plum h3 { color: #fff; }
.section--plum p { color: #dcbccb; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 18px; height: 1.5px; background: currentColor; opacity: .5; }
.eyebrow::after { display: none; }
.sec-head--center .eyebrow::after { display: block; }
.section--plum .eyebrow { color: #f5b4c9; }

.sec-head { max-width: 640px; margin-bottom: clamp(2.2rem, 4.5vw, 3.2rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head p { font-size: 1.04rem; margin-bottom: 0; }

.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.serif-italic { font-family: var(--ff-head); font-style: italic; font-weight: 400; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-size: .92rem; font-weight: 600; letter-spacing: .01em;
  padding: .88rem 1.7rem; border-radius: var(--radius-pill); border: 1.5px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn--primary { background: var(--grad); background-size: 180% 100%; color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background-position: 100% 0; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-3px); }
.btn--dark { background: var(--plum); color: #fff; }
.btn--dark:hover { background: var(--ink); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--plum); }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -18px rgba(0,0,0,.5); }
.btn--sm { padding: .6rem 1.2rem; font-size: .85rem; }

.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-size: .9rem; font-weight: 600; color: var(--rose); }
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- 5. Header ---------- */
.site-head { position: sticky; top: 0; z-index: 90; background: rgba(255,250,251,.82); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.site-head.is-stuck { border-bottom-color: var(--line); box-shadow: 0 10px 30px -24px rgba(109,35,72,.6); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--ff-head); font-weight: 600; font-size: 1.28rem; letter-spacing: -.02em; color: var(--ink); }
.brand__mark { width: 36px; height: 36px; flex: 0 0 36px; }
.brand em { font-style: italic; color: var(--rose); }

.nav__links { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; }
.nav__links a { display: block; padding: .5rem .82rem; font-size: .9rem; font-weight: 500; color: var(--muted); border-radius: var(--radius-pill); transition: color .25s var(--ease), background .25s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); background: var(--bg-2); }
.nav__cta { display: flex; align-items: center; gap: .6rem; }

.burger { display: none; width: 42px; height: 42px; padding: 0; border: 1.5px solid var(--line-2); border-radius: 50%; background: var(--paper); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { display: block; width: 16px; height: 1.7px; background: var(--ink); border-radius: 2px; transition: transform .32s var(--ease), opacity .22s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.7px) rotate(-45deg); }

@media (max-width: 960px) {
  .burger { display: flex; }
  .nav__cta .btn { display: none; }
  .nav__links {
    position: fixed; inset: 78px 0 auto; flex-direction: column; align-items: stretch; gap: 0;
    padding: .8rem var(--pad) 1.6rem; background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -30px rgba(109,35,72,.6);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .34s var(--ease), opacity .3s var(--ease), visibility .34s;
  }
  .nav__links.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__links a { padding: .88rem .4rem; font-size: 1.02rem; border-bottom: 1px solid var(--line); border-radius: 0; }
}

/* ---------- 6. Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3.5rem, 8vw, 6rem); }
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__bg svg { width: 100%; height: 100%; }
.blob--1 { animation: drift 20s var(--ease) infinite; transform-origin: center; }
.blob--2 { animation: drift 26s var(--ease) infinite reverse; transform-origin: center; }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(28px,-22px) scale(1.1); } 66% { transform: translate(-24px,20px) scale(.93); } }

.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: 1.1rem; }
.hero__lead { font-size: clamp(1rem, 1.5vw, 1.13rem); max-width: 50ch; margin-bottom: 1.9rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.3rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .55rem; }
.pill { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600; letter-spacing: .04em; padding: .42rem .9rem; border-radius: var(--radius-pill); background: var(--paper); border: 1px solid var(--line); color: var(--muted); }
.pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } .hero__art { max-width: 460px; margin-inline: auto; } }

.hero__art { position: relative; aspect-ratio: 1 / 1.06; }
.hero__art svg { width: 100%; height: 100%; overflow: visible; }

/* shared SVG animations */
.spin { transform-origin: center; animation: spin 34s linear infinite; }
.spin--rev { transform-origin: center; animation: spin 26s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.dash { stroke-dasharray: 6 9; animation: dash 3s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -30; } }
.sway  { animation: sway 6s var(--ease) infinite; transform-origin: top center; }
.sway--2 { animation: sway 7.4s var(--ease) infinite .7s; transform-origin: top center; }
.sway--3 { animation: sway 8.6s var(--ease) infinite 1.4s; transform-origin: top center; }
@keyframes sway { 0%,100% { transform: rotate(-1.6deg); } 50% { transform: rotate(1.6deg); } }
.bob   { animation: bob 5.5s var(--ease) infinite; }
.bob--2 { animation: bob 7s var(--ease) infinite .6s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.twinkle { animation: twinkle 3.2s var(--ease) infinite; transform-origin: center; }
.twinkle--2 { animation: twinkle 4.1s var(--ease) infinite .8s; transform-origin: center; }
@keyframes twinkle { 0%,100% { opacity: .3; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.12); } }
.stitch { stroke-dasharray: 3 6; animation: dash 1.8s linear infinite; }
.thread { stroke-dasharray: 400; stroke-dashoffset: 400; animation: draw 4.5s var(--ease) infinite; }
@keyframes draw { 0% { stroke-dashoffset: 400; } 55%, 100% { stroke-dashoffset: 0; } }

/* ---------- 7. Marquee ---------- */
.marquee { overflow: hidden; background: var(--plum); color: #fff; padding-block: .95rem; }
.marquee__track { display: flex; gap: 2.6rem; width: max-content; animation: slide 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee__item { display: inline-flex; align-items: center; gap: .7rem; white-space: nowrap; font-family: var(--ff-head); font-size: 1.02rem; font-style: italic; color: #fadfe8; }
.marquee__item::after { content: "✦"; color: var(--rose); font-style: normal; font-size: .8rem; }

/* ---------- 8. Category cards ---------- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.cat {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .42s var(--ease), box-shadow .42s var(--ease), border-color .42s var(--ease);
}
.cat:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--line-2); }
.cat__art { position: relative; aspect-ratio: 4/3.2; overflow: hidden; background: var(--grad-soft); }
.cat__art svg { width: 100%; height: 100%; }
.cat:nth-child(2) .cat__art { background: linear-gradient(140deg,#ffe4ec,#f3e6ff); }
.cat:nth-child(3) .cat__art { background: linear-gradient(140deg,#fff0e0,#ffe0e8); }
.cat:nth-child(4) .cat__art { background: linear-gradient(140deg,#e8f6f1,#ffeaf1); }
.cat:nth-child(5) .cat__art { background: linear-gradient(140deg,#fdeade,#f6e2ef); }
.cat:nth-child(6) .cat__art { background: linear-gradient(140deg,#efe7fb,#ffe7ef); }
.cat__body { padding: 1.35rem 1.5rem 1.6rem; }
.cat__body h3 { margin-bottom: .35rem; }
.cat__body p { font-size: .92rem; margin-bottom: .9rem; }
.cat__tag { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--plum); background: rgba(255,255,255,.88); padding: .32rem .72rem; border-radius: var(--radius-pill); backdrop-filter: blur(6px); }

/* ---------- 9. Generic card ---------- */
.card {
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card h3 { margin-bottom: .4rem; }
.card p { font-size: .93rem; margin-bottom: 0; }
.card__icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; background: var(--grad-soft); margin-bottom: 1.1rem; }
.card__icon svg { width: 23px; height: 23px; stroke: var(--rose); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card__num { display: block; font-family: var(--ff-head); font-size: 1.9rem; font-style: italic; color: var(--line-2); line-height: 1; margin-bottom: .7rem; }
.section--plum .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.section--plum .card p { color: #dcbccb; }
.section--plum .card__num { color: rgba(255,255,255,.28); }

/* ---------- 10. Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__art { order: -1; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--rev .split__art { order: 0; } }
.split__art { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--grad-soft); border: 1px solid var(--line); aspect-ratio: 4/3.4; }
.section--plum .split__art { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.split__art svg { width: 100%; height: 100%; }

.check-list { list-style: none; padding: 0; margin: 1.3rem 0 1.8rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; margin-bottom: .72rem; }
.check-list li::before {
  content: ""; flex: 0 0 20px; height: 20px; margin-top: .3rem; border-radius: 50%; background: #ffe4ec;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0417a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.section--plum .check-list li { color: #dcbccb; }
.section--plum .check-list li::before { background-color: rgba(255,255,255,.14); }

/* ---------- 11. Process rail ---------- */
.rail { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; position: relative; }
.rail::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 1.5px; background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px); }
.rail__item { text-align: center; position: relative; }
.rail__dot {
  width: 54px; height: 54px; margin: 0 auto .95rem; display: grid; place-items: center; border-radius: 50%;
  background: var(--paper); border: 1.5px solid var(--line-2); position: relative; z-index: 1;
  font-family: var(--ff-head); font-size: 1.05rem; font-weight: 600; color: var(--rose);
  transition: background .34s var(--ease), color .34s var(--ease), border-color .34s var(--ease), transform .34s var(--ease);
}
.rail__item:hover .rail__dot { background: var(--grad); color: #fff; border-color: transparent; transform: scale(1.08); }
.rail__item h3 { font-size: 1rem; margin-bottom: .3rem; }
.rail__item p { font-size: .87rem; margin: 0; }
@media (max-width: 880px) { .rail { grid-template-columns: repeat(2, 1fr); } .rail::before { display: none; } }
@media (max-width: 480px) { .rail { grid-template-columns: 1fr; } }

/* ---------- 12. Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2rem); text-align: center; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat__num { font-family: var(--ff-head); font-size: clamp(2.1rem, 4.4vw, 3.1rem); font-weight: 600; line-height: 1; color: var(--ink); }
.section--plum .stat__num { color: #fff; }
.stat__label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); margin-top: .5rem; }
.section--plum .stat__label { color: #d5adbf; }

/* ---------- 13. Quotes ---------- */
.quote { padding: clamp(1.5rem, 2.6vw, 2rem); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.quote__stars { display: flex; gap: 3px; margin-bottom: .85rem; }
.quote__stars svg { width: 15px; height: 15px; fill: var(--gold); }
.quote p { font-family: var(--ff-head); font-size: 1.02rem; font-style: italic; color: var(--ink-2); line-height: 1.6; }
.quote__by { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.avatar { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; display: grid; place-items: center; font-size: .84rem; font-weight: 700; color: #fff; background: var(--grad-2); }
.quote__by b { display: block; font-size: .9rem; color: var(--ink); }
.quote__by small { font-size: .79rem; color: var(--dim); }

/* ---------- 14. FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  font-family: var(--ff-head); font-size: 1.06rem; font-weight: 600; color: var(--ink); text-align: left;
  padding: 1.35rem .1rem; background: none; border: 0; cursor: pointer; transition: color .26s var(--ease);
}
.faq__q:hover { color: var(--rose); }
.faq__icon { flex: 0 0 26px; height: 26px; position: relative; border-radius: 50%; background: var(--bg-2); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; inset: 50% 7px auto; height: 1.8px; background: var(--rose); border-radius: 2px; transform: translateY(-50%); transition: transform .34s var(--ease), opacity .34s var(--ease); }
.faq__icon::after { transform: translateY(-50%) rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: translateY(-50%); opacity: 0; }
.faq__a { overflow: hidden; height: 0; transition: height .38s var(--ease); }
.faq__a p { padding: 0 .1rem 1.35rem; margin: 0; font-size: .95rem; max-width: 74ch; }

/* ---------- 15. CTA ---------- */
.cta { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--grad-2); color: #fff; padding: clamp(2.6rem, 6vw, 4.4rem) clamp(1.4rem, 4vw, 3rem); text-align: center; }
.cta h2 { color: #fff; }
.cta p { color: #f4cfdd; max-width: 54ch; margin-inline: auto; }
.cta__art { position: absolute; inset: 0; opacity: .35; pointer-events: none; }
.cta > *:not(.cta__art) { position: relative; z-index: 1; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.7rem; }

/* ---------- 16. Contact ---------- */
.contact { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(2rem, 4vw, 3.4rem); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
.info-row { display: flex; gap: .95rem; padding: 1.05rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row svg { width: 19px; height: 19px; flex: 0 0 19px; margin-top: .35rem; stroke: var(--rose); fill: none; stroke-width: 1.7; }
.info-row b { display: block; font-size: .73rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); font-weight: 700; }
.info-row span { font-size: .96rem; color: var(--ink-2); }

.form { padding: clamp(1.5rem, 3vw, 2.2rem); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); margin-bottom: .42rem; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  padding: .8rem .95rem; border-radius: var(--radius-sm); border: 1px solid var(--line-2); background: #fffdfd;
  transition: border-color .26s var(--ease), box-shadow .26s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(224,65,122,.13); }
.field input::placeholder, .field textarea::placeholder { color: #bda9b3; }
.form__note { font-size: .79rem; color: var(--dim); margin: .85rem 0 0; }
.form__status { font-size: .88rem; color: var(--mint); margin-top: .8rem; min-height: 1.2em; font-weight: 500; }

/* ---------- 17. Footer ---------- */
.site-foot { background: var(--ink); color: #b7a3ad; margin-top: clamp(3rem, 6vw, 5rem); }
.site-foot .brand { color: #fff; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.2rem; padding-block: clamp(2.6rem, 5vw, 3.8rem); }
@media (max-width: 860px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__grid { grid-template-columns: 1fr; } }
.foot__grid h4 { font-family: var(--ff); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: #7d6b75; font-weight: 700; margin-bottom: 1rem; }
.foot__list { list-style: none; padding: 0; margin: 0; }
.foot__list li { margin-bottom: .55rem; }
.foot__list a { font-size: .92rem; color: #b7a3ad; transition: color .25s var(--ease), padding-left .25s var(--ease); }
.foot__list a:hover { color: #f5b4c9; padding-left: 4px; }
.foot__about p { font-size: .92rem; max-width: 42ch; margin-top: 1rem; color: #b7a3ad; }
.foot__bar { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-block: 1.4rem; border-top: 1px solid #3a2531; font-size: .84rem; color: #7d6b75; }
.foot__bar nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.foot__bar a:hover { color: #f5b4c9; }

/* ---------- 18. Legal pages ---------- */
.page-head { position: relative; overflow: hidden; padding-block: clamp(2.8rem, 6vw, 4.5rem) clamp(1.8rem, 4vw, 2.8rem); background: var(--bg-2); border-bottom: 1px solid var(--line); }
.page-head__art { position: absolute; right: -70px; top: -50px; width: 400px; opacity: .5; pointer-events: none; }
.page-head > .shell { position: relative; z-index: 1; }
.crumbs { font-size: .84rem; color: var(--dim); margin-bottom: .9rem; }
.crumbs a:hover { color: var(--rose); }
.legal { display: grid; grid-template-columns: 250px 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; padding-block: clamp(2.4rem, 5vw, 4rem); }
@media (max-width: 900px) { .legal { grid-template-columns: 1fr; } .legal__toc { position: static !important; } }
.legal__toc { position: sticky; top: 100px; padding: 1.3rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.legal__toc h4 { font-family: var(--ff); font-size: .73rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); margin-bottom: .85rem; font-weight: 700; }
.legal__toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.legal__toc li { margin-bottom: .3rem; counter-increment: toc; }
.legal__toc a { display: block; font-size: .86rem; color: var(--muted); padding: .27rem .45rem; border-radius: 8px; transition: color .25s var(--ease), background .25s var(--ease); }
.legal__toc a::before { content: counter(toc) ". "; color: var(--dim); }
.legal__toc a:hover, .legal__toc a.is-active { color: var(--rose); background: var(--bg-2); }
.legal__body { max-width: 74ch; }
.legal__body h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); margin-top: 2.5rem; scroll-margin-top: 100px; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font-size: 1.05rem; margin-top: 1.6rem; }
.legal__body p, .legal__body li { font-size: .96rem; }
.notice { padding: 1.15rem 1.3rem; border-radius: var(--radius-sm); margin-bottom: 1.9rem; background: var(--grad-soft); border-left: 3px solid var(--rose); }
.notice p { margin: 0; font-size: .93rem; color: var(--ink-2); }
.notice--warn { background: #fff2e8; border-left-color: var(--coral); }
.meta-row { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: .84rem; color: var(--dim); }
.meta-row b { color: var(--ink-2); font-weight: 600; }

/* ---------- 19. Reveal + utilities ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .09s; }
[data-reveal][data-delay="2"] { transition-delay: .18s; }
[data-reveal][data-delay="3"] { transition-delay: .27s; }
[data-reveal][data-delay="4"] { transition-delay: .36s; }
[data-reveal][data-delay="5"] { transition-delay: .45s; }

.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100; background: var(--grad); }
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 80; width: 46px; height: 46px;
  display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-2);
  background: var(--paper); box-shadow: var(--shadow-sm); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, border-color .3s var(--ease);
}
.to-top.is-on { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--rose); }
.to-top svg { width: 17px; height: 17px; stroke: var(--rose); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

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