:root {
  --ink: #20242b;
  --muted: #5c6874;
  --cream: #fff8ed;
  --paper: #ffffff;
  --coral: #d96a4e;
  --coral-dark: #a8412e;
  --teal: #0f766e;
  --teal-soft: #dff3ef;
  --green: #6f9d55;
  --line: #e4ddd2;
  --shadow: 0 18px 45px rgba(35, 41, 48, 0.14);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.6;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: white;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  color: #3e4852;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
}

.header-call,
.button,
.text-link,
.pay-tab,
.calendar-grid button,
.time-list button,
.icon-button {
  min-height: 46px;
  border: 0;
  cursor: pointer;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.header-call,
.button.primary {
  color: white;
  background: var(--coral);
}

.button.secondary {
  color: var(--ink);
  background: white;
}

.button.outline {
  color: var(--teal);
  background: white;
  border: 2px solid var(--teal);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 26, 29, 0.78), rgba(18, 26, 29, 0.44) 42%, rgba(18, 26, 29, 0.08));
}

.hero-content {
  position: relative;
  width: min(650px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 90px);
  padding: 72px 0;
  color: white;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral-dark);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe0d3;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 28px;
  color: #fff8f1;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-band div {
  padding: 28px clamp(18px, 4vw, 48px);
  background: white;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  color: var(--muted);
}

.intro-section,
.section,
.contact-section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 70px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: center;
  background: #fffdf8;
}

.intro-copy {
  max-width: 780px;
}

.quote-panel {
  padding: 34px;
  background: var(--teal-soft);
  border-left: 8px solid var(--teal);
  border-radius: 8px;
}

.quote-panel p {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.35;
}

.quote-panel span {
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.service-grid,
.pricing-grid,
.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.price-card,
.process-list article {
  min-height: 100%;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(35, 41, 48, 0.06);
}

.service-icon {
  position: relative;
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.phone-icon::before {
  width: 19px;
  height: 29px;
  border: 3px solid var(--teal);
  border-radius: 6px;
}

.phone-icon::after {
  bottom: 15px;
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
}

.home-icon::before {
  width: 24px;
  height: 20px;
  bottom: 14px;
  border: 3px solid var(--teal);
  border-top: 0;
  border-radius: 3px;
}

.home-icon::after {
  width: 22px;
  height: 22px;
  top: 13px;
  border-left: 3px solid var(--teal);
  border-top: 3px solid var(--teal);
  transform: rotate(45deg);
}

.video-icon::before {
  width: 25px;
  height: 18px;
  left: 13px;
  border: 3px solid var(--teal);
  border-radius: 5px;
}

.video-icon::after {
  right: 10px;
  width: 12px;
  height: 14px;
  background: var(--teal);
  clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 82%);
}

.family-icon::before {
  width: 13px;
  height: 13px;
  top: 14px;
  left: 17px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 14px 4px 0 var(--teal);
}

.family-icon::after {
  width: 32px;
  height: 13px;
  bottom: 14px;
  background: var(--teal);
  border-radius: 14px 14px 5px 5px;
}

.shield-icon::before {
  width: 24px;
  height: 28px;
  top: 12px;
  background: var(--teal);
  clip-path: polygon(50% 0, 88% 14%, 82% 68%, 50% 100%, 18% 68%, 12% 14%);
}

.shield-icon::after {
  width: 12px;
  height: 7px;
  top: 25px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(-45deg);
}

.custom-icon::before {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow:
    0 -15px 0 var(--teal),
    0 15px 0 var(--teal),
    -15px 0 0 var(--teal),
    15px 0 0 var(--teal);
}

.custom-icon::after {
  width: 25px;
  height: 25px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.service-icon span {
  color: var(--teal);
  font-size: 1.7rem;
  font-weight: 900;
}

.text-link {
  padding: 0;
  color: var(--teal);
  background: transparent;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.pricing-section,
.process-section,
.difference-section {
  background: #fffdf8;
}

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

.price-card {
  position: relative;
}

.price-card.featured {
  border-color: var(--coral);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 10px;
  color: white;
  background: var(--green);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.best-for {
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 800;
}

.price-note {
  margin-top: -4px;
  color: var(--muted);
  font-weight: 800;
}

.package-list {
  margin: 20px 0 24px;
  padding-left: 22px;
}

.package-list li {
  margin-bottom: 8px;
}

.returning-discount {
  color: var(--teal);
  font-weight: 900;
}

.payment-module {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 24px;
  background: var(--teal-soft);
  border-radius: 8px;
}

.payment-module p {
  margin-bottom: 0;
}

.payment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pay-tab {
  padding: 10px 16px;
  color: var(--teal);
  background: white;
  border-radius: 8px;
  font-weight: 800;
}

.pay-tab.active {
  color: white;
  background: var(--teal);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 36px;
  align-items: start;
}

.booking-summary {
  margin-top: 26px;
  padding: 22px;
  background: white;
  border-left: 8px solid var(--coral);
  border-radius: 8px;
}

.booking-summary span,
.booking-summary strong {
  display: block;
}

.booking-summary span {
  color: var(--muted);
}

.calendar-shell {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.icon-button {
  width: 48px;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 50%;
  font-size: 1.8rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(38px, 1fr));
  gap: 8px;
}

.calendar-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.calendar-grid button,
.time-list button {
  color: var(--ink);
  background: #f8f5ef;
  border-radius: 8px;
  font-weight: 800;
}

.calendar-grid button:disabled {
  color: #aaa;
  cursor: not-allowed;
}

.calendar-grid button.selected,
.time-list button.selected {
  color: white;
  background: var(--coral);
}

.time-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.timezone-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.process-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-list span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  color: white;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.family-section,
.safety-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 70px);
}

.family-section {
  color: white;
  background: #1f4f4c;
}

.family-section .eyebrow {
  color: #ffccb7;
}

.family-section p {
  max-width: 800px;
}

.safety-note {
  grid-template-columns: minmax(0, 900px);
  background: var(--teal-soft);
}

.safety-note h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 36px;
  align-items: start;
  color: white;
  background: #1f4f4c;
}

.contact-section .eyebrow {
  color: #ffccb7;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: white;
  border: 2px solid transparent;
  border-radius: 8px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid #ffccb7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: #43515c;
  background: white;
}

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

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .trust-band,
  .intro-section,
  .booking-section,
  .contact-section,
  .family-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pricing-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .site-header {
    position: static;
  }

  .header-call {
    width: 100%;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(18, 26, 29, 0.72), rgba(18, 26, 29, 0.5));
  }

  .hero-content {
    margin: 0 auto;
    padding: 56px 0;
  }

  .hero-actions,
  .hero-actions .button,
  .family-section .button,
  .payment-module,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-band,
  .service-grid,
  .pricing-grid,
  .process-list,
  .time-list {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    gap: 6px;
  }

  .calendar-shell {
    padding: 16px;
  }
}
