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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #f9f7f4;
  line-height: 1.6;
}

/* Header & Navigation */
header {
  background-color: #fff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #000;
}

.logo span {
  font-style: italic;
  font-weight: 400;
  margin-right: 0.5rem;
}

nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}

nav a:hover {
  color: #666;
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #000;
}

.btn-book {
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}

.btn-book:hover {
  background-color: #333;
}

/* Hero Section */
.hero {
  padding: 6rem 2rem;
  text-align: center;
  background-color: #f9f7f4;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.btn-primary {
  background-color: #000;
  color: #fff;
  padding: 1.1rem 2.5rem;
  border-radius: 0.35rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  border: 2px solid #000;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #000;
  padding: 1.1rem 2.5rem;
  border: 2px solid #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  text-transform: uppercase;
  border-radius: 0.35rem;
}

.btn-secondary:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary::after {
  content: '';
}

/* About Section */
.about-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.about-section .subtitle {
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
  padding: 4rem 2rem;
  background-color: #f9f7f4;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.services-header p {
  font-size: 1rem;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.service-card {
  background-color: #fff;
  padding: 2.5rem;
  border-bottom: 1px solid #e0e0e0;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: #888;
  letter-spacing: 0.05em;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  line-height: 1.3;
}

.service-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.feature::before {
  content: '✓';
  color: #000;
  font-weight: bold;
  flex-shrink: 0;
}

/* Contact Section */
.contact-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.contact-header p {
  font-size: 1rem;
  color: #666;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.contact-details {
  padding: 2rem 0;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-info p {
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid #ddd;
  font-family: inherit;
  font-size: 0.95rem;
  color: #333;
  background-color: transparent;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 1.2em;
  padding-right: 1.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-bottom-color: #000;
}

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

.form-submit {
  grid-column: 1 / -1;
  margin-top: 2rem;
}

.form-submit .btn-primary {
  width: 100%;
  max-width: 300px;
}

/* Footer */
footer {
  background-color: #f9f7f4;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

footer p {
  font-size: 0.9rem;
  color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  nav {
    gap: 1.5rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  header nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .services-header h2,
  .contact-header h2 {
    font-size: 1.75rem;
  }

  .service-title {
    font-size: 1.25rem;
  }
}
