:root {
  --ink: #151515;
  --muted: #6f747c;
  --line: #eceef2;
  --bg: #f7f7f8;
  --panel: #ffffff;
  --navy: #101010;
  --blue: #f43d3d;
  --cyan: #ff5a52;
  --green: #20b486;
  --amber: #ffb02e;
  --gold: #d8a441;
  --gold-soft: #fff6df;
  --teal: #0f9f9a;
  --teal-soft: #e7f7f6;
  --red: #f43d3d;
  --red-dark: #c91f28;
  --charcoal: #101010;
  --radius: 8px;
  --shadow: 0 20px 55px rgba(16, 16, 16, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(236,238,242,.95);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-weight: 900;
  color: var(--navy);
}
.logo-brand {
  align-items: center;
  padding: 4px 0;
}
.logo-brand img {
  width: clamp(142px, 13vw, 212px);
  height: 42px;
  object-fit: contain;
}
.footer-brand.logo-brand img {
  width: 188px;
  height: 46px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.brand span { font-size: 32px; line-height: 1; }
.brand small {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 20px; font-weight: 700; color: #243149; }
.main-nav > a, .mega-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 10px 0;
  cursor: pointer;
}
.nav-pill {
  padding: 10px 14px !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.nav-pill.dark { background: var(--red); color: #fff; border-color: var(--red); }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  border: 0;
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.mega-menu { position: static; }
.mega-trigger::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.mega-panel {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  top: calc(100% - 4px);
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(360px, 1.25fr) minmax(260px, .8fr);
  gap: 18px;
  padding: 18px;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(16,16,16,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
}
.mega-menu.open .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-feature {
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(216,164,65,.35), transparent 34%),
    linear-gradient(145deg, #101010, #3a1114);
}
.mega-feature h3 {
  font-size: 28px;
  color: #fff;
}
.mega-feature p {
  color: #e5e7eb;
  line-height: 1.65;
}
.mega-feature .button {
  margin-top: 12px;
  box-shadow: none;
}
.mega-section {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.mega-section h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 18px;
}
.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.mega-links a {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid #f0f1f4;
  border-radius: 7px;
  background: #fbfbfc;
}
.mega-links a:hover,
.mega-mini a:hover,
.mega-tags a:hover {
  border-color: rgba(244,61,61,.28);
  background: #fff6f6;
}
.mega-links strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}
.mega-links span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.mega-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mega-tags a {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--teal-soft);
  color: #0b6f6b;
  font-size: 13px;
  font-weight: 900;
}
.mega-mini {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.mega-mini a {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--navy);
}

.hero-slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(244,61,61,.28), transparent 32%),
    linear-gradient(135deg, #070707 0%, #151515 52%, #2a0b0d 100%);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 36px;
  align-items: center;
  padding: clamp(40px, 8vw, 88px) clamp(18px, 5vw, 70px);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img {
  width: 100%;
  max-width: 520px;
  max-height: 390px;
  justify-self: end;
  object-fit: contain;
  padding: clamp(8px, 1.5vw, 18px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  filter: drop-shadow(0 28px 45px rgba(0,0,0,.34));
}
.hero-copy { max-width: 760px; }
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}
h1, h2, h3 { margin: 0; color: inherit; line-height: 1.08; letter-spacing: 0; }
.hero-copy h1 { font-size: clamp(44px, 5vw, 78px); max-width: 900px; }
.hero-copy p { margin: 22px 0 0; max-width: 660px; font-size: 20px; line-height: 1.65; color: #d9e4f6; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(244,61,61,.24);
}
.button.secondary, .button.ghost { background: #fff; color: var(--navy); box-shadow: none; border: 1px solid var(--line); }
.slider-controls {
  position: absolute;
  left: clamp(18px, 5vw, 70px);
  bottom: 34px;
  display: flex;
  gap: 10px;
}
.slider-controls button {
  width: 36px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.35);
}
.slider-controls button.active { background: #fff; }

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.stats-band div { padding: 30px clamp(18px, 4vw, 56px); border-right: 1px solid var(--line); }
.stats-band strong { display: block; font-size: 34px; color: var(--gold); }
.stats-band span { color: var(--muted); font-weight: 800; }

.studio-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 32px;
  align-items: stretch;
  padding: 74px clamp(18px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(244,61,61,.08), transparent 38%),
    #fff;
  border-bottom: 1px solid var(--line);
}
.studio-copy {
  display: grid;
  align-content: center;
  max-width: 820px;
}
.studio-copy h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  color: var(--navy);
}
.studio-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 760px;
}
.studio-stack {
  display: grid;
  gap: 12px;
}
.studio-stack article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16,16,16,.06);
}
.studio-stack strong {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 900;
}
.studio-stack h3 {
  color: var(--navy);
  font-size: 24px;
}
.studio-stack p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-intro, .page-hero, .simple-page {
  padding: 86px clamp(18px, 5vw, 70px) 34px;
  width: 100%;
  max-width: none;
}
.section-intro h2, .page-hero h1, .simple-page h1 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: clamp(34px, 4vw, 56px);
  color: var(--navy);
}
.section-intro h2::before, .page-hero h1::before, .simple-page h1::before,
.value-band h2::before, .process-band h2::before, .cta-wide h2::before,
.about-split h2::before, .contact-layout h1::before, .auth-layout h1::before,
.detail-hero h1::before, .detail-extra h2::before {
  content: "";
  flex: 0 0 auto;
  width: .82em;
  height: .82em;
  margin-top: .16em;
  border-radius: .24em;
  background:
    radial-gradient(circle at 50% 4%, var(--teal) 0 6%, transparent 7%),
    linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,.9) 48% 52%, transparent 52% 100%),
    radial-gradient(circle at 34% 43%, #fff 0 10%, transparent 11%),
    radial-gradient(circle at 66% 43%, #fff 0 10%, transparent 11%),
    linear-gradient(90deg, transparent 0 28%, rgba(255,255,255,.9) 28% 72%, transparent 72% 100%),
    radial-gradient(circle at 84% 18%, var(--gold) 0 7%, transparent 8%),
    linear-gradient(135deg, #ff6a62, var(--red) 58%, var(--red-dark));
  background-size: 100% 100%, 100% 26%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  background-position: center top, center top, center, center, center 72%, center, center;
  background-repeat: no-repeat;
  box-shadow:
    8px 8px 0 rgba(15,159,154,.15),
    inset 0 0 0 2px rgba(255,255,255,.26),
    inset 0 -.18em 0 rgba(16,16,16,.13);
}
.value-band h2, .process-band h2, .cta-wide h2,
.about-split h2, .contact-layout h1, .auth-layout h1,
.detail-hero h1, .detail-extra h2 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.section-intro p, .page-hero p, .simple-page p { font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 960px; }

.value-band {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 34px;
  padding: 76px clamp(18px, 5vw, 70px);
  background: #101010;
  color: #fff;
}
.value-band.compact {
  padding-top: 58px;
  padding-bottom: 58px;
  background: linear-gradient(135deg, #101010, #231112);
}
.value-band h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  color: #fff;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.value-grid article {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}
.value-grid h3 {
  color: #fff;
  font-size: 22px;
}
.value-grid p {
  margin-bottom: 0;
  color: #d6d9df;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 70px) 80px;
}
.service-grid.wide { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, #101010, #261114);
}
.service-card span { margin-top: 16px; color: var(--teal); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.service-card h3 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
  font-size: 22px;
  color: var(--navy);
}
.service-card h3::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 4px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 4%, var(--teal) 0 8%, transparent 9%),
    linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,.9) 48% 52%, transparent 52% 100%),
    radial-gradient(circle at 34% 43%, #fff 0 11%, transparent 12%),
    radial-gradient(circle at 66% 43%, #fff 0 11%, transparent 12%),
    linear-gradient(90deg, transparent 0 28%, rgba(255,255,255,.88) 28% 72%, transparent 72% 100%),
    radial-gradient(circle at 84% 18%, var(--gold) 0 8%, transparent 9%),
    linear-gradient(135deg, #ff6a62, var(--red) 58%, var(--red-dark));
  background-size: 100% 100%, 100% 26%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  background-position: center top, center top, center, center, center 72%, center, center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), inset 0 -4px 0 rgba(16,16,16,.12);
}
.service-card p { color: var(--muted); line-height: 1.6; flex: 1; }
.service-card a { font-weight: 900; color: var(--red-dark); }

.sector-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 28px clamp(18px, 5vw, 70px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sector-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, #fafafa, var(--teal-soft));
  color: var(--navy);
  font-weight: 900;
}

.process-band {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  padding: 76px clamp(18px, 5vw, 70px);
  background: #fff;
  border-top: 1px solid var(--line);
}
.process-band h2 { font-size: clamp(30px, 3vw, 46px); color: var(--navy); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.process-steps article { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); }
.process-steps b { color: var(--gold); }
.process-steps p { color: var(--muted); line-height: 1.6; }

.detail-hero {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 42px;
  align-items: center;
  padding: 70px clamp(18px, 5vw, 70px);
  background: #fff;
}
.detail-hero h1 { font-size: clamp(38px, 5vw, 66px); color: var(--navy); }
.detail-hero p { font-size: 20px; line-height: 1.65; color: var(--muted); }
.detail-hero img {
  width: 100%;
  max-width: 460px;
  justify-self: end;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #101010, #261114);
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  padding: 56px clamp(18px, 5vw, 70px);
}
.rich-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 42px);
  line-height: 1.8;
  color: #334155;
}
.rich-content h2 { color: var(--navy); margin-top: 6px; }
.page-content { margin: 0 0 0; border-left: 0; border-right: 0; border-radius: 0; }
.side-panel {
  align-self: start;
  position: sticky;
  top: 90px;
  padding: 26px;
  background: linear-gradient(160deg, #111 0%, #211214 58%, #3a1114 100%);
  color: #fff;
  border-radius: var(--radius);
}
.side-panel h2 { margin-top: 18px; color: #fff; }
.side-panel p { color: #d9e4f6; line-height: 1.55; }

.detail-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 70px) 72px;
  background: var(--bg);
}
.detail-extra article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.detail-extra h2 {
  font-size: 24px;
  color: var(--navy);
}
.detail-extra p {
  color: var(--muted);
  line-height: 1.7;
}

.cta-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 68px clamp(18px, 5vw, 70px);
  background: linear-gradient(135deg, #fff, #fff6df);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-wide h2 {
  font-size: clamp(30px, 3.8vw, 52px);
  color: var(--navy);
}
.cta-wide p {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.7;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 24px;
}
.about-split.reverse { grid-template-columns: 1fr minmax(260px, 360px); }
.about-split.reverse img { order: 2; }
.about-split img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  padding: 14px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #101010, #261114);
}
.about-split h2 { color: var(--navy); font-size: 30px; }

.contact-layout, .auth-layout {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 42px;
  padding: 76px clamp(18px, 5vw, 70px);
  align-items: start;
}
.auth-layout { grid-template-columns: minmax(320px, 560px); justify-content: center; }
.contact-layout h1, .auth-layout h1 { font-size: clamp(34px, 4vw, 54px); color: var(--navy); }
.contact-layout p { color: var(--muted); line-height: 1.7; font-size: 18px; }
.contact-card, .form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.contact-card { display: grid; gap: 6px; max-width: 460px; }
.contact-card strong { font-size: 24px; color: var(--red); }
.form-card { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 800; color: var(--navy); }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { resize: vertical; }
.flash { padding: 14px 16px; border-radius: var(--radius); background: #eaf8f0; color: #0b7042; font-weight: 800; }

.panel-shell { padding: 56px clamp(18px, 5vw, 70px); }
.panel-top { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 28px; }
.panel-top h1 { color: var(--navy); font-size: clamp(30px, 4vw, 52px); }
.orders { display: grid; gap: 18px; }
.order-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.order-head { display: flex; justify-content: space-between; gap: 18px; }
.order-head h2 { margin-top: 6px; color: var(--navy); }
.order-head span { align-self: start; padding: 9px 12px; border-radius: 6px; background: #fff1f1; color: var(--red-dark); font-weight: 900; }
.progress { height: 10px; background: #e8edf5; border-radius: 99px; overflow: hidden; margin: 18px 0; }
.progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--red), var(--red-dark)); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.timeline div { padding: 14px; background: #f7fafc; border-radius: 6px; }
.timeline p { margin-bottom: 0; color: var(--muted); }

.footer {
  padding: 56px clamp(18px, 5vw, 70px) 26px;
  background: linear-gradient(135deg, #080808, #171717 62%, #2b0d10);
  color: #d9e4f6;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr 1fr; gap: 34px; }
.footer h3 { color: #fff; margin-bottom: 14px; }
.footer a { display: block; margin: 9px 0; color: #d9e4f6; }
.footer-brand span { color: #fff; }
.footer-mail { color: #ff8a84 !important; font-weight: 900; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); color: #9eb0cc; }

.admin-body { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  background: var(--navy);
  color: #fff;
}
.admin-sidebar a { padding: 12px; border-radius: 6px; }
.admin-sidebar a:hover { background: rgba(255,255,255,.1); }
.admin-main { padding: 28px; }
.admin-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.admin-top h1 { color: var(--navy); }
.admin-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.admin-cards article, .admin-note, .admin-list, .admin-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.admin-cards strong { display: block; font-size: 38px; color: var(--red); }
.admin-list { display: grid; gap: 10px; }
.admin-list a, .admin-list article {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.admin-list img { width: 72px; height: 54px; object-fit: cover; border-radius: 5px; background: #eef3f9; }
.admin-form { display: grid; gap: 16px; max-width: 1000px; }
.admin-form fieldset {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.admin-form legend {
  padding: 0 8px;
  color: var(--red-dark);
  font-weight: 900;
}
.settings-form {
  max-width: 1180px;
}
.admin-form .check { display: flex; align-items: center; gap: 10px; }
.admin-form .check input { width: auto; }
.admin-preview { max-width: 320px; border-radius: 6px; background: #eef3f9; }
.messages article { grid-template-columns: 1fr; align-items: start; }

@media (max-width: 1100px) {
  .service-grid, .service-grid.wide { grid-template-columns: repeat(2, 1fr); }
  .hero-slide, .detail-hero, .detail-layout, .process-band, .contact-layout, .studio-showcase, .value-band, .cta-wide { grid-template-columns: 1fr; }
  .detail-extra { grid-template-columns: 1fr; }
  .mega-panel { grid-template-columns: 1fr; }
  .mega-links { grid-template-columns: 1fr; }
  .hero-slide img, .detail-hero img { justify-self: start; }
  .side-panel { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header { align-items: center; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 58px;
    z-index: 80;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .mega-menu { position: relative; }
  .mega-trigger { width: 100%; text-align: left; }
  .mega-panel {
    display: none;
    position: static;
    max-height: 68vh;
    overflow: auto;
    padding: 12px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin-top: 6px;
  }
  .mega-menu.open .mega-panel { display: grid; }
  .mega-feature { padding: 18px; }
  .mega-feature h3 { font-size: 22px; }
  .hero-slider { min-height: 760px; }
  .hero-slide { padding-top: 50px; }
  .hero-slide img { max-width: 100%; max-height: 300px; }
  .hero-copy h1 { font-size: 40px; }
  .stats-band, .service-grid, .service-grid.wide, .process-steps, .timeline, .footer-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .about-split, .about-split.reverse { grid-template-columns: 1fr; }
  .about-split.reverse img { order: 0; }
  .panel-top, .order-head, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-cards { grid-template-columns: 1fr 1fr; }
  .admin-list a { grid-template-columns: 1fr; }
}
