:root {
  --ink: #153a3f;
  --muted: #5c7476;
  --paper: #fffaf2;
  --cream: #f7edda;
  --honey: #d8be70;
  --honey-soft: #f7e6b0;
  --teal: #4fbfba;
  --aqua: #e3f6f3;
  --deep: #102f35;
  --line: rgba(21, 58, 63, .14);
  --shadow: 0 24px 70px rgba(16, 47, 53, .12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 76px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1.45rem;
  line-height: 1;
  color: var(--ink);
}

.brand span {
  font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 9px 11px;
  border-radius: 8px;
  font-size: .92rem;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(79, 191, 186, .16);
}

.nav-links .btn {
  background: var(--teal);
  color: var(--deep);
  border-color: rgba(21, 58, 63, .08);
  box-shadow: 0 10px 24px rgba(79, 191, 186, .24);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--deep);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

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

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(45, 41, 38, .22);
}

.btn.light {
  background: #fff;
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--deep);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 47, 53, .82), rgba(16, 47, 53, .34) 58%, rgba(16, 47, 53, .08));
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 86px 0 74px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--honey-soft);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
}

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

h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8vw, 6.8rem);
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 500;
}

h3 {
  font-size: 1.1rem;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

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

.quick-strip {
  background: var(--deep);
  color: #fff;
}

.quick-strip .inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .15);
}

.quick-item {
  padding: 22px;
  background: var(--deep);
}

.quick-item small {
  display: block;
  color: var(--honey-soft);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  margin-bottom: 6px;
}

.section {
  padding: 92px 22px;
}

.section.alt {
  background: var(--cream);
}

.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: .88fr 1.12fr;
}

.copy p {
  color: var(--muted);
  margin: 18px 0 0;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr .74fr;
  gap: 14px;
  align-items: end;
}

.photo-pair img,
.feature-image,
.gallery img,
.work-card img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.photo-pair img:first-child {
  aspect-ratio: 4 / 5;
  height: 100%;
}

.photo-pair img:last-child {
  aspect-ratio: 4 / 3;
}

.feature-image {
  aspect-ratio: 16 / 10;
  height: 100%;
}

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

.tariff-note {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 38px;
  align-items: stretch;
}

.tariff-note p {
  color: var(--muted);
  margin: 16px 0 0;
}

.tariff-aside {
  background: var(--aqua);
  border: 1px solid rgba(79, 191, 186, .28);
  border-radius: 8px;
  padding: 26px;
}

.tariff-aside h3 {
  margin-bottom: 14px;
}

.tariff-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.tariff-aside li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

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

.card,
.price-group,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .64);
}

.card {
  padding: 24px;
}

.card .mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(79, 191, 186, .16);
  color: var(--teal);
  font-weight: 900;
}

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

.gallery {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 14px;
}

.gallery img {
  height: 260px;
}

.gallery img:first-child {
  grid-row: span 2;
  height: 534px;
}

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

.work-card img {
  aspect-ratio: 4 / 3;
}

.work-card h3 {
  margin-top: 14px;
}

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

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

.price-group {
  padding: 24px;
}

.price-group h3 {
  margin-bottom: 14px;
  color: var(--ink);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

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

.price-row strong {
  white-space: nowrap;
}

.note {
  margin-top: 20px;
  color: var(--muted);
  font-size: .94rem;
}

.head-spa-band {
  background: linear-gradient(135deg, var(--cream), var(--aqua) 58%, #fff7df);
}

.ritual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.ritual div {
  border-left: 3px solid var(--teal);
  padding: 4px 18px;
}

.ritual strong {
  display: block;
  margin-bottom: 6px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-panel {
  padding: 26px;
}

.contact-panel p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-list a,
.contact-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

form {
  display: grid;
  gap: 14px;
}

.form-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: .92rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
  flex: 0 0 auto;
}

.checkbox-label a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.form-disclaimer {
  margin: 0;
  font-size: .9rem;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(45, 41, 38, .2);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.page-hero {
  padding: 82px 22px 54px;
  background: var(--cream);
}

.page-hero h1 {
  max-width: 720px;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  line-height: 1.04;
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 42px;
  align-items: end;
}

.page-hero p {
  color: var(--muted);
  margin: 18px 0 0;
  max-width: 650px;
}

.page-hero img {
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.site-footer {
  background: var(--deep);
  color: #fff;
  padding: 48px 22px;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, .75);
}

.site-footer h3 {
  margin-bottom: 12px;
}

.footer-legal {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
}

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

.tiny {
  font-size: .86rem;
  color: var(--muted);
}

.legal-content {
  display: grid;
  gap: 34px;
  max-width: 860px;
}

.legal-content h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.legal-content h3 {
  margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 760px;
  }

  .quick-strip .inner,
  .cards,
  .tariff-note,
  .work-grid,
  .price-layout,
  .contact-grid,
  .page-hero .container,
  .split,
  .split.reverse,
  .footer-inner {
    grid-template-columns: 1fr;
  }


  .quick-strip .inner {
    gap: 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .gallery img:first-child {
    grid-column: span 2;
    height: 380px;
  }

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

@media (max-width: 560px) {
  .nav-links a {
    padding: 8px 9px;
    font-size: .86rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    width: min(100% - 30px, var(--max));
    padding-bottom: 48px;
  }

  h1 {
    font-size: 3rem;
  }

  .section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gallery,
  .photo-pair,
  .ritual {
    grid-template-columns: 1fr;
  }

  .gallery img,
  .gallery img:first-child {
    grid-column: auto;
    height: 280px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
