:root {
  --charcoal: #111514;
  --charcoal-soft: #1a1f1e;
  --charcoal-muted: #252b2a;
  --ivory: #efe7d8;
  --ivory-soft: #f7f1e8;
  --paper: #fffdf9;
  --stone: #605f59;
  --stone-soft: #8c8a83;
  --text: #1b1f1d;
  --text-soft: #4f5652;
  --line: rgba(17, 21, 20, 0.1);
  --line-strong: rgba(17, 21, 20, 0.18);
  --line-light: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --accent: #4aa29b;
  --accent-deep: #2f857f;
  --accent-soft: rgba(74, 162, 155, 0.14);
  --shadow-lg: 0 28px 80px rgba(6, 11, 10, 0.16);
  --shadow-md: 0 18px 46px rgba(6, 11, 10, 0.1);
  --radius-lg: 1.75rem;
  --radius-md: 1.25rem;
  --radius-sm: 0.95rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(74, 162, 155, 0.08), transparent 28%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-soft) 100%);
  color: var(--text);
  line-height: 1.65;
  padding-bottom: 5.5rem;
}

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

a {
  color: inherit;
}

p,
ul {
  margin-top: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transform: translateY(-220%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0 auto;
}

.site-header {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(74, 162, 155, 0.2), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(135deg, #0d1110 0%, #141918 48%, #1a201f 100%);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.site-header::before {
  width: 22rem;
  height: 22rem;
  right: -7rem;
  top: 7rem;
  background: radial-gradient(circle, rgba(74, 162, 155, 0.16), transparent 68%);
}

.site-header::after {
  width: 26rem;
  height: 26rem;
  left: -10rem;
  bottom: -12rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 72%);
}

.topbar {
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.03);
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.topbar-content p {
  margin-bottom: 0;
}

.topbar-content span {
  display: inline-block;
  margin-left: 0.65rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar-content a {
  color: var(--white);
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.15rem 0 1.5rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  min-width: 12rem;
}

.brand-mark,
h1,
h2 {
  font-family: "Big Caslon", "Book Antiqua", "Palatino Linotype", serif;
}

.brand-mark {
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand-tag {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.nav-links {
  display: flex;
  flex: 1 1 100%;
  gap: 0.95rem 1.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.96rem;
}

.nav-links a:hover,
.topbar-content a:hover,
.footer-links a:hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button-solid {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.12);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: transparent;
}

.button-soft {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  border-color: var(--line-strong);
  color: var(--text);
}

.button-accent {
  background: var(--accent);
  color: var(--charcoal);
}

.button-accent:hover {
  background: var(--accent-deep);
  color: var(--white);
}

.hero {
  display: grid;
  gap: 1.6rem;
  padding: 1rem 0 5.8rem;
}

.hero-copy,
.hero-panel {
  animation: rise 0.8s ease both;
}

.hero-panel {
  animation-delay: 0.1s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--accent-deep);
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 8vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  line-height: 1.25;
}

.lead,
.section-copy,
.contact-copy p,
.about-copy p {
  font-size: 1.08rem;
}

.lead {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1.5rem;
}

.hero-helper {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.hero-helper a {
  color: var(--white);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.hero-benefits,
.check-list,
.service-list,
.package-list,
.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-benefits {
  display: grid;
  gap: 0.7rem;
}

.hero-benefits li,
.check-list li,
.check-list-dark li,
.service-list li,
.package-list li,
.about-points li {
  position: relative;
  padding-left: 1.1rem;
}

.hero-benefits li::before,
.check-list li::before,
.check-list-dark li::before,
.service-list li::before,
.package-list li::before,
.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.hero-benefits li {
  color: rgba(255, 255, 255, 0.82);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.scheduler {
  padding: 0 0 6rem;
  scroll-margin-top: 4.75rem;
}

.scheduler-shell {
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.scheduler-shell h2 {
  max-width: 12ch;
}

.scheduler-copy {
  margin-bottom: 0.75rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.scheduler-note {
  margin-bottom: 1.4rem;
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.scheduler-frame {
  display: block;
  width: 100%;
  min-height: 800px;
  border: 0;
  border-radius: calc(var(--radius-lg) - 0.35rem);
  background: var(--white);
}

.hero-card {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.hero-card-accent {
  border-color: rgba(74, 162, 155, 0.35);
  background:
    linear-gradient(180deg, rgba(74, 162, 155, 0.15), rgba(74, 162, 155, 0.05)),
    rgba(255, 255, 255, 0.02);
}

.card-label,
.package-kicker,
.contact-label,
.trust-value {
  margin-bottom: 0.8rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-label,
.package-kicker,
.contact-label {
  color: var(--stone-soft);
}

.hero-card .card-label {
  color: rgba(255, 255, 255, 0.66);
}

.check-list {
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  color: rgba(255, 255, 255, 0.8);
}

.check-list-dark li {
  color: var(--text-soft);
}

.section {
  padding: 4.5rem 0;
}

.section-pricing {
  padding-top: 3.5rem;
}

.section-proof {
  position: relative;
  margin-top: -3rem;
  padding-top: 0;
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

.trust-card {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.trust-value {
  color: var(--accent-deep);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading-compact {
  margin-bottom: 1.25rem;
}

.section-copy {
  color: var(--text-soft);
}

.service-grid,
.package-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.package-card,
.about-card,
.faq-item,
.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow-md);
}

.service-card,
.package-card,
.about-card,
.contact-card {
  padding: 1.45rem;
}

.service-card {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 162, 155, 0.34);
}

.service-list,
.package-list,
.about-points {
  display: grid;
  gap: 0.7rem;
}

.service-note,
.fine-print,
.contact-note,
.footer-copy {
  color: var(--text-soft);
}

.service-note,
.fine-print {
  margin-top: 1.4rem;
}

.pricing-card {
  max-width: 50rem;
}

.pricing-lines {
  display: grid;
  gap: 0.75rem;
  font-size: 1.08rem;
}

.pricing-lines p,
.pricing-helper,
.contact-support p {
  margin-bottom: 0;
}

.pricing-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}

.pricing-actions {
  margin-top: 1.5rem;
}

.pricing-card .button {
  margin-top: 0;
}

.pricing-helper {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.pricing-helper a,
.contact-support a {
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.package-price {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.package-price span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  letter-spacing: 0;
  color: var(--text-soft);
}

.package-copy {
  margin-bottom: 1rem;
}

.package-card .button {
  margin-top: 1.45rem;
}

.package-card-featured {
  border-color: rgba(74, 162, 155, 0.38);
  background:
    linear-gradient(180deg, rgba(74, 162, 155, 0.1), rgba(255, 253, 249, 0.94)),
    rgba(255, 253, 249, 0.94);
  transform: translateY(-0.15rem);
}

.about-layout {
  display: grid;
  gap: 1rem;
}

.about-card {
  background:
    linear-gradient(180deg, rgba(74, 162, 155, 0.06), rgba(255, 255, 255, 0.92)),
    rgba(255, 255, 255, 0.92);
}

.about-points {
  margin-top: 1.35rem;
}

.section-faq .section-heading {
  margin-bottom: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 1.3rem 3.4rem 1.3rem 1.35rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after,
.faq-item summary::before {
  content: "";
  position: absolute;
  right: 1.35rem;
  top: 50%;
  width: 0.9rem;
  height: 2px;
  background: var(--accent-deep);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-item summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::before {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item p {
  padding: 0 1.35rem 1.3rem;
  margin-bottom: 0;
  color: var(--text-soft);
}

.section-contact {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(74, 162, 155, 0.16), transparent 24%),
    linear-gradient(160deg, #131816 0%, #0e1211 100%);
}

.section-contact .contact-note,
.section-contact .contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-layout {
  display: grid;
  gap: 1.4rem;
}

.contact-actions {
  margin: 1.6rem 0 1.25rem;
}

.contact-card {
  display: grid;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
}

.contact-card strong {
  font-size: 1.3rem;
}

.contact-card span:last-child {
  color: var(--text-soft);
}

.contact-card-primary {
  border-color: rgba(74, 162, 155, 0.4);
  background:
    linear-gradient(180deg, rgba(74, 162, 155, 0.14), rgba(255, 253, 249, 0.94)),
    rgba(255, 253, 249, 0.94);
}

.contact-support {
  display: grid;
  gap: 0.75rem;
  color: var(--text);
}

.contact-support a {
  color: var(--text);
}

.contact-support .card-label {
  color: var(--accent-deep);
}

.contact-support-note {
  color: var(--text-soft);
}

.site-footer {
  background: #0c100f;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer .footer-copy {
  color: rgba(255, 255, 255, 0.64);
}

.footer-layout {
  display: grid;
  gap: 1.4rem;
  padding: 2.2rem 0 6rem;
}

.brand-mark-footer {
  margin: 0 0 0.55rem;
  color: var(--white);
  font-size: 1.75rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  text-decoration: none;
}

.mobile-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 0.65rem;
  padding: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 16, 15, 0.92);
  backdrop-filter: blur(12px);
}

.mobile-dock a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.15rem;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
}

.mobile-dock a:first-child {
  background: var(--accent);
  border-color: transparent;
  color: var(--charcoal);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (min-width: 680px) {
  .trust-grid,
  .service-grid,
  .package-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-grid a:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 820px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    overflow: visible;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(12px);
  }

  .nav {
    flex-wrap: nowrap;
    position: sticky;
    top: 3rem;
    z-index: 29;
    background: rgba(13, 17, 16, 0.72);
    backdrop-filter: blur(12px);
  }

  .nav-links {
    flex: 0 1 auto;
    justify-content: center;
  }

  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
    align-items: end;
    gap: 2.2rem;
    padding-bottom: 7.5rem;
  }

  .scheduler {
    padding-bottom: 7.5rem;
    scroll-margin-top: 8rem;
  }

  .scheduler-shell {
    padding: 1.8rem;
  }

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

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

  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .package-card-featured {
    transform: translateY(-0.8rem);
  }

  .about-layout,
  .contact-layout,
  .footer-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
    align-items: start;
  }

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

  .contact-grid a:last-child {
    grid-column: auto;
  }

  .footer-layout {
    align-items: end;
    padding-bottom: 2.2rem;
  }

  .footer-links {
    justify-items: end;
  }

  .mobile-dock {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
