:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-soft: #f3efe8;
  --text: #111827;
  --muted: #667085;
  --line: rgba(17, 24, 39, 0.11);
  --brand: #0e7c66;
  --brand-dark: #075746;
  --accent: #d9a441;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(217, 164, 65, 0.13), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(14, 124, 102, 0.16), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 36px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 14px 34px rgba(14, 124, 102, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 650;
  color: rgba(17, 24, 39, 0.76);
}

.nav-links a {
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-cta {
  color: #fff !important;
  background: var(--text);
  padding: 12px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 8px;
}

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

.hero {
  padding-top: 82px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(48px, 7vw, 84px);
  margin: 22px 0 24px;
}

h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 18px 0 18px;
}

h3 {
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-content p,
.section-heading p,
.split-content p,
.booking-copy p,
.testimonial-main p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 38px rgba(14, 124, 102, 0.26);
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--line);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  background: #fff;
}

.trust-strip {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-strip div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.trust-strip strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.trust-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  position: relative;
}

.floating-badge {
  position: absolute;
  top: -22px;
  right: 26px;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  font-weight: 800;
  font-size: 14px;
}

.floating-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.14);
}

.mock-browser {
  padding: 16px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(243, 239, 232, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.browser-top {
  display: flex;
  gap: 8px;
  padding: 12px 14px 18px;
}

.browser-top i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.18);
}

.appointment-card {
  background: var(--surface);
  border-radius: 26px;
  padding: 28px;
  border: 1px solid var(--line);
}

.appointment-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.small-label,
.field-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 6px;
}

.appointment-top h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.pill {
  background: var(--surface-soft);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.calendar-mini,
.time-grid,
.slot-grid {
  display: grid;
  gap: 10px;
}

.calendar-mini {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
}

.calendar-mini button,
.time-grid button,
.slot-grid button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 13px 8px;
  cursor: pointer;
  transition: 0.22s ease;
  color: var(--text);
}

.calendar-mini button.active,
.time-grid button.selected,
.slot-grid button.selected {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.time-grid,
.slot-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
}

.time-grid button:hover,
.slot-grid button:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
}

.summary-box,
.live-summary {
  margin-top: 18px;
  background: var(--surface-soft);
  border-radius: 18px;
  padding: 16px;
}

.summary-box span,
.live-summary span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.summary-box strong,
.live-summary strong {
  display: block;
  margin-top: 3px;
}

.full-btn {
  width: 100%;
  margin-top: 18px;
  border: 0;
  border-radius: 18px;
  min-height: 52px;
  background: var(--text);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.logos {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.logos .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logos p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.logo-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.logo-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 800;
  color: rgba(17, 24, 39, 0.64);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

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

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  background:
    linear-gradient(180deg, rgba(14, 124, 102, 0.08), rgba(255, 255, 255, 0.82));
  border-color: rgba(14, 124, 102, 0.28);
}

.popular {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--brand);
  font-size: 24px;
  margin-bottom: 28px;
}

.service-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.service-meta {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-meta span {
  color: var(--muted);
  font-weight: 700;
}

.service-meta strong {
  font-size: 24px;
}

.text-link {
  margin-top: 20px;
  color: var(--brand);
  font-weight: 850;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 58px;
  align-items: center;
}

.image-panel {
  position: relative;
}

.image-panel img {
  height: 590px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.stat-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 260px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.stat-card strong {
  display: block;
  font-size: 44px;
  letter-spacing: -0.05em;
  color: var(--brand);
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-weight: 650;
}

.feature-list {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
}

.feature-list span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--brand);
  font-weight: 900;
}

.feature-list h4 {
  margin-bottom: 4px;
  font-size: 18px;
}

.feature-list p {
  margin-bottom: 0;
  font-size: 15px;
}

.booking-section {
  background:
    linear-gradient(145deg, rgba(14, 124, 102, 0.11), rgba(217, 164, 65, 0.09)),
    #f7f2ea;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.booking-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.booking-points span {
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 24, 39, 0.09);
  font-weight: 800;
}

.booking-widget {
  background: var(--surface);
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 34px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.widget-header {
  margin-bottom: 22px;
}

.widget-header h3 {
  font-size: 30px;
  margin-bottom: 4px;
}

.widget-header p {
  color: var(--muted);
  margin-bottom: 0;
}

.booking-widget label {
  display: grid;
  gap: 8px;
  color: rgba(17, 24, 39, 0.78);
  font-weight: 800;
  margin-bottom: 18px;
}

.booking-widget input,
.booking-widget select {
  width: 100%;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 16px;
  background: #fff;
  outline: none;
  color: var(--text);
}

.booking-widget input:focus,
.booking-widget select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(14, 124, 102, 0.1);
}

.slot-area {
  margin: 8px 0 18px;
}

.submit-btn {
  width: 100%;
  border: 0;
  margin-top: 18px;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.timeline-item {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--brand);
  font-weight: 900;
  font-size: 14px;
}

.timeline-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.timeline-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.testimonial-main,
.review-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  padding: 30px;
}

.testimonial-main {
  background: var(--text);
  color: #fff;
}

.testimonial-main .eyebrow,
.testimonial-main p {
  color: rgba(255, 255, 255, 0.72);
}

.review-card {
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.review-card p {
  color: rgba(17, 24, 39, 0.76);
  font-size: 17px;
}

.review-person {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-person > span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--brand);
  font-weight: 900;
}

.review-person strong,
.review-person small {
  display: block;
}

.review-person small {
  color: var(--muted);
}

.final-cta {
  text-align: center;
  padding-top: 70px;
}

.final-cta .container {
  border-radius: 40px;
  padding: 70px 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 164, 65, 0.25), transparent 30%),
    linear-gradient(145deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.74);
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.final-cta .btn.primary {
  margin-top: 18px;
  background: #fff;
  color: var(--brand-dark);
  box-shadow: none;
}

.footer {
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
  gap: 32px;
}

.footer p {
  color: var(--muted);
  max-width: 360px;
}

.footer h4 {
  margin-bottom: 14px;
}

.footer a:not(.brand) {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: min(360px, calc(100% - 48px));
  background: var(--text);
  color: #fff;
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  transform: translateY(130%);
  opacity: 0;
  transition: 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast strong,
.toast span {
  display: block;
}

.toast span {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .booking-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .logos .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-row {
    justify-content: flex-start;
  }

  .image-panel img {
    height: 460px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 70px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 54px;
  }

  .trust-strip,
  .service-grid,
  .timeline,
  .booking-points {
    grid-template-columns: 1fr;
  }

  .calendar-mini {
    grid-template-columns: repeat(2, 1fr);
  }

  .appointment-card,
  .booking-widget {
    padding: 22px;
  }

  .floating-badge {
    position: static;
    width: max-content;
    margin: 0 0 14px auto;
  }

  .image-panel img {
    height: 380px;
  }

  .stat-card {
    position: static;
    margin-top: 14px;
    max-width: 100%;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 43px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .time-grid,
  .slot-grid {
    grid-template-columns: 1fr;
  }

  .feature-list > div {
    grid-template-columns: 1fr;
  }
}
