:root {
  --bg: #fbf6ee;
  --bg-2: #f4ebdd;
  --cream: #fff9ef;
  --accent: #a9683a;
  --text: #3d2b1f;
  --muted: #765842;
  --border: #d8c8b4;
  --serif: "Cormorant Garamond", Georgia, serif;
  --thai: "Noto Serif Thai", "DM Sans", system-ui, sans-serif;
  --sans: "DM Sans", "Noto Serif Thai", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.75;
}

img { max-width: 100%; }
a { color: inherit; }
.wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 200, 180, .72);
  background: rgba(251, 246, 238, .92);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-decoration: none;
}

.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.nav-links a { color: var(--muted); font-size: .76rem; font-weight: 700; text-decoration: none; }

.hero { padding: 74px 0 44px; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 48px; align-items: center; }
.kicker { margin: 0; color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--thai); }
h1 { margin: 12px 0 18px; font-size: clamp(2.15rem, 5vw, 4.25rem); line-height: 1.13; }
.intro { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.03rem; }
.price { margin: 18px 0 0; font-family: var(--serif); font-size: 2rem; font-weight: 600; }
.price small { color: var(--muted); font-family: var(--sans); font-size: .76rem; font-weight: 500; }

.photo {
  overflow: hidden;
  border: 1px solid rgba(216, 200, 180, .86);
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 22px 64px rgba(61, 43, 31, .12);
}
.photo img { display: block; width: 100%; height: 430px; object-fit: cover; }

.cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 249, 239, .55);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
}
.btn.primary { border-color: var(--text); background: var(--text); color: var(--cream); }

section { padding: 38px 0; }
.section-head { max-width: 720px; margin-bottom: 22px; }
.section-head h2 { margin: 7px 0 4px; font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.25; }
.section-head p:last-child { margin: 0; color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card, .panel, .faq-item {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 249, 239, .58);
}
.card { padding: 22px; }
.card h2, .card h3 { margin: 0 0 8px; font-size: 1.12rem; }
.card p { margin: 0; color: var(--muted); font-size: .94rem; }
.fact-list { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.fact-list li + li { margin-top: 8px; }

.menu-table { width: 100%; border-collapse: collapse; }
.menu-table th, .menu-table td { padding: 14px 16px; border-bottom: 1px solid rgba(216, 200, 180, .72); text-align: left; }
.menu-table th { color: var(--muted); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.menu-table td:last-child, .menu-table th:last-child { text-align: right; white-space: nowrap; }

.faq-list { display: grid; gap: 12px; }
.faq-item { padding: 19px 21px; }
.faq-item h2, .faq-item h3 { margin: 0 0 6px; font-size: 1.04rem; }
.faq-item p { margin: 0; color: var(--muted); font-size: .93rem; }

.photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photo-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 249, 239, .58);
}
.photo-gallery img { display: block; width: 100%; height: 360px; object-fit: cover; }
.photo-gallery figcaption { padding: 13px 16px 15px; color: var(--muted); font-size: .82rem; }

.link-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.link-grid a {
  padding: .72rem .9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 249, 239, .5);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.breadcrumbs { margin: 26px 0 -36px; color: var(--muted); font-size: .78rem; }
.breadcrumbs a { text-decoration: none; }

footer { margin-top: 30px; padding: 42px 0; border-top: 1px solid var(--border); color: var(--muted); font-size: .86rem; text-align: center; }
footer a { font-weight: 600; }

@media (max-width: 780px) {
  .wrap { width: min(100% - 32px, 1080px); }
  .nav { align-items: flex-start; padding: 14px 0; }
  .nav-links { display: grid; gap: 4px; text-align: right; }
  .hero { padding-top: 52px; }
  .hero-grid, .cards, .link-grid, .photo-gallery { grid-template-columns: 1fr; }
  .photo { order: -1; }
  .photo img { height: 300px; }
  .photo-gallery img { height: 320px; }
  h1 { font-size: 2.2rem; }
  .menu-table th, .menu-table td { padding: 12px 10px; }
}
