/* Pin-Up India — Site5 (Slate Ember). Unique vs Site1–4. Red CTAs. Root fon. */
:root {
  --bg: #e8eaee;
  --bg-soft: #d9dde4;
  --surface: #f6f7f9;
  --ink: #15171c;
  --ink-soft: #2f343d;
  --muted: #646b78;
  --line: #c8ced8;
  --slate: #3d4a5c;
  --slate-soft: #e4e8ef;
  --pin: #ff2400;
  --pin-dark: #d91e00;
  --pin-soft: #ffe5e0;
  --deep: #15171c;
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1100px;
  --header-h: 74px;
  --font-display: "Outfit", "Segoe UI", sans-serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-ui: "Outfit", "Segoe UI", sans-serif;
  --shadow: 0 16px 38px rgba(21, 23, 28, 0.11);
  --transition: 0.2s ease;
  --fon: url("../../fon.png");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.72;
  color: var(--ink-soft);
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(255, 36, 0, 0.06), transparent 50%),
    radial-gradient(ellipse 55% 40% at 100% 100%, rgba(61, 74, 92, 0.08), transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--pin-dark);
  text-underline-offset: 0.18em;
  transition: color var(--transition);
}
a:hover { color: var(--ink); }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--pin);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.3rem, 2.8vw, 1.9rem); }
h3 { font-size: 1.1rem; }

p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1.25rem; padding-left: 1.2rem; }
li + li { margin-top: 0.35rem; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.age-bar {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
}
.age-bar .container {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 34px;
}
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  background: var(--pin);
  color: #fff;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 249, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 22px rgba(21, 23, 28, 0.07);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  position: relative;
}

.logo { flex-shrink: 0; text-decoration: none; }
.logo img { width: 132px; height: auto; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle-bars {
  position: relative;
  width: 18px;
  height: 12px;
  display: block;
}
.nav-toggle-bars span,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle-bars span { top: 5px; }
.nav-toggle-bars::before { top: 0; }
.nav-toggle-bars::after { bottom: 0; }
.site-header.is-open .nav-toggle-bars span { opacity: 0; }
.site-header.is-open .nav-toggle-bars::before { top: 5px; transform: rotate(45deg); }
.site-header.is-open .nav-toggle-bars::after { bottom: 5px; transform: rotate(-45deg); }

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.88rem;
}
.nav-list a {
  display: block;
  padding: 0.5rem 0.7rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 8px;
}
.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--ink);
  background: var(--pin-soft);
}
.nav-cta { margin-left: 0.35rem; }
.nav-cta .btn { padding: 0.5rem 0.95rem; font-size: 0.84rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.25rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--pin); color: #fff; }
.btn-primary:hover { background: var(--pin-dark); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--pin);
  border-color: var(--pin);
}
.btn-secondary:hover { background: var(--pin); color: #fff; }
.btn-dark { background: var(--pin); color: #fff; }
.btn-dark:hover { background: var(--pin-dark); color: #fff; }

.hero { padding: 1.4rem 0 0.4rem; }
.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: min(68vh, 540px);
  border-radius: var(--radius);
  background:
    linear-gradient(125deg, rgba(21, 23, 28, 0.9) 0%, rgba(21, 23, 28, 0.58) 45%, rgba(255, 36, 0, 0.38) 100%),
    var(--fon) center / cover no-repeat,
    var(--deep);
  box-shadow: var(--shadow);
  animation: heroIn 0.85s ease both;
}
.hero-panel::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -35%;
  width: 45%;
  height: 90%;
  background: radial-gradient(circle, rgba(255, 36, 0, 0.22), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  padding: clamp(2rem, 6vw, 3.4rem);
  color: #f5f6f8;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 1rem;
  color: #fff;
}
.hero-brand span {
  display: block;
  font-size: 0.36em;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff8a75;
  margin-top: 0.55rem;
}
.hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.12rem;
  color: rgba(245, 246, 248, 0.9);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.hero-panel .btn-secondary {
  color: #fff;
  border-color: #fff;
}
.hero-panel .btn-secondary:hover {
  background: var(--pin);
  border-color: var(--pin);
  color: #fff;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.page-hero { padding: 2.2rem 0 0.4rem; }
.page-hero h1 { margin-bottom: 0.55rem; }
.page-hero > .container > p {
  max-width: 42rem;
  color: var(--muted);
  margin-bottom: 0;
}
.page-hero .hero-actions { margin-top: 1.25rem; }

.section { padding: 2.6rem 0; }

.section-banner {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 2.4rem 0;
  background:
    linear-gradient(100deg, rgba(21, 23, 28, 0.92) 0%, rgba(21, 23, 28, 0.68) 50%, rgba(255, 36, 0, 0.45) 100%),
    var(--fon) center / cover no-repeat,
    var(--deep);
  color: #f5f6f8;
}
.section-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--pin);
}
.section-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.section-banner-copy { max-width: 40rem; }
.section-banner-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff8a75;
}
.section-banner h2 {
  color: #fff;
  margin: 0 0 0.4rem;
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
}
.section-banner p {
  margin: 0;
  color: rgba(245, 246, 248, 0.88);
}
.section-banner .btn-secondary {
  border-color: #fff;
  color: #fff;
}
.section-banner .btn-secondary:hover {
  background: var(--pin);
  border-color: var(--pin);
  color: #fff;
}
.section-banner.alt {
  background:
    linear-gradient(250deg, rgba(21, 23, 28, 0.9) 0%, rgba(90, 20, 10, 0.55) 100%),
    var(--fon) center / cover no-repeat,
    var(--deep);
}

.split {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 1.6rem;
  align-items: start;
}

.prose { max-width: 46rem; }
.prose h2 {
  margin-top: 2.2rem;
  padding-top: 0.55rem;
  border-top: 3px solid var(--pin);
}
.prose h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.prose h3 { margin-top: 1.4rem; color: var(--pin-dark); }

.table-wrap {
  overflow-x: auto;
  margin: 1.2rem 0 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
th, td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--deep);
}
tr:last-child td { border-bottom: 0; }

.side {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 4px solid var(--pin);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.side h2 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.side-links {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-family: var(--font-ui);
}
.side-links a {
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
}
.side-links li:last-child a { border-bottom: 0; }
.side-links a:hover { color: var(--pin-dark); }
.side .btn { width: 100%; margin-top: 0.35rem; }

.note {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--pin);
  background: var(--pin-soft);
  margin: 1.2rem 0;
}
.note p:last-child { margin-bottom: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 0;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-bottom: 3px solid var(--pin);
  padding: 1.2rem;
}
.feature h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.98rem; }

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.6rem 1.8rem;
  background: var(--deep);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; margin-bottom: 0.3rem; }
.cta-band p { margin: 0; color: rgba(255, 255, 255, 0.86); max-width: 34rem; }
.cta-band .btn-dark {
  background: var(--pin);
  color: #fff;
}
.cta-band .btn-dark:hover { background: var(--pin-dark); color: #fff; }

.site-footer {
  margin-top: 2rem;
  padding: 2.8rem 0 1.8rem;
  background: var(--deep);
  color: rgba(245, 246, 248, 0.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.6rem;
  margin-bottom: 1.8rem;
}
.footer-brand strong,
.footer-col h3 {
  display: block;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.footer-brand p { max-width: 26rem; color: rgba(245, 246, 248, 0.62); }
.footer-col ul {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
}
.footer-col a {
  color: rgba(245, 246, 248, 0.68);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}
.footer-col a:hover { color: #ff8a75; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.84rem;
}
.footer-legal {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: rgba(245, 246, 248, 0.5);
  max-width: 52rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .split,
  .footer-grid,
  .feature-grid { grid-template-columns: 1fr; }
  .side { position: static; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
  }
  .site-header.is-open .nav {
    max-height: 480px;
    opacity: 1;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem 1rem 1rem;
  }
  .nav-list a { padding: 0.8rem 0.85rem; }
  .nav-cta { margin: 0.35rem 0 0; }
  .nav-cta .btn { width: 100%; }
  .section-banner .btn,
  .cta-band .btn,
  .hero-actions .btn { width: 100%; }
  .cta-band { text-align: center; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
