:root {
  --ink: #122321;
  --muted: #5d6c66;
  --paper: #fffaf4;
  --soft: #f4eee4;
  --teal: #0d5956;
  --teal-deep: #0a3332;
  --coral: #d85f43;
  --coral-dark: #ad432d;
  --sage: #7fa07a;
  --line: rgba(18, 35, 33, 0.13);
  --shadow: 0 20px 60px rgba(12, 33, 32, 0.18);
}

* {
  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;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(8, 32, 31, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.brand,
.header-call,
.nav-links,
.hero-actions,
.contact-list,
.floating-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  color: var(--teal-deep);
  background: #fff3e2;
  font-family: Georgia, serif;
  font-size: 22px;
}

.nav-links {
  gap: clamp(12px, 2.6vw, 30px);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a {
  padding: 8px 2px;
}

.nav-links a:hover,
.inline-link:hover,
.site-footer a:hover {
  color: #ffd8c8;
}

.header-call {
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(216, 95, 67, 0.32);
}

.header-call svg,
.btn svg,
.contact-list svg,
.floating-actions svg,
.service-icon-row svg,
.popup-close svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.hero {
  position: relative;
  min-height: min(700px, 86svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

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

.hero-bg {
  background-image: url("assets/hero-spa-room.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 27, 26, 0.88) 0%, rgba(5, 27, 26, 0.64) 45%, rgba(5, 27, 26, 0.24) 100%),
    linear-gradient(0deg, rgba(5, 27, 26, 0.62) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding-top: 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd2c4;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 15ch;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 16px 34px rgba(216, 95, 67, 0.32);
}

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

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
}

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

.trust-strip div {
  min-height: 112px;
  padding: 26px clamp(18px, 4vw, 52px);
  background: #fff7ec;
}

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

.trust-strip strong {
  font-size: 1.02rem;
}

.trust-strip span {
  max-width: 340px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 106px) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: clamp(28px, 6vw, 80px);
}

.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card {
  overflow: hidden;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(14, 39, 36, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.service-card-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--teal-deep);
  color: #fff;
}

.service-icon-row {
  display: flex;
  gap: 12px;
  padding: 28px 28px 0;
}

.service-icon-row span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.service-body {
  padding: 26px;
}

.service-tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-text .service-tag {
  color: #ffd2c4;
}

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

.service-card-text p {
  color: rgba(255, 255, 255, 0.78);
}

.inline-link {
  display: inline-flex;
  margin-top: 18px;
  color: #ffd2c4;
  font-weight: 900;
}

.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(56px, 7vw, 88px) clamp(18px, 7vw, 88px);
  color: #fff;
  background: var(--teal);
}

.privacy-band .eyebrow {
  color: #ffd2c4;
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.privacy-points p {
  min-height: 150px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.83);
  background: rgba(255, 255, 255, 0.08);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.booking-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-list {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--teal-deep);
  background: #fff;
  font-weight: 900;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: #fffaf4;
  border: 1px solid rgba(18, 35, 33, 0.18);
  border-radius: 6px;
  font: inherit;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: 3px solid rgba(216, 95, 67, 0.22);
  border-color: var(--coral);
}

.form-button {
  width: 100%;
  margin-top: 8px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  flex-direction: column;
  gap: 10px;
}

.floating-actions a,
.floating-actions button,
.popup-close {
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.floating-actions a,
.floating-actions button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 34px rgba(9, 29, 28, 0.28);
}

.float-call {
  background: var(--coral);
}

.float-whatsapp {
  background: #1fa855;
}

.whatsapp-popup {
  position: fixed;
  right: 88px;
  bottom: 18px;
  z-index: 31;
  width: min(330px, calc(100vw - 112px));
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-popup.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--muted);
  background: var(--soft);
}

.popup-title {
  margin: 0 36px 8px 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
}

.whatsapp-popup p:not(.popup-title) {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.popup-button {
  width: 100%;
  margin-top: 16px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px) 104px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--teal-deep);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffd2c4;
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    margin: 0 auto;
  }

  h1 {
    max-width: 13ch;
  }

  .trust-strip,
  .intro-section,
  .service-grid,
  .privacy-band,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 0;
  }

  .privacy-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-call {
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 27, 26, 0.9) 0%, rgba(5, 27, 26, 0.7) 100%),
      linear-gradient(0deg, rgba(5, 27, 26, 0.74) 0%, transparent 48%);
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 80px;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(2.85rem, 15vw, 4.25rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    width: calc(100% - 28px);
  }

  .privacy-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .booking-form,
  .service-body,
  .privacy-points p {
    padding: 20px;
  }

  .whatsapp-popup {
    right: 14px;
    bottom: 88px;
    width: calc(100vw - 28px);
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
    flex-direction: row;
  }

  .site-footer {
    display: block;
    padding-bottom: 94px;
  }

  .site-footer a {
    display: inline-flex;
    margin-top: 10px;
  }
}
