
:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #18202f;
  --muted: #667085;
  --line: #e4e7ec;
  --brand: #d92d20;
  --brand-dark: #981b1b;
  --blue: #1f3a5f;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #fff4f2 0, transparent 32rem), var(--bg);
  line-height: 1.6;
}
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(247, 248, 251, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 231, 236, 0.8);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--text);
}
.brand img {
  width: 42px; height: 42px; border-radius: 12px; box-shadow: 0 8px 18px rgba(152, 27, 27, 0.22);
}
.nav-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links { display: flex; align-items: center; gap: 18px; font-size: 0.95rem; flex-wrap: wrap; justify-content: flex-end; }
.lang-switcher {
  display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.92rem;
}
.lang-switcher select {
  min-height: 42px; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--text);
  padding: 0 12px; font: inherit;
}
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; padding: 72px 0 44px;
}
.badge {
  display: inline-flex; align-items: center; border: 1px solid #ffd1cc; color: var(--brand-dark);
  background: #fff6f5; border-radius: 999px; padding: 7px 13px; font-weight: 700; font-size: 0.9rem; margin-bottom: 18px;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 0.98; letter-spacing: -0.055em; margin: 0 0 22px; }
.lead { font-size: clamp(1.08rem, 2vw, 1.35rem); color: var(--muted); max-width: 680px; margin: 0 0 28px; }
.actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px;
  border-radius: 14px; font-weight: 800; border: 1px solid transparent;
}
.button.primary { color: white; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); box-shadow: 0 12px 24px rgba(152, 27, 27, 0.22); }
.button.secondary { color: var(--text); background: white; border-color: var(--line); }
.hero-card, .card, .shot {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.05);
}
.hero-card { overflow: hidden; box-shadow: var(--shadow); }
.hero-card img { width: 100%; display: block; }
.section { padding: 54px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; }
.section-title { font-size: clamp(1.9rem, 3vw, 2.8rem); line-height: 1.05; letter-spacing: -0.035em; margin: 0 0 16px; }
.section-text { color: var(--muted); max-width: 760px; margin: 0 0 28px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 24px; }
.card h3 { margin: 0 0 8px; font-size: 1.14rem; }
.card p, .card li { color: var(--muted); }
.card p { margin: 0; }
.notice {
  background: #fff7ed; border: 1px solid #fed7aa; color: #7c2d12; border-radius: var(--radius); padding: 18px 20px;
}
.page { max-width: 900px; padding: 58px 0 72px; }
.page h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
.page h2 { margin-top: 34px; font-size: 1.55rem; letter-spacing: -0.02em; }
.page p, .page li { color: var(--muted); }
.shots-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px;
}
.shot { padding: 14px; }
.shot img { width: 100%; display: block; border-radius: 18px; background: #f2f4f7; }
.shot figcaption { color: var(--muted); font-size: 0.95rem; margin-top: 10px; }
.footer { border-top: 1px solid var(--line); padding: 34px 0; color: var(--muted); font-size: 0.95rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 1020px) { .shots-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 46px; }
  .grid, .shots-grid { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav-right, .nav-links { justify-content: flex-start; }
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.05);
  display: grid;
  gap: 16px;
  margin: 24px 0 34px;
}

.form-card label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form-card textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
