:root {
  --ink: #162033;
  --muted: #667085;
  --frost: #7bd8ff;
  --teal: #087b83;
  --pink: #b4195c;
  --sun: #ffd166;
  --cream: #fff7e8;
  --white: #ffffff;
  --line: rgba(22, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(22, 32, 51, 0.78), rgba(22, 32, 51, 0));
}

.brand,
.site-header nav,
.hero-actions,
.proof-strip,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  opacity: 0.78;
}

.site-header nav {
  gap: 20px;
  font-weight: 800;
}

.site-header a {
  text-decoration: none;
}

.phone-pill,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 17px;
  font-weight: 900;
  text-decoration: none;
}

.phone-pill,
.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 6vw, 80px) 82px;
  color: var(--white);
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 32, 51, 0.9), rgba(22, 32, 51, 0.45) 56%, rgba(22, 32, 51, 0.08)),
    linear-gradient(0deg, rgba(22, 32, 51, 0.55), rgba(22, 32, 51, 0.08)),
    image-set(
      url("/assets/client-email/hero.avif") type("image/avif"),
      url("/assets/client-email/hero.webp") type("image/webp")
    ) center right / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff75aa;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Fredoka, Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 850px;
  font-size: clamp(2.8rem, 6.4vw, 5.8rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.52;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button.primary {
  color: var(--ink);
  background: var(--sun);
}

.proof-strip {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}

.proof-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.section,
.service-band,
.booking-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin-bottom: 28px;
}

.event-grid,
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.event-grid article,
.photo-card,
.inquiry-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(22, 32, 51, 0.1);
}

.event-grid article {
  padding: 24px;
}

.event-grid span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink);
  font-weight: 900;
}

.event-grid h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
}

.event-grid p,
.service-band p,
.booking-copy p {
  color: var(--muted);
  line-height: 1.58;
}

.photo-card {
  overflow: hidden;
  margin: 0;
}

.photo-card.feature {
  grid-column: span 1;
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 14px 16px 16px;
  font-weight: 850;
}

.service-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 68px max(18px, calc((100vw - 1120px) / 2));
  background: #eefbff;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.phone-link {
  display: block;
  width: fit-content;
  overflow-wrap: anywhere;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 900;
}

.phone-link + .phone-link {
  margin-top: 10px;
}

.quote-note {
  margin-top: 20px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.52;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  padding: 20px 34px 20px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.62;
}

.faq-list a {
  color: var(--teal);
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.inquiry-form textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.submit {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 30px 18px;
  color: var(--white);
  background: var(--ink);
}

.site-footer a {
  color: inherit;
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 100px 18px 42px;
  }

  .hero-bg {
    background:
      linear-gradient(0deg, rgba(22, 32, 51, 0.92), rgba(22, 32, 51, 0.2)),
      image-set(
        url("/assets/client-email/hero.avif") type("image/avif"),
        url("/assets/client-email/hero.webp") type("image/webp")
      ) 62% center / cover;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-actions {
    margin-top: 22px;
  }

  .event-grid,
  .photo-grid,
  .service-band,
  .booking-section,
  .form-row {
    grid-template-columns: 1fr;
  }

  .phone-pill {
    display: none;
  }
}
