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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  color: #2a2a2a;
  background: #fffcf8;
  font-size: 16px;
}

.wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 20px;
}

.language-switch {
  text-align: right;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.language-switch a {
  color: #888;
  text-decoration: none;
  padding: 0 8px;
  border-bottom: 1px solid transparent;
}

.language-switch a:hover {
  color: #2a2a2a;
  border-bottom-color: #2a2a2a;
}

.language-switch .active {
  color: #2a2a2a;
  font-weight: 600;
}

h1 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.intro {
  margin-bottom: 60px;
}

.intro p {
  margin-bottom: 20px;
  color: #555;
}

.intro .greeting {
  font-size: 1.1rem;
  color: #2a2a2a;
}

.section {
  margin-bottom: 50px;
}

h2 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #888;
}

.service {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.service:last-child {
  border-bottom: none;
}

.service-name {
  color: #2a2a2a;
}

.service-price {
  color: #888;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #555;
}

.contact-label {
  min-width: 80px;
  color: #888;
  font-size: 0.9rem;
}

a {
  color: #2a2a2a;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
  transition: border-color 0.2s;
}

a:hover {
  border-color: #2a2a2a;
}

.book-button {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #ffda79, #f4c550);
  color: #2a2a2a;
  border: none;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 200, 100, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.book-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 200, 100, 0.4);
  border-color: transparent;
}

.note {
  margin-top: 40px;
  padding: 25px;
  background: #faf8f5;
  border-left: 3px solid #e8d4b0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.note p {
  margin-bottom: 12px;
}

.footer {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
  font-size: 0.85rem;
  color: #999;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px 0;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.logo-container {
  text-align: center;
}

.logo {
  height: 320px;
  margin-bottom: 10px;
}

.highlight {
  background: #ffda79;
  font-weight: 600;
  padding: 0 4px;
}

.subtitle {
  margin-bottom: 20px;
  color: #555;
}

.subtitle strong {
  font-weight: 600;
}

.checklist {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.price-info {
  margin-top: 20px;
  font-size: 1.1rem;
}

.availability {
  color: #888;
  font-size: 0.9rem;
}

.schedule-info {
  margin-bottom: 20px;
  color: #666;
  font-size: 0.95rem;
}

.schedule-box {
  background: #faf8f5;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.schedule-grid {
  display: grid;
  gap: 12px;
}

.schedule-row {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e8e8e8;
}

.schedule-row:last-child {
  border-bottom: none;
}

.day-label {
  min-width: 130px;
  font-weight: 500;
  color: #555;
  padding-right: 15px;
}

.time-slot {
  color: #2a2a2a;
}

.schedule-note {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

.deposit-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 20px;
}

.gallery-description {
  margin-bottom: 20px;
  color: #666;
}

.note-title {
  font-weight: bold;
}

.note-content {
  margin-top: 10px;
}

.note-final {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .wrapper {
    padding: 40px 20px;
  }

  h1 {
    font-size: 1.5rem;
  }

  .logo {
    height: 250px;
  }
}
