:root {
  --cream: #f3ead7;
  --paper: #fffaf0;
  --ink: #171512;
  --red: #8e201d;
  --gold: #c89543;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; }

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(22px, 5vw, 78px);
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.brand { text-decoration: none; display: grid; line-height: 1; }
.brand-logo { display: block; width: clamp(170px, 20vw, 255px); height: 64px; object-fit: contain; object-position: left center; }
.brand-script { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; font-style: italic; letter-spacing: -0.06em; }
.brand-tag { font-family: Oswald, sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: .25em; margin-top: 5px; }
.brand-tag b { color: var(--red); }
.header-call {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-underline-offset: 5px;
}
.site-nav { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 8px clamp(12px, 1.7vw, 25px); font-family: Oswald, sans-serif; text-transform: uppercase; }
.site-nav > a { font-weight: 600; letter-spacing: .06em; text-decoration: none; }
.site-nav > a:not(.header-call) { padding: 8px 0; border-bottom: 2px solid transparent; }
.site-nav > a.active, .site-nav > a:not(.header-call):hover, .site-nav > a:not(.header-call):focus-visible { border-bottom-color: var(--red); }

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(390px, .86fr) 1.35fr;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 8vw, 110px) clamp(30px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy::after {
  content: "";
  position: absolute;
  right: -58px;
  top: 0;
  width: 120px;
  height: 100%;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .22em;
}
.eyebrow.light { color: #f1c987; }
h1, h2 { margin: 0; font-family: Oswald, sans-serif; text-transform: uppercase; line-height: .95; }
h1 { font-size: clamp(4.5rem, 9.6vw, 9rem); letter-spacing: -.05em; }
h1 span { color: var(--red); }
.party-hero h1 { font-size: clamp(3.35rem, 6.2vw, 5.75rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -.035em; }
.intro { max-width: 570px; margin: 30px 0; color: #e7dfd0; font-size: 1.08rem; }
.hero-photo {
  min-height: 650px;
  background: linear-gradient(90deg, rgba(23,21,18,.4), transparent 32%), url("assets/bowling-lanes.png") center/cover;
}
.party-hero-photo { background-image: linear-gradient(90deg, rgba(23,21,18,.35), transparent 35%), url("assets/birthday-bowling.png"); }
.subpage-hero { min-height: 380px; padding: clamp(65px, 9vw, 120px) clamp(22px, 8vw, 120px); display: flex; align-items: flex-end; color: white; background: linear-gradient(90deg, rgba(23,21,18,.94), rgba(23,21,18,.25)), url("assets/bowling-lanes.png") center/cover; }
.subpage-hero h1 { font-size: clamp(4rem, 10vw, 8rem); }
.content-section { padding: clamp(60px, 8vw, 105px) clamp(22px, 8vw, 120px); background: var(--paper); }
.content-section.alt { background: var(--cream); }
.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 38px; }
.info-card { padding: 30px; border: 2px solid var(--ink); background: var(--paper); box-shadow: 7px 7px 0 var(--ink); }
.info-card h3 { margin: 0 0 8px; font: 700 1.55rem Oswald, sans-serif; text-transform: uppercase; }
.info-card p { margin: 0; }
.home-hero { min-height: 690px; background: linear-gradient(90deg, rgba(23,21,18,.95) 0%, rgba(23,21,18,.64) 45%, rgba(23,21,18,.12) 75%), url("assets/bowling-lanes.png") center/cover; color: white; display: flex; align-items: center; padding: clamp(70px, 10vw, 140px) clamp(22px, 8vw, 120px); }
.home-hero > div { max-width: 760px; }
.home-hero p:not(.eyebrow) { max-width: 610px; font-size: 1.1rem; color: #eee4d2; }
.home-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; }
.home-actions .outline-button { color: white; }
.link-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; margin-top: 42px; }
.link-card { min-height: 245px; padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; text-decoration: none; border: 2px solid var(--ink); background: var(--paper); box-shadow: 8px 8px 0 var(--ink); transition: transform .2s ease; }
.link-card:hover, .link-card:focus-visible { transform: translate(-3px,-3px); }
.link-card strong { font: 700 2rem Oswald, sans-serif; text-transform: uppercase; }
.link-card span { color: var(--red); font: 700 .9rem Oswald, sans-serif; letter-spacing: .12em; }
.hours-list { max-width: 760px; margin: 35px auto 0; border-top: 2px solid var(--ink); }
.hours-row { display: grid; grid-template-columns: 1fr 1.35fr; gap: 25px; padding: 14px 4px; border-bottom: 2px solid var(--ink); }
.hours-row strong { font-family: Oswald, sans-serif; text-transform: uppercase; }
.menu-columns { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 45px; margin-top: 38px; }
.menu-group { margin-bottom: 38px; }
.menu-group h3 { margin: 0 0 18px; padding-bottom: 8px; border-bottom: 4px solid var(--red); font: 700 2rem Oswald, sans-serif; text-transform: uppercase; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 18px; padding: 9px 0; border-bottom: 1px dotted #777; }
.menu-item strong { font-family: Oswald, sans-serif; }
.menu-item small { grid-column: 1 / -1; margin-top: -9px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(35px,7vw,100px); }
.contact-list { margin: 35px 0 0; padding: 0; list-style: none; }
.contact-list li { padding: 18px 0; border-bottom: 2px solid var(--ink); }
.contact-list strong { display: block; font-family: Oswald, sans-serif; color: var(--red); text-transform: uppercase; }
.package-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 6vw, 90px); padding: clamp(65px, 8vw, 110px) clamp(22px, 7vw, 105px); background: var(--paper); }
.package-card { padding: clamp(28px, 5vw, 55px); background: var(--red); color: white; border: 2px solid var(--ink); box-shadow: 10px 10px 0 var(--gold); }
.package-card .price { font-size: clamp(5rem, 9vw, 8rem); }
.package-card .price-note { color: #f5ddd7; }
.package-card h2 { margin: 25px 0; font-size: clamp(2.2rem, 4vw, 4rem); }
.includes { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; margin: 28px 0 0; padding: 0; list-style: none; }
.includes li { position: relative; padding-left: 22px; }
.includes li::before { content: "✓"; position: absolute; left: 0; color: #f1c987; font-weight: 800; }
.package-aside { align-self: center; }
.package-aside h2 { margin-bottom: 25px; }
.package-aside p { max-width: 600px; }
.fine-print { margin-top: 28px; padding-top: 24px; border-top: 2px solid var(--ink); font-family: Oswald, sans-serif; font-weight: 600; }
.party-details { padding: clamp(65px, 8vw, 110px) clamp(22px, 7vw, 105px); }
.party-details .details { max-width: 900px; margin: 45px auto 0; }
.party-details > .section-heading { text-align: center; padding: 0; }
.booking-callout { background: var(--ink); border-color: var(--red); }
.primary-button {
  width: fit-content;
  min-width: 270px;
  padding: 16px 22px;
  display: grid;
  text-decoration: none;
  background: var(--red);
  border: 2px solid #b4473d;
  box-shadow: 5px 5px 0 var(--gold);
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary-button:hover, .primary-button:focus-visible { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--gold); }
.button-kicker { font-family: Oswald, sans-serif; font-size: .72rem; letter-spacing: .14em; }
.primary-button strong { font-family: Oswald, sans-serif; font-size: 1.55rem; letter-spacing: .04em; }

.pricing {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: clamp(60px, 8vw, 110px) clamp(22px, 5vw, 78px);
  align-items: stretch;
}
.section-heading { align-self: center; padding-right: 30px; }
.price-card {
  min-height: 310px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
}
.price-card.featured { background: var(--red); color: white; box-shadow: 9px 9px 0 var(--gold); }
.price-icon { width: 34px; height: 34px; display: grid; place-items: center; color: var(--gold); font-size: 2.3rem; line-height: 1; }
.shoe-mark { font-family: Oswald, sans-serif; color: var(--red); font-weight: 700; font-size: 2rem; transform: skew(-10deg); }
.featured .price-label { color: white; }
.price-label { margin: 10px 0 0; color: var(--red); font-family: Oswald, sans-serif; font-weight: 700; letter-spacing: .15em; }
.price { margin: 5px 0 -4px; font-family: Oswald, sans-serif; font-size: 6.2rem; font-weight: 700; line-height: 1; }
.price sup { font-size: 2.2rem; vertical-align: top; position: relative; top: .4em; }
.price-note { margin: 0; font-family: Oswald, sans-serif; font-size: .82rem; letter-spacing: .13em; }

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: clamp(58px, 7vw, 90px) clamp(22px, 8vw, 120px);
  color: white;
  background: var(--red);
  border-top: 8px solid var(--gold);
  border-bottom: 8px solid var(--gold);
}
.callout h2 { max-width: 900px; }
.callout p:not(.eyebrow) { max-width: 680px; margin: 24px 0 0; color: #f2ded8; }
.outline-button {
  flex: 0 0 auto;
  padding: 18px 25px;
  font-family: Oswald, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  border: 2px solid white;
}
.outline-button span { margin-left: 18px; }
.outline-button:hover, .outline-button:focus-visible { background: white; color: var(--red); }

.visit {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 9vw, 150px);
  padding: clamp(68px, 9vw, 120px) clamp(22px, 8vw, 120px);
  background: var(--paper);
}
.visit-copy p:last-child { max-width: 560px; margin-top: 28px; }
.details { border-top: 2px solid var(--ink); }
.detail { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 25px 0; border-bottom: 2px solid var(--ink); }
.detail > span { color: var(--red); font-family: Oswald, sans-serif; font-weight: 700; }
.detail strong { font-family: Oswald, sans-serif; font-size: 1.25rem; letter-spacing: .08em; }
.detail p { margin: 4px 0 0; }

footer {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 38px;
  padding: 30px clamp(22px, 5vw, 78px);
  color: white;
  background: var(--ink);
  font-family: Oswald, sans-serif;
}
.footer-brand { font-weight: 700; font-size: 1.4rem; letter-spacing: .08em; }
.footer-brand span { color: var(--red); }
footer address { font-style: normal; }
footer a { font-weight: 700; text-underline-offset: 5px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 580px; }
  .hero-copy::after { display: none; }
  .hero-photo { min-height: 360px; order: -1; }
  .pricing { grid-template-columns: 1fr 1fr; }
  .section-heading { grid-column: 1 / -1; }
  .visit { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .link-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header { min-height: 80px; }
  .brand-tag { display: none; }
  .site-nav { gap: 12px; }
  .site-nav { width: 100%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .site-nav > a { flex: 0 0 auto; font-size: .78rem; }
  .site-nav .header-call { display: none; }
  .site-header { flex-wrap: wrap; }
  .brand-logo { height: 55px; }
  .hero-photo { min-height: 260px; }
  .hero-copy { min-height: auto; padding-top: 58px; padding-bottom: 70px; }
  h1 { font-size: clamp(4rem, 21vw, 6.5rem); }
  .pricing { grid-template-columns: 1fr; }
  .section-heading { padding: 0 0 15px; }
  .price-card { min-height: 260px; }
  .callout { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 1fr; gap: 10px; }
  .includes { grid-template-columns: 1fr; }
  .link-grid, .content-grid, .menu-columns, .contact-grid { grid-template-columns: 1fr; }
  .hours-row { grid-template-columns: .8fr 1.2fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
