@font-face {
  font-family: "Stevens";
  src:
    url("../fonts/StevensTitling.woff2") format("woff2"),
    url("../fonts/StevensTitling.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

:root {
  --black: #050403;
  --brown: #21150e;
  --cream: #f6ead6;
  --cream2: #fff7e8;
  --gold: #d4aa61;
  --gold2: #f1d08a;
  --text: #2b1f16;
  --muted: #6e5c4a;
  --line: rgba(212, 170, 97, 0.35);
  --radius: 22px;

  --serif: "Stevens", serif;
  --sans: "Montserrat", sans-serif;
}

/* RESET */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f4e8cf;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 42px));
  margin: auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 22px;
  left: 0;
  right: 0;
  z-index: 999;
  pointer-events: none;
}

.nav-wrap {
  height: 78px;
  background: rgba(255, 247, 232, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  box-shadow: 0 24px 70px rgba(43, 31, 22, 0.16);
  pointer-events: auto;
}

.brand {
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  letter-spacing: 0.16em;
  color: #24160f;
}

.brand-sub {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 0.34em;
  font-weight: 700;
  color: #3b2b20;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2b1f16;
  transition: color 0.25s ease;
}

.main-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav ul a:hover {
  color: #8f642c;
}

.main-nav ul a:hover::after {
  width: 100%;
}

.nav-cta {
  min-height: 48px;
  padding-inline: 26px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #2b1f16;
  font-size: 28px;
  cursor: pointer;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #21150e;
  box-shadow: 0 16px 30px rgba(212, 170, 97, 0.24);
}

.btn-outline {
  border-color: var(--line);
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
}

/* HERO */
.hero {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  color: #fff;

  background:
    linear-gradient(90deg, rgb(5 4 3 / 70%) 0%, rgba(5, 4, 3, 0.70) 100%, rgba(5, 4, 3, 0.18) 12%, rgba(5, 4, 3, 0.35) 100%), url(../img/spa-bg.webp);

  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;

  padding: 185px 0 80px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 5.4vw, 78px);
  line-height: 0.98;
  margin: 22px 0 18px;
  max-width: 660px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fffaf2;
}

.hero p {
  max-width: 520px;
  line-height: 1.75;
  color: #e7d7c4;
  font-size: 15px;
  font-weight: 400;
}

.review-card {
  position: absolute;
  right: 11%;
  top: 44%;
  width: 300px;
  padding: 24px;
  border: 1px solid rgba(212, 170, 97, 0.28);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255,255,255,0.05);
  z-index: 4;
}

/* LIGHT SECTION */
.section-light {
  background: var(--cream2);
}

/* ABOUT */
.about {
  padding: 76px 0 64px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  height: 320px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)),
    url("../img/about-spa.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 4.6vw, 58px);
  line-height: 0.98;
  margin: 14px 0 22px;
  font-weight: 400;
  letter-spacing: 0.015em;
  color: var(--text);
}

.about p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.feature-list {
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
}

.feature-list span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #5a351f;
  color: var(--gold2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 13px;
}

/* SERVICES */
.massage-grid {
  grid-template-columns: repeat(3, 1fr);
}

.massage-card {
  position: relative;
  min-height: 360px;
}

.massage-card .service-img {
  height: 190px;
}

.massage-card .service-body {
  min-height: 170px;
}

.service-reserve {
  position: absolute;

  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.08),
      rgba(0,0,0,.62)
    );

  color: #fff;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;

  opacity: 0;

  transition:
    opacity .28s ease,
    backdrop-filter .28s ease;

  backdrop-filter: blur(2px);

  z-index: 3;
}
.massage-card:hover .service-reserve {
  opacity: 1;
}

.massage-card:hover .service-img img {
  transform: scale(1.05);
  filter: brightness(.72);
}
.massage-card .service-img {
  position: relative;
  overflow: hidden;
}

.massage-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
    transform .45s ease,
    filter .45s ease;
}

@media (max-width: 620px) {
  .massage-grid {
    grid-template-columns: 1fr;
  }
}

.services {
  padding: 50px 0 86px;
}
.facial-grid {
  grid-template-columns: repeat(4, 1fr);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.service-card {
  background: #23150e;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(53, 29, 14, 0.18);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(53, 29, 14, 0.28);
}

.service-img {
  height: 160px;
  background: linear-gradient(135deg, #130b07, #8a5730);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  padding: 18px;
}

.service-body h3 {
  font-family: var(--serif);
  font-size: 30px;
  margin: 0 0 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.service-body p {
  font-size: 13px;
  color: #d8c2aa;
  line-height: 1.55;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  color: var(--gold2);
  font-weight: 700;
  font-size: 13px;
}
.services-heading {
  margin-bottom: 60px;
}

.services-heading h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  line-height: .95;
  margin-bottom: 18px;
  font-weight: 400;
}

.services-heading p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
}
.service-category {
  margin-top: 90px;
}

.category-head {
  margin-bottom: 30px;
}

.category-head h3 {
  font-family: var(--serif);
  font-size: clamp(36px, 3vw, 52px);
  line-height: 1;
  margin-top: 12px;
  font-weight: 400;
}
.services-table-wrap {
  margin-top: 34px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(212,170,97,.18);
  background: #fffaf4;
  box-shadow: 0 18px 40px rgba(43,31,22,.06);
}

.services-table {
  width: 100%;
  border-collapse: collapse;
}

.services-table thead {
  background: #2a190f;
  color: #f4dfbd;
}

.services-table th {
  padding: 18px 24px;
  text-align: left;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.services-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(43,31,22,.08);
  font-size: 15px;
  color: #3a2a1e;
}

.services-table tr:last-child td {
  border-bottom: none;
}

.services-table tbody tr:hover {
  background: rgba(212,170,97,.05);
}
.other-services {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.other-service {
  padding: 16px 24px;
  border-radius: 999px;
  background: #fff8ef;
  border: 1px solid rgba(212,170,97,.18);
  font-weight: 600;
  color: #3b2a1d;
}

/* EXPERIENCE */
.experience {
  min-height: 330px;
  background: linear-gradient(120deg, #0a0604, #302015);
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.experience-content {
  position: relative;
  z-index: 2;
}

.experience h2 {
  font-family: var(--serif);
  font-size: 64px;
  max-width: 900px;
  line-height: 0.95;
  font-weight: 400;
  margin: 16px auto;
  letter-spacing: 0.02em;
}

.experience-tags {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  color: #ead6bb;
  font-size: 13px;
}

/* BOOKING */
.booking {
  padding: 82px 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
}

.booking-form,
.contact-card {
  background: #2a190f;
  color: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--line);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form h2 {
  grid-column: 1 / -1;
  color: #fff;
}

.booking-form input,
.booking-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  font-family: var(--sans);
}

.booking-form button {
  grid-column: 1 / -1;
  border: 0;
  cursor: pointer;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  color: #ead6bb;
}

/* FOOTER */
.site-footer {
  background: #020201;
  color: #f5dfbe;
  padding: 58px 0;
  text-align: center;
}

.footer-inner {
  border-top: 1px solid rgba(212, 170, 97, 0.25);
  padding-top: 34px;
}

.footer-logo {
  color: var(--gold2);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 18px;
  color: var(--gold2);
}

@media (max-width: 900px) {
.about {
  padding: 64px 0 54px;
}

.about-grid {
  grid-template-columns: 1fr;
  gap: 34px;
}

.about-image {
  height: 260px;
  width: 100%;
}

.about h2 {
  font-size: clamp(38px, 11vw, 54px);
  line-height: 1;
}
  .site-header {
    top: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 21px;
    right: 21px;
    top: 88px;

    background: rgba(255, 247, 232, 0.96);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    padding: 22px;

    border-radius: 18px;

    flex-direction: column;
    align-items: flex-start;

    box-shadow:
      0 24px 60px rgba(43, 31, 22, 0.18);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero {
    min-height: 720px;

    padding: 150px 0 70px;

    background:
      linear-gradient(
        180deg,
        rgba(5, 4, 3, 0.86) 0%,
        rgba(5, 4, 3, 0.72) 38%,
        rgba(5, 4, 3, 0.90) 100%
      ),
      url("../img/spa-bg.webp");

    background-size: cover;
    background-position: center top;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 1;
    max-width: 100%;
  }

  .hero p {
    max-width: 92%;
    font-size: 14px;
  }

  .review-card {
    position: relative;

    right: auto;
    top: auto;

    width: min(100%, 340px);

    margin-top: 28px;
  }

}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 12px;
  }

  .nav-wrap {
    height: 68px;
    padding: 0 16px;
  }

  .brand-name {
    font-size: 30px;
  }

  .brand-sub {
    font-size: 8px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

 .about {
    padding: 54px 0 46px;
  }

  .about-image {
    height: 230px;
    border-radius: 16px;
  }

  .about h2 {
    font-size: 42px;
    max-width: 340px;
  }

  .about p {
    font-size: 14px;
  }
  .services h2,
  .experience h2,
  .booking h2 {
    font-size: 44px;
  }
}