/* Neesh marketing site — premium shared styles */
:root {
  --brand: #C0392B;
  --brand-2: #E24A6A;
  --brand-deep: #8e2a20;
  --ink: #20242e;
  --muted: #5c6473;
  --line: #ecdebe00; /* overridden below */
  --line: #ece8e6;
  --bg: #ffffff;
  --bg-soft: #fbf6f5;
  --bg-rose: #fdeef0;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(32, 36, 46, 0.05);
  --shadow: 0 12px 34px rgba(192, 57, 43, 0.10);
  --shadow-lg: 0 24px 60px rgba(32, 36, 46, 0.16);
  --max: 1140px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.18; color: var(--ink); margin: 0 0 0.5em; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); letter-spacing: -0.025em; font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); letter-spacing: -0.02em; font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }

/* Inline SVG icon sizing */
svg { display: block; }
.ico svg { width: 24px; height: 24px; }
.ico-inline svg { width: 16px; height: 16px; }
.ico-inline { display: inline-flex; vertical-align: -2px; margin-right: 4px; color: currentColor; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand .dot {
  width: 13px; height: 13px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(226, 74, 106, 0.14);
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--brand); text-decoration: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 24px rgba(192,57,43,0.22);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 16px 38px rgba(192,57,43,0.30); }
.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--bg-rose); box-shadow: none; }
.btn-glass {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-glass:hover { background: rgba(255,255,255,0.26); box-shadow: none; }

/* Hero with background photography */
.hero {
  position: relative;
  padding: 112px 0 96px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(28,16,18,0.86) 0%, rgba(70,22,28,0.66) 42%, rgba(142,42,32,0.30) 100%),
    url("assets/hero.jpg");
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.eyebrow {
  display: inline-block;
  background: var(--bg-rose);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow-light {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero p.lead { font-size: 1.18rem; color: rgba(255,255,255,0.92); max-width: 560px; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-note { margin-top: 24px; font-size: 0.86rem; color: rgba(255,255,255,0.82); display: flex; align-items: center; }
.hero-note strong { color: #fff; }

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  color: var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-card h3 { font-size: 0.95rem; color: var(--muted); font-weight: 600; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.04em; }
.flow-step {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px dashed var(--line);
}
.flow-step:last-child { border-bottom: none; }
.flow-num {
  flex: none;
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-weight: 700; font-size: 0.9rem;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(192,57,43,0.28);
}
.flow-step strong { display: block; }
.flow-step span { color: var(--muted); font-size: 0.92rem; }

/* Trust strip */
.trust-strip {
  background: var(--ink);
  color: #fff;
}
.trust-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 28px;
  padding: 20px 24px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.88);
}
.trust-item svg { width: 18px; height: 18px; color: var(--brand-2); flex: none; }

/* Sections */
section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 700px; margin-bottom: 50px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }

/* Cards grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #f3d6da; }
.card .ico {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--bg-rose), #fff);
  border: 1px solid #f3d6da;
  color: var(--brand);
  display: grid; place-items: center; margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* Service showcase (photo tiles) */
.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
  margin-bottom: 36px;
}
.shot {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(20,12,14,0.72) 100%), var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.shot:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.shot-tall { grid-row: span 2; }
.shot figcaption {
  position: absolute; left: 16px; bottom: 14px;
  color: #fff; font-weight: 700; font-size: 1.02rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  letter-spacing: -0.01em;
}

/* Categories */
.cats { display: flex; flex-wrap: wrap; gap: 12px; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 11px 19px;
  font-weight: 500; font-size: 0.95rem; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.cat-dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }

/* How it works numbered */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative; padding: 28px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step .n {
  font-size: 0.78rem; font-weight: 700; color: var(--brand);
  background: var(--bg-rose); border-radius: 999px; padding: 5px 13px; display: inline-block; margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* Pricing */
.price-wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 26px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-sm);
}
.price-card.featured {
  border: 1.5px solid var(--brand);
  background: linear-gradient(180deg, #fff, var(--bg-rose));
  box-shadow: var(--shadow);
  position: relative;
}
.price-big { font-size: 2.7rem; font-weight: 800; color: var(--brand); letter-spacing: -0.02em; margin-top: 6px; }
.price-big small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-list { list-style: none; padding: 0; margin: 20px 0 0; }
.price-list li { padding: 9px 0 9px 30px; position: relative; color: var(--ink); }
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 18px; height: 18px; border-radius: 50%;
  background:
    linear-gradient(135deg, var(--brand), var(--brand-2));
}
.price-list li::after {
  content: ""; position: absolute; left: 5px; top: 17px;
  width: 6px; height: 3px; border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* CTA band with background photo */
.cta-band {
  position: relative; overflow: hidden; color: #fff;
  padding: 96px 0;
}
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(120deg, rgba(142,42,32,0.92), rgba(192,57,43,0.78) 55%, rgba(226,74,106,0.74));
}
.cta-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(120deg, rgba(20,12,14,0.5), rgba(20,12,14,0.1)), url("assets/salon.jpg");
  background-size: cover; background-position: center;
  mix-blend-mode: overlay; opacity: 0.5;
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255,255,255,0.92); font-size: 1.08rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card { text-align: left; }
.contact-card a { font-weight: 600; }

/* Footer */
.site-footer {
  background: #181b23;
  color: #c7ccd6;
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 38px;
}
.site-footer .brand { color: #fff; }
.site-footer p { color: #9aa1ae; font-size: 0.92rem; }
.footer-col h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.footer-col a { color: #c7ccd6; display: block; padding: 6px 0; font-size: 0.94rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2a2e3a;
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem; color: #8b92a0;
}
.footer-bottom a { color: #c7ccd6; }

/* Legal pages */
.legal-hero {
  position: relative; overflow: hidden;
  padding: 84px 0 56px; border-bottom: 1px solid var(--line);
  color: #fff;
}
.legal-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(120deg, rgba(28,16,18,0.9), rgba(142,42,32,0.6)), url("assets/makeup.jpg");
  background-size: cover; background-position: center;
}
.legal-hero .container { position: relative; z-index: 1; }
.legal-hero h1 { color: #fff; }
.legal-hero .eyebrow { background: rgba(255,255,255,0.16); color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.legal-hero .muted-small { color: rgba(255,255,255,0.8); }
.legal-body { padding: 56px 0 80px; }
.legal-body .container { max-width: 820px; }
.legal-body h2 { margin-top: 40px; font-size: 1.4rem; }
.legal-body h3 { margin-top: 24px; }
.legal-body ul, .legal-body ol { padding-left: 22px; }
.legal-body li { margin-bottom: 8px; color: var(--ink); }
.notice {
  background: var(--bg-rose);
  border: 1px solid #f3c9cf;
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  padding: 18px 22px;
  color: #7a2b25;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}
.notice strong { color: var(--brand); }
.muted-small { color: var(--muted); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 920px) {
  .hero { padding: 88px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-3, .steps, .contact-grid { grid-template-columns: 1fr 1fr; }
  .showcase { grid-template-columns: repeat(2, 1fr); }
  .price-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { justify-content: flex-start; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .grid-3, .grid-2, .steps, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .shot-tall { grid-row: span 1; }
  section { padding: 60px 0; }
}
