/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage-50: #f6f7f4;
  --sage-100: #e8ebe3;
  --sage-200: #d1d9c8;
  --sage-300: #b3c0a3;
  --sage-400: #95a77e;
  --sage-500: #7d8b6e;
  --sage-600: #627051;
  --sage-700: #4a5540;
  --sage-800: #3a4333;
  --sage-900: #2b3325;
  --sand-50: #faf8f5;
  --sand-200: #e8dfd4;
  --terracotta-300: #d4967d;
  --terracotta-400: #c4795b;
  --terracotta-500: #b06843;
  --terracotta-600: #9a5a3e;
  --cream: #fefcf8;
  --charcoal: #2d2d2d;
  --white: #ffffff;
  --red-500: #ef4444;
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--cream); line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: var(--sage-200); color: var(--sage-900); }

/* ===== Utilities ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.5rem; border-radius: 0.5rem; font-weight: 500;
  font-size: 0.875rem; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--terracotta-400); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta-600); }
.btn-secondary { background: var(--sage-100); color: var(--sage-800); }
.btn-secondary:hover { background: var(--sage-200); }
.btn-ghost { background: transparent; color: var(--sage-700); }
.btn-ghost:hover { background: var(--sage-50); }
.btn-lg { padding: 0.8rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--sage-200);
  background: rgba(254,252,248,0.92); backdrop-filter: blur(12px);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 4.5rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo img { height: 2.8rem; width: auto; border-radius: 0.5rem; }
.logo span { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--sage-900); }
.nav { display: flex; gap: 0.25rem; }
.nav a {
  padding: 0.5rem 0.75rem; border-radius: 0.5rem; font-size: 0.875rem;
  font-weight: 500; color: var(--sage-600); transition: all 0.2s;
}
.nav a:hover, .nav a.active { background: var(--sage-100); color: var(--sage-900); }
.menu-toggle { display: none; background: none; border: none; padding: 0.5rem; cursor: pointer; color: var(--sage-700); }

/* ===== Mobile Nav ===== */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 100;
}
.mobile-nav.open { display: block; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(45,45,45,0.4); }
.mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
  background: var(--cream); box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  display: flex; flex-direction: column;
}
.mobile-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem; border-bottom: 1px solid var(--sage-200);
}
.mobile-panel-header .logo img { height: 2.2rem; }
.mobile-panel-header .logo span { font-size: 1.1rem; }
.close-btn { background: none; border: none; padding: 0.5rem; cursor: pointer; color: var(--sage-700); }
.mobile-nav-links { padding: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-links a {
  display: block; padding: 0.75rem 1rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: var(--sage-600); transition: all 0.2s;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active { background: var(--sage-100); color: var(--sage-900); }

/* ===== Section Heading ===== */
.section { padding: 5rem 0; }
.section-heading { margin-bottom: 2.5rem; }
.section-heading h2 { font-size: 2rem; color: var(--sage-900); }
.section-heading p { margin-top: 0.75rem; font-size: 1.1rem; color: var(--sage-500); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  justify-content: center; background: var(--sage-900); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; opacity: 0.2;
  background: radial-gradient(circle at 30% 50%, var(--sage-600) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, var(--terracotta-400) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; text-align: center; padding: 2rem 1rem; max-width: 700px; }
.hero-label { font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--sage-300); margin-bottom: 1rem; }
.hero h1 { font-size: 3.5rem; font-weight: 700; color: var(--cream); }
.hero h1 span { color: var(--terracotta-300); }
.hero-desc { margin-top: 1.5rem; font-size: 1.15rem; color: var(--sage-200); line-height: 1.7; max-width: 540px; margin-left: auto; margin-right: auto; }
.hero-buttons { margin-top: 2.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero .btn-ghost { color: var(--cream); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.1); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--sage-400); animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }

/* ===== Cards ===== */
.card {
  border: 1px solid var(--sage-200); border-radius: 1rem; padding: 1.5rem;
  background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.card-icon { display: inline-flex; padding: 0.75rem; border-radius: 0.75rem; background: var(--sage-50); color: var(--sage-600); margin-bottom: 1rem; }
.card h3 { font-size: 1.15rem; color: var(--sage-900); }
.card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--sage-500); line-height: 1.6; }
.card-meta { margin-top: 1rem; display: flex; justify-content: space-between; font-size: 0.875rem; }
.card-meta .duration { color: var(--sage-400); }
.card-meta .price { font-weight: 600; color: var(--terracotta-500); }
.badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 999px; background: var(--sage-50); font-size: 0.75rem; font-weight: 500; color: var(--sage-600); }

/* ===== Grid ===== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

/* ===== Testimonials ===== */
.testimonials { background: var(--sage-50); }
.testimonial { border: 1px solid var(--sage-200); border-radius: 1rem; padding: 1.5rem 2rem; background: var(--white); }
.testimonial-quote { color: var(--terracotta-300); font-size: 2rem; line-height: 1; margin-bottom: 0.75rem; }
.testimonial p { font-size: 0.9rem; color: var(--sage-600); line-height: 1.7; }
.testimonial-author { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--sage-100); }
.testimonial-author strong { color: var(--sage-900); font-size: 0.9rem; }
.testimonial-author small { display: block; color: var(--sage-400); font-size: 0.75rem; }

/* ===== CTA Banner ===== */
.cta-banner { background: var(--sage-800); padding: 4rem 0; text-align: center; }
.cta-banner h2 { font-size: 2rem; color: var(--cream); }
.cta-banner p { margin-top: 1rem; color: var(--sage-300); max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { margin-top: 2rem; }

/* ===== Blog Cards ===== */
.blog-card { display: block; }
.blog-card .card { height: 100%; display: flex; flex-direction: column; }
.blog-card .card p { flex: 1; }
.blog-date { margin-top: 1rem; font-size: 0.75rem; color: var(--sage-400); }

/* Blog list card (horizontal) */
.blog-list-card { display: flex; flex-direction: column; gap: 1rem; }
.blog-list-card .blog-thumb {
  height: 160px; border-radius: 0.75rem; background: var(--sage-100);
  display: flex; align-items: center; justify-content: center; color: var(--sage-400);
}
.blog-list-card .blog-info { flex: 1; }

/* Blog post */
.blog-post { max-width: 720px; margin: 0 auto; }
.blog-post h1 { font-size: 2.5rem; color: var(--sage-900); }
.blog-post .post-meta { margin-top: 1rem; font-size: 0.875rem; color: var(--sage-400); }
.blog-post .post-content { margin-top: 2.5rem; }
.blog-post .post-content h2 { font-size: 1.5rem; color: var(--sage-900); margin: 2rem 0 1rem; }
.blog-post .post-content p { margin-bottom: 1rem; color: var(--sage-600); line-height: 1.8; }
.blog-post .post-content ul { margin-bottom: 1rem; padding-left: 1.25rem; list-style: disc; }
.blog-post .post-content li { color: var(--sage-600); margin-bottom: 0.5rem; line-height: 1.7; }
.blog-back { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; color: var(--sage-400); margin-bottom: 1.5rem; }
.blog-back:hover { color: var(--sage-600); }
.post-cta { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--sage-200); text-align: center; }
.post-cta p { color: var(--sage-500); }
.post-cta .btn { margin-top: 1rem; }

/* ===== About ===== */
.about-story { background: var(--sage-50); }
.about-text { max-width: 720px; margin: 0 auto; }
.about-text p { color: var(--sage-600); line-height: 1.8; margin-bottom: 1.25rem; }
.about-text p:first-child { font-size: 1.1rem; }
.values-grid .card { text-align: center; }
.values-grid .card h3 { font-size: 1.15rem; }
.team-section { background: var(--sand-50); }
.team-card { border: 1px solid var(--sage-200); border-radius: 1rem; padding: 1.5rem; background: var(--white); text-align: center; }
.team-avatar {
  width: 5rem; height: 5rem; border-radius: 50%; background: var(--sage-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; color: var(--sage-600);
  margin: 0 auto 1rem;
}
.team-card h3 { font-size: 1.1rem; color: var(--sage-900); }
.team-card .role { font-size: 0.875rem; color: var(--terracotta-400); font-weight: 500; }
.team-card p:last-child { margin-top: 0.75rem; font-size: 0.875rem; color: var(--sage-500); line-height: 1.6; }

/* ===== Services ===== */
.service-card .card { display: flex; flex-direction: column; height: 100%; }
.service-card .card p { flex: 1; }
.service-card .card-footer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--sage-100); display: flex; justify-content: space-between; align-items: center; }
.service-card .btn { margin-top: 1rem; }

/* ===== Booking ===== */
.booking-form { max-width: 600px; margin: 0 auto; }
.steps { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.step-circle {
  width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.8rem; font-weight: 500;
}
.step-circle.active { background: var(--terracotta-400); color: var(--cream); }
.step-circle.done { background: var(--sage-500); color: var(--cream); }
.step-circle.pending { background: var(--sage-100); color: var(--sage-400); }
.step-line { width: 2rem; height: 2px; }
.step-line.done { background: var(--sage-500); }
.step-line.pending { background: var(--sage-200); }
.step-content h3 { font-size: 1.1rem; color: var(--sage-900); margin-bottom: 1rem; }
.service-option {
  border: 1px solid var(--sage-200); border-radius: 0.75rem; padding: 1rem;
  cursor: pointer; transition: all 0.2s; text-align: left; background: var(--white); width: 100%;
}
.service-option:hover { border-color: var(--sage-300); }
.service-option.selected { border-color: var(--terracotta-400); background: rgba(196,121,91,0.05); box-shadow: 0 0 0 1px var(--terracotta-400); }
.service-option strong { color: var(--sage-900); font-size: 0.95rem; }
.service-option small { color: var(--sage-400); font-size: 0.8rem; }
.service-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.time-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.time-slot {
  padding: 0.5rem; border: 1px solid var(--sage-200); border-radius: 0.5rem;
  font-size: 0.8rem; cursor: pointer; background: var(--white); color: var(--sage-700); transition: all 0.2s;
}
.time-slot:hover { border-color: var(--sage-300); }
.time-slot.selected { background: var(--terracotta-400); color: var(--cream); border-color: var(--terracotta-400); }
.time-slot:disabled { cursor: not-allowed; color: var(--sage-300); text-decoration: line-through; border-color: var(--sage-100); }
.step-buttons { margin-top: 1.5rem; display: flex; justify-content: space-between; }
.review-box { border: 1px solid var(--sage-200); border-radius: 0.75rem; background: var(--sage-50); padding: 1.25rem; }
.review-row { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 0.5rem; }
.review-row .label { color: var(--sage-500); }
.review-row .value { font-weight: 500; color: var(--sage-900); }
.review-total { border-top: 1px solid var(--sage-200); padding-top: 0.75rem; margin-top: 0.5rem; }
.review-total .value { font-size: 1.15rem; font-weight: 700; color: var(--terracotta-500); }
.confirm-box { border: 1px solid var(--sage-200); border-radius: 1rem; background: var(--sage-50); padding: 2rem; text-align: center; }
.confirm-box h3 { font-size: 1.5rem; color: var(--sage-900); margin-top: 0.5rem; }
.confirm-box p { color: var(--sage-500); margin-top: 0.5rem; }
.confirm-details { background: var(--white); border-radius: 0.5rem; padding: 1rem; margin-top: 1rem; font-size: 0.875rem; color: var(--sage-700); }

/* ===== Gallery ===== */
.gallery-grid { columns: 1; gap: 1rem; }
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem; border-radius: 0.75rem;
  overflow: hidden; border: 1px solid var(--sage-200); cursor: pointer;
  transition: box-shadow 0.3s;
}
.gallery-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.gallery-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--sage-100); color: var(--sage-400); padding: 2rem; text-align: center;
}
.gallery-placeholder svg { width: 2rem; height: 2rem; margin-bottom: 0.5rem; }
.gallery-placeholder span { font-size: 0.75rem; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(45,45,45,0.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.1); border: none;
  color: white; border-radius: 50%; width: 3rem; height: 3rem;
  cursor: pointer; font-size: 1.25rem; transition: background 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-content {
  background: var(--sage-100); border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  max-width: 80vw; color: var(--sage-500); padding: 3rem; text-align: center;
}
.lightbox-counter { position: absolute; bottom: 1rem; color: rgba(255,255,255,0.5); font-size: 0.875rem; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 960px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--sage-700); margin-bottom: 0.25rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.65rem 1rem; border: 1px solid var(--sage-200);
  border-radius: 0.5rem; font-family: var(--font-body); font-size: 0.9rem;
  color: var(--charcoal); transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--sage-400); box-shadow: 0 0 0 3px rgba(125,139,110,0.15);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--sage-400); }
.form-group .error { color: var(--red-500); font-size: 0.75rem; margin-top: 0.25rem; }
.contact-info {
  border: 1px solid var(--sage-200); border-radius: 1rem;
  background: var(--sage-50); padding: 1.5rem;
}
.contact-info h4 {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--sage-400); margin-bottom: 0.5rem;
}
.contact-info p { font-size: 0.875rem; color: var(--sage-700); line-height: 1.6; }
.contact-info .info-block { margin-bottom: 1.5rem; }
.contact-info .info-block:last-child { margin-bottom: 0; }
.contact-info .note { font-size: 0.75rem; color: var(--sage-500); }
.form-success {
  border: 1px solid var(--sage-200); border-radius: 1rem;
  background: var(--sage-50); padding: 2rem; text-align: center;
}
.form-success h3 { font-size: 1.25rem; color: var(--sage-900); margin-top: 0.5rem; }
.form-success p { color: var(--sage-500); margin-top: 0.5rem; }

/* ===== Footer ===== */
.footer { background: var(--sage-900); color: var(--sage-200); border-top: 1px solid var(--sage-200); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
.footer .logo img { height: 2.5rem; }
.footer .logo span { color: var(--cream); }
.footer h3 { font-size: 1.15rem; font-weight: 700; color: var(--cream); }
.footer h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sage-400); margin-bottom: 0.75rem; }
.footer-desc { margin-top: 0.75rem; font-size: 0.875rem; color: var(--sage-300); line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--sage-300); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-address { font-size: 0.875rem; color: var(--sage-300); line-height: 1.6; }
.footer-address .note { font-size: 0.75rem; color: var(--sage-400); }
.footer-bottom {
  border-top: 1px solid var(--sage-700); padding: 1.5rem 0;
  text-align: center; font-size: 0.75rem; color: var(--sage-400);
}

/* ===== 404 ===== */
.not-found { display: flex; align-items: center; justify-content: center; min-height: 60vh; text-align: center; }
.not-found .code { font-size: 4rem; font-weight: 700; color: var(--sage-200); }
.not-found h1 { margin-top: 1rem; font-size: 1.5rem; color: var(--sage-900); }
.not-found p { color: var(--sage-500); margin-top: 0.5rem; }
.not-found .btn { margin-top: 1.5rem; }

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
  .service-options { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 7rem 0; }
  .section-heading h2 { font-size: 2.5rem; }
  .hero h1 { font-size: 4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .contact-grid { grid-template-columns: 3fr 2fr; }
  .blog-list-card { flex-direction: row; }
  .blog-list-card .blog-thumb { width: 200px; min-width: 200px; height: auto; }
  .gallery-grid { columns: 3; }
}

@media (max-width: 767px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 2.5rem; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
}
