:root {
  --ink: #101417;
  --ink-soft: #283038;
  --muted: #66717a;
  --line: #dce2e4;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --surface-2: #edf2f1;
  --teal: #0f766e;
  --teal-dark: #0a4f4a;
  --blue: #2d7ff9;
  --silver: #c8d0d4;
  --danger: #b63b34;
  --shadow: 0 24px 70px rgba(16, 20, 23, 0.14);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  scroll-margin-top: 86px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: rgba(16, 20, 23, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #17242b);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
  padding: 10px 12px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.main-nav .nav-cta {
  color: #fff;
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  filter: saturate(0.92) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 20, 23, 0.92), rgba(16, 20, 23, 0.44) 54%, rgba(16, 20, 23, 0.2)),
    linear-gradient(0deg, rgba(16, 20, 23, 0.92), rgba(16, 20, 23, 0.1) 42%);
}

.hero-content {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 170px 0 76px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #6ee7d8;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
}

h4 {
  margin: 22px 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

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

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  padding: 14px 18px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.btn-danger {
  display: none;
  color: #fff;
  background: var(--danger);
}

.hero-stats {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 52px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
  background: rgba(16, 20, 23, 0.44);
}

.hero-stats dt {
  font-size: 28px;
  font-weight: 850;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.intro-band {
  padding: 74px 0;
  background: var(--surface);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: end;
}

.split p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
  padding-top: 86px;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.card-grid,
.package-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.package-card,
.review-grid article,
.contact-form,
.booking-panel,
.booking-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 38px rgba(16, 20, 23, 0.06);
}

.service-card {
  overflow: hidden;
}

.service-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
}

.service-card-content,
.package-card {
  padding: 22px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--surface-2);
  font-size: 12px;
  font-weight: 750;
  padding: 5px 10px;
}

.service-card p,
.package-card p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.dark-section {
  margin-top: 90px;
  padding: 90px 0;
  color: #fff;
  background: #11181d;
}

.dark-section .eyebrow {
  color: #6ee7d8;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.process-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.steps-list article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.steps-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #6ee7d8;
  font-weight: 900;
}

.steps-list p {
  color: rgba(255, 255, 255, 0.68);
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card.is-featured {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: 0 22px 56px rgba(15, 118, 110, 0.15);
}

.ribbon {
  align-self: flex-start;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 18px 0 4px;
}

.price strong {
  font-size: 42px;
  line-height: 1;
}

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

.gallery-section,
.reviews-section,
.contact-section {
  padding-bottom: 92px;
}

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

.gallery-grid figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(16, 20, 23, 0.72);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 10px;
  backdrop-filter: blur(10px);
}

.review-grid article {
  padding: 24px;
}

.review-grid p {
  color: var(--ink-soft);
  font-size: 18px;
}

.review-grid strong,
.review-grid span {
  display: block;
}

.review-grid span {
  color: var(--muted);
  font-size: 14px;
}

.booking-section {
  padding-bottom: 92px;
  background: linear-gradient(180deg, var(--paper), #edf4f2);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.booking-panel,
.booking-summary {
  padding: 22px;
}

.booking-summary {
  position: sticky;
  top: 92px;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.booking-progress li {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--surface-2);
  font-size: 12px;
  font-weight: 850;
  padding: 10px;
}

.booking-progress li.is-active {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.booking-step {
  display: none;
}

.booking-step.is-active {
  display: block;
}

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

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

.choice-card,
.addon-item,
.time-slot,
.payment-option {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.choice-card {
  min-height: 142px;
  padding: 16px;
}

.choice-card strong,
.choice-card span {
  display: block;
}

.choice-card span {
  color: var(--muted);
  font-size: 14px;
}

.choice-card.is-selected,
.addon-item.is-selected,
.time-slot.is-selected,
.payment-option.is-selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.16);
}

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

.addon-item {
  padding: 14px;
}

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

.time-slot {
  min-height: 74px;
  padding: 13px;
}

.time-slot[disabled] {
  color: #8d969d;
  background: #eef0f0;
  cursor: not-allowed;
  opacity: 0.72;
}

.field {
  display: grid;
  gap: 7px;
  margin-top: 16px;
}

.field span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 13px 14px;
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.16);
  border-color: var(--teal);
}

.field-error {
  min-height: 18px;
  color: var(--danger);
}

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

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

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.payment-option {
  padding: 15px;
  text-align: center;
  font-weight: 850;
}

.payment-status {
  min-height: 42px;
  margin-top: 16px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: var(--surface-2);
  padding: 12px;
}

.payment-status.is-error {
  color: var(--danger);
  background: #fae9e7;
}

.payment-status.is-success {
  color: var(--teal-dark);
  background: #dff4ef;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.booking-summary h3 {
  margin-bottom: 18px;
}

.booking-summary dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.booking-summary div:not(.summary-total) {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

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

.booking-summary dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  padding: 18px;
}

.summary-total strong {
  font-size: 26px;
}

.booking-summary p {
  color: var(--muted);
  font-size: 13px;
}

.success-box {
  display: grid;
  justify-items: start;
  gap: 14px;
  border-radius: var(--radius);
  background: #e2f6f1;
  padding: 26px;
}

.success-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 13px;
  font-weight: 950;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-cards article {
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
}

.contact-cards strong,
.contact-cards span {
  display: block;
}

.contact-cards span {
  color: var(--muted);
}

.contact-form {
  padding: 24px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--teal-dark);
  font-weight: 750;
}

.site-footer {
  color: #fff;
  background: var(--ink);
  padding: 34px 0;
}

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

.footer-grid p {
  color: rgba(255, 255, 255, 0.65);
  margin: 8px 0 0;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
}

.whatsapp-fab {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(16, 20, 23, 0.24);
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, visibility 160ms ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-2px) scale(1.02);
}

.whatsapp-fab svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.whatsapp-widget.is-open .whatsapp-fab {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.92);
}

.whatsapp-chat {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 360px;
  max-width: calc(100vw - 44px);
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-radius: 8px;
  background: #efeae2;
  box-shadow: 0 24px 70px rgba(16, 20, 23, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.whatsapp-widget.is-open .whatsapp-chat {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.whatsapp-chat-head {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: #075e54;
  cursor: pointer;
  padding: 12px 52px 12px 14px;
  text-align: left;
}

.whatsapp-chat-head strong,
.whatsapp-chat-head small {
  display: block;
}

.whatsapp-chat-head strong {
  font-size: 15px;
  line-height: 1.1;
}

.whatsapp-chat-head small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.whatsapp-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #128c7e;
  font-size: 13px;
  font-weight: 900;
}

.whatsapp-close {
  position: absolute;
  top: 13px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.whatsapp-close:hover,
.whatsapp-close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.whatsapp-chat-body {
  min-height: 230px;
  padding: 18px 14px;
  background:
    radial-gradient(circle at 12px 12px, rgba(17, 24, 29, 0.045) 1px, transparent 1px) 0 0 / 18px 18px,
    #efeae2;
}

.whatsapp-message {
  position: relative;
  max-width: 86%;
  border-radius: 7px;
  color: #1f2c33;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 20, 23, 0.12);
  font-size: 14px;
  padding: 10px 12px;
}

.whatsapp-message::before {
  position: absolute;
  top: 0;
  left: -7px;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
  content: "";
}

.whatsapp-compose {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 8px;
  align-items: center;
  background: #f0f2f5;
  padding: 10px;
}

.whatsapp-compose input {
  min-width: 0;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #1f2c33;
  padding: 0 16px;
}

.whatsapp-compose input:focus {
  outline: 3px solid rgba(37, 211, 102, 0.28);
}

.whatsapp-compose input.is-error {
  outline: 3px solid rgba(182, 59, 52, 0.3);
}

.whatsapp-compose button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  cursor: pointer;
}

.whatsapp-compose button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    inset: 71px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(16, 20, 23, 0.98);
    padding: 10px;
  }

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

  .hero {
    min-height: 700px;
  }

  .split,
  .process-layout,
  .booking-shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .package-grid,
  .review-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-summary {
    position: static;
  }

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

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .booking-actions,
  .success-actions,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats,
  .card-grid,
  .package-grid,
  .review-grid,
  .gallery-grid,
  .steps-list,
  .choice-grid,
  .choice-grid.small,
  .addon-list,
  .slot-grid,
  .form-grid,
  .payment-methods {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure {
    min-height: 230px;
  }

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

  .section-heading {
    padding-top: 66px;
  }

  .intro-band,
  .dark-section {
    padding: 62px 0;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-chat {
    width: calc(100vw - 28px);
  }
}
