* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8f5f0;
  color: #4b3f37;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

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

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

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

section {
  padding: 7rem 0;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: #9b7d62;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: white;
  color: #4b3f37;
}

.btn-primary:hover {
  background: #f0e7dd;
}

.btn-outline {
  border: 1px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #4b3f37;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?q=80&w=2070&auto=format&fit=crop');

  background-size: cover;
  background-position: center;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.logo h1 {
  font-size: 2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.logo p {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - 120px);
  max-width: 900px;
  margin: 0 auto;
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  margin-bottom: 2rem;
}

.hero h2 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  opacity: 0.9;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  align-items: center;
}

.about h3,
.massage-services h3,
.testimonials h3,
.contact h3 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.about p {
  color: #6c5b4f;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.9;
}



.about img {
  border-radius: 2rem;
  height: 700px;
  object-fit: cover;
}



.section-header {
  max-width: 750px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-header p:last-child {
  color: #6c5b4f;
  font-size: 1.1rem;
  line-height: 1.9;
}

.quote {
  background: #5c4b42;
  color: white;
  text-align: center;
}

.quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-style: italic;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #f8f5f0;
  padding: 3rem;
  border-radius: 2rem;
}

.quote-mark {
  font-size: 4rem;
  color: #c8b4a0;
}

.testimonial-card p {
  color: #6c5b4f;
  line-height: 1.9;
}

.client-name {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #9b7d62;
  margin-top: 2rem;
}

.contact {
  background: #f4eee6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 2rem;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: #9b7d62;
  margin-bottom: 1rem;
}

button {
  background: #5c4b42;
  color: white;
}

footer {
  background: #3f332d;
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo h4 {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.footer-logo p,
footer small {
  opacity: 0.7;
  margin-top: 0.5rem;
}

@media (max-width: 1000px) {

  .about-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  nav,
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .nav-links,
  .stats,
  .hero-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}









.massage-services {
  background: #ffffff;
}

.massage-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.massage-card {
  background: #f8f5f0;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.massage-card:hover {
  transform: translateY(-10px);
}

.massage-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.massage-card-content {
  padding: 2.5rem;
}

.massage-duration {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: #9b7d62;
  margin-bottom: 1rem;
}

.massage-card h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4b3f37;
}

.massage-card p {
  color: #6c5b4f;
  line-height: 1.8;
}

/* Responsive */

@media (max-width: 1000px) {

  .massage-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .massage-card-grid {
    grid-template-columns: 1fr;
  }

}

.link-wrapper {
  margin-top: 3rem;
}

.link-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #6b8e7b;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-button:hover {
  background: #587665;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}