/* =========================================================
   Music House — shared stylesheet
   A modern take on the New York skyline theme:
   charcoal + brass gold + warm ivory.
========================================================= */

:root {
  --bg-ivory: #faf6ee;
  --bg-ivory-alt: #f2ead9;
  --bg-dark: #131110;
  --bg-dark-alt: #1c1815;
  --gold: #b8863f;
  --gold-light: #d9b871;
  --gold-soft: rgba(184, 134, 63, 0.14);
  --burgundy: #6d2331;
  --ink: #1c1a17;
  --ink-soft: #4a453d;
  --cream: #f5efe0;
  --cream-dim: #cfc6b2;
  --line: rgba(28, 26, 23, 0.1);
  --line-dark: rgba(245, 239, 224, 0.14);
  --shadow: 0 20px 45px rgba(19, 17, 16, 0.14);
  --radius: 2px;
  --font-serif: "Playfair Display", "Noto Serif JP", serif;
  --font-script: "Yellowtail", "Noto Sans JP", cursive;
  --font-body: "Noto Sans JP", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-dark);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-ivory);
  color: var(--ink);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Section framework ---------- */

.section {
  padding: 96px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--cream);
}

.section--alt {
  background: var(--bg-ivory-alt);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.section-head--left {
  text-align: left;
  margin: 0 0 48px;
}

.section-head--left .eyebrow::after {
  display: none;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
}

.section--dark .section-title {
  color: var(--cream);
}

.section-lead {
  color: var(--ink-soft);
  font-size: 17px;
}

.section--dark .section-lead {
  color: var(--cream-dim);
}

.script {
  font-family: var(--font-script);
  color: var(--gold);
  font-weight: 400;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.28s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #171310;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(184, 134, 63, 0.35);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.section--dark .btn-outline {
  color: var(--cream);
  border-color: var(--line-dark);
}

.btn-outline:hover {
  background: var(--gold);
  color: #171310;
  border-color: var(--gold);
}

.btn-ghost {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 4px 0;
  border-radius: 0;
  font-size: 13.5px;
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  background: linear-gradient(to bottom, rgba(12, 11, 10, 0.55), rgba(12, 11, 10, 0));
}

.site-header.is-scrolled {
  background: rgba(15, 13, 12, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--cream);
  line-height: 1;
}

.brand span {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

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

.nav-desktop ul {
  display: flex;
  gap: 32px;
}

.nav-desktop a {
  font-size: 13.5px;
  letter-spacing: 0.05em;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
}

.nav-desktop a.is-active {
  color: var(--gold-light);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--gold);
  color: #171310;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 260;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}

.nav-mobile {
  position: fixed;
  inset: 0;
  height: 100dvh;
  background: var(--bg-dark);
  z-index: 220;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 128px 24px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--cream);
}

.nav-mobile .nav-cta {
  margin-top: 10px;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1350px) {
  .nav-desktop {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  background: var(--bg-dark);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.05) saturate(1.08);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 11, 10, 0.5) 0%, rgba(12, 11, 10, 0.58) 45%, rgba(12, 11, 10, 0.68) 65%, rgba(12, 11, 10, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 160px 24px 120px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 7px 18px;
  margin-bottom: 26px;
  border-radius: 999px;
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(52px, 9vw, 104px);
  line-height: 1;
  color: var(--cream);
  margin-bottom: 8px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--gold-light);
  margin-bottom: 26px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.hero-text {
  color: var(--cream-dim);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--cream-dim);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrolldown 2s infinite;
}

@keyframes scrolldown {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.4; }
}

/* ---------- Sub-page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  background: var(--bg-dark);
  overflow: hidden;
}

.page-hero .hero-media img {
  filter: grayscale(0.5) sepia(0.22) brightness(0.4);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 200px 24px 72px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.page-hero-kicker {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.page-hero-title {
  font-size: clamp(34px, 6vw, 60px);
  color: var(--cream);
  margin-bottom: 14px;
}

.page-hero-title .script {
  display: block;
  font-size: clamp(20px, 3vw, 30px);
  margin-top: 6px;
}

@media (max-width: 480px) {
  .page-hero-title {
    font-size: 26px;
  }
  .page-hero-title .script {
    font-size: 19px;
  }
}

.page-hero-lead {
  color: var(--cream-dim);
  max-width: 620px;
  font-size: 16px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 12.5px;
  color: var(--cream-dim);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

/* ---------- Cards & grids ---------- */

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 38px 32px;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.card-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: block;
}

.card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 0;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 20px;
}

/* photo-card */

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-card:hover img {
  transform: scale(1.06);
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.85), transparent);
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ---------- Split / feature blocks ---------- */

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

.split.reverse .split-media {
  order: 2;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split.reverse .split-media {
    order: 0;
  }
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius);
}

.split-media::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.split-media .frame-num {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: #17130f;
  font-family: var(--font-serif);
  font-size: 15px;
  padding: 12px 20px;
  letter-spacing: 0.08em;
}

.feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "—";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Stats strip ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 700px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px);
  color: var(--gold-light);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--cream-dim);
  text-transform: uppercase;
}

/* ---------- Points / accordion-like numbered rows ---------- */

.point-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.point-row:first-child { padding-top: 0; }
.point-row:last-child { border-bottom: none; }

.point-index {
  font-family: var(--font-serif);
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
}

.point-row h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.point-row p {
  color: var(--ink-soft);
  font-size: 15.5px;
}

@media (max-width: 620px) {
  .point-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ---------- Pricing table ---------- */

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.price-table caption {
  text-align: left;
  font-family: var(--font-serif);
  font-size: 20px;
  padding: 18px 0;
  color: var(--ink);
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.price-table thead th {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
  font-family: var(--font-serif);
  font-weight: 700;
  white-space: nowrap;
}

.price-table tbody tr:hover {
  background: var(--gold-soft);
}

.price-note {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 14px;
}

.price-block {
  margin-bottom: 56px;
}

.price-block:last-child { margin-bottom: 0; }

/* ---------- Bio card ---------- */

.bio {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.bio:first-of-type { border-top: none; }

@media (max-width: 760px) {
  .bio {
    grid-template-columns: 1fr;
  }
}

.bio-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-role {
  color: var(--gold);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.bio h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.bio-tags {
  color: var(--ink-soft);
  font-size: 13.5px;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.bio p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  background: var(--bg-dark);
  color: var(--cream);
  padding: 90px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(184, 134, 63, 0.18), transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(184, 134, 63, 0.12), transparent 55%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner .eyebrow { justify-content: center; }

.cta-banner h2 {
  color: var(--cream);
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--cream-dim);
  margin-bottom: 32px;
}

.cta-phone {
  margin-top: 24px;
  font-size: 14px;
  color: var(--cream-dim);
}

.cta-phone a {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 20px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-dark-alt);
  color: var(--cream-dim);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-col h4 {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ---------- Misc ---------- */

.divider-gold {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  border: 1px solid var(--line);
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 999px;
  color: var(--ink-soft);
}

.section--dark .tag {
  border-color: var(--line-dark);
  color: var(--cream-dim);
}

.badge-new {
  display: inline-block;
  background: var(--burgundy);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-left: 10px;
  vertical-align: middle;
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.map-frame iframe,
.map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  font-size: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.info-list b {
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 860px) {
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

.gallery-strip .photo-card {
  aspect-ratio: 1/1;
}

.event-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius);
}

@media (max-width: 700px) {
  .event-card {
    grid-template-columns: 1fr;
  }
}

.event-date {
  font-family: var(--font-serif);
  color: var(--gold);
}

.event-date .day {
  font-size: 44px;
  line-height: 1;
  display: block;
}
