:root {
  --bg: #faf9f7;
  --bg-alt: #f5f3f0;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --primary: #2c2c2c;
  --accent: #8b6f47;
  --line: #e8e4de;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.logo span {
  font-weight: 300;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 8px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text);
}

/* Hero */
.hero {
  padding: 120px 0 100px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--accent);
  margin: 0 0 24px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 28px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 400;
  border-radius: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #000;
  border-color: #000;
}

.btn-secondary:hover {
  border-color: var(--text);
  color: var(--text);
}

.hero-points {
  margin: 60px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 700px;
}

.hero-points li {
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
  padding-left: 24px;
}

.hero-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Section */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.section-intro {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 auto 60px;
  text-align: center;
}

/* Service cards - minimalist */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.card {
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Price table */
.price-table-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}

.price-table th,
.price-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--bg-alt);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table td:first-child {
  font-weight: 400;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--accent);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  text-align: center;
}

.photo {
  height: 140px;
  background: var(--bg-alt);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  border: 1px solid var(--line);
}

.gallery-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Care section */
.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-grid p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about-grid p:last-child {
  margin-bottom: 0;
}

.review-box {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
}

.review-box h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 24px;
  letter-spacing: 0.05em;
}

blockquote {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

blockquote:last-child {
  margin-bottom: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.contact-list li {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.contact-list strong {
  font-weight: 500;
  color: var(--text);
}

.contact-list a {
  color: var(--accent);
}

.contact-list a:hover {
  color: var(--primary);
}

.map {
  width: 100%;
  height: 280px;
  border: 1px solid var(--line);
  filter: grayscale(20%);
}

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--text);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  font: inherit;
  font-size: 0.95rem;
  margin-bottom: 20px;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  width: 100%;
  margin-top: 8px;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  min-height: 1.5em;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: var(--bg-alt);
}

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

.footer-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--text);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.floating-cta:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Call Modal */
.call-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: grid;
  place-items: center;
  z-index: 1000;
  padding: 20px;
}

.call-modal[hidden] {
  display: none;
}

.call-modal-content {
  background: #fff;
  padding: 40px 32px;
  max-width: 400px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.call-modal h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 28px;
  text-align: center;
  color: var(--text);
}

.call-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.call-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  color: var(--text);
}

.call-option:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.call-name {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.call-number {
  font-size: 0.95rem;
  color: var(--accent);
}

.call-option:hover .call-number {
  color: #fff;
}

.call-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s ease;
}

.call-close:hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .call-modal-content {
    padding: 32px 24px;
  }

  .floating-cta {
    right: 16px;
    bottom: 16px;
    padding: 12px 20px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .service-grid,
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-points {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .service-grid,
  .care-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .section {
    padding: 60px 0;
  }

  .floating-cta {
    right: 16px;
    bottom: 16px;
    padding: 12px 20px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Booking Section */
.booking-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.service-selector {
  margin-bottom: 30px;
  text-align: center;
}

.service-selector label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.1rem;
}

.service-selector select {
  padding: 12px 24px;
  font-size: 1rem;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  min-width: 200px;
}

.service-selector select:hover {
  border-color: var(--accent);
}

.calendar-container {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#calendar {
  max-width: 100%;
  margin: 0 auto;
}

/* FullCalendar Custom Styling */
.fc {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.fc-header-toolbar {
  margin-bottom: 20px !important;
}

.fc-button {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  text-transform: none !important;
}

.fc-button:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.fc-button-active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.fc-toolbar-title {
  font-size: 1.5rem !important;
  font-weight: 600;
}

.fc-day-today {
  background: linear-gradient(to bottom, #fff9f0 0%, #fff 100%) !important;
}

.fc-event {
  border: none !important;
  border-radius: 6px !important;
  padding: 4px 8px !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
}

.fc-event-time {
  font-weight: 600 !important;
}

.fc-daygrid-event {
  margin: 2px 0 !important;
}

.fc-col-header-cell {
  padding: 12px 4px !important;
  background: var(--bg-alt) !important;
}

.fc-scrollgrid {
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
}

.fc-daygrid-day {
  padding: 4px !important;
  vertical-align: top !important;
}

.fc-daygrid-day-number {
  padding: 8px !important;
  font-weight: 500;
}

/* Available time slots styling */
.available-slot {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 1px solid #4caf50;
  color: #1b5e20;
}

/* Booking Modal */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.booking-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.booking-modal-close:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.booking-form {
  margin-top: 20px;
}

.booking-form .form-group {
  margin-bottom: 20px;
}

.booking-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.95rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 1rem;
  border: 2px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.2s;
  font-family: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.booking-summary {
  background: var(--bg-alt);
  padding: 16px;
  border-radius: 8px;
  margin: 20px 0;
}

.booking-summary h4 {
  margin: 0 0 8px 0;
  font-size: 1rem;
  color: var(--text);
}

.booking-summary p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .calendar-container {
    padding: 12px;
  }
  
  .booking-modal-content {
    padding: 24px;
  }
  
  .fc-toolbar {
    flex-direction: column !important;
    gap: 12px;
  }
  
  .fc-toolbar > * {
    margin: 0 !important;
  }
}

/* Print */
@media print {
  .floating-cta,
  .menu-toggle,
  .site-header,
  .hero-actions,
  .map {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    padding: 20px 0;
  }

  .card,
  .gallery-card,
  .review-box,
  .price-table {
    break-inside: avoid;
    border: 1px solid #ccc;
  }
}
