
:root {
  --primary-color: #C4916C;
  --primary-light: #E8D5C4;
  --primary-dark: #A17657;
  --text-color: #2C3E50;
  --text-light: #5E738A;
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --gray: #F2F1EF;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-sm: 6px;
  --spacing: 2rem;
  --container-max-width: 1120px;
  --font-serif: 'Merriweather', serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-serif);
  color: var(--text-color);
  line-height: 1.65;
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  width: 92%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

.logo a {
  color: var(--text-color);
  display: flex;
  align-items: center;
}

.logo span {
  display: none;
}

@media (min-width: 768px) {
  .logo span {
    display: inline;
  }
}

.nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav__toggle {
  display: block;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav__bar {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--text-color);
  transition: all 0.3s ease;
}

.nav__list {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  min-width: 240px;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

.nav__list.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__list li {
  margin-bottom: 8px;
}

.nav__list a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.nav__list a:hover {
  background: var(--gray);
}

.nav__cta {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 16px !important;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 8px;
}

.nav__cta:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #ffffff 0%, #FAF8F5 100%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.1fr 1fr;
  }
}

.hero__text {
  padding-bottom: 20px;
}

.hero__title {
  margin-bottom: 20px;
  color: var(--text-color);
}

.hero__subtitle {
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual-inner {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
}

.visual-shape {
  position: absolute;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  opacity: 0.08;
  border-radius: 24px;
}

.visual-shape:nth-child(1) {
  width: 160px;
  height: 160px;
  top: 20px;
  left: 40px;
  transform: rotate(-12deg);
}

.visual-shape--delayed {
  width: 120px;
  height: 120px;
  bottom: 20px;
  right: 60px;
  transform: rotate(18deg);
  animation-delay: 0.5s;
}

.visual-shape--delayed-2 {
  width: 90px;
  height: 90px;
  top: 40%;
  right: 20%;
  transform: rotate(-8deg);
  animation-delay: 1s;
}

/* Section */
.section {
  padding: 80px 0;
}

.section--light {
  background-color: var(--off-white);
}

.section__title {
  text-align: center;
  margin-bottom: 40px;
}

/* About Section */
.about__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .about__content {
    grid-template-columns: 1.2fr 1fr;
  }
}

.feature-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.feature-card h3 {
  color: var(--text-color);
  margin-bottom: 8px;
}

/* Services Section */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-icon {
  margin-bottom: 16px;
}

.service-card h3 {
  color: var(--text-color);
  margin-bottom: 12px;
}

/* Booking Section */
.booking__wrapper {
  text-align: center;
  padding: 0 20px;
}

.booking__wrapper h2 {
  color: var(--text-color);
}

.booking__wrapper > p {
  margin-bottom: 20px;
}

/* Pricing Section */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card--popular {
  position: relative;
  border: 2px solid var(--primary-color);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card__header {
  margin-bottom: 20px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 24px;
}

.pricing-card__features li {
  padding: 8px 0;
  position: relative;
  padding-left: 24px;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn--primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-dark);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-light);
}

.btn--secondary:hover {
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.btn--outline {
  border: 2px solid var(--primary-light);
  color: var(--text-color);
}

.btn--outline:hover {
  background: var(--primary-light);
  color: var(--text-color);
}

/* Team Section */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.team-member {
  text-align: center;
}

.team-member__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: var(--primary-light);
  border-radius: 50%;
}

.team-member h3 {
  color: var(--text-color);
  margin-bottom: 4px;
}

.team-member__title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

/* Testimonials Section */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '“';
  font-size: 5rem;
  position: absolute;
  top: -10px;
  left: -10px;
  color: var(--primary-light);
  font-family: var(--font-serif);
  line-height: 1;
}

.testimonial-card blockquote {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.0625rem;
  position: relative;
  z-index: 1;
}

.testimonial-card figcaption {
  font-family: var(--font-sans);
}

.testimonial-card strong {
  font-weight: 700;
  color: var(--text-color);
}

.testimonial-card span {
  font-size: 0.875rem;
  color: var(--primary-dark);
}

/* Contact Section */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  background: var(--off-white);
  padding: 32px;
  border-radius: var(--radius);
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info a {
  color: var(--text-color);
  font-weight: 600;
}

.social-links {
  margin-top: 24px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #E0E5EC;
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(196, 145, 108, 0.1);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  padding: 60px 0;
  text-align: center;
}

.cta__inner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta__inner > p {
  color: var(--white);
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-section .btn {
  background: var(--white);
  color: var(--primary-color);
}

.cta-section .btn:hover {
  background: var(--off-white);
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--text-color);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 2fr;
  }
}

.footer__logo h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.footer__logo p {
  color: #ABB8C7;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 767px) {
  .footer__links {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #ABB8C7;
}

.footer-col a:hover {
  color: var(--white);
}

.footer__copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-color);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .nav__toggle {
    position: relative;
    z-index: 101;
  }

  .nav__list {
    position: static;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
  }

  .nav__list li {
    margin: 0;
  }

  .nav__list a {
    padding: 10px 0;
  }

  .nav__cta {
    margin-top: 0;
    display: inline;
  }

  .hero__visual-inner {
    max-width: 400px;
  }

  .booking__wrapper h2 {
    margin-bottom: 16px;
  }
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
  
  .visual-shape--delayed {
    animation: float 6s ease-in-out infinite;
  }
  
  .visual-shape--delayed-2 {
    animation: float 7s ease-in-out 1s infinite;
  }
}
