:root {
  --ink: #17202b;
  --muted: #607080;
  --night: #1c2430;
  --slate: #34475b;
  --red: #9d5148;
  --brass: #c7a04f;
  --ice: #eef4f7;
  --paper: #fbf8f0;
  --white: #ffffff;
  --line: rgba(23, 32, 43, 0.15);
  --shadow: 0 24px 70px rgba(19, 27, 36, 0.18);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.56;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link { position: absolute; top: -80px; left: 16px; z-index: 20; padding: 10px 12px; background: var(--white); }
.skip-link:focus { top: 12px; }

.case-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(16px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.case-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.case-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--night);
  border: 2px solid var(--brass);
  border-radius: 8px;
  font-weight: 900;
}
.case-brand strong, .case-brand small { display: block; }
.case-brand small { color: var(--muted); font-size: 0.78rem; }
.case-nav { display: flex; gap: 20px; color: var(--muted); font-size: 0.92rem; }
.case-nav a, .secondary-link { text-decoration: none; }
.case-nav a:hover, .secondary-link:hover { color: var(--red); }
.call-lock {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(73, 35, 32, 0.2);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}
.call-lock:hover { background: var(--night); }
.call-lock.large { min-height: 54px; padding-inline: 24px; }

.scene-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.95fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  min-height: min(760px, calc(100svh - 74px));
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(120deg, rgba(251, 248, 240, 0.98), rgba(255,255,255,0.96) 48%, rgba(238,244,247,0.98)),
    radial-gradient(circle at 88% 12%, rgba(199, 160, 79, 0.24), transparent 30%);
}
.hero-panel { max-width: 710px; }
.overline {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2 {
  margin: 0;
  color: var(--night);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
h1 { max-width: 760px; font-size: clamp(2.55rem, 5.1vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { margin: 0 0 8px; color: var(--night); font-size: 1.04rem; }
.intro { max-width: 690px; margin: 22px 0 0; color: #334253; font-size: clamp(1.05rem, 1.6vw, 1.22rem); }
.action-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 30px; }
.secondary-link { color: var(--slate); font-weight: 850; }
.scene-photo { margin: 0; }
.scene-photo img { width: 100%; max-height: 590px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.scene-photo figcaption { margin-top: 14px; color: var(--muted); font-size: 0.92rem; }

.quick-brief {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 20px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: linear-gradient(90deg, var(--night), var(--slate));
}
.quick-brief span { color: rgba(255,255,255,0.72); }
.quick-brief a { color: var(--white); text-decoration: none; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 32px); }
.release-grid { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.78fr); gap: clamp(32px, 6vw, 78px); align-items: start; }
.release-grid p, .section-heading p, .dispatch-card p { color: var(--muted); font-size: 1.04rem; }
.brief-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.brief-cards article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(23, 32, 43, 0.08);
}
.brief-cards p { margin: 6px 0 0; color: var(--muted); }

.photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px) clamp(58px, 8vw, 96px);
}
.photo-band article { overflow: hidden; background: var(--ice); border: 1px solid var(--line); border-radius: 8px; }
.photo-band img { width: 100%; height: 410px; object-fit: cover; object-position: center 28%; }
.photo-band h3, .photo-band p { margin-left: 20px; margin-right: 20px; }
.photo-band h3 { margin-top: 18px; }
.photo-band p { margin-bottom: 22px; color: var(--muted); }

.section-heading { max-width: 820px; margin-bottom: 28px; }
.service-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-stack article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--brass);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 32, 43, 0.07);
}
.service-stack span { display: inline-flex; margin-bottom: 10px; color: var(--red); font-weight: 900; }
.service-stack p { margin: 0; color: var(--muted); }

.dispatch-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(28, 36, 48, 0.98), rgba(52, 71, 91, 0.97)),
    radial-gradient(circle at left bottom, rgba(157,81,72,0.24), transparent 34%);
  border-radius: 8px;
}
.dispatch-card h2 { color: var(--white); }
.dispatch-card p { color: rgba(255,255,255,0.78); }
.faq-zone { padding-top: clamp(58px, 8vw, 96px); }
.faq-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.faq-columns details { padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 12px 34px rgba(23, 32, 43, 0.07); }
summary { cursor: pointer; color: var(--night); font-weight: 850; }
details p { color: var(--muted); }

.case-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 34px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: #111821;
}
.case-footer p { max-width: 760px; color: rgba(255,255,255,0.72); }

@media (max-width: 940px) {
  .case-nav { display: none; }
  .scene-hero, .release-grid, .photo-band, .service-stack, .faq-columns { grid-template-columns: 1fr; }
  .brief-cards { grid-template-columns: 1fr; }
  .quick-brief, .dispatch-card, .case-footer { flex-direction: column; grid-template-columns: 1fr; align-items: stretch; }
}

@media (max-width: 700px) {
  .case-header { min-height: 56px; justify-content: center; padding: 6px 12px; }
  .case-brand, .case-nav { display: none; }
  .case-header .call-lock { width: min(100%, 420px); min-height: 44px; }
  .scene-hero { display: block; min-height: auto; padding: 34px 24px 46px; }
  .hero-panel, .action-row, .intro, .scene-photo, .section-heading { width: 100%; max-width: calc(100vw - 48px); min-width: 0; }
  h1 { max-width: calc(100vw - 48px); font-size: clamp(1.9rem, 8.6vw, 2.34rem); line-height: 1.06; }
  h2 { font-size: clamp(1.82rem, 8.4vw, 2.34rem); line-height: 1.08; }
  .intro { font-size: 1rem; }
  .scene-photo { margin-top: 28px; }
  .scene-photo img { max-height: none; height: auto; object-fit: contain; }
  .photo-band img { height: auto; }
  .call-lock { width: 100%; max-width: 100%; white-space: normal; text-align: center; }
  .action-row { align-items: stretch; }
  .secondary-link { text-align: center; }
}
