:root {
  --paper: #ffffff;
  --paper-2: #f4f4f4;
  --ink: #161616;
  --ink-soft: #3a3a3a;
  --muted: #6d6d6d;
  --line: rgba(225, 6, 0, 0.14);
  --line-strong: rgba(225, 6, 0, 0.28);
  --clay: #e10600;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(225, 6, 0, 0.08);
  --radius: 999px;
  --nav: 76px;
  --sans: var(--font-sans), "Segoe UI", sans-serif;
  --serif: var(--font-display), var(--font-sans), sans-serif;
  --bn: var(--font-bn), "Nirmala UI", "Noto Sans Bengali", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans), var(--bn);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
.bn, .final h2, .final-lines, .service-copy p {
  font-family: var(--bn), var(--sans);
  font-weight: 700;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
::selection { background: #e10600; color: #fff; }

.skip {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.wrap-wide {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 12px;
  z-index: 40;
  height: auto;
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--ink);
  border-bottom: 0;
  padding: 0 16px;
}
.nav.scrolled { box-shadow: 0 8px 24px rgba(225, 6, 0, 0.06); }
.nav-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(22,22,22,0.08);
  border-radius: 999px;
  padding: 10px 10px 10px 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 560;
  letter-spacing: -0.03em;
  font-size: 17px;
}
.mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e10600;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}
.brand img.logo { height: 28px; width: auto; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  overflow: hidden;
  background: var(--fill, #fff);
  color: var(--mark, #111);
  border-color: var(--mark, #111);
  box-sizing: border-box;
}
.brand-mark.size-sm { width: 28px; height: 28px; }
.brand-mark.size-md { width: 36px; height: 36px; }
.brand-mark.size-lg { width: 48px; height: 48px; }
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-mark em {
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
}
.brand-mark.style-plain {
  width: auto;
  height: 32px;
  background: transparent;
  overflow: visible;
}
.brand-mark.size-lg.style-plain { height: 48px; }
.brand-mark.size-sm.style-plain { height: 24px; }
.brand-mark.style-plain img { width: auto; height: 100%; }
.brand-mark.style-rounded { border-radius: 10px; }
.brand-mark.style-rounded-stroke {
  border-radius: 12px;
  border: 1.5px solid var(--mark, #111);
  padding: 4px;
}
.brand-mark.style-circle { border-radius: 50%; }
.brand-mark.style-circle-stroke {
  border-radius: 50%;
  border: 1.5px solid var(--mark, #111);
  padding: 4px;
}
.brand-mark.style-square { border-radius: 0; }
.brand-mark.style-square-stroke {
  border-radius: 0;
  border: 1.5px solid var(--mark, #111);
  padding: 4px;
}
.brand-mark.style-pill {
  width: auto;
  min-width: 36px;
  height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1.5px solid var(--mark, #111);
}
.brand-mark.size-lg.style-pill { height: 44px; }
.brand-mark.style-pill img { width: auto; height: 18px; }
.brand-mark.style-ring {
  border-radius: 14px;
  border: 1.5px solid var(--mark, #111);
  box-shadow: inset 0 0 0 3px var(--fill, #fff), inset 0 0 0 4.5px var(--mark, #111);
  padding: 6px;
}
.brand-mark.style-tile {
  border-radius: 12px;
  padding: 5px;
}
.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  position: relative;
  padding: 8px 12px;
  border-radius: 999px;
}
.nav-links a:hover, .nav-links a.active { color: #e10600; background: #fff1f0; }
.nav-links a::after { display: none; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.chat-link {
  background: none;
  border: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: #e10600;
}
.chat-link:hover { color: #b10500; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e10600;
  color: #fff;
  border: 1px solid #e10600;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-1px); background: #ff3b30; border-color: #ff3b30; color: #fff; }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid #e10600;
  padding-bottom: 2px;
}
.btn-line:hover .arrow { transform: translateX(3px); }
.menu-btn, .nav-mobile { display: none; }
.menu-btn { color: #e10600; font-weight: 700; }
.eyebrow { color: #e10600; font-weight: 700; }
.chat-fab { background: #e10600; }
.filters button.on { color: #e10600; border-bottom-color: #e10600; }

.hero {
  padding: 28px 0 20px;
  background: #fff;
}
.section-white { background: #ffffff; }
.section-blush { background: #f6f6f6; }
.section-rose { background: #fff; }
.section-cream { background: #fafafa; }
.hero-stage { padding-bottom: 64px; }
.hero-copy { max-width: 920px; }
.hero-tiles {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
  margin-top: 48px;
}
.hero-tile {
  display: block;
  background: #f4f4f4;
  border-radius: 28px;
  overflow: hidden;
}
.hero-tile img { width: 100%; height: 340px; object-fit: cover; }
.hero-tile:first-child img { height: 420px; }
.hero-tile span {
  display: block;
  padding: 14px 16px 16px;
  font-size: 13px;
  font-weight: 600;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(22,22,22,0.16);
  font-weight: 700;
  font-size: 14px;
}
.btn-ghost:hover { border-color: #e10600; color: #e10600; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 40px;
  align-items: center;
}
.hero.center .hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
}
h1, .display {
  font-family: var(--font-display), var(--bn), sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  margin: 0;
}
.hero h1 {
  font-family: var(--font-display), var(--bn), sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 7.4vw, 6.8rem);
  max-width: 9ch;
  margin: 10px 0 18px;
  letter-spacing: -0.06em;
  line-height: 0.88;
  text-transform: uppercase;
}
.hero.center h1 { max-width: 14ch; }
.lede {
  margin: 28px 0 0;
  max-width: 42ch;
  font-size: 18px;
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-media {
  position: relative;
  min-height: 460px;
}
.hero-media .frame { display: none; }
.hero-media img, .hero-media video {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  position: relative;
  background: #fff1f0;
  border-radius: 36px;
}
.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.section { padding: 88px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
}
.section-head h2, .h2 {
  font-family: var(--font-display), var(--bn), sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
}
.section-head p, .sub {
  max-width: 36ch;
  color: var(--muted);
  margin: 0;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filters button {
  background: transparent;
  border: 0;
  padding: 8px 0;
  margin-right: 16px;
  color: var(--muted);
  font-size: 14px;
}
.filters button.on { color: var(--ink); border-bottom: 1px solid var(--ink); }

.work-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px 22px;
}
.project {
  display: block;
  color: inherit;
}
.project:first-child { grid-row: span 2; }
.thumb {
  overflow: hidden;
  background: #fff1f0;
  aspect-ratio: 4/5;
  border-radius: 28px;
}
.project:first-child .thumb { aspect-ratio: 4/5; height: 100%; }
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.project:hover .thumb img { transform: scale(1.045); }
.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 6px;
  font-size: 14px;
}
.project-meta span { color: var(--muted); font-size: 13px; }
.work-grid.compact { grid-template-columns: repeat(3, 1fr); }
.work-grid.compact .project:first-child { grid-row: auto; }
.work-grid.compact .thumb { aspect-ratio: 4/5; height: auto; }

.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
}
.service-block.reverse { grid-template-columns: 1.1fr 0.9fr; }
.service-block.reverse .service-copy { order: 2; }
.kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e10600;
  font-weight: 700;
  margin: 0 0 14px;
}
.service-copy h2 {
  font-family: var(--font-display), var(--bn), sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}
.service-copy p { color: var(--ink-soft); max-width: 46ch; margin: 0 0 22px; }
.service-visual img { width: 100%; height: 460px; object-fit: cover; border-radius: 32px; }
.mini-work {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.mini-work a { display: block; }
.mini-work img { width: 100%; height: 120px; object-fit: cover; border-radius: 16px; }
.mini-work span { display: block; margin-top: 8px; font-size: 13px; }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  border-top: 1px solid var(--line);
}
.step { padding: 22px; background: #fff; border-radius: 24px; }
.step .num {
  font-family: var(--serif);
  font-size: 28px;
  display: block;
  margin-bottom: 18px;
}
.step h3 { margin: 0 0 10px; font-size: 18px; font-weight: 560; }
.step p { margin: 0; color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid h2 {
  font-family: var(--serif), var(--bn);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 0 20px;
}
.about-grid p { color: var(--ink-soft); white-space: pre-line; }
.about-grid img { width: 100%; height: 520px; object-fit: cover; border-radius: 32px; }

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
}
.quote p {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.25;
  margin: 0 0 18px;
}
.quote small { color: var(--muted); }

.final {
  padding: 100px 0 80px;
  background: #e10600;
  color: #fff;
}
.final h2 {
  font-family: var(--font-display), var(--bn), sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  max-width: 16ch;
}
.final .lede, .final-lines, .final .note { color: #fff; }
.final .btn { background: #fff; color: #e10600; border-color: #fff; }
.final .btn:hover { background: #fff5f5; border-color: #fff; color: #e10600; }
.final .btn-line { color: #fff; border-bottom-color: #fff; }
.final-lines { margin: 0 0 18px; color: #fff; }
.final-lines p { margin: 0 0 6px; font-size: 18px; }
.final .note { margin-top: 28px; color: var(--muted); font-size: 13px; letter-spacing: 0.04em; }

.footer {
  border-top: 0;
  background: #fff8f6;
  color: var(--ink);
  padding: 56px 0 28px;
}
.footer a:hover { color: #e10600; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer h3 { margin: 0 0 12px; font-size: 15px; font-weight: 560; }
.footer p, .footer a, .footer li { color: var(--ink-soft); font-size: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a:hover { color: var(--ink); }
.legal {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.page-hero { padding: 64px 0 20px; }
.page-hero h1 {
  font-size: clamp(3rem, 6.5vw, 6rem);
  max-width: 14ch;
}
.page-hero p { max-width: 46ch; color: var(--ink-soft); font-size: 18px; }

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 0 0 22px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.price-card .kicker, .price-card strong, .price-card span { padding: 0 20px; }
.price-card strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
}
.price-card span:last-child { color: #e10600; font-weight: 700; margin-top: auto; }
.price-card.on, .price-card:hover { border-color: #e10600; box-shadow: 0 12px 30px rgba(225, 6, 0, 0.1); }
.price-result { margin-top: 48px; min-height: 80px; }

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 0;
}
.packages.four { grid-template-columns: repeat(4, 1fr); }
.pkg {
  padding: 28px 24px 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.pkg:last-child { border-right: 1px solid var(--line); }
.pkg .pop {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e10600;
  font-weight: 700;
  min-height: 18px;
}
.pkg h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 8px;
}
.pkg .price { font-size: 15px; margin: 0 0 12px; }
.pkg .desc { color: var(--muted); margin: 0 0 18px; min-height: 48px; }
.pkg ul { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 8px; }
.pkg li { font-size: 14px; padding-left: 14px; position: relative; }
.pkg li::before { content: ""; width: 5px; height: 1px; background: var(--ink); position: absolute; left: 0; top: 0.7em; }
.pkg .btn { margin-top: auto; align-self: flex-start; }

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 18px;
}
.faq-item button span.markish { font-family: var(--serif); font-size: 22px; }
.faq-item .answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-item.open .answer { grid-template-rows: 1fr; }
.faq-item .answer > div { overflow: hidden; }
.faq-item .answer p { margin: 0 0 20px; color: var(--ink-soft); max-width: 68ch; }

.case-hero img, .case-hero video { width: 100%; height: min(72vh, 760px); object-fit: cover; }
.case-top { padding: 36px 0 10px; display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 40px; }
.case-top h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
.facts { display: grid; gap: 14px; font-size: 14px; }
.facts div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.facts span { color: var(--muted); }
.prose { max-width: 68ch; }
.prose h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  margin: 36px 0 10px;
}
.prose p { color: var(--ink-soft); }
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.gallery img { width: 100%; height: 360px; object-fit: cover; }
.gallery.single { grid-template-columns: 1fr; }

.form-shell { padding: 40px 0 80px; }
.steps {
  display: flex;
  gap: 18px;
  margin: 18px 0 36px;
  font-size: 13px;
  color: var(--muted);
}
.steps span.on { color: var(--ink); }
.choices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.choice {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px 18px;
  min-height: 140px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.choice:hover, .choice.on { border-color: var(--ink); background: rgba(255,255,255,0.35); }
.choice strong { display: block; font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 8px; }
.choice small { color: var(--muted); }
.fields { display: grid; gap: 16px; max-width: 640px; }
label.field { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
input, textarea, select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  border-radius: 0;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-bottom-color: var(--ink); }
textarea { min-height: 120px; resize: vertical; }
.review {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: grid;
  gap: 10px;
  max-width: 560px;
}
.review div { display: flex; justify-content: space-between; gap: 16px; }
.success {
  padding: 40px 0 80px;
  max-width: 640px;
}
.success h1 { font-size: clamp(2.8rem, 5vw, 4.6rem); margin-bottom: 16px; }

.chat-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  background: #e10600;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}
.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 78px;
  width: min(360px, calc(100% - 28px));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  z-index: 50;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  max-height: 520px;
}
.chat-panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.chat-panel header button { background: none; border: 0; }
.chat-body { padding: 16px; display: grid; gap: 10px; overflow: auto; }
.bubble {
  background: var(--paper);
  padding: 12px 14px;
  white-space: pre-line;
  font-size: 14px;
}
.quick { display: flex; flex-wrap: wrap; gap: 8px; }
.quick button {
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 10px;
  font-size: 13px;
}
.quick button:hover { border-color: var(--ink); }
.mobile-cta { display: none; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 80px;
}

.admin {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 240px 1fr;
  background: #f7f4ef;
}
.side {
  border-right: 1px solid var(--line);
  padding: 22px 16px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
}
.side a, .side button.linkish {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 8px 8px;
  color: var(--ink-soft);
  font-size: 14px;
}
.side a.on, .side a:hover { color: var(--ink); background: rgba(20,18,16,0.04); }
.side .group { margin: 18px 8px 6px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.main { padding: 28px 28px 80px; }
.panel {
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--line);
  padding: 18px;
  margin-bottom: 16px;
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.admin h1 { font-family: var(--serif); font-weight: 400; font-size: 40px; margin: 0 0 8px; }
.admin h2 { font-size: 18px; margin: 0 0 12px; }
.list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mini-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.ghost {
  background: transparent;
  border: 1px solid var(--line);
  padding: 7px 10px;
  font-size: 13px;
}
.ghost.danger { color: #8a2e22; }
.savebar {
  position: sticky;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 14px;
}
.savebar button { background: var(--paper); color: var(--ink); border: 0; padding: 10px 14px; }
.status { font-size: 13px; color: var(--muted); }
.login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.login form { width: min(420px, 100%); }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th, .table td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
.pill {
  font-size: 12px;
  border: 1px solid var(--line);
  padding: 2px 8px;
}

@media (max-width: 1100px) and (min-width: 761px) {
  .packages, .packages.four, .process, .work-grid.compact, .price-cards { grid-template-columns: 1fr 1fr; }
  .project:first-child { grid-row: auto; }
  .hero-grid { gap: 28px; }
  .hero-media img, .hero-media video { height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .wrap, .wrap-wide, .nav-inner { width: calc(100% - 32px); }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links, .nav-actions .chat-link, .nav-actions .btn { display: none; }
  .menu-btn { display: inline-flex; background: none; border: 0; font-size: 14px; }
  .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    inset: var(--nav) 0 0 0;
    background: #fff5f5;
    color: var(--ink);
    padding: 28px 22px 120px;
    z-index: 39;
  }
  .nav-mobile a, .nav-mobile button {
    font-family: var(--sans), var(--bn);
    font-weight: 700;
    font-size: 34px;
    color: var(--ink);
    background: none;
    border: 0;
    text-align: left;
    padding: 8px 0;
  }
  .hero-tiles, .hero-grid, .service-block, .service-block.reverse, .about-grid, .case-top, .contact-grid, .footer-grid, .quotes {
    grid-template-columns: 1fr;
  }
  .service-block.reverse .service-copy { order: 0; }
  .work-grid, .work-grid.compact, .packages, .packages.four, .process, .choices, .price-cards {
    grid-template-columns: 1fr;
  }
  .project:first-child { grid-row: auto; }
  .hero-media { min-height: 0; }
  .hero-tile img, .hero-tile:first-child img { height: 220px; }
  .hero-media img, .hero-media video, .service-visual img, .about-grid img { height: 280px; }
  .pkg { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; }
  .admin { grid-template-columns: 1fr; }
  .side { position: relative; height: auto; }
  .row { grid-template-columns: 1fr; }
  .mobile-cta {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 35;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .mobile-cta .btn { flex: 1; justify-content: center; }
  .chat-fab { bottom: 78px; }
  .chat-panel { bottom: 132px; }
  body { padding-bottom: 72px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 220px; }
}

.svc-row {
  padding: 28px 0;
  border-top: 1px solid rgba(22,22,22,0.1);
  max-width: 760px;
}
.svc-row h2 { margin: 0 0 12px; }

.hero-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(22,22,22,0.1);
}
.hero-index a {
  font-weight: 700;
  font-size: 15px;
}
.hero-index em {
  font-style: normal;
  color: #e10600;
  margin-right: 8px;
}

.index-list { margin-top: 18px; }
.index-row {
  display: grid;
  grid-template-columns: 52px 1.4fr 0.7fr 80px 120px;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(22,22,22,0.1);
}
.index-row .num, .index-row span { color: #6d6d6d; }
.index-row strong { font-size: 28px; font-family: var(--font-display), sans-serif; font-weight: 700; }
.index-row img {
  width: 120px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  justify-self: end;
}
.index-row:hover strong { color: #e10600; }

.rate-list { border-top: 1px solid rgba(22,22,22,0.12); }
.rate-list button {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 180px 1fr auto;
  gap: 16px;
  align-items: center;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(22,22,22,0.12);
  padding: 22px 0;
}
.rate-list em { font-style: normal; color: #e10600; font-weight: 700; }
.rate-list strong { font-family: var(--font-display), sans-serif; font-size: 28px; font-weight: 700; }
.rate-list span { color: #555; }
.rate-list i { font-style: normal; font-weight: 700; color: #e10600; }
.rate-list button.on { background: #fff7f6; }
.rate-out { margin-top: 36px; }
.rate-out h2 {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 18px;
}
.rate-packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rate-packs article { padding-top: 8px; }
.rate-packs header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  border-bottom: 1px solid rgba(22,22,22,0.12);
  padding-bottom: 10px;
}
.rate-packs h3 { margin: 0; font-size: 22px; }
.rate-packs small { color: #e10600; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.rate-packs ul { margin: 0 0 18px; padding-left: 16px; }
.rate-packs a { font-weight: 700; color: #e10600; }

@media (max-width: 800px) {
  .index-row, .rate-list button, .rate-packs { grid-template-columns: 1fr; }
  .index-row img { display: none; }
}

.look-switch {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  background: #111;
  color: #fff;
  padding: 10px;
  border-radius: 16px;
  max-width: min(520px, calc(100% - 32px));
}
.look-switch span { font-size: 12px; padding: 0 6px; }
.look-switch button {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}
.look-switch button.on { background: #e10600; border-color: #e10600; }

html[data-look="b"] body { background: #fff; }
html[data-look="b"] .hero {
  background: #e10600;
  color: #fff;
  margin: 12px;
  border-radius: 28px;
  padding: 48px 8px 36px;
}
html[data-look="b"] .hero .lede,
html[data-look="b"] .eyebrow { color: #fff; }
html[data-look="b"] .btn { background: #fff; color: #e10600; border-color: #fff; }
html[data-look="b"] .btn-ghost { border-color: #fff; color: #fff; }
html[data-look="b"] .nav-inner { background: #fff; }
html[data-look="b"] .hero-index { border-top-color: rgba(255,255,255,0.35); }
html[data-look="b"] .hero-index a { color: #fff; }
html[data-look="b"] .hero-index em { color: #fff; }
html[data-look="b"] .index-row {
  display: block;
  padding: 0 0 28px;
  border: 0;
}
html[data-look="b"] .index-row img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  margin-top: 10px;
}
html[data-look="b"] .index-row strong { display: block; font-size: 40px; margin-top: 8px; }

html[data-look="c"] body { background: #fff6f4; }
html[data-look="c"] .nav-inner { border-radius: 24px; }
html[data-look="c"] .hero h1 {
  text-transform: none;
  font-family: var(--font-sans), var(--bn), sans-serif;
  letter-spacing: -0.05em;
  max-width: 12ch;
}
html[data-look="c"] .hero { background: transparent; }
html[data-look="c"] .btn, html[data-look="c"] .nav .btn { border-radius: 999px; }
html[data-look="c"] .index-row {
  background: #fff;
  border: 0;
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 12px;
}
html[data-look="c"] .rate-list button {
  background: #fff;
  border: 0;
  border-radius: 18px;
  margin-bottom: 10px;
  padding: 18px;
}
html[data-look="c"] .section-blush { background: #fff; }

@media (max-width: 800px) {
  .look-switch { bottom: 78px; }
}

.chooser { min-height: 100vh; padding: 64px 24px; background: #fff; }
.chooser h1 { font-family: var(--font-display), sans-serif; font-size: clamp(3rem, 7vw, 6rem); margin: 8px 0 12px; }
.chooser > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.chooser a { display: grid; gap: 10px; min-height: 220px; padding: 22px; border: 1px solid #e6e6e6; background: #fafafa; }
.chooser a strong { font-size: 28px; }
.straight { display: grid; gap: 10px; }
.straight-card { display: grid; grid-template-columns: 160px 1fr auto; align-items: center; width: 100%; text-align: left; background: #fff; border: 1px solid #e5e5e5; border-radius: 0; padding: 0; }
.straight-card img { width: 160px; height: 108px; object-fit: cover; }
.straight-card span { display: grid; gap: 4px; }
.straight-card em { font-style: normal; color: #666; }
.straight-card i { font-style: normal; font-weight: 700; color: #e10600; padding-right: 16px; }
.straight-card.on { border-color: #e10600; }
.straight-packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 16px; }
.opt { min-height: 100vh; background: #fff; }
.opt header, .opt section { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.opt header { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; }
.opt-1 .opt-hero h1, .opt-3 .opt-hero h1 { font-family: var(--font-display), sans-serif; font-size: clamp(3rem, 7vw, 6rem); line-height: 0.9; }
.opt-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt-split img, .band img { width: 100%; height: 240px; object-fit: cover; }
.opt-2 .opt-hero { background: #e10600; color: #fff; width: auto; margin: 0 16px 28px; padding: 48px 28px; }
.opt-2 .opt-hero h1 { font-family: var(--font-display), sans-serif; font-size: clamp(3rem, 8vw, 7rem); line-height: 0.88; }
.band { display: grid; grid-template-columns: 220px 1fr; gap: 16px; align-items: center; margin-bottom: 16px; }
.rows a { display: grid; grid-template-columns: 140px 1fr auto; gap: 16px; align-items: center; border-bottom: 1px solid #eee; padding: 10px 0; }
.rows img { width: 140px; height: 88px; object-fit: cover; }
@media (max-width: 800px) {
  .chooser > div, .opt-split, .straight-packs, .straight-card, .band, .rows a { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
