*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

:root {
  --red: #c4121c;
  --red-dark: #9a0e16;
  --red-soft: #fdeeee;
  --ink: #141414;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --line: #e6e4e0;
  --bg: #f6f5f2;
  --paper: #ffffff;
  --shadow: 0 12px 40px rgba(20, 20, 20, 0.08);
  --radius: 16px;
  --max: 1180px;
  --header-h: 84px;
}







.news-card {
  position: fixed;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: 80;
  width: min(640px, 82vw);
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 36px 32px 30px;
  box-shadow: 0 24px 70px rgba(20, 20, 20, 0.28);
  border: 1px solid var(--line);
  border-top: 8px solid var(--red);
}

.news-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
}

.news-card h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  margin-bottom: 14px;
  font-family: "Fraunces", Georgia, serif;
}

.news-card p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 22px;
  max-width: 36em;
}

.news-card .btn {
  display: inline-flex;
  align-self: flex-start;
}

.news-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.news-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--muted);
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--ink-soft);
}

.nav a:hover,
.nav a.active {
  color: var(--red);
}

.btn-primary,
a.btn-primary,
a.btn-primary:link,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active,
button.btn-primary,
.nav a.btn-primary,
.nav a.btn-primary:hover,
.nav a.btn-primary:focus,
.nav a.btn-primary.active,
.hero a.btn-primary,
.section-dark a.btn-primary,
.news-card a.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover,
.nav a.btn-primary:hover {
  background: var(--red-dark);
  color: #fff;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: var(--bg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
  border: 0;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-light {
  background: #fff;
  color: var(--red);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #1a0c0c;
  padding: 72px 0 40px;
  color: #fff;
  min-height: 78vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 48%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 8, 8, 0.62) 0%, rgba(12, 8, 8, 0.32) 42%, rgba(12, 8, 8, 0.12) 100%),
    linear-gradient(180deg, rgba(12, 8, 8, 0.12) 0%, rgba(12, 8, 8, 0.38) 100%);
}

.hero .wrap,
.hero .hero-grid,
.hero .stats {
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  color: #ffb4b8;
}
.hero .eyebrow::before {
  background: #ffb4b8;
}
.hero .lede {
  color: #e8e2e2;
}
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.hero .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.hero .stat {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}
.hero .stat span {
  color: #ddd;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media video {
    display: none;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
}

.site-root h1,
.site-root h2,
.site-root h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.site-root h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 18px;
}
.site-root h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.site-root h3 {
  font-size: 1.25rem;
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.guarantee-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-weight: 700;
}

.guarantee-chip strong {
  font-family: Fraunces, serif;
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.hero-card img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 12px 0 64px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.stat b {
  display: block;
  font-family: Fraunces, serif;
  font-size: 1.7rem;
  color: var(--red);
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.stat-wide {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc((100% - 48px) / 4);
  text-align: center;
}

.site-section {
  padding: 80px 0;
}
.section-muted {
  background: var(--bg);
}
.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head p {
  color: var(--muted);
  max-width: 460px;
}
.section-dark .section-head p {
  color: #c9c9c9;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-body {
  padding: 22px;
}
.card-body p {
  color: var(--muted);
  margin: 8px 0 16px;
}
.card-link {
  color: var(--red);
  font-weight: 700;
  font-size: 0.95rem;
}

.card-icon {
  height: 120px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff7f7, #f3f1ec);
  border-bottom: 1px solid var(--line);
  color: var(--red);
}

.card-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.checklist li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--ink-soft);
}

.check {
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
}

.photo-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.photo-frame img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: #fff;
}

.program-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.program {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
}

.program h3 {
  margin-bottom: 10px;
}
.program p {
  color: #d4d4d4;
}

.page-hero {
  padding: 56px 0 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  color: var(--muted);
  max-width: 620px;
  margin-top: 10px;
}

.catalog {
  display: grid;
  gap: 28px;
}

.catalog-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}

.catalog-block h3 {
  margin-bottom: 8px;
}
.catalog-block > p {
  color: var(--muted);
  margin-bottom: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-root table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.site-root th,
.site-root td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}

.site-root th {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card,
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}

.contact-item {
  margin-bottom: 18px;
}
.contact-item small {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-item a {
  color: var(--red);
  font-weight: 700;
}

.site-root label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.site-root input,
.site-root select,
.site-root textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  margin-bottom: 14px;
  background: #fff;
}

.site-root textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.map-embed {
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 220px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  background: #111;
  color: #ddd;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.footer .logo img {
  height: 44px;
  background: #fff;
  padding: 6px 8px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-family: "Manrope", sans-serif;
}
.footer a {
  color: #cfcfcf;
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
}
.footer a:hover {
  color: #fff;
}
.legal {
  border-top: 1px solid #2a2a2a;
  padding-top: 18px;
  font-size: 0.85rem;
  color: #9a9a9a;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.note {
  background: #fff8e8;
  border: 1px solid #f1dd9d;
  color: #6a5410;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  margin-top: 8px;
}

.story-copy p {
  color: var(--ink-soft);
  max-width: 42em;
  margin-bottom: 18px;
}

.story-copy a {
  color: var(--red);
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline-item {
  border-top: 3px solid var(--red);
  padding-top: 16px;
}

.timeline-item b {
  display: block;
  font-family: Fraunces, Georgia, serif;
  color: var(--red);
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.timeline-item span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav.open {
    display: flex;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    display: block;
  }
  .hero-grid,
  .split,
  .cards,
  .stats,
  .program-grid,
  .contact-grid,
  .footer-grid,
  .form-row,
  .timeline {
    grid-template-columns: 1fr;
  }
  .header-inner {
    width: min(var(--max), calc(100% - 28px));
  }
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }
  .hero-card img,
  .photo-frame img {
    height: 240px;
  }
  .hero {
    min-height: 78vh;
    padding: 48px 0 28px;
  }
  .hero-visual {
    display: none;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .stat-wide {
    width: calc((100% - 16px) / 2);
  }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(12, 8, 8, 0.28) 0%, rgba(12, 8, 8, 0.48) 100%);
  }
  .hero-actions {
    margin-bottom: 24px;
  }
  .news-card {
    width: calc(100% - 28px);
    min-height: auto;
    padding: 28px 22px 22px;
  }
}
