:root {
  --red: #8b1e1e;
  --red2: #b9362d;
  --gold: #d8ae58;
  --ink: #241c18;
  --cream: #fbf6ea;
  --green: #254b3f;
  --serif: "Playfair Display", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--ink);
  background: #fff;
}

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

.wrap {
  width: min(1180px, 92%);
  margin: auto;
}

.top {
  background: #23130f;
  color: #f6e7c4;
  font-size: 13px;
  padding: 8px 0;
}

.top .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 251, 242, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8dcc5;
}

.navin {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.brand b {
  display: block;
  color: var(--red);
  font-family: var(--serif);
  font-size: 22px;
}

.brand small {
  color: #765f50;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.menu a:hover {
  color: var(--red);
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: #fff;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px #8b1e1e33;
}

.btn.alt {
  background: transparent;
  border: 1px solid #ead19b;
  color: #fff;
  box-shadow: none;
}

.hero {
  min-height: 690px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 35%, #cf9a4c33, transparent 28%),
    linear-gradient(115deg, #2e120f 0%, #6e1c19 48%, #b04b30 100%);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 10% 20%,
    #fff1 0 2px,
    transparent 3px
  );
  background-size: 36px 36px;
  opacity: 0.5;
}

.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.eyebrow {
  color: #f1cf83;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
}

.hero h1 {
  font: 700 clamp(50px, 7vw, 64px) / 1.3 var(--serif);
  color: #fff;
  margin: 14px 0;
}

.hero h1 span {
  color: #f3cf79;
}

.hero p {
  color: #f9ead9;
  font-size: 19px;
  line-height: 1.7;
  max-width: 700px;
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.hero-logo {
  display: grid;
  place-items: center;
}

.hero-logo img {
  width: min(430px, 88%);
  border-radius: 28px;
  box-shadow: 0 30px 70px #0007;
  border: 1px solid #f4d88d88;
  transform: rotate(1.5deg);
}

section {
  padding: 86px 0;
}

.title {
  text-align: center;
  font: 700 42px var(--serif);
  color: var(--red);
  margin: 0 0 14px;
}

.sub {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
  line-height: 1.75;
  color: #66554a;
}

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

.value {
  padding: 34px;
  border: 1px solid #eadfcf;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #fffaf1);
  box-shadow: 0 14px 40px #5f382014;
}

.value i {
  font-style: normal;
  font-size: 38px;
}

.value h3 {
  font-family: var(--serif);
  color: var(--red);
  font-size: 24px;
}

.programs {
  background: var(--cream);
}

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

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px #5d3c2118;
  border: 1px solid #efe2cb;
}

.thumb {
  height: 220px;
  display: flex;
  align-items: end;
  padding: 24px;
  color: #fff;
  background: linear-gradient(145deg, #263e36, #b37a38);
  position: relative;
}

.thumb:after {
  content: "♪";
  position: absolute;
  right: 24px;
  top: 16px;
  font-size: 76px;
  opacity: 0.18;
}

.thumb h3 {
  font: 700 28px var(--serif);
  margin: 0;
  position: relative;
}

.body {
  padding: 24px;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.body p {
  margin: 0 0 16px;
}

.btn.watch {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.tag {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.awards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.award {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 40px #4d2e1d18;
  border: 1px solid #eadfcf;
}

.award img {
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
}

.award h3 {
  color: var(--red);
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 8px;
}

.quote {
  background: linear-gradient(120deg, #183b32, #315b4c);
  color: #fff;
  text-align: center;
}

.quote blockquote {
  font: italic 34px / 1.5 var(--serif);
  max-width: 900px;
  margin: auto;
  color: #f7e8c5;
}

.contact {
  background: #251611;
  color: #f7ead2;
}

.contactgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact h2 {
  font: 700 42px var(--serif);
  color: #f3ce7b;
  margin-top: 0;
}

.contact p {
  line-height: 1.8;
}

.panel {
  background: #fff1;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #fff2;
}

.panel input,
.panel textarea {
  width: 100%;
  padding: 14px;
  margin: 7px 0;
  border-radius: 12px;
  border: 1px solid #ffffff36;
  background: #ffffff0d;
  color: #fff;
}

.panel textarea {
  min-height: 110px;
  resize: vertical;
}

.panel input::placeholder,
.panel textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.form-note {
  margin: 14px 0 0;
  color: #f8e0a5;
  font-size: 13px;
  line-height: 1.6;
}

.form-status {
  margin-top: 12px;
  min-height: 22px;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.form-status.visible {
  display: block;
}

.form-status.error {
  color: #ffc1c1;
}

.form-status.success {
  color: #d9f7c7;
}

.footer {
  background: #130a08;
  color: #c9b7aa;
  text-align: center;
  padding: 26px;
}

.mobile {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 22px;
  background: #130a08cc;
  backdrop-filter: blur(6px);
}

.modal.open {
  display: grid;
}

.modal-box {
  width: min(920px, 100%);
  background: #1c110e;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f4d88d55;
  box-shadow: 0 30px 80px #0008;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: #f7e8c5;
  font-family: var(--serif);
  font-size: 20px;
}

.modal-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #ffffff14;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .mobile {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 80px 0;
  }

  .hero .wrap,
  .contactgrid {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    order: -1;
  }

  .hero-logo img {
    width: 250px;
  }

  .values,
  .cards,
  .awards {
    grid-template-columns: 1fr;
  }

  .award {
    grid-template-columns: 120px 1fr;
  }

  .award img {
    width: 120px;
    height: 100px;
  }

  .top .wrap {
    font-size: 11px;
  }

  .brand small {
    display: none;
  }
}
