:root {
  --wine: #80003b;
  --wine-dark: #3c001d;
  --wine-soft: #a71b55;
  --cream: #fff7ef;
  --paper: #fbf1e8;
  --ink: #22151a;
  --muted: #695a60;
  --gold: #d6a85c;
  --olive: #566240;
  --line: rgba(128, 0, 59, 0.14);
  --shadow: 0 24px 70px rgba(50, 0, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(42, 0, 21, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--wine-dark);
  font-weight: 900;
  background: var(--gold);
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover {
  color: #fff;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  font-weight: 850;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-action {
  color: #2a120d;
  background: var(--gold);
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.button svg,
.header-action svg,
.nav-toggle svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--wine-dark);
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.nav-toggle > * {
  grid-area: 1 / 1;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  content: "";
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(4px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 142px clamp(20px, 5vw, 74px) 56px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(40, 0, 20, 0.95) 0%, rgba(75, 0, 36, 0.72) 45%, rgba(75, 0, 36, 0.16) 100%),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1800&q=85") center/cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 12% 90%, rgba(214, 168, 92, 0.3), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.45));
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  align-self: center;
  width: min(760px, 100%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.05rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-subtitle {
  width: min(640px, 100%);
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 850;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.hero-subtitle span {
  display: block;
}

.hero-copy {
  width: min(680px, 100%);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.36rem);
  line-height: 1.55;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-primary {
  color: var(--wine-dark);
  background: var(--gold);
  box-shadow: 0 16px 42px rgba(214, 168, 92, 0.28);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero-panel {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 56px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-panel div {
  padding: 22px;
  background: rgba(43, 0, 22, 0.66);
  backdrop-filter: blur(12px);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.04rem;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--wine);
}

.proof-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 112px;
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  text-align: center;
}

.proof-strip svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.section {
  padding: clamp(72px, 10vw, 124px) clamp(20px, 5vw, 74px);
}

.section-heading {
  width: min(880px, 100%);
  margin-bottom: 42px;
}

.section-heading h2,
.split-content h2,
.contact-content h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.program-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-grid article {
  min-height: 260px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(53, 0, 24, 0.06);
}

.intro-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--wine);
}

.intro-grid h3,
.program-card h3,
.operation-grid h3,
.contact-card h3 {
  margin-bottom: 12px;
  font-size: 1.26rem;
}

.intro-grid p,
.split-content p,
.program-card p,
.contact-content p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  background: var(--paper);
}

.split-media {
  min-height: 620px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.split-content {
  max-width: 650px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #3a2a30;
  font-weight: 760;
}

.check-list svg {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--wine);
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(128, 0, 59, 0.95), rgba(49, 0, 25, 1)),
    var(--wine);
}

.section-dark .section-heading h2 {
  color: #fff;
}

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

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.program-card.featured {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.program-kicker {
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.program-card.featured .program-kicker {
  color: var(--wine);
}

.program-card p {
  color: rgba(255, 255, 255, 0.76);
}

.program-card.featured p {
  color: var(--muted);
}

.program-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--gold);
  font-weight: 900;
}

.program-card.featured a {
  color: var(--wine);
}

.program-card a svg {
  width: 18px;
  height: 18px;
}

.operation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.operation-grid article {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  background: #240011;
}

.operation-grid article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 22%, rgba(38, 0, 18, 0.82));
}

.operation-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.operation-grid article:hover img {
  transform: scale(1.05);
}

.operation-grid h3 {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  left: 22px;
  margin: 0;
  font-size: 1.4rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(43, 0, 21, 0.85), rgba(43, 0, 21, 0.88)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=85") center/cover;
}

.contact-content {
  width: min(760px, 100%);
}

.contact-content p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-card address {
  display: grid;
  gap: 13px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.contact-card span,
.contact-card a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-card svg {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--wine);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 74px);
  color: rgba(255, 255, 255, 0.72);
  background: #210010;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    display: flex;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: grid;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    z-index: 2;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    overflow: hidden;
    background: rgba(42, 0, 21, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
  }

  .site-header.is-open .site-nav a {
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: 900px;
  }

  .proof-strip,
  .intro-grid,
  .program-grid,
  .operation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-media,
  .split-media img {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding: 118px 18px 36px;
  }

  .hero-content {
    width: min(340px, calc(100vw - 36px));
    max-width: 100%;
  }

  .hero-panel {
    width: min(340px, calc(100vw - 36px));
    max-width: 100%;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.58rem, 16vw, 4.2rem);
  }

  .hero-subtitle {
    font-size: 1.18rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-panel,
  .proof-strip,
  .intro-grid,
  .program-grid,
  .operation-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-top: 44px;
  }

  .proof-strip div {
    min-height: 86px;
  }

  .section {
    padding: 64px 18px;
  }

  .intro-grid article,
  .program-card {
    min-height: auto;
  }

  .operation-grid article,
  .operation-grid img {
    min-height: 230px;
  }
}
