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

:root {
  --rose: #d4a0a0;
  --rose-light: #f2e0e0;
  --gold: #c4975a;
  --gold-light: #e8d5b0;
  --brown: #6b4f3a;
  --brown-dark: #3d2b1f;
  --cream: #fff8f3;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sarabun', 'Kanit', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--brown-dark);
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-family: 'Kanit', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  color: var(--brown);
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: 2px;
  margin: 1rem auto 2.5rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-icon {
  height: 2rem;
  width: auto;
}

.nav-brand {
  font-family: 'Kanit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.02em;
}

.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--gold), #d4a84b);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(196, 151, 90, 0.3);
}

.nav-call-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 151, 90, 0.4);
}

.nav-call-text {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(61, 43, 31, 0.55) 0%,
    rgba(61, 43, 31, 0.7) 50%,
    rgba(61, 43, 31, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 1s ease;
}

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

.hero-symbol {
  height: 5rem;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.hero-content h1 {
  font-family: 'Kanit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
}

.hero-tagline span {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold), #d4a84b);
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(196, 151, 90, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 151, 90, 0.5);
}

/* About */
.about {
  background: var(--white);
}

.about-text {
  font-size: 1.1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #555;
  line-height: 1.8;
}

.notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  background: var(--rose-light);
  border-radius: 12px;
  max-width: 540px;
  margin: 0 auto;
  color: var(--brown);
  font-weight: 500;
}

.notice i {
  color: var(--gold);
  font-size: 1.2rem;
}

/* Services */
.services {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.price-item:hover {
  transform: translateX(4px);
}

.service-name {
  font-family: 'Kanit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
}

.service-price {
  font-family: 'Kanit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

/* Gallery */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-placeholder {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--rose-light);
  border-radius: 12px;
  color: var(--rose);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s;
}

.gallery-placeholder i {
  font-size: 2.5rem;
}

.gallery-placeholder:hover {
  background: #e8d0d0;
}

/* Footer */
.footer {
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.footer-item i {
  color: var(--gold);
  width: 1.2rem;
  text-align: center;
  font-size: 1.1rem;
}

.footer-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-item a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
}

.social-link:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.copyright {
  font-size: 0.85rem;
  opacity: 0.5;
}

/* Floating call button (mobile) */
.floating-call {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--gold), #d4a84b);
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(196, 151, 90, 0.5);
  text-decoration: none;
  z-index: 99;
  animation: pulse 2s infinite;
  transition: transform 0.2s;
}

.floating-call:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 4px 20px rgba(196, 151, 90, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(196, 151, 90, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(196, 151, 90, 0.4); }
}

/* Responsive */
@media (min-width: 640px) {
  .nav-call-text {
    display: inline;
  }

  .hero-content h1 {
    font-size: 4.5rem;
  }

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

@media (min-width: 768px) {
  .nav-brand {
    font-size: 1.4rem;
  }

  .hero-tagline span {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-info {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .floating-call {
    display: none;
  }
}
