:root {
  --ink: #19394d;
  --ink-2: #23495f;
  --paper: #f8fbfc;
  --white: #ffffff;
  --line: rgba(25, 57, 77, 0.16);
  --gold: #d6b46a;
  --shadow: 0 28px 80px rgba(10, 31, 45, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(214, 180, 106, 0.12), transparent 24rem),
    linear-gradient(135deg, #eef5f7 0%, #ffffff 48%, #e7f0f3 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
}

.hero {
  width: min(1120px, 100%);
  min-height: min(760px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 74px);
  padding: clamp(26px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(25, 57, 77, 0.05), rgba(214, 180, 106, 0.08));
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  min-width: 290px;
  background: var(--ink);
  clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero__brand,
.hero__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero__brand {
  display: grid;
  place-items: center;
}

.hero__logo {
  display: block;
  width: min(100%, 420px);
  max-height: 620px;
  object-fit: contain;
  padding: clamp(18px, 4vw, 38px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(4, 20, 31, 0.28);
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0 0 clamp(26px, 4vw, 40px);
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.schedule__item {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.schedule__item--featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  border-color: rgba(255, 255, 255, 0.18);
}

.schedule__day {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.72;
}

.schedule strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.schedule span:last-child {
  margin-top: 12px;
  color: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.address {
  margin-top: clamp(24px, 4vw, 38px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(25, 57, 77, 0.84);
  font-style: normal;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .page-shell {
    padding: 0;
    place-items: stretch;
  }

  .hero {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 18px 34px;
    border: 0;
    border-radius: 0;
  }

  .hero::before {
    width: 100%;
    height: 34%;
    min-width: 0;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
  }

  .hero__logo {
    width: min(100%, 280px);
    max-height: 360px;
    padding: 20px;
  }

  .hero__content {
    width: min(100%, 340px);
    max-width: none;
    margin-inline: 0 auto;
    padding-top: 76px;
  }

  h1 {
    max-width: 8.5ch;
    font-size: clamp(2.05rem, 10vw, 2.85rem);
    line-height: 1.02;
  }

  .schedule {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .schedule__item {
    min-height: 116px;
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .hero__logo {
    width: min(82vw, 270px);
  }

  .schedule strong {
    font-size: 2.15rem;
  }
}
