:root {
  color-scheme: only light;
  --bg: #f7efe2;
  --bg-deep: #f0d8b6;
  --ink: #1a1612;
  --muted: #4e463d;
  --accent: #e36f3d;
  --accent-dark: #b54e20;
  --teal: #1b7a78;
  --cream: #fff7ec;
  --card: rgba(255, 255, 255, 0.78);
  --border: rgba(26, 22, 18, 0.12);
  --shadow: 0 24px 50px rgba(26, 22, 18, 0.12);
}

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

body {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff4de 0%, var(--bg) 45%, #f6e4c4 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.45;
  z-index: -1;
  animation: float 12s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(27, 122, 120, 0.55), transparent 65%);
  top: -120px;
  left: -80px;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(227, 111, 61, 0.6), transparent 70%);
  bottom: 10vh;
  right: -80px;
  animation-delay: -3s;
}

.orb-3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(181, 78, 32, 0.5), transparent 70%);
  top: 45vh;
  right: 20vw;
  animation-delay: -6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(18px);
  }
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px clamp(24px, 6vw, 80px) 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
}

.brand-title {
  font-family: "Chonburi", serif;
  font-size: 1.2rem;
}

.brand-sub {
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

main {
  padding: 12px clamp(24px, 6vw, 80px) 80px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: center;
  margin-top: 24px;
  animation: fadeUp 0.9s ease;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Chonburi", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 26px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 16px 30px rgba(227, 111, 61, 0.35);
}

.btn.ghost {
  color: var(--ink);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.stat {
  font-weight: 700;
  font-size: 1rem;
}

.label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 4px;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card-top {
  margin-bottom: 16px;
}

.card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-card h2 {
  font-size: 1.6rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.hero-card li {
  padding-left: 16px;
  position: relative;
  color: var(--muted);
  line-height: 1.5;
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.section {
  margin-top: 90px;
}

.section-action {
  margin-top: 24px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head p {
  color: var(--muted);
  max-width: 480px;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 22px;
  box-shadow: 0 18px 36px rgba(26, 22, 18, 0.08);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

.highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 30px;
  background: linear-gradient(135deg, rgba(27, 122, 120, 0.1), rgba(227, 111, 61, 0.08));
  border-radius: 28px;
  padding: 36px;
  border: 1px solid var(--border);
}

.highlight p {
  color: var(--muted);
  line-height: 1.7;
}

.highlight-panels {
  display: grid;
  gap: 16px;
}

.panel {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
}

.contact {
  background: var(--cream);
  border-radius: 28px;
  padding: 36px;
  border: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.contact-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: white;
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.6;
}

.page-hero {
  margin-top: 24px;
  max-width: 820px;
}

.page-hero h1 {
  font-family: "Chonburi", serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-bottom: 16px;
}

.page-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.gallery-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 36px rgba(26, 22, 18, 0.08);
}

.gallery-thumb {
  height: 160px;
  border-radius: 14px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent);
}

.thumb-1 {
  background: linear-gradient(135deg, #f3b389, #f9e0c6);
}

.thumb-2 {
  background: linear-gradient(135deg, #9dd8d7, #d6f0ee);
}

.thumb-3 {
  background: linear-gradient(135deg, #f0c37a, #fff0d7);
}

.thumb-4 {
  background: linear-gradient(135deg, #c3b5f4, #e9e1ff);
}

.thumb-5 {
  background: linear-gradient(135deg, #f1a0a0, #f8d1d1);
}

.thumb-6 {
  background: linear-gradient(135deg, #7fc1a4, #d1f0e3);
}

.map-card {
  height: 240px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(27, 122, 120, 0.3), transparent 60%),
    radial-gradient(circle at bottom right, rgba(227, 111, 61, 0.35), transparent 55%),
    #fff9ef;
}

.site-footer {
  text-align: center;
  padding: 20px 24px 36px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    gap: 16px;
  }
}
