:root {
  --purple-950: #23113d;
  --purple-850: #35165f;
  --purple-700: #6225a8;
  --purple-500: #8a41d6;
  --yellow-500: #ffd233;
  --yellow-200: #fff1a8;
  --cream: #fffaf0;
  --ink: #211a2f;
  --muted: #685f75;
  --line: rgba(35, 17, 61, 0.13);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(35, 17, 61, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

body.is-loaded .hero-content,
body.is-loaded .page-hero > *,
body.is-loaded .page-wedding > *,
body.is-loaded .page-contact > * {
  animation: slideFadeUp 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

body.is-loaded .hero-copy,
body.is-loaded .page-hero p:not(.eyebrow) {
  animation-delay: 0.12s;
}

body.is-loaded .hero-actions,
body.is-loaded .trust-row,
body.is-loaded .wedding-card,
body.is-loaded .contact-form {
  animation-delay: 0.22s;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--purple-950);
  background: var(--yellow-500);
  border: 3px solid var(--purple-950);
  border-radius: 50%;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
footer strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.task-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 32px);
  color: var(--purple-950);
  font-size: 0.94rem;
  font-weight: 800;
}

.task-bar a {
  padding: 8px 0;
}

.task-bar a.active {
  color: var(--purple-700);
  border-bottom: 3px solid var(--yellow-500);
}

.header-cta,
.whatsapp-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--purple-950);
  background: var(--yellow-500);
  box-shadow: 0 12px 30px rgba(255, 210, 51, 0.32);
}

.whatsapp-cta {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  color: var(--white);
  background: #25d366;
  border: 2px solid rgba(35, 17, 61, 0.08);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.28);
}

.whatsapp-cta svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.header-cta:hover,
.whatsapp-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--purple-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(35, 17, 61, 0.96) 0%, rgba(53, 22, 95, 0.86) 42%, rgba(98, 37, 168, 0.34) 100%),
    url("https://westlondondessert.co.uk/wp-content/uploads/2021/01/west-london-dessert-ice-cream-vans-company.jpg") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -24vw;
  z-index: -1;
  width: 56vw;
  min-width: 520px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 210, 51, 0.7), rgba(255, 210, 51, 0) 65%);
}

.hero-content {
  width: min(920px, calc(100% - 36px));
  padding: 150px 0 96px clamp(18px, 4vw, 56px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: clamp(3.5rem, 8vw, 7.7rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  gap: 10px;
}

.trust-row span {
  padding: 10px 14px;
  color: var(--yellow-200);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

section {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 4vw, 56px);
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-content: end;
  gap: 18px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(35, 17, 61, 0.96), rgba(98, 37, 168, 0.62)),
    url("https://westlondondessert.co.uk/wp-content/uploads/2021/01/west-london-dessert-ice-cream-vans-company.jpg") center / cover;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(35, 17, 61, 0.96), rgba(98, 37, 168, 0.54)),
    url("https://westlondondessert.co.uk/wp-content/uploads/2021/01/West-London-Dessert-ice-cream-van-wedding-events-schools-geo-5.jpg") center / cover;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(34px, 8vw, 110px);
  align-items: start;
  background: var(--white);
}

.intro-section .eyebrow,
.split-section .eyebrow,
.gallery-section .eyebrow,
.contact-section .eyebrow {
  color: var(--purple-700);
}

.intro-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--purple-950);
}

.feature-band article {
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-850), var(--purple-950));
  transition: transform 220ms ease, background 220ms ease;
}

.feature-band article:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, var(--purple-700), var(--purple-950));
}

.feature-band .icon {
  display: inline-flex;
  margin-bottom: 50px;
  color: var(--yellow-500);
  font-weight: 900;
}

.feature-band p,
.content-panel p,
.wedding-copy p,
.contact-copy p,
.wedding-card p {
  color: var(--muted);
}

.feature-band p {
  color: rgba(255, 255, 255, 0.72);
}

.process-section,
.values-section,
.packages-section,
.wedding-details,
.contact-help,
.story-section,
.faq-section {
  background: var(--cream);
}

.process-grid,
.value-grid,
.package-card-grid,
.testimonial-grid,
.story-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article,
.value-grid article,
.package-card-grid article,
.testimonial-grid article,
.story-grid article,
.faq-grid article {
  min-height: 230px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(35, 17, 61, 0.08);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--purple-700);
  font-weight: 900;
}

.process-grid p,
.value-grid p,
.package-card-grid p,
.story-grid p,
.faq-grid p {
  color: var(--muted);
}

.story-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--white);
  background: var(--purple-950);
}

.stats-strip div {
  min-height: 190px;
  padding: clamp(26px, 4vw, 46px);
  background: linear-gradient(145deg, var(--purple-850), var(--purple-950));
}

.stats-strip strong {
  display: block;
  color: var(--yellow-500);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.9;
}

.stats-strip span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.testimonials-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-950), var(--purple-700));
}

.testimonials-section .eyebrow {
  color: var(--yellow-500);
}

.testimonial-grid article {
  color: var(--purple-950);
  background: rgba(255, 255, 255, 0.94);
}

.testimonial-grid p {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.18;
}

.testimonial-grid span {
  display: block;
  margin-top: 24px;
  color: var(--purple-700);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--cream);
}

.image-panel {
  min-height: 600px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.events-image {
  background:
    linear-gradient(180deg, rgba(255, 210, 51, 0.08), rgba(35, 17, 61, 0.34)),
    url("https://westlondondessert.co.uk/wp-content/uploads/2021/01/West-London-Dessert-ice-cream-van-wedding-events-schools-4.jpg") center / cover;
}

.content-panel p {
  max-width: 620px;
  margin: 24px 0;
  font-size: 1.08rem;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.event-grid span,
.check-list li {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.wedding-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-950), var(--purple-700));
}

.page-wedding,
.page-contact {
  min-height: calc(100vh - 86px);
}

.wedding-section .eyebrow {
  color: var(--yellow-500);
}

.wedding-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.check-list li {
  color: var(--purple-950);
  background: rgba(255, 255, 255, 0.94);
}

.wedding-card {
  padding: 34px;
  color: var(--purple-950);
  background: var(--yellow-500);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wedding-card span {
  font-weight: 900;
  text-transform: uppercase;
}

.wedding-card strong {
  display: block;
  margin: 18px 0 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(4rem, 8vw, 6.8rem);
  line-height: 0.88;
}

.wedding-card .button.primary {
  margin-top: 24px;
  color: var(--white);
  background: var(--purple-950);
  box-shadow: none;
}

.package-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.package-list span {
  padding: 12px 14px;
  color: var(--purple-950);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(35, 17, 61, 0.12);
  border-radius: 8px;
  font-weight: 900;
}

.gallery-section {
  background: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery img:hover {
  filter: saturate(1.08);
  transform: translateY(-6px);
}

.gallery img:first-child {
  height: 560px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.contact-copy p {
  max-width: 540px;
  font-size: 1.08rem;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  color: var(--purple-700);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--purple-950);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--purple-950);
}

footer strong,
footer a {
  color: var(--yellow-500);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal.is-visible article,
.reveal.is-visible .gallery img,
.reveal.is-visible .event-grid span,
.reveal.is-visible .check-list li,
.reveal.is-visible .package-list span,
.reveal.is-visible .process-grid article,
.reveal.is-visible .value-grid article,
.reveal.is-visible .package-card-grid article,
.reveal.is-visible .testimonial-grid article,
.reveal.is-visible .story-grid article,
.reveal.is-visible .faq-grid article,
.reveal.is-visible .stats-strip div {
  animation: slideFadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal.is-visible article:nth-child(2),
.reveal.is-visible .gallery img:nth-child(2),
.reveal.is-visible .event-grid span:nth-child(2),
.reveal.is-visible .check-list li:nth-child(2),
.reveal.is-visible .package-list span:nth-child(2),
.reveal.is-visible .process-grid article:nth-child(2),
.reveal.is-visible .value-grid article:nth-child(2),
.reveal.is-visible .package-card-grid article:nth-child(2),
.reveal.is-visible .testimonial-grid article:nth-child(2),
.reveal.is-visible .story-grid article:nth-child(2),
.reveal.is-visible .faq-grid article:nth-child(2),
.reveal.is-visible .stats-strip div:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal.is-visible article:nth-child(3),
.reveal.is-visible .gallery img:nth-child(3),
.reveal.is-visible .event-grid span:nth-child(3),
.reveal.is-visible .check-list li:nth-child(3),
.reveal.is-visible .package-list span:nth-child(3),
.reveal.is-visible .process-grid article:nth-child(3),
.reveal.is-visible .value-grid article:nth-child(3),
.reveal.is-visible .package-card-grid article:nth-child(3),
.reveal.is-visible .testimonial-grid article:nth-child(3),
.reveal.is-visible .story-grid article:nth-child(3),
.reveal.is-visible .faq-grid article:nth-child(3),
.reveal.is-visible .stats-strip div:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal.is-visible .story-grid article:nth-child(4),
.reveal.is-visible .faq-grid article:nth-child(4),
.reveal.is-visible .stats-strip div:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes slideFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .task-bar {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .intro-section,
  .split-section,
  .wedding-section,
  .contact-section,
  .feature-band,
  .process-grid,
  .value-grid,
  .package-card-grid,
  .testimonial-grid,
  .story-grid,
  .faq-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 420px;
  }

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

  .gallery img,
  .gallery img:first-child {
    height: 340px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-width: 2px;
    font-size: 0.78rem;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    display: none;
  }

  .whatsapp-cta {
    justify-self: end;
    width: 48px;
    height: 48px;
    min-height: 48px;
  }

  .task-bar {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px 0 2px;
    font-size: 0.82rem;
  }

  .task-bar a {
    flex: 1 1 calc(33.333% - 8px);
    text-align: center;
    padding: 8px 10px;
    background: rgba(255, 210, 51, 0.22);
    border: 1px solid rgba(35, 17, 61, 0.08);
    border-radius: 999px;
    white-space: nowrap;
  }

  .task-bar a.active {
    color: var(--purple-950);
    background: var(--yellow-500);
    border-bottom: 1px solid rgba(35, 17, 61, 0.08);
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    width: 100%;
    padding: 70px 18px 54px;
  }

  h1 {
    font-size: clamp(2.28rem, 11vw, 2.76rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.35rem);
  }

  h3 {
    font-size: 1.32rem;
  }

  section {
    padding: 56px 16px;
  }

  .page-hero {
    min-height: 440px;
  }

  .hero-copy,
  .intro-copy p,
  .content-panel p,
  .wedding-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-row span {
    font-size: 0.78rem;
    padding: 8px 10px;
  }

  .process-grid article,
  .value-grid article,
  .package-card-grid article,
  .testimonial-grid article,
  .story-grid article,
  .faq-grid article {
    min-height: auto;
    padding: 22px;
  }

  .testimonial-grid p {
    font-size: 1.2rem;
  }

  .stats-strip div {
    min-height: auto;
    padding: 26px 22px;
  }

  .image-panel {
    min-height: 300px;
  }

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

  .wedding-card {
    padding: 24px;
  }
}
