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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.8;
  color: #2c2c2c;
  background: #fafafa;
  overflow-x: hidden;
}

header {
  background: linear-gradient(135deg, #f5e6d3 0%, #e8d5c4 50%, #f0e5d8 100%);
  color: #4a4a4a;
  padding: 5rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d48fa1, transparent);
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 300;
  letter-spacing: 8px;
  margin-bottom: 1rem;
  color: #5a4a42;
  text-transform: uppercase;
}

.tagline {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8b6f5f;
  font-weight: 300;
  margin-bottom: 2rem;
}

.header-cta {
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #e6c34d;
  color: #4a4a4a;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: 2px solid #e6c34d;
}

.cta-button:hover {
  background: transparent;
  color: #e6c34d;
}

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

.section {
  padding: 6rem 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section:nth-child(1) {
  animation-delay: 0.1s;
}
.section:nth-child(2) {
  animation-delay: 0.2s;
}
.section:nth-child(3) {
  animation-delay: 0.3s;
}
.section:nth-child(4) {
  animation-delay: 0.4s;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
  color: #4a4a4a;
  letter-spacing: 2px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: #9b7b7b;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #8ba89a;
  margin: 1.5rem auto 0;
}

.about-section {
  background: #faf5f2;
  padding: 6rem 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 2;
  color: #8b6f6f;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: #d48fa1;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-item:nth-child(even) .stat-number {
  color: #8ba89a;
}

.stat-item:nth-child(3n) .stat-number {
  color: #e6c34d;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9b7b7b;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: #fff;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 3px solid #8ba89a;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #4a4a4a;
  transition: width 0.4s ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #7a5860;
}

.service-card p {
  font-size: 0.95rem;
  color: #7a7a7a;
  line-height: 1.8;
  font-weight: 300;
}

.hours-section {
  background: #f5f9f7;
  color: #4a4a4a;
  padding: 6rem 0;
}

.hours-section h2 {
  color: #4a4a4a;
}

.hours-section h2::after {
  background: #8ba89a;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  max-width: 800px;
  margin: 4rem auto 0;
  border: 1px solid #d9e8e2;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #d9e8e2;
  transition: background 0.3s ease;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item:hover {
  background: rgba(139, 168, 154, 0.08);
}

.day {
  font-weight: 500;
  letter-spacing: 1px;
}

.time {
  color: #8ba89a;
  font-weight: 300;
}

.contact-section {
  background: #faf5f2;
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  font-size: 1.5rem;
  color: #d48fa1;
  min-width: 30px;
}

.contact-content {
  flex: 1;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9b7b7b;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-text {
  font-size: 1rem;
  color: #2c2c2c;
  line-height: 1.6;
}

.contact-text a {
  color: #2c2c2c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #d48fa1;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #4a4a4a;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
}

.social-btn:hover {
  background: #e6c34d;
  transform: translateY(-3px);
}

.social-btn svg {
  width: 24px;
  height: 24px;
  height: 24px;
  fill: currentColor;
}

.map-container {
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0);
}

footer {
  background: #4a4a4a;
  color: #c9c0ba;
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .map-container {
    height: 400px;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

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

  .service-card {
    padding: 2rem 1.5rem;
  }

  .stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
  margin: 0 auto;
}
