:root {
  --navy: #13214f;
  --peach: #f5a36c;
  --peach-dark: #c96f35;
  --lavender: #a894c2;
  --lavender-light: #eee7f6;
  --green: #dbeaa2;
  --green-dark: #a5bd5e;
  --cream: #fffaf5;
  --white: #ffffff;
  --text: #253052;
  --muted: #68708a;
  --border: #eee4dc;
  --shadow: 0 20px 60px rgba(80, 59, 90, 0.12);
  --radius-large: 32px;
  --radius-medium: 20px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(238, 228, 220, 0.8);
}

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

.brand-logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
  margin-top: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 700;
  color: var(--navy);
}

.main-nav a:not(.nav-button) {
  position: relative;
}

.main-nav a:not(.nav-button)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--peach);
  transition: width 180ms ease;
}

.main-nav a:not(.nav-button):hover::after {
  width: 100%;
}

.nav-button,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--lavender), #b987c5);
  box-shadow: 0 12px 30px rgba(168, 148, 194, 0.28);
}

.nav-button {
  padding: 12px 22px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--lavender-light);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(219, 234, 162, 0.3),
      transparent 24%
    ),
    radial-gradient(
      circle at 90% 18%,
      rgba(245, 163, 108, 0.25),
      transparent 25%
    ),
    linear-gradient(180deg, var(--cream), var(--white));
  padding: 70px 0 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--lavender);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  line-height: 0.95;
}

.hero h1 span {
  display: block;
}

.lavender {
  color: var(--lavender);
}

.green {
  color: var(--green-dark);
}

.peach {
  color: var(--peach);
}

.hero-script {
  margin: 28px 0 12px;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-style: italic;
}

.hero-description {
  max-width: 590px;
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--navy);
  border: 2px solid var(--lavender);
  background: rgba(255, 255, 255, 0.78);
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  border-radius: 48% 52% 42% 58% / 50% 42% 58% 50%;
  box-shadow: var(--shadow);
}

.sparkle {
  position: absolute;
  color: var(--peach);
  font-size: 2rem;
}

.sparkle-one {
  top: 8%;
  left: -2%;
}

.sparkle-two {
  top: 18%;
  right: -2%;
  color: var(--lavender);
}

.sparkle-three {
  bottom: 12%;
  left: 3%;
  color: var(--green-dark);
}

.hero-wave {
  position: absolute;
  right: -5%;
  bottom: -65px;
  left: -5%;
  height: 130px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.faq h2,
.booking h2,
.contact h2 {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-card {
  padding: 28px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(31, 34, 79, 0.05);
  text-align: center;
}

.service-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: -48px auto 20px;
  border-radius: 50%;
  font-size: 1.8rem;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.lavender-bg {
  background: var(--lavender-light);
}

.green-bg {
  background: #eef6ce;
}

.peach-bg {
  background: #fff0e5;
}

.gallery {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(245, 163, 108, 0.13),
      transparent 24%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(168, 148, 194, 0.16),
      transparent 24%
    ),
    linear-gradient(180deg, rgba(238, 231, 246, 0.55), rgba(255, 250, 245, 0.5));
}

.gallery-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.gallery-intro {
  max-width: 650px;
  margin: 18px auto 0 !important;
  color: var(--muted);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  min-width: 0;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(31, 34, 79, 0.08);
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(31, 34, 79, 0.12);
}

.peach-card {
  background: linear-gradient(180deg, #fff7f0, #fff0e5);
}

.green-card {
  background: linear-gradient(180deg, #f8fbe9, #eef6ce);
}

.lavender-card {
  background: linear-gradient(180deg, #f8f5fb, var(--lavender-light));
}

.gallery-emoji {
  min-height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  font-family:
    'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
  font-size: clamp(4.4rem, 6vw, 5.6rem);
  line-height: 1;
  filter: drop-shadow(0 8px 10px rgba(31, 34, 79, 0.12));
  transform: translateZ(0);
}

.gallery-card h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 1.12rem;
}

.gallery-divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--lavender);
  font-size: 1rem;
}

.gallery-divider span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.peach-card .gallery-divider {
  color: var(--peach);
}

.green-card .gallery-divider {
  color: var(--green-dark);
}

.gallery-card p {
  max-width: 145px;
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.4;
}

.gallery-follow {
  margin: 38px 0 0;
  color: var(--lavender);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  text-align: center;
}

.gallery-follow span:first-child {
  margin-right: 8px;
}

.gallery-follow span:last-child {
  margin-left: 8px;
  color: var(--peach);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.faq-intro {
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

.booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 52px;
  border-radius: var(--radius-large);
  background:
    radial-gradient(
      circle at top left,
      rgba(219, 234, 162, 0.5),
      transparent 35%
    ),
    linear-gradient(135deg, #fff4eb, var(--lavender-light));
}

.booking-card p {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--muted);
}

.booking-card div {
  max-width: 650px;
}

.contact {
  background: var(--navy);
  color: var(--white);
}

.contact-personalized {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.contact-main {
  min-width: 0;
}

.contact-heading {
  max-width: 680px;
}

.contact h2,
.contact .section-kicker {
  color: var(--white);
}

.contact-heading > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

a.contact-item {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

a.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(219, 234, 162, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.contact-item i {
  color: var(--green);
}

.founder-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at top right,
      rgba(245, 163, 108, 0.18),
      transparent 36%
    ),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(4, 11, 40, 0.2);
}

.founder-photo-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-kicker {
  margin: 0 0 6px;
  color: var(--green) !important;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-copy h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.founder-copy p:not(.founder-kicker) {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

.founder-copy p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 24px 0;
  color: var(--navy);
  background: var(--lavender-light);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 1000px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: auto;
    height: 62px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 12px;
  }

  .nav-button {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    padding-top: 45px;
  }

  .hero-grid,
  .faq-layout,
  .contact-personalized {
    grid-template-columns: 1fr;
  }

  .contact-personalized {
    gap: 38px;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .faq-layout {
    gap: 30px;
  }

  .booking-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .founder-card {
    grid-template-columns: 115px minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .contact-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-item {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo-wrap {
    width: min(100%, 260px);
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

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

  .service-grid {
    row-gap: 48px;
  }

  .booking-card {
    padding: 34px 24px;
  }

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

.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-social a {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: white;

  color: var(--navy);

  font-size: 1.2rem;

  transition: 0.25s;
}

.footer-social a:hover {
  transform: translateY(-4px);

  background: var(--peach);

  color: white;
}

/* -------------------------------- */
/* Booking Page                     */
/* -------------------------------- */

.booking-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 105px;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(219, 234, 162, 0.38),
      transparent 25%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(245, 163, 108, 0.28),
      transparent 25%
    ),
    linear-gradient(135deg, var(--cream), rgba(238, 231, 246, 0.75));
}

.booking-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -145px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(168, 148, 194, 0.16);
}

.booking-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  text-align: center;
}

.booking-hero h1 {
  max-width: 900px;
  margin: 0 auto 22px;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.98;
}

.booking-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
}

.booking-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
  text-align: left;
}

.booking-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 35px rgba(31, 34, 79, 0.06);
  backdrop-filter: blur(8px);
}

.highlight-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
}

.booking-highlight strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  line-height: 1.3;
}

.booking-highlight p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.booking-form-section {
  background: #fffdfb;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}

.booking-form-card,
.sidebar-card {
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(31, 34, 79, 0.07);
}

.booking-form-card {
  padding: 48px;
  border-radius: var(--radius-large);
}

.form-heading {
  margin-bottom: 40px;
}

.form-heading h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.1;
}

.form-heading p:last-child {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
}

.form-section {
  padding: 34px 0;
  border-top: 1px solid var(--border);
}

.form-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.form-section h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
}

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

.form-group {
  min-width: 0;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label,
.form-group legend {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dcd8e3;
  border-radius: 13px;
  outline: none;
  background: var(--white);
  color: var(--text);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.form-group input,
.form-group select {
  min-height: 52px;
  padding: 0 15px;
}

.form-group textarea {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9b9baa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lavender);
  background: #fffefe;
  box-shadow: 0 0 0 4px rgba(168, 148, 194, 0.16);
}

fieldset.form-group {
  padding: 0;
  border: 0;
  margin: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice-card {
  position: relative;
  display: flex;
  gap: 12px;
  padding: 18px;
  border: 1px solid #ded9e6;
  border-radius: 15px;
  background: var(--white);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: var(--lavender);
  box-shadow: 0 10px 25px rgba(31, 34, 79, 0.07);
}

.choice-card:has(input:checked) {
  border-color: var(--lavender);
  background: var(--lavender-light);
  box-shadow: 0 0 0 3px rgba(168, 148, 194, 0.13);
}

.choice-card input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--lavender);
}

.choice-card strong {
  display: block;
  color: var(--navy);
  line-height: 1.3;
}

.choice-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.4;
}

.checkbox-label {
  display: flex !important;
  gap: 11px;
  align-items: flex-start;
  margin: 0;
  color: var(--text);
  cursor: pointer;
}

.checkbox-label input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  min-height: 0;
  margin-top: 2px;
  accent-color: var(--lavender);
}

.confirmation-checkbox {
  padding: 18px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--navy);
  font-weight: 600;
}

.form-submit {
  gap: 10px;
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.booking-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 22px;
}

.sidebar-card {
  padding: 28px;
  border-radius: var(--radius-medium);
}

.next-steps {
  display: grid;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.next-steps li {
  display: flex;
  gap: 15px;
}

.next-steps li > span {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender-light);
  color: var(--navy);
  font-weight: 800;
}

.next-steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.next-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-sidebar-card {
  background:
    radial-gradient(
      circle at top right,
      rgba(219, 234, 162, 0.55),
      transparent 38%
    ),
    var(--white);
}

.contact-sidebar-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.contact-sidebar-card > p {
  color: var(--muted);
}

.sidebar-email {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 18px;
  color: var(--peach-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.location-line {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 14px 0 0;
  color: var(--navy) !important;
  font-weight: 600;
}

.inquiry-note-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--navy);
  color: var(--white);
}

.inquiry-note-card i {
  margin-top: 3px;
  color: var(--green);
  font-size: 1.3rem;
}

.inquiry-note-card p {
  margin: 0;
  line-height: 1.55;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: var(--peach);
  color: var(--white);
}

@media (max-width: 950px) {
  .booking-highlights {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .inquiry-note-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .booking-hero {
    padding: 65px 0 75px;
  }

  .booking-form-card {
    padding: 30px 22px;
  }

  .form-grid,
  .choice-grid,
  .booking-sidebar {
    grid-template-columns: 1fr;
  }

  .inquiry-note-card {
    grid-column: auto;
  }
}

@media (max-width: 500px) {
  .booking-highlight {
    padding: 18px;
  }

  .booking-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }
}

/* Featured creations responsive layout */
@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card {
    min-height: 285px;
  }
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-card {
    min-height: 220px;
    padding: 20px 12px 18px;
    border-radius: 20px;
  }

  .gallery-emoji {
    min-height: 76px;
    margin-bottom: 4px;
    font-size: 3.4rem;
  }

  .gallery-card h3 {
    margin: 4px 0 8px;
    font-size: 1rem;
  }

  .gallery-divider {
    margin-bottom: 8px;
  }

  .gallery-card p {
    max-width: 120px;
    font-size: 0.82rem;
    line-height: 1.3;
  }
}

@media (max-width: 380px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .site-header .header-inner {
    height: 64px;
    min-height: 64px;
  }

  .site-header .brand-logo {
    width: auto !important;
    height: 48px !important;
    max-height: 48px !important;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    top: 64px;
  }
}

@media (max-width: 480px) {
  .hero {
    overflow-x: hidden;
  }

  .hero-grid,
  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: 49px;
    line-height: 0.98;
  }

  .hero-copy h1 span {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-card {
    min-height: 220px;
    padding: 20px 12px 18px;
    border-radius: 20px;
  }

  .gallery-emoji {
    min-height: 76px;
    margin-bottom: 4px;
    font-size: 3.4rem;
  }

  .gallery-card h3 {
    margin: 4px 0 8px;
    font-size: 1rem;
  }

  .gallery-divider {
    margin-bottom: 8px;
  }

  .gallery-card p {
    max-width: 120px;
    font-size: 0.82rem;
    line-height: 1.3;
  }
}

/* Contact + founder section on smaller desktops/tablets */
@media (max-width: 1150px) {
  .contact-personalized {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .founder-card {
    grid-template-columns: 180px minmax(0, 1fr);
    width: 100%;
    max-width: none;
    padding: 28px;
  }

  .founder-copy {
    max-width: 700px;
  }

  .founder-photo-wrap {
    aspect-ratio: 4 / 5;
  }
}

/* Smaller tablets */
@media (max-width: 700px) {
  .founder-card {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 20px;
    padding: 22px;
  }
}

/* Phones */
@media (max-width: 560px) {
  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo-wrap {
    width: min(100%, 240px);
    aspect-ratio: 1 / 1;
  }
}
