:root {
  --ink: #17211d;
  --muted: #5e6d66;
  --paper: #fbfaf6;
  --soft: #ece8df;
  --leaf: #2f6f5b;
  --leaf-dark: #1f4d40;
  --amber: #c88945;
  --white: #ffffff;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 20px 60px rgba(28, 42, 36, 0.16);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

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

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

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 15px;
}

.main-nav a,
.site-footer a,
.text-link {
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--leaf);
}

.header-call {
  min-width: max-content;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 24, 21, 0.88) 0%, rgba(17, 24, 21, 0.58) 45%, rgba(17, 24, 21, 0.1) 100%),
    url("assets/huggo-massage-hero.png") center / cover no-repeat;
}

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

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

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

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--leaf);
}

.button.primary:hover {
  background: var(--leaf-dark);
}

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

.hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 800px;
  margin: 54px 0 0;
}

.hero-facts div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.fact-label {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-value {
  display: block;
  margin-top: 4px;
  font-weight: 700;
}

.section,
.page-hero,
.contact-layout,
.legal-page,
.thanks-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  color: var(--muted);
  font-size: 20px;
}

.section-heading {
  margin-bottom: 28px;
}

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

.service-card,
.contact-card,
.contact-form,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 28px;
}

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

.service-icon {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
}

.text-link {
  color: var(--leaf-dark);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 18px 20px;
  border-left: 4px solid var(--amber);
  background: var(--soft);
  font-weight: 700;
}

.booking-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 72px;
  padding: 38px;
  color: var(--white);
  background: var(--leaf-dark);
}

.booking-band p {
  color: rgba(255, 255, 255, 0.78);
}

.page {
  padding-bottom: 72px;
}

.page-hero {
  padding: 72px 0 42px;
}

.page-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
}

.price-table {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 28px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.price-row {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.price-row span {
  font-weight: 800;
}

.notice {
  padding: 26px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: 24px;
  padding-bottom: 72px;
}

.contact-card,
.contact-form {
  padding: 28px;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-top: 24px;
  color: var(--muted);
  background: linear-gradient(135deg, #e6e0d3, #f7f1e5);
  border: 1px solid var(--line);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-size: 14px;
}

.consent input {
  width: 18px;
  margin-top: 4px;
}

.legal-page {
  max-width: 860px;
  padding: 72px 0 88px;
}

.legal-page h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.legal-page h2 {
  margin-top: 32px;
  font-size: 24px;
}

.legal-page p {
  color: var(--muted);
}

.thanks-page {
  display: grid;
  align-content: center;
  min-height: 100vh;
  max-width: 720px;
  padding: 32px 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background: #111815;
}

.site-footer strong {
  color: var(--white);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .header-call {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 760px;
  }

  .hero-facts,
  .intro,
  .card-grid,
  .split,
  .contact-layout,
  .price-row {
    grid-template-columns: 1fr;
  }

  .booking-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-content {
    margin-left: 18px;
    padding-top: 56px;
  }

  h1 {
    font-size: 40px;
  }

  .button,
  .booking-actions {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }
}
