/* ===================================================================
   Delhi Chat — delhichat.co.in
   Shared stylesheet for all pages
   =================================================================== */

:root {
  --pink: #e84a7f;
  --pink-dark: #cf3a6b;
  --pink-soft: #ffe3ee;
  --peach: #ffe0cc;
  --cream: #fff7f2;
  --white: #ffffff;
  --text: #2b2a33;
  --muted: #6d6b78;
  --line: #f0e6ea;
  --dark: #1f1b2e;
  --dark-2: #2a2540;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(45, 30, 55, 0.08);
  --shadow-sm: 0 4px 14px rgba(45, 30, 55, 0.06);
  --maxw: 1160px;
  --font: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 { line-height: 1.25; color: var(--text); font-weight: 700; }

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

.section { padding: 64px 0; }
.section-cream { background: var(--cream); }
.section-tight { padding: 44px 0; }

/* dark contrast band */
.section-dark { background: var(--dark); }
.section-dark .section-head h2 { color: #fff; }
.section-dark .reason { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); padding: 22px; }
.section-dark .reason .icon { background: rgba(255,255,255,.1); color: #ff9ebc; }
.section-dark .reason h3 { color: #fff; }
.section-dark .reason p { color: rgba(255,255,255,.72); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 10px;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head h2 { font-size: 30px; margin-bottom: 12px; }
.section-head h2::after {
  content: "";
  display: block;
  width: 24px; height: 22px;
  margin: 14px auto 0;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='%23e84a7f'%3E%3Cpath%20d='M12%2021C12%2021%203%2015%203%208.5%203%205.4%205.4%203%208.5%203%2010.2%203%2011.6%203.8%2012%205%2012.4%203.8%2013.8%203%2015.5%203%2018.6%203%2021%205.4%2021%208.5%2021%2015%2012%2021%2012%2021Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.section-head p { color: var(--muted); font-size: 17px; margin-top: 4px; }

.accent { color: var(--pink); }

/* -------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 8px 20px rgba(232, 74, 127, .3); }
.btn-primary:hover { background: var(--pink-dark); color: #fff; }
.btn-outline { background: #fff; color: var(--pink-dark); border-color: var(--pink); }
.btn-outline:hover { background: var(--pink-soft); color: var(--pink-dark); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.24); color: #fff; }
.btn-lg { padding: 15px 34px; font-size: 16px; }

/* -------------------------------------------------------------- Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand a { color: var(--text); font-weight: 800; font-size: 21px; letter-spacing: -.3px; }
.brand a:hover { text-decoration: none; }
.brand .dot { color: var(--pink); }
.brand small { color: var(--muted); font-size: 11px; font-weight: 500; letter-spacing: .3px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--text); font-weight: 500; font-size: 15px; }
.nav a:hover { color: var(--pink); text-decoration: none; }

.header-cta { display: flex; align-items: center; gap: 12px; }

/* mobile toggle (CSS-only) */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; padding: 8px; }
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  position: relative;
  transition: .25s;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after { content: ""; position: absolute; }
.nav-toggle-label span::before { top: -7px; }
.nav-toggle-label span::after { top: 7px; }

/* -------------------------------------------------------------- Hero */
.hero {
  position: relative;
  background: url("images/hero.jpg") center right / cover no-repeat;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 90px 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24,17,34,.9) 0%, rgba(24,17,34,.72) 38%, rgba(24,17,34,.28) 70%, rgba(24,17,34,.05) 100%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-copy { max-width: 620px; }
.hero h1 { font-size: 48px; letter-spacing: -.5px; margin-bottom: 18px; color: #fff; }
.hero p.lead { font-size: 18px; color: rgba(255,255,255,.9); margin-bottom: 28px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.eyebrow-light { color: #ff9ebc; }

.btn-hero-outline { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.6); }
.btn-hero-outline:hover { background: rgba(255,255,255,.18); color: #fff; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 16px 28px; }
.hero-trust span {
  display: inline-flex; align-items: center; gap: 9px;
  color: #fff; font-weight: 600; font-size: 14px;
}
.hero-trust svg { width: 20px; height: 20px; color: var(--pink); flex: none; }

/* -------------------------------------------------------------- Cards grid */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* icon chip */
.icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--pink-soft);
  color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.icon svg { width: 24px; height: 24px; }

/* -------------------------------------------------------------- Text block */
.prose { max-width: 820px; margin: 0 auto; }
.prose p { margin-bottom: 16px; color: #454351; }
.prose h2 { font-size: 30px; margin-bottom: 16px; }
.prose h3 { font-size: 22px; margin: 26px 0 10px; }
.prose ul { margin: 0 0 16px 20px; }
.prose li { margin-bottom: 8px; color: #454351; }

.lead-center { text-align: center; max-width: 760px; margin: 0 auto 8px; color: var(--muted); font-size: 17px; }

/* -------------------------------------------------------------- Profiles */
.profile-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.profile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.profile-card .photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.profile-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-card .status {
  position: absolute; top: 12px; left: 12px;
  background: rgba(31,27,46,.72); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  display: inline-flex; align-items: center; gap: 6px;
}
.profile-card .status .live { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; }
.profile-card .info { padding: 16px 18px; }
.profile-card .info h3 { font-size: 17px; margin-bottom: 2px; }
.profile-card .info .loc { color: var(--pink); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.profile-card .info p { font-size: 13.5px; color: var(--muted); margin: 0; }
.sample-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 18px; font-style: italic; }

/* -------------------------------------------------------------- Room cards (with image) */
.room-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.room-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.room-card .overlay {
  position: relative;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(180deg, rgba(31,27,46,0) 0%, rgba(31,27,46,.85) 100%);
}
.room-card h3 { color: #fff; font-size: 18px; margin-bottom: 4px; }
.room-card p { color: rgba(255,255,255,.88); font-size: 13.5px; }

/* -------------------------------------------------------------- Area cards */
.area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, border-color .16s ease;
}
.area-card:hover { transform: translateY(-3px); border-color: var(--pink); }
.area-card .pin {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), #ff8fb1);
  color: #fff; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.area-card h3 { font-size: 16px; margin-bottom: 6px; }
.area-card p { font-size: 14px; color: var(--muted); }

/* -------------------------------------------------------------- Steps */
.steps { position: relative; margin-top: 30px; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step .num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
  margin: -52px auto 16px;
  border: 4px solid var(--cream);
  box-shadow: 0 6px 16px rgba(232,74,127,.35);
}
.section-cream .step .num { border-color: #fff; }
.step .icon { margin: 0 auto 14px; }
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14.5px; }
/* connector arrow between steps (desktop) */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44px; right: -15px;
  width: 30px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23f3a9c4'%20stroke-width='2.5'%20stroke-linecap='round'%3E%3Cpath%20d='M4%2012h14M13%206l6%206-6%206'/%3E%3C/svg%3E") center / contain no-repeat;
  z-index: 2;
}

/* -------------------------------------------------------------- Openers list */
.openers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 880px; margin: 0 auto; }
.opener {
  background: #fff; border: 1px solid var(--line);
  border-left: 3px solid var(--pink);
  border-radius: 8px; padding: 14px 16px;
  font-size: 15px; color: #454351;
}

/* -------------------------------------------------------------- Why / reasons */
.reason { display: flex; gap: 16px; align-items: flex-start; }
.reason .icon { flex: none; margin-bottom: 0; }
.reason h3 { font-size: 17px; margin-bottom: 4px; }
.reason p { color: var(--muted); font-size: 14.5px; }

/* -------------------------------------------------------------- Safety */
.safety-list { columns: 2; column-gap: 40px; max-width: 860px; margin: 0 auto 26px; }
.safety-list li {
  break-inside: avoid;
  list-style: none;
  padding: 8px 0 8px 30px;
  position: relative;
  color: #454351;
  font-size: 15px;
}
.safety-list li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 16px; height: 16px;
  background: var(--pink-soft);
  border: 3px solid var(--pink);
  border-radius: 50%;
}

/* -------------------------------------------------------------- Blog */
.blog-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card .thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 18px 20px; }
.blog-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.blog-card .body a { font-weight: 600; font-size: 14px; }

/* -------------------------------------------------------------- FAQ */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 4px 20px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 16px;
  padding: 14px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--pink); font-size: 22px; font-weight: 400; flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--muted); font-size: 15px; padding: 0 0 16px; }

/* -------------------------------------------------------------- CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--pink), #ff7aa4);
  color: #fff; border-radius: 24px;
  padding: 48px 40px; text-align: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; font-size: 30px; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 17px; max-width: 620px; margin: 0 auto 24px; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .small { font-size: 13px; color: rgba(255,255,255,.85); margin-top: 18px; }

/* -------------------------------------------------------------- Footer */
.site-footer { background: var(--dark); color: #cfc9db; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 30px; margin-bottom: 34px; }
.site-footer h4 { color: #fff; font-size: 15px; margin-bottom: 14px; letter-spacing: .3px; }
.site-footer a { color: #cfc9db; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 9px; }
.footer-brand > a { color: #fff; font-weight: 800; font-size: 20px; }
.footer-brand p { color: #a49dba; font-size: 14px; margin-top: 10px; max-width: 280px; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease, transform .18s ease;
}
.social a:hover { background: var(--pink); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; color: #fff; }

.footer-newsletter p { color: #a49dba; font-size: 13.5px; margin-bottom: 14px; }
.news-form { display: flex; flex-direction: column; gap: 10px; }
.news-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}
.news-form input::placeholder { color: #8d86a3; }
.news-form input:focus { outline: none; border-color: var(--pink); }
.news-form .btn { padding: 11px 20px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #a49dba;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { font-size: 13px; }
.footer-disclaimer { font-size: 12.5px; color: #8d86a3; margin-top: 14px; line-height: 1.6; }

/* -------------------------------------------------------------- Page hero (inner pages) */
.page-hero {
  background: linear-gradient(180deg, var(--cream), #fff);
  padding: 54px 0 40px;
  text-align: center;
}
.page-hero h1 { font-size: 36px; margin-bottom: 14px; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 680px; margin: 0 auto 22px; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); }

/* -------------------------------------------------------------- Page hero extras */
.page-hero .hero-cta { justify-content: center; display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.page-hero .note-line { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* -------------------------------------------------------------- Media split */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.media-split .media img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4 / 3;
}
.media-split.portrait .media img { aspect-ratio: 4 / 5; max-width: 420px; margin: 0 auto; }
.media-split h2 { font-size: 28px; margin-bottom: 14px; }
.media-split p { color: #454351; margin-bottom: 14px; }
.media-split .eyebrow { margin-bottom: 8px; }
.media-split.reverse .media { order: 2; }

/* -------------------------------------------------------------- Callout / note */
.callout {
  background: var(--pink-soft);
  border: 1px solid #f6cdda;
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 0 0 22px;
}
.callout p { margin: 0; color: #5a3a48; font-size: 15px; }
.callout strong { color: var(--pink-dark); }
.callout.neutral { background: var(--cream); border-color: var(--line); border-left-color: var(--pink); }
.callout.neutral p { color: #454351; }

/* -------------------------------------------------------------- Checklist columns */
.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; margin: 0; }
.checklist li { position: relative; padding-left: 32px; color: #454351; font-size: 15px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--pink-soft) url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23e84a7f'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M5%2013l4%204%2010-11'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* -------------------------------------------------------------- Do / Don't */
.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.dd-col { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; background: #fff; }
.dd-col h3 { font-size: 17px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.dd-col ul { list-style: none; }
.dd-col li { position: relative; padding-left: 26px; margin-bottom: 9px; color: #454351; font-size: 14.5px; }
.dd-col.good li::before { content: "\2713"; color: #16a34a; position: absolute; left: 0; font-weight: 700; }
.dd-col.bad li::before { content: "\2715"; color: #dc2626; position: absolute; left: 0; font-weight: 700; }
.dd-col.good h3 { color: #15803d; }
.dd-col.bad h3 { color: #b91c1c; }

/* -------------------------------------------------------------- Comparison table */
.table-wrap { overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; }
.compare thead th { background: var(--dark); color: #fff; font-weight: 600; }
.compare tbody th { font-weight: 600; color: var(--text); width: 30%; background: var(--cream); }
.compare td { color: #454351; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: none; }

/* -------------------------------------------------------------- Pills / tags */
.pill { display: inline-block; background: var(--pink-soft); color: var(--pink-dark); font-size: 12.5px; font-weight: 600; padding: 4px 12px; border-radius: 20px; margin: 0 6px 6px 0; }

/* -------------------------------------------------------------- Blog hub */
.hub-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.hub-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.hub-head .icon { margin: 0; width: 42px; height: 42px; }
.hub-head h3 { font-size: 18px; }
.hub-block > p.cat-note { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.hub-list { list-style: none; }
.hub-list li { padding: 12px 0; border-top: 1px solid var(--line); }
.hub-list li:first-child { border-top: none; }
.hub-list a { font-weight: 600; font-size: 15px; color: var(--text); }
.hub-list a:hover { color: var(--pink); text-decoration: none; }
.hub-list p { color: var(--muted); font-size: 13.5px; margin-top: 3px; }

/* Featured blog */
.featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.featured .media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; }
.featured .body { padding: 8px 34px 8px 0; }
.featured .body .pill { margin-bottom: 12px; }
.featured h2 { font-size: 26px; margin-bottom: 12px; }
.featured p { color: #454351; margin-bottom: 18px; }

/* -------------------------------------------------------------- Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 34px; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; font-size: 15px; font-family: inherit; color: var(--text); background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--pink); }
.info-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 16px; }
.info-card h3 { font-size: 16px; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.info-card h3 svg { width: 18px; height: 18px; color: var(--pink); }
.info-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* -------------------------------------------------------------- Legal pages */
.legal-updated { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.prose h2 + p { margin-top: 4px; }

/* -------------------------------------------------------------- Article / blog post */
.post-meta { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; color: var(--muted); font-size: 14px; margin-bottom: 4px; }
.post-meta .pill { margin: 0; }
.post-meta .dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); display: inline-block; }
.article-figure { max-width: 940px; margin: 0 auto; }
.article-figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 16 / 9; object-fit: cover; }
.article-figure figcaption { text-align: center; color: var(--muted); font-size: 13px; margin-top: 10px; }
.prose h2 { margin-top: 30px; }
.prose h2:first-child { margin-top: 0; }
.prose blockquote { border-left: 4px solid var(--pink); background: var(--cream); margin: 0 0 18px; padding: 14px 20px; border-radius: 0 10px 10px 0; color: #4a3540; font-style: italic; }
.prose ol { margin: 0 0 16px 20px; }
.prose ol li { margin-bottom: 8px; color: #454351; }
.takeaways { background: var(--pink-soft); border: 1px solid #f6cdda; border-radius: var(--radius); padding: 22px 26px; margin: 26px 0; }
.takeaways h3 { color: var(--pink-dark); font-size: 17px; margin-bottom: 10px; }
.takeaways ul { margin: 0 0 0 18px; }
.takeaways li { color: #5a3a48; margin-bottom: 7px; }

/* Category chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 8px 16px; font-size: 14px; font-weight: 600; color: var(--text); box-shadow: var(--shadow-sm); }
.chip:hover { border-color: var(--pink); color: var(--pink); text-decoration: none; }

/* Blog index cards */
.blog-card .body .pill { margin: 0 0 10px; }
.blog-card .excerpt { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.blog-card .meta { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 12.5px; margin-bottom: 12px; }
.blog-card .read-link { font-weight: 600; font-size: 14px; }

/* -------------------------------------------------------------- Responsive */
@media (max-width: 900px) {
  .hero { min-height: 500px; padding: 70px 0; background-position: center center; }
  .hero::before { background: linear-gradient(90deg, rgba(24,17,34,.92) 0%, rgba(24,17,34,.75) 60%, rgba(24,17,34,.45) 100%); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .step .num { margin-top: -48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-newsletter { grid-column: 1 / -1; }
  .hero h1 { font-size: 34px; }

  /* mobile nav */
  .nav-toggle-label { display: inline-block; }
  .nav {
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav a { width: 100%; padding: 14px 20px; border-bottom: 1px solid var(--line); }
  .nav-toggle:checked ~ .nav { max-height: 480px; }
  .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
  .nav-toggle:checked ~ .nav-toggle-label span::before { top: 0; transform: rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span::after { top: 0; transform: rotate(-45deg); }
  .header-inner { position: relative; }
}

@media (max-width: 620px) {
  .section { padding: 46px 0; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .openers { grid-template-columns: 1fr; }
  .safety-list { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 440px; padding: 56px 0; }
  .hero h1 { font-size: 30px; }
  .hero p.lead { font-size: 16px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .section-head h2, .prose h2, .cta-band h2 { font-size: 25px; }
  .media-split, .do-dont, .contact-grid, .featured { grid-template-columns: 1fr; }
  .media-split.reverse .media { order: -1; }
  .checklist { grid-template-columns: 1fr; }
  .featured .body { padding: 0 22px 22px; }
  .featured .media img { aspect-ratio: 16 / 10; }
  .cta-band { padding: 36px 22px; }
  .header-cta .btn { padding: 10px 18px; font-size: 14px; }
}
