:root {
  --cream: #f7efe3;
  --linen: #e9d7be;
  --champagne: #cdb895;
  --wood: #b98252;
  --cocoa: #6b351c;
  --espresso: #3a1c12;
  --sage: #8d9a73;
  --white: #fffdf8;
  --shadow: 0 18px 45px rgba(58, 28, 18, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(58, 28, 18, 0.08);
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 82px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--wood);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--cocoa);
}

#menu-toggle {
  display: none;
}

.hero {
  min-height: 100vh;
  background:
	linear-gradient(rgba(58, 28, 18, 0.2), rgba(58, 28, 18, 0.45)),
	url("hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 80px;
  color: var(--white);
}

.hero-content {
  max-width: 780px;
  padding: 48px;
  background: rgba(58, 28, 18, 0.28);
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 28px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: uppercase;
}

.hero p {
  margin: 24px auto 34px;
  max-width: 570px;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  background: var(--wood);
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: 0.3s ease;
}

.btn:hover {
  background: var(--cocoa);
  transform: translateY(-2px);
}

section {
  padding: 96px 24px;
}

.container {
  max-width: 1120px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title span {
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}

.section-title h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cocoa);
}

.spa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.spa-card {
  background: var(--white);
  padding: 42px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.spa-card p {
  margin-bottom: 18px;
}

.feature-box {
  background: var(--linen);
  border-radius: 28px;
  padding: 38px;
  color: var(--espresso);
}

.feature-box h3 {
  color: var(--cocoa);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.services {
  background: var(--white);
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-box {
  background: var(--cream);
  padding: 38px;
  border-radius: 28px;
  border: 1px solid var(--linen);
  box-shadow: var(--shadow);
}

.service-box h3 {
  color: var(--cocoa);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 24px;
  text-align: center;
}

.service-box ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.service-box li {
  padding: 12px 16px;
  background: var(--white);
  border-radius: 14px;
  color: var(--espresso);
}

@media (max-width: 820px) {
  .service-columns {
    grid-template-columns: 1fr;
  }
}

.price {
  display: block;
  margin-top: 20px;
  color: var(--wood);
  font-weight: bold;
  letter-spacing: 0.08em;
}

.appointment {
  background: linear-gradient(135deg, var(--linen), var(--cream));
}

form {
  max-width: 760px;
  margin: auto;
  background: var(--white);
  padding: 42px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--champagne);
  border-radius: 14px;
  background: #fffaf4;
  color: var(--espresso);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(185, 130, 82, 0.28);
  border-color: var(--wood);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  text-align: center;
}

.contact-card {
  background: var(--white);
  padding: 34px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  color: var(--cocoa);
  margin-bottom: 10px;
  font-weight: 400;
}

footer {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  padding: 28px;
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .hamburger {
	display: flex;
  }

  .nav-links {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	background: var(--white);
	flex-direction: column;
	align-items: center;
	padding: 24px;
	gap: 22px;
	display: none;
  }

  #menu-toggle:checked ~ .nav-links {
	display: flex;
  }

  .spa-grid,
  .service-grid,
  .contact-grid,
  .form-row {
	grid-template-columns: 1fr;
  }

  .hero-content {
	padding: 34px 24px;
  }

  section {
	padding: 76px 20px;
  }
}