:root {
  --brand: #b52216;
  --brand-dark: #8f1a11;
  --ink: #17191c;
  --muted: #62666c;
  --line: #e8e8e8;
  --soft: #f5f5f5;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #111;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.page-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  background: var(--white);
}

.content-panel {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background:
    radial-gradient(circle at 10% 8%, rgba(181,34,22,.055), transparent 30%),
    var(--white);
}

.content-inner {
  width: min(780px, 100%);
  margin-inline: auto;
  padding: clamp(36px, 6vw, 84px) clamp(28px, 6vw, 88px);
}

.logo {
  width: min(360px, 78%);
  height: auto;
  display: block;
  margin-bottom: clamp(28px, 4vh, 44px);
}

.status {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 13px;
  border: 1px solid rgba(181,34,22,.18);
  border-radius: 999px;
  background: rgba(181,34,22,.055);
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(181,34,22,.1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(181,34,22,.1); }
  50% { box-shadow: 0 0 0 8px rgba(181,34,22,0); }
}

h1 {
  margin: 0;
  max-width: 720px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4.25vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 800;
}

h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 24px;
  border-radius: 99px;
  background: var(--brand);
}

.intro,
.construction-note {
  max-width: 710px;
  font-size: clamp(.98rem, 1.08vw, 1.08rem);
  line-height: 1.75;
  color: var(--muted);
}

.intro { margin: 27px 0 0; }
.intro strong { color: var(--ink); font-weight: 700; }
.construction-note { margin: 15px 0 0; }

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  max-width: 710px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 68px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.88);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(181,34,22,.3);
  box-shadow: 0 12px 28px rgba(20,20,20,.08);
}

.contact-primary {
  border-color: rgba(181,34,22,.18);
  background: linear-gradient(135deg, rgba(181,34,22,.075), rgba(181,34,22,.025));
}

.icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--brand);
  background: rgba(181,34,22,.085);
}
.icon svg { width: 21px; height: 21px; fill: currentColor; }

.contact-card span:last-child { min-width: 0; }
.contact-card small {
  display: block;
  margin-bottom: 3px;
  color: #84878c;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.contact-card strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: .98rem;
  font-weight: 700;
}

.legal {
  margin: 25px 0 0;
  color: #a0a2a6;
  font-size: .77rem;
}

.visual-panel {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: #1e1e1e;
}

.slides, .slide, .visual-overlay {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  transition: opacity 1.1s ease, transform 6s ease;
}
.slide.is-active { opacity: 1; transform: scale(1); }

.visual-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.18) 50%, rgba(0,0,0,.68)),
    linear-gradient(90deg, rgba(0,0,0,.18), transparent 26%);
}

.visual-caption {
  position: absolute;
  left: clamp(28px, 5vw, 72px);
  right: clamp(28px, 5vw, 72px);
  bottom: clamp(52px, 8vh, 88px);
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.25);
}
.visual-caption span {
  display: block;
  margin-bottom: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .78;
}
.visual-caption strong {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2.35vw, 2.3rem);
  line-height: 1.15;
}

.slide-dots {
  position: absolute;
  left: clamp(28px, 5vw, 72px);
  bottom: 28px;
  display: flex;
  gap: 7px;
}
.slide-dots span {
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,.35);
  transition: width .3s ease, background .3s ease;
}
.slide-dots span.is-active { width: 44px; background: #fff; }

@media (max-width: 980px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 42vh;
    order: -1;
  }

  .content-panel { align-items: flex-start; }
  .content-inner {
    width: 100%;
    padding: 38px 24px 44px;
  }

  .logo {
    width: min(310px, 75%);
    margin-bottom: 28px;
  }

  h1 { font-size: clamp(2rem, 8vw, 3.6rem); }
  .visual-caption { bottom: 46px; }
}

@media (max-width: 560px) {
  .visual-panel { min-height: 34vh; }
  .content-inner { padding: 30px 18px 34px; }
  .logo { width: min(280px, 82%); }
  .status { font-size: .7rem; padding: 8px 11px; }
  h1 { letter-spacing: -.035em; }
  h1::after { width: 56px; height: 4px; margin-top: 18px; }
  .intro, .construction-note { line-height: 1.65; }
  .contact-card { border-radius: 13px; }
  .visual-caption { left: 20px; right: 20px; bottom: 42px; }
  .slide-dots { left: 20px; bottom: 18px; }
}

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