﻿:root {
  --navy: #061a3d;
  --navy-2: #08275b;
  --red: #d3131e;
  --white: #ffffff;
  --text: #071735;
  --border: #d8dde7;
  --surface: #ffffff;
  --soft: #f4f6fa;
  --shadow: 0 16px 34px rgba(3, 18, 45, 0.15);
  --soft-shadow: 0 8px 20px rgba(3, 18, 45, 0.11);
  --radius: 10px;
  --container: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #fff;
}
a { color: inherit; }
img { display: block; max-width: none; }
.container { width: min(100% - 72px, var(--container)); margin: 0 auto; }

.site-header,
.site-footer {
  color: var(--white);
  background: linear-gradient(100deg, #03112b 0%, #061a3d 52%, #082a62 100%);
  overflow: hidden;
}

.header-inner {
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand-logo { display: inline-flex; align-items: center; text-decoration: none; }
.dxcc-logo { width: 258px; height: auto; object-fit: contain; }
.footer-dxcc-logo { width: 220px; }

.supporter-lockup,
.footer-supporter {
  display: flex;
  align-items: center;
  gap: 22px;
  text-transform: uppercase;
}

.school-logo {
  width: 104px;
  height: 104px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 4px solid var(--red);
  outline: 3px solid #fff;
  box-shadow: 0 5px 12px rgba(0,0,0,0.22);
}

.school-logo.small {
  width: 78px;
  height: 78px;
  border-width: 3px;
  outline-width: 2px;
}

.supporter-text span,
.footer-supporter span {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.supporter-text strong,
.footer-supporter strong {
  display: block;
  margin-top: 8px;
  font-family: "Oswald", Impact, sans-serif;
  color: var(--white);
  font-size: 25px;
  line-height: 1.18;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(560px, 1.2fr) minmax(420px, 1fr);
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 660px;
  padding: 78px 24px 82px 0;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 78px;
  line-height: 0.98;
  color: var(--navy);
}

.hero-copy h1 span,
.hero-copy h1 strong { display: block; }
.hero-copy h1 strong { color: var(--red); }

.subheadline {
  margin: 24px 0 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 600px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.subheadline span {
  width: 34px;
  height: 2px;
  background: var(--red);
  flex: 0 0 auto;
}

.star-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}

.intro-copy {
  max-width: 540px;
  margin: 0;
  font-size: 23px;
  line-height: 1.48;
}

.hero-visual {
  position: relative;
  min-height: 610px;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 8%, rgba(255,255,255,0.3) 22%, rgba(255,255,255,0) 38%),
    url("assets/hero/stadium-background.png") right center / auto 100% no-repeat;
}

.bkg-tilt-image {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 800px;
  max-width: none;
  height: auto;
  z-index: 5;
}

.player-image {
  position: absolute;
  right: 72px;
  top: 16px;
  width: 528px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 20px 18px rgba(0,0,0,0.32));
}

.mouthguard-image {
  position: absolute;
  right: 12px;
  bottom: -60px;
  width: 414px;
  height: auto;
  z-index: 6;
  transform: rotate(-5deg);
  filter: drop-shadow(0 18px 16px rgba(0,0,0,0.34));
}

.content-section {
  position: relative;
  z-index: 4;
  padding: 0 0 26px;
  background: linear-gradient(180deg, #f8fafc 0, #fff 34%, #f7f8fb 100%);
}

.alert-card {
  margin-top: -31px;
  min-height: 136px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px 34px;
  background: var(--surface);
  border: 1px solid rgba(6, 26, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.alert-icon { width: 92px; height: 92px; }
.parent-icon { width: 88px; height: 64px; object-position: center; }
.asset-icon { display: block; flex: 0 0 auto; object-fit: contain; }

.alert-copy strong {
  display: block;
  color: var(--red);
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 900;
}

.alert-copy p {
  margin: 5px 0 0;
  max-width: 690px;
  font-size: 21px;
  line-height: 1.36;
}
.alert-copy b { color: var(--red); }
.alert-copy b:last-child { color: var(--text); }

.details-card {
  margin-top: 31px;
  display: grid;
  grid-template-columns: 1.38fr 1fr;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.detail-main,
.cost-panel { padding: 25px 30px; }

.detail-main {
  display: grid;
  grid-template-columns: 156px 1fr;
  align-items: center;
  gap: 28px;
}

.event-icon-frame {
  width: 156px;
  height: 156px;
  border-radius: 10px;
  background: var(--navy);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.event-icon-frame .event-icon { width: 112px; height: 112px; }

.detail-main h2,
.cost-panel h3,
.cta-copy h2,
.alternate-card h2,
.section-title-row h2,
.expect-item h3 {
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  margin: 0;
  color: var(--navy);
}

.detail-main h2 { font-size: 40px; line-height: 1; }
.event-date { margin: 13px 0 17px; color: var(--red); font-size: 21px; line-height: .86; font-weight: 900; }
.location-line { margin: 0 0 12px; font-size: 22px; font-weight: 900; }
.note-line { margin: 0; font-size: 20px; font-style: italic; }
.inline-icon { width: 18px; height: 18px; display: inline-block; margin-right: 9px; vertical-align: -2px; object-fit: contain; }

.cost-panel {
  border-left: 1px solid var(--border);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
}

.cost-icon { width: 58px; height: 58px; }
.cost-panel h3 { font-size: 31px; }
.cost-panel ul { margin: 6px 0 0; padding-left: 18px; font-size: 17px; line-height: 1.42; font-weight: 700; }
.cost-panel li + li { margin-top: 7px; font-weight: 500; }
.cost-panel strong { color: var(--red); font-size: 22px; }

.cta-band {
  margin-top: 31px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 48px 28px 31px;
  color: var(--white);
  background: linear-gradient(100deg, #03112b 0%, #071d45 60%, #092f6f 100%);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.cta-icon { width: 104px; height: 104px; }
.cta-copy h2 { color: var(--white); font-size: 34px; }
.cta-copy p { margin: 7px 0 0; max-width: 550px; font-size: 18px; line-height: 1.42; font-weight: 600; }
.cta-copy strong { color: #ff3441; }
.cta-actions { text-align: center; }

.button {
  min-height: 67px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 43px;
  border-radius: 8px;
  color: var(--white);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 22px rgba(0,0,0,0.2); }
.button-red { background: linear-gradient(180deg, #f12a35 0%, #d3131e 100%); }
.button-red span { font-size: 42px; line-height: 0; }
.button-navy { min-height: 64px; background: var(--navy); font-size: 20px; padding-inline: 34px; }

.secure-note {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
}
.secure-icon { width: 22px; height: 22px; object-fit: contain; }

.expect-section { padding: 34px 0 0; }
.section-title-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 26px; margin-bottom: 27px; }
.section-title-row span { height: 2px; background: var(--red); }
.section-title-row h2 { font-size: 30px; line-height: 1; }
.expect-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.expect-item { min-height: 198px; text-align: center; padding: 0 27px; border-right: 1px solid var(--border); }
.expect-item:last-child { border-right: 0; }
.step-icon-frame { width: 84px; height: 84px; margin: 0 auto 14px; border-radius: 50%; background: var(--navy); display: grid; place-items: center; }
.step-icon { width: 50px; height: 50px; object-fit: contain; }
.expect-item h3 { font-size: 21px; }
.expect-item h3 span { display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 6px; border-radius: 50%; background: var(--red); color: #fff; font-family: "Inter", Arial, sans-serif; font-size: 14px; font-weight: 900; }
.expect-item p { margin: 9px auto 0; max-width: 190px; font-size: 16px; line-height: 1.42; }

.alternate-card {
  margin-top: 30px;
  padding: 21px 48px 21px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #f1f3f7;
  border-radius: 10px;
  border: 1px solid rgba(6, 26, 61, 0.06);
}
.alternate-left { display: flex; align-items: center; gap: 25px; }
.alternate-icon { width: 70px; height: 70px; flex: 0 0 auto; object-fit: contain; }
.alternate-card h2 { font-size: 22px; }
.alternate-card p { margin: 6px 0 0; max-width: 560px; font-size: 16px; line-height: 1.4; }

.footer-inner {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1.05fr 1.24fr 1.1fr;
  gap: 38px;
  align-items: center;
}
.footer-brand p { margin: 8px 0 0; font-size: 14px; font-style: italic; }
.footer-contact { border-left: 1px solid rgba(255,255,255,0.34); border-right: 1px solid rgba(255,255,255,0.34); padding: 0 41px; }
.footer-contact p { margin: 0 0 8px; display: grid; grid-template-columns: 24px 1fr; align-items: start; color: rgba(255,255,255,0.96); font-size: 15px; line-height: 1.34; }
.footer-contact p:last-child { margin-bottom: 0; }
.footer-contact a { color: #fff; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.contact-icon { width: 18px; height: 18px; object-fit: contain; filter: brightness(0) invert(1); margin-top: 1px; }
.footer-supporter strong { color: var(--red); font-size: 20px; }

@media (max-width: 1100px) {
  .container { width: min(100% - 40px, var(--container)); }
  .header-inner { min-height: auto; padding: 24px 0; }
  .hero-section { background: #fff; overflow: hidden;}
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 560px; padding: 54px 0 18px; }
  .hero-copy h1 { font-size: 72px; }
  .intro-copy { max-width: 520px; }
  .hero-visual {
    min-height: 410px;
    background:
      linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 10%, rgba(255,255,255,0.25) 24%, rgba(255,255,255,0) 40%),
      url("assets/hero/stadium-background.png") center bottom / cover no-repeat;
  }
  .bkg-tilt-image { right: 0; bottom: 0; width: 636px; max-width: none; height: auto; }
  .player-image { width: 420px; right: 60px; top: -20px; }
  .mouthguard-image { width: 350px; right: 50%; bottom: -70px; transform: translateX(50%) rotate(-5deg); }
  .details-card { grid-template-columns: 1fr; }
  .cost-panel { border-left: 0; border-top: 1px solid var(--border); }
  .cta-band { grid-template-columns: auto 1fr; }
  .cta-actions { grid-column: 1 / -1; }
  .expect-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .expect-item:nth-child(2) { border-right: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 31px 0; }
  .footer-contact { border: 0; padding: 0; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { align-items: flex-start; flex-direction: column; gap: 26px; }
  .dxcc-logo { width: 218px; }
  .supporter-lockup { gap: 16px; }
  .school-logo { width: 78px; height: 78px; border-width: 3px; outline-width: 2px; }
  .supporter-text strong { font-size: 19px; }
  .hero-copy { max-width: 100%; padding-top: 42px; }
  .hero-copy h1 { font-size: 60px; }
  .subheadline { font-size: 18px; gap: 7px; }
  .subheadline span { display: none; }
  .intro-copy { max-width: 360px; font-size: 18px; }
  .hero-visual { min-height: 330px; }
  .bkg-tilt-image { right: 0; bottom: 0; width: 610px; max-width: none; height: auto; }
  .player-image { width: 270px; right: 8px; top: -14px; }
  .mouthguard-image { width: 224px; bottom: -50px; }
  .alert-card { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 25px 21px; }
  .parent-icon { display: none; }
  .alert-copy p { font-size: 18px; }
  .detail-main { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 26px 21px; }
  .event-icon-frame { width: 132px; height: 132px; }
  .event-icon-frame .event-icon { width: 94px; height: 94px; }
  .detail-main h2 { font-size: 33px; }
  .event-date { font-size: 10px; }
  .location-line { font-size: 19px; }
  .cost-panel { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 26px 21px; }
  .cost-panel ul { text-align: left; }
  .cta-band { grid-template-columns: 1fr; text-align: center; padding: 26px 21px; }
  .cta-icon { margin: 0 auto; }
  .button { width: 100%; min-height: 62px; padding: 0 18px; font-size: 22px; }
  .section-title-row { gap: 13px; }
  .section-title-row h2 { font-size: 24px; white-space: nowrap; }
  .expect-grid { grid-template-columns: 1fr; gap: 0; }
  .expect-item { border-right: 0; border-bottom: 1px solid var(--border); padding: 0 12px 28px; margin-bottom: 28px; }
  .expect-item:last-child { border-bottom: 0; margin-bottom: 0; }
  .step-icon-frame { width: 78px; height: 78px; }
  .step-icon { width: 46px; height: 46px; }
  .alternate-card { align-items: stretch; flex-direction: column; padding: 22px; }
  .alternate-left { align-items: flex-start; }
}

/* ===== Schedule page ===== */

.badge-star { width: 13px; height: 13px; object-fit: contain; margin-right: 6px; flex: 0 0 auto; }
.supporter-badge .supporter-text span,
.supporter-badge > div > span {
  display: inline-flex;
  align-items: center;
  text-transform: none;
  font-weight: 600;
}
.supporter-badge .supporter-text strong,
.supporter-badge > div > strong { color: var(--red); }

.schedule-intro-section { background: var(--soft); padding: 46px 0 28px; }
.schedule-intro-grid { display: grid; grid-template-columns: 1.4fr auto auto; align-items: center; gap: 34px; }

.schedule-intro-copy h1 {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 38px;
  line-height: 1.08;
}
.schedule-intro-copy h1 span { display: block; color: var(--navy); }
.schedule-intro-copy h1 strong { display: block; color: var(--red); }

.schedule-meta { margin: 14px 0 0; font-size: 16px; font-weight: 800; color: var(--navy); }
.meta-dot { margin: 0 8px; color: var(--red); }
.schedule-lede { margin: 10px 0 0; max-width: 500px; font-size: 14.5px; line-height: 1.5; color: var(--text); }

.schedule-guard-image {
  width: 210px;
  height: auto;
  transform: rotate(-8deg);
  filter: drop-shadow(0 12px 16px rgba(0,0,0,0.24));
}

.attend-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--soft-shadow);
  max-width: 230px;
}
.attend-icon { width: 38px; height: 38px; flex: 0 0 auto; }
.attend-headline { margin: 0; font-size: 14px; font-weight: 800; color: var(--navy); line-height: 1.32; }
.attend-subline { margin: 4px 0 0; font-size: 13px; color: var(--text); }

.notice-bar { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.notice-bar-inner { display: flex; align-items: center; gap: 13px; padding: 13px 0; }
.notice-icon {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  font-family: Georgia, serif;
  display: grid;
  place-items: center;
}
.notice-bar-inner p { margin: 0; font-size: 14px; color: var(--text); }
.notice-bar-inner p strong { color: var(--navy); font-weight: 800; }
.notice-bar-inner p span { display: inline-block; margin-left: 6px; color: #5b6577; }

.schedule-form-section { padding: 30px 0 42px; background: var(--soft); }
.schedule-grid { display: grid; grid-template-columns: 1.55fr 1fr; align-items: start; gap: 26px; }

.form-card, .appointment-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  padding: 28px 30px;
}

.card-title-row { display: flex; align-items: center; gap: 11px; margin: 0 0 20px; }
.card-title-row.with-top-margin { margin-top: 8px; }
.card-title-icon { width: 21px; height: 21px; color: var(--navy); flex: 0 0 auto; }
.card-title-icon-img { width: 21px; height: 21px; object-fit: contain; }
.card-title-row h2 { margin: 0; font-family: "Oswald", Impact, sans-serif; text-transform: uppercase; font-size: 18px; color: var(--navy); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field label { display: block; margin-bottom: 6px; font-size: 12.5px; font-weight: 700; color: var(--navy); }
.form-field input,
.form-field select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
}
.form-field input::placeholder { color: #9aa3b2; }
.form-field input:focus,
.form-field select:focus { outline: 2px solid var(--navy); outline-offset: 1px; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' fill='none' stroke='%23061a3d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
  padding-right: 38px;
}
.form-field select:invalid { color: #9aa3b2; }

.radio-field { border: 0; padding: 0; margin: 0 0 16px; }
.radio-field legend { padding: 0; margin-bottom: 9px; font-size: 12.5px; font-weight: 700; color: var(--navy); }
.radio-group { display: flex; flex-wrap: wrap; gap: 18px; }
.radio-option { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); cursor: pointer; }
.radio-option input { width: 17px; height: 17px; accent-color: var(--navy); margin: 0; cursor: pointer; }

.form-divider { border: 0; border-top: 1px solid var(--border); margin: 22px 0; }

.color-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.color-option {
  display: block;
  position: relative;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 14px 12px 16px;
  cursor: pointer;
}
.color-option input { position: absolute; top: 12px; left: 12px; width: 16px; height: 16px; accent-color: var(--red); margin: 0; }
.color-option.is-selected { border-color: var(--red); box-shadow: 0 0 0 1px var(--red); }
.color-swatch { display: block; width: 100%; height: 76px; margin: 6px 0 10px; border-radius: 6px; overflow: hidden; }
.color-swatch img { width: 100%; height: 100%; object-fit: contain; }
.color-swatch-placeholder { display: grid; place-items: center; }
.color-swatch-tri { background: linear-gradient(180deg, var(--red) 0 33%, #fff 33% 66%, var(--navy) 66% 100%); border: 1px solid var(--border); }
.color-swatch-dual { background: linear-gradient(90deg, var(--red) 0 50%, var(--navy) 50% 100%); border: 1px solid var(--border); }
.color-name { display: block; font-size: 14.5px; font-weight: 800; color: var(--navy); }
.color-detail { display: block; margin-top: 2px; font-size: 12px; color: #6b7383; }
.color-note { margin: 12px 0 0; font-size: 12.5px; font-style: italic; color: #6b7383; }

.acknowledgments { display: flex; flex-direction: column; gap: 11px; }
.ack-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.4; color: var(--text); cursor: pointer; }
.ack-item input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--navy); flex: 0 0 auto; cursor: pointer; }

.booking-badge { display: flex; align-items: center; gap: 7px; margin: 0 0 18px; font-size: 12.5px; color: #6b7383; }
.booking-badge-icon { width: 13px; height: 13px; object-fit: contain; opacity: 0.6; }

.booking-header {
  background: linear-gradient(100deg, #03112b 0%, #061a3d 52%, #082a62 100%);
  color: #fff;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 18px;
}
.booking-service { margin: 0; font-size: 14px; font-weight: 700; }
.booking-duration { margin: 4px 0 0; font-size: 13px; color: rgba(255,255,255,0.78); }

.calendar-label { margin: 0 0 10px; font-size: 13px; font-weight: 700; color: var(--navy); }
.calendar-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.calendar-nav-btn { width: 26px; height: 26px; border: 1px solid var(--border); background: #fff; border-radius: 6px; color: var(--navy); font-size: 16px; line-height: 1; cursor: pointer; }
.calendar-month { margin: 0; font-family: "Inter", Arial, sans-serif; font-weight: 800; font-size: 14px; color: var(--navy); }
.calendar-weekdays { display: grid; grid-template-columns: repeat(7, minmax(0, 44px)); justify-content: center; margin-bottom: 4px; }
.calendar-weekdays span { text-align: center; font-size: 11px; font-weight: 700; color: #8891a0; }
.calendar-days { display: grid; grid-template-columns: repeat(7, minmax(0, 44px)); justify-content: center; gap: 2px; margin-bottom: 14px; }
.calendar-day {
  width: 100%;
  aspect-ratio: 1;
  max-width: 44px;
  max-height: 44px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  font-size: 12.5px;
  color: var(--text);
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
}
.calendar-day:hover:not([disabled]):not(.is-selected) { background: var(--soft); }
.calendar-day.is-muted { color: #c3c8d2; cursor: default; }
.calendar-day.is-selected { background: var(--navy); color: #fff; font-weight: 700; }
.selected-date-label { margin: 0 0 18px; font-size: 13px; font-weight: 700; color: var(--navy); text-align: center; }

.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 22px; }
.time-slot {
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}
.time-slot:hover { border-color: var(--navy); }
.time-slot.is-selected { background: var(--navy); border-color: var(--navy); color: #fff; }

.btn-block { display: flex; width: 100%; }

.schedule-form-section .button,
.submit-bar-section .button {
  font-family: "Inter", Arial, sans-serif;
  text-transform: none;
  font-weight: 700;
  font-size: 15px;
}

.submit-bar-section { padding: 0 0 30px; background: var(--soft); }
.submit-bar {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  padding: 22px 28px;
}
.submit-bar-copy { display: flex; align-items: center; gap: 16px; }
.submit-bar-icon { width: 34px; height: 34px; color: var(--navy); flex: 0 0 auto; }
.submit-bar-copy p { margin: 0; font-size: 14px; line-height: 1.4; color: var(--text); }
.submit-bar-actions { display: flex; align-items: stretch; gap: 12px; }
.submit-bar-actions .button { font-size: 15px; padding: 0 22px; min-height: 52px; }
.button-icon { width: 18px; height: 18px; object-fit: contain; filter: brightness(0) invert(1); }
.button-outline {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  text-align: center;
  line-height: 1.25;
  font-size: 13.5px;
  padding: 8px 20px;
}
.button-outline:hover { background: var(--soft); }

.feature-strip { padding: 26px 0 40px; background: var(--soft); }
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 30px;
}
.feature-item { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; font-weight: 700; color: var(--navy); }
.feature-icon { width: 22px; height: 22px; flex: 0 0 auto; }
.feature-icon-img { width: 22px; height: 22px; object-fit: contain; }

@media (max-width: 1100px) {
  .schedule-intro-grid { grid-template-columns: 1fr; justify-items: start; gap: 18px; }
  .schedule-guard-image { width: 170px; }
  .attend-card { max-width: 100%; }
  .schedule-grid { grid-template-columns: 1fr; justify-items: center; }
  .form-card { width: 100%; max-width: 640px; }
  .appointment-card { width: 100%; max-width: 460px; }
  .submit-bar { grid-template-columns: 1fr; text-align: center; }
  .submit-bar-copy { flex-direction: column; text-align: center; }
  .submit-bar-actions { flex-direction: column; }
  .feature-strip-inner { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .schedule-intro-copy h1 { font-size: 30px; }
  .form-card, .appointment-card { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .color-options { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .color-name { font-size: 12px; }
  .color-detail { display: none; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Confirmation page ===== */

.confirmation-page {
  background: #fff;
}

.confirmation-header .header-inner {
  min-height: 138px;
}

.confirmation-main {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,250,253,0.98) 51%, #fff 100%),
    radial-gradient(circle at 12% 9%, rgba(6, 26, 61, 0.08), rgba(6, 26, 61, 0) 25%);
  overflow: hidden;
}

.confirmation-hero {
  position: relative;
  padding: 27px 0 18px;
  text-align: center;
}

.confirmation-hero::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 18px;
  width: 395px;
  height: 238px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0 50%, rgba(255,255,255,0.74) 50%),
    url("assets/hero/bkg-tilt.png") left top / contain no-repeat;
  opacity: 0.16;
  filter: grayscale(1);
  transform: scaleX(-1);
  pointer-events: none;
}

.confirmation-hero-inner {
  position: relative;
  z-index: 2;
}

.success-mark {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  color: #25a34a;
  filter: drop-shadow(0 9px 12px rgba(18, 112, 50, 0.25));
}

.success-mark svg {
  width: 100%;
  height: 100%;
}

.confirmation-hero h1 {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  color: var(--red);
  font-size: 70px;
  line-height: 0.98;
  text-transform: uppercase;
}

.confirmation-hero h1 span {
  color: var(--navy);
}

.confirmation-hero p {
  max-width: 610px;
  margin: 13px auto 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.confirmation-content {
  padding: 0 0 12px;
}

.confirmation-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.summary-card,
.forms-card,
.redirect-card,
.questions-card,
.thanks-strip {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.summary-card {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 26px 28px 22px;
}

.confirmation-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.confirmation-title-row h2,
.forms-card h2,
.next-section h2,
.next-item h3,
.questions-card h2 {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  color: var(--navy);
  text-transform: uppercase;
}

.confirmation-title-row h2 {
  font-size: 25px;
}

.confirmation-title-icon {
  width: 26px;
  height: 26px;
  color: var(--navy);
  flex: 0 0 auto;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
  row-gap: 0;
}

.summary-item {
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 19px;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
}

.summary-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.summary-item svg {
  width: 36px;
  height: 36px;
  color: var(--navy);
}

.summary-item span {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
}

.summary-item strong {
  display: block;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 900;
}

.summary-guard {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transform: rotate(-8deg);
  filter: drop-shadow(0 4px 4px rgba(0,0,0,0.17));
}

.forms-card {
  width: min(100%, 780px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px 28px;
  border-color: #a9c5ec;
  background: linear-gradient(100deg, #eef5ff 0%, #fff 100%);
}

.forms-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: var(--navy);
  color: var(--white);
}

.forms-icon svg {
  width: 62px;
  height: 62px;
}

.forms-card h2 {
  font-size: 24px;
  line-height: 1;
}

.forms-card p {
  margin: 8px 0 0;
  max-width: 590px;
  font-size: 16px;
  line-height: 1.36;
  font-weight: 600;
}

.next-section {
  padding-top: 0;
}

.confirmation-section-title {
  width: min(100%, 960px);
  margin: -1px auto 8px;
  gap: 18px;
}

.confirmation-section-title h2 {
  font-size: 28px;
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(100%, 1040px);
  margin: 0 auto;
}

.next-item {
  min-height: 180px;
  padding: 0 19px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.next-item:last-child {
  border-right: 0;
}

.next-icon-frame {
  width: 64px;
  height: 64px;
  margin: 10px auto 11px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 7px 12px rgba(3, 18, 45, 0.18);
}

.next-icon-frame svg,
.next-icon-frame img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  color: #fff;
}

.next-item h3 {
  font-family: "Inter", Arial, sans-serif;
  text-transform: none;
  font-size: 14px;
  line-height: 1.28;
  font-weight: 900;
}

.next-item h3 span {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-right: 6px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.next-item p {
  margin: 10px auto 0;
  max-width: 174px;
  font-size: 13px;
  line-height: 1.36;
  font-weight: 500;
}

.confirmation-actions {
  display: grid;
  grid-template-columns: 1fr 282px;
  gap: 22px;
  width: min(100%, 1010px);
  margin: 2px auto 0;
}

.redirect-card,
.questions-card {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 30px;
}

.redirect-card {
  justify-content: space-between;
}

.redirect-icon,
.question-icon {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex: 0 0 auto;
}

.redirect-icon {
  color: #fff;
  background: var(--navy);
}

.question-icon {
  color: #111;
  background: #f2f2f2;
}

.redirect-icon svg,
.question-icon svg {
  width: 39px;
  height: 39px;
}

.redirect-card p {
  margin: 0;
  max-width: 350px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
}

.redirect-card p strong {
  color: var(--red);
}

.redirect-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.confirmation-button {
  min-height: 49px;
  padding: 0 28px;
  font-family: "Inter", Arial, sans-serif;
  text-transform: none;
  font-size: 16px;
  font-weight: 800;
}

.confirmation-button span {
  font-size: 24px;
}

.go-link {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.questions-card {
  gap: 18px;
  padding-inline: 20px;
}

.questions-card h2 {
  font-size: 20px;
  text-transform: none;
}

.questions-card p {
  margin: 6px 0 7px;
  font-size: 14px;
  font-weight: 600;
}

.questions-card a {
  color: var(--red);
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
}

.thanks-strip {
  position: relative;
  width: min(100%, 1010px);
  min-height: 58px;
  margin: -7px auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 34px;
  overflow: hidden;
  background: linear-gradient(100deg, #fff 0%, #f2f5f9 100%);
}

.thanks-strip::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -42px;
  width: 175px;
  height: 105px;
  background: url("assets/hero/bkg-tilt.png") center / contain no-repeat;
  opacity: 0.09;
  filter: grayscale(1);
  pointer-events: none;
}

.thanks-strip svg {
  width: 36px;
  height: 36px;
  color: var(--navy);
  flex: 0 0 auto;
}

.thanks-strip p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .confirmation-hero h1 {
    font-size: 62px;
  }

  .summary-card,
  .forms-card {
    width: 100%;
  }

  .next-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .next-item:nth-child(2),
  .next-item:nth-child(4) {
    border-right: 0;
  }

  .next-item:last-child {
    grid-column: 1 / -1;
  }

  .confirmation-actions {
    grid-template-columns: 1fr;
  }

  .questions-card {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .confirmation-header .header-inner {
    min-height: auto;
  }

  .confirmation-hero {
    padding-top: 34px;
  }

  .confirmation-hero::before {
    width: 275px;
    height: 166px;
  }

  .success-mark {
    width: 58px;
    height: 58px;
  }

  .confirmation-hero h1 {
    font-size: 46px;
  }

  .confirmation-hero p {
    font-size: 18px;
  }

  .summary-card {
    padding: 22px 18px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .summary-item,
  .summary-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .summary-item:last-child {
    border-bottom: 0;
  }

  .forms-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
    padding: 22px 18px;
  }

  .forms-card h2 {
    font-size: 21px;
  }

  .forms-card p {
    font-size: 14px;
  }

  .confirmation-section-title {
    gap: 12px;
  }

  .confirmation-section-title h2 {
    font-size: 23px;
    white-space: nowrap;
  }

  .next-grid {
    grid-template-columns: 1fr;
  }

  .next-item,
  .next-item:nth-child(2),
  .next-item:nth-child(4) {
    min-height: auto;
    padding: 0 12px 23px;
    margin-bottom: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .next-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
  }

  .confirmation-actions {
    gap: 14px;
  }

  .redirect-card,
  .questions-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 18px;
  }

  .redirect-card {
    justify-content: center;
  }

  .redirect-card p {
    font-size: 17px;
  }

  .confirmation-button {
    width: auto;
    min-width: 220px;
  }

  .thanks-strip {
    align-items: flex-start;
    padding: 16px 18px;
  }
}
