:root {
  --navy: #14233f;
  --navy-deep: #0b1628;
  --blue: #1c4587;
  --blue-bright: #0041a5;
  --sky: #d7e8f6;
  --sky-soft: #eef5fb;
  --mist: #f4f8fc;
  --ink: #1a2332;
  --muted: #5a6a7d;
  --line: rgba(20, 35, 63, 0.12);
  --gold: #e0a84a;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(11, 22, 40, 0.14);
  --radius: 18px;
  --max: 1120px;
  --font-brand: "Comfortaa", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-script: "Caveat", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(207, 226, 243, 0.9), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(28, 69, 135, 0.12), transparent 55%),
    linear-gradient(180deg, var(--sky-soft), var(--mist) 40%, #ffffff 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(244, 248, 252, 0.82);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(11, 22, 40, 0.08);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.1;
}

.brand-tag {
  font-family: var(--font-script);
  font-size: 1.05rem;
  color: var(--blue);
  line-height: 1.1;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  background: rgba(28, 69, 135, 0.08);
}

.site-nav .nav-cta {
  background: var(--navy);
  color: white;
  margin-left: 0.35rem;
}

.site-nav .nav-cta:hover {
  background: var(--blue-bright);
  color: white;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 22, 40, 0.92) 0%, rgba(11, 22, 40, 0.72) 42%, rgba(11, 22, 40, 0.35) 100%),
    linear-gradient(0deg, rgba(11, 22, 40, 0.45), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0 4rem;
}

.hero h1 {
  max-width: 14ch;
  margin: 0 0 1rem;
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 5.4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero p {
  max-width: 38ch;
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 12px 30px rgba(224, 168, 74, 0.28);
}

.btn-primary:hover {
  background: #efb85a;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-navy {
  background: var(--navy);
  color: white;
}

.btn-navy:hover {
  background: var(--blue-bright);
}

.btn-outline {
  background: transparent;
  border-color: rgba(20, 35, 63, 0.2);
  color: var(--navy);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(28, 69, 135, 0.06);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head .eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  color: var(--navy);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.pickup-banner {
  width: min(var(--max), calc(100% - 2rem));
  margin: -1.5rem auto 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--navy), var(--blue));
  color: white;
  box-shadow: var(--shadow);
}

.pickup-banner strong {
  font-family: var(--font-brand);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service {
  padding: 1.4rem 1.2rem 1.3rem;
  border-top: 2px solid var(--blue);
  background: transparent;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  color: var(--blue);
}

.service h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-brand);
  font-size: 1.15rem;
  color: var(--navy);
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.promo-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.promo-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
}

.promo-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-family: var(--font-brand);
  color: var(--blue-bright);
}

.price strong {
  font-size: 2.4rem;
  line-height: 1;
}

.promo-visual {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
}

.promo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-visual::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(224, 168, 74, 0.35), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quote {
  padding: 0;
  background: transparent;
}

.quote blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--ink);
}

.quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--blue);
}

.band {
  background:
    linear-gradient(135deg, rgba(20, 35, 63, 0.96), rgba(28, 69, 135, 0.92)),
    url("../img/motherboard.jpg") center/cover;
  color: white;
}

.band .section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.band p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.86);
}

.rates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.rate {
  padding: 1.1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.rate span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.rate strong {
  font-family: var(--font-brand);
  font-size: 1.55rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(700px 280px at 80% 0%, rgba(28, 69, 135, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(215, 232, 246, 0.7), transparent);
}

.page-hero .section {
  padding-top: 0;
  padding-bottom: 0;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
}

.page-hero p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.about-layout,
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.about-layout img,
.two-col img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  min-height: 320px;
}

.form-shell,
.embed-shell,
.pay-shell {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.ticket-form {
  display: grid;
  gap: 1rem;
}

.ticket-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--navy);
}

.ticket-form input,
.ticket-form select,
.ticket-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
}

.ticket-form textarea {
  min-height: 140px;
  resize: vertical;
}

.ticket-form .form-status {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.ticket-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.embed-shell iframe {
  width: 100%;
  min-height: 180px;
  border: 0;
  border-radius: 16px;
  background: white;
}

.pay-grid {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}

.pay-grid img {
  margin: 0 auto;
  max-width: 260px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  margin-top: 2rem;
  color: var(--muted);
  font-weight: 600;
}

.contact-strip a:hover {
  color: var(--blue-bright);
}

.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(215, 232, 246, 0.55));
}

.footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-brand);
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.footer-brand p,
.footer-col p,
.footer-col a {
  color: var(--muted);
}

.footer-col h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-brand);
  font-size: 1rem;
  color: var(--navy);
}

.footer-col a {
  display: block;
  margin-bottom: 0.35rem;
}

.footer-col a:hover {
  color: var(--blue-bright);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 2rem));
  margin: 1.75rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

@media (max-width: 960px) {
  .services-grid,
  .quotes,
  .promo-split,
  .about-layout,
  .two-col,
  .band .section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .rates {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 84vh;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(11, 22, 40, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hero-media img {
    transform: none;
  }
}
