/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --background: 40 30% 97%;
  --foreground: 30 15% 18%;
  --card: 38 25% 95%;
  --card-foreground: 30 15% 18%;
  --primary: 150 18% 38%;
  --primary-foreground: 40 30% 97%;
  --secondary: 35 28% 91%;
  --secondary-foreground: 30 15% 18%;
  --muted: 38 18% 93%;
  --muted-foreground: 30 10% 48%;
  --accent: 38 55% 55%;
  --accent-foreground: 30 15% 18%;
  --destructive: 0 84.2% 60.2%;
  --border: 35 20% 88%;
  --input: 35 20% 88%;
  --ring: 150 18% 38%;
  --warm-glow: 38 60% 70%;
  --sage-light: 150 15% 92%;
  --hero-overlay: 30 20% 10%;
  --radius: 0.5rem;
}

body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-80px);
  }

  to {
    transform: translateY(0);
  }
}

.navbar.scrolled {
  background: hsla(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.navbar-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar-logo .logo-img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(11%) saturate(1200%) hue-rotate(100deg) brightness(95%) contrast(88%);
  width: auto;
  height: 1.25rem;
}

.navbar-logo .mk-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
  letter-spacing: -0.025em;
  line-height: 1;
}

.navbar-logo .sub-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: hsl(var(--foreground));
}

.nav-links a.btn-book-nav {
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  background: hsl(var(--primary));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.3s;
}

.nav-links a.btn-book-nav:hover {
  background: hsl(var(--primary) / 0.9);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  color: hsl(var(--foreground));
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  background: hsla(var(--background) / 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: hsl(var(--foreground));
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--hero-overlay) / 0.55);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-subtitle {
  color: hsl(var(--primary-foreground) / 0.8);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .italic-glow {
  font-style: italic;
  color: hsl(var(--warm-glow));
}

.hero-desc {
  color: hsl(var(--primary-foreground) / 0.75);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

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

.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-hero-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-hero-primary:hover {
  background: hsl(var(--primary) / 0.9);
  transform: translateY(-1px);
}

.btn-hero-outline {
  background: transparent;
  border: 2px solid hsl(var(--primary-foreground) / 0.5);
  color: hsl(var(--primary-foreground));
}

.btn-hero-outline:hover {
  border-color: hsl(var(--primary-foreground));
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid hsl(var(--primary-foreground) / 0.4);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
  animation: fadeIn 1s ease 1.5s forwards;
  opacity: 0;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--primary-foreground) / 0.6);
  animation: bounce 2s infinite;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.section-alt {
  background: hsl(var(--secondary) / 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: hsl(var(--accent));
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.section-title .italic {
  font-style: italic;
}

.section-title .text-primary {
  color: hsl(var(--primary));
}

.section-desc {
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.value-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--card));
  transition: box-shadow 0.3s;
  margin-bottom: 1.5rem;
}

.value-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: hsl(var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.value-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  padding: 2rem;
  border-radius: 1rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border) / 0.5);
  transition: box-shadow 0.5s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}

.service-card:hover .service-icon {
  background: hsl(var(--primary) / 0.1);
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: hsl(var(--primary));
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
  transition: color 0.3s;
}

.service-link:hover {
  color: hsl(var(--primary) / 0.8);
}

.service-link:hover svg {
  transform: translateX(4px);
}

.service-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.quote-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--accent) / 0.4);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.star {
  width: 1rem;
  height: 1rem;
}

.star-filled {
  color: hsl(var(--accent));
  fill: hsl(var(--accent));
}

.star-empty {
  color: hsl(var(--border));
}

.testimonial-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.rating-summary .stars {
  margin-bottom: 0;
}

.rating-summary span {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.testimonial-disclaimer {
  margin-top: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-input {
  width: 100%;
  height: 3rem;
  padding: 0 0.75rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border) / 0.6);
  background: hsl(var(--background));
  font-size: 0.875rem;
  font-family: inherit;
  color: hsl(var(--foreground));
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.form-input::placeholder {
  color: hsl(var(--muted-foreground));
}

textarea.form-input {
  height: auto;
  padding: 0.75rem;
  resize: none;
}

.btn-submit {
  width: 100%;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: hsl(var(--primary) / 0.9);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.contact-info>div>p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: hsl(var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.contact-item span {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ===== FOOTER ===== */
.footer {
  padding: 2.5rem 0;
  background: hsl(var(--foreground));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand .mk {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--background));
}

.footer-brand span:last-child {
  font-size: 0.875rem;
  color: hsl(var(--background) / 0.5);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.75rem;
  color: hsl(var(--background) / 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: hsl(var(--background) / 0.8);
}

.footer-copy {
  font-size: 0.75rem;
  color: hsl(var(--background) / 0.4);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-copy svg {
  width: 12px;
  height: 12px;
  fill: hsl(var(--accent));
  color: hsl(var(--accent));
}