:root {
  /* Theme ratio requested: #FCFBF8 70%, #F7F3EC 20%, #89A78B 10% */
  --bg: #FCFBF8;
  --paper: #F7F3EC;
  
  /* Brand Accent */
  --accent: #89A78B;
  --green: #89A78B;
  --green-deep: #6F8E71;
  --sage: #89A78B;
  --gold: #89A78B;
  --wine: #89A78B;
  
  /* Cards */
  --card-cream: #FFFFFF;
  --card-beige: #EDE5D8;
  
  /* Typography Colors */
  --heading-color: #2B2B2B;
  --ink: #4F4F4F;
  --muted: #8A857E;
  
  --cream: #FCFBF8;
  --line: rgba(79, 79, 79, .12);
  --shadow: 0 28px 80px rgba(43, 43, 43, .13);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
.nowrap { white-space: nowrap; }
body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--paper) 100%);
  color: var(--ink);
  font-family: Inter, "Noto Sans Thai", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,p,figure,blockquote,dl,dd { margin: 0; }
h1,h2,h3,.logo,.section-label,.hero-eyebrow,.sunshine-track,.footer-content h2 {
  font-family: "Playfair Display", "Noto Sans Thai", sans-serif;
}
h1, h2, h3 {
  color: var(--heading-color);
}
.hero h1,
.site-footer h2 {
  color: inherit;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: clamp(18px, 3vw, 52px);
  padding: 0 clamp(18px, 4vw, 72px);
  color: var(--ink);
  background: rgba(252,251,248,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: min-height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled,
.menu-open .site-header {
  min-height: 72px;
  background: rgba(252,251,248,.96);
  border-bottom-color: rgba(137,167,139,.32);
  box-shadow: 0 16px 42px rgba(43,43,43,.10);
}
.logo {
  position: relative;
  z-index: 2;
  color: var(--heading-color);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.desktop-nav {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1.2vw, 16px);
  padding: 8px;
  border: 1px solid rgba(79,79,79,.12);
  border-radius: 999px;
  background: rgba(247,243,236,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 clamp(12px, 1.35vw, 20px);
  border-radius: 999px;
  color: rgba(79,79,79,.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--cream);
  background: var(--accent);
}
.desktop-nav a:hover { transform: translateY(-1px); }
.nav-reserve {
  color: var(--cream) !important;
  background: var(--accent) !important;
  border: 1px solid rgba(137,167,139,.55);
  box-shadow: 0 10px 28px rgba(137,167,139,.18);
}
.nav-reserve.is-active,
.nav-reserve:hover { background: var(--green-deep) !important; color: var(--cream) !important; }
.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(79,79,79,.14);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 22px; height: 1px; margin: 7px auto; background: currentColor; transition: transform .25s var(--ease); }
.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 45;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background: rgba(252,251,248,.985);
  color: var(--ink);
  border-bottom: 1px solid rgba(137,167,139,.28);
  transition: max-height .32s var(--ease), opacity .25s var(--ease), visibility .25s var(--ease);
}
.mobile-nav.is-open { max-height: 470px; opacity: 1; visibility: visible; }
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 22px;
  border-top: 1px solid rgba(79,79,79,.11);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mobile-nav a::after { content: "→"; color: var(--accent); font-size: 16px; opacity: .82; }
.mobile-nav a.is-active { background: rgba(255,243,223,.08); color: var(--accent); }

.hero { position: relative; min-height: 100vh; width: 100%; display: grid; align-items: end; overflow: hidden; color: var(--cream); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43,43,43,.70) 0%, rgba(43,43,43,.42) 42%, rgba(137,167,139,.14) 76%), linear-gradient(180deg, rgba(43,43,43,.38) 0%, transparent 32%, rgba(43,43,43,.62) 100%); }
.hero-bg img { transform: scale(1.03); filter: saturate(1.03) contrast(1.02); }
.hero-inner { position: relative; z-index: 2; width: min(1120px, 100%); padding: clamp(118px, 16vh, 170px) clamp(22px, 6vw, 86px) clamp(92px, 12vh, 130px); }
.hero-eyebrow { font-size: clamp(22px, 2.6vw, 32px); font-style: italic; color: rgba(255,243,223,.82); margin-bottom: 16px; }
.hero h1 { max-width: 780px; font-size: clamp(74px, 11vw, 156px); line-height: .78; letter-spacing: -.065em; font-weight: 500; text-transform: none; }
.hero-lead { width: min(650px, 100%); margin-top: 28px; color: rgba(255,243,223,.83); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.65; }
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  width: 100%;
}
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: transform .28s var(--ease), background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn-light { background: var(--bg); color: var(--ink); border: 1px solid var(--bg); }
.btn-ghost { color: var(--cream); border: 1px solid rgba(252,251,248,.50); }
.btn-ghost:hover { background: rgba(255,243,223,.12); }
.hero-meta { position: absolute; z-index: 2; right: clamp(22px, 5vw, 80px); bottom: clamp(22px, 5vh, 48px); display: flex; gap: 18px; color: rgba(255,243,223,.72); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-meta span + span { border-left: 1px solid rgba(255,243,223,.34); padding-left: 18px; }

.sunshine-section { overflow: hidden; border-block: 1px solid rgba(137,167,139,.28); background: var(--paper); color: var(--accent); }
.sunshine-track { width: max-content; display: flex; gap: 42px; padding: 25px 0; font-size: clamp(34px, 5vw, 72px); line-height: 1; letter-spacing: -.035em; animation: marquee 30s linear infinite; }
.sunshine-track span { padding-left: 42px; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

.story-section { background: var(--bg); padding: clamp(74px, 10vw, 130px) clamp(22px, 5vw, 78px); }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px, 6vw, 92px); align-items: center; max-width: 1280px; margin: 0 auto; }
.story-media { min-height: 640px; aspect-ratio: 4/5; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(79,79,79,.12); }
.story-copy { max-width: 680px; }
.section-label { font-size: clamp(22px, 2vw, 29px); font-style: italic; color: var(--wine); margin-bottom: 16px; }
.story-copy h2, .section-heading h2, .room-copy h2, .visit-card h2 { font-size: clamp(34px, 4.2vw, 58px); line-height: 1.15; letter-spacing: -.02em; font-weight: 500; margin-bottom: 28px; }
.story-copy p:not(.section-label), .section-heading p, .room-copy p, .visit-card dd { color: var(--muted); font-size: clamp(16px, 1.15vw, 18px); line-height: 1.75; margin-bottom: 20px; }
.stats-row { display: flex; gap: 24px; margin-top: 38px; border-top: 1px solid var(--line); padding-top: 30px; }
.stats-row div { flex: 1; }
.stats-row strong { display: block; font-family: "Cormorant Garamond", "Noto Sans Thai", sans-serif; font-size: clamp(52px, 5vw, 82px); line-height: .85; font-weight: 500; letter-spacing: -.05em; color: var(--green); }
.stats-row span { display: block; margin-top: 9px; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.image-break { height: 78vh; min-height: 560px; overflow: hidden; position: relative; }
.image-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,26,19,.06), rgba(7,26,19,.22)); pointer-events: none; }

.menu-section { background: var(--paper); color: var(--ink); padding: clamp(76px, 10vw, 130px) clamp(14px, 3vw, 42px); }
.section-heading { max-width: 850px; margin: 0 auto 50px; text-align: center; }
.menu-section .section-label { color: var(--accent); }
.section-heading p { color: var(--muted); max-width: 620px; margin: 0 auto; }
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-flow: dense; gap: 16px; max-width: 1480px; margin: 0 auto; }
.menu-card { position: relative; min-height: 520px; overflow: hidden; background: #123; border: 1px solid rgba(137,167,139,.20); }
.menu-card.wide { grid-column: span 2; }
.menu-card.tall { grid-row: span 2; min-height: 720px; }
.menu-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(43,43,43,.72)); }
.menu-card img { transition: transform .85s var(--ease), filter .85s var(--ease); }
.menu-card:hover img { transform: scale(1.045); filter: saturate(1.08); }
.menu-card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px; }
.menu-card-body div { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; border-bottom: 1px solid rgba(252,251,248,.28); padding-bottom: 14px; margin-bottom: 14px; }
.menu-card h3 { font-size: clamp(27px, 2.5vw, 42px); line-height: 1.15; letter-spacing: -.01em; font-weight: 500; }
.menu-card span { flex: 0 0 auto; color: var(--accent); font-size: 15px; font-weight: 700; }
.menu-card p { color: rgba(252,251,248,.78); font-size: 15px; line-height: 1.55; }
.service-line { margin: 48px auto 0; text-align: center; color: var(--muted); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; }

.room-section { background: var(--bg); padding: clamp(76px, 10vw, 130px) clamp(16px, 4vw, 64px); background: var(--bg); }
.room-copy { width: min(820px, 100%); margin: 0 auto 52px; text-align: center; }
.room-gallery { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 16px; width: 100%; }
.room-gallery figure { min-height: 620px; overflow: hidden; box-shadow: var(--shadow); }
.room-gallery figure:not(.room-large) { min-height: 440px; align-self: end; }
.room-gallery img { transition: transform .8s var(--ease); }
.room-gallery figure:hover img { transform: scale(1.035); }

.visit-section { position: relative; min-height: 100vh; display: grid; place-items: center; padding: clamp(80px, 10vw, 130px) 22px; overflow: hidden; }
.visit-bg { position: absolute; inset: 0; }
.visit-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,26,19,.84), rgba(7,26,19,.54)); }
.visit-card { position: relative; z-index: 1; width: min(820px, 100%); margin-left: auto; margin-right: clamp(0px, 7vw, 120px); padding: clamp(34px, 5vw, 74px); background: var(--card-cream); box-shadow: var(--shadow); border: 1px solid rgba(137,167,139,.40); }
.visit-card dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 34px; margin-top: 34px; }
.visit-card dt { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; }
.visit-card dd { margin: 0; }
.visit-card a { text-decoration: underline; text-underline-offset: 4px; }

.quote-section { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(34px, 6vw, 88px); padding: clamp(76px, 10vw, 130px) clamp(22px, 5vw, 78px); background: var(--paper); }
.quote-image { min-height: 520px; aspect-ratio: 4/5; overflow: hidden; box-shadow: var(--shadow); }
.quote-section blockquote p { font-family: "Playfair Display", "Noto Sans Thai", sans-serif; font-size: clamp(36px, 4.8vw, 68px); line-height: 1.25; letter-spacing: -.02em; color: var(--green); }
.quote-section cite { display: block; margin-top: 28px; color: var(--wine); font-style: normal; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.site-footer { background: var(--accent); color: var(--bg); padding: clamp(54px, 8vw, 100px) clamp(22px, 5vw, 78px) 34px; }
.footer-mark { width: min(520px, 84vw); aspect-ratio: 1/1; margin: 0 auto clamp(46px, 7vw, 82px); }
.footer-mark img { object-fit: contain; }
.footer-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; border-top: 1px solid rgba(252,251,248,.32); padding-top: 36px; }
.footer-content h2 { font-size: clamp(54px, 7vw, 120px); line-height: .82; letter-spacing: -.06em; font-weight: 500; }
.footer-content p { color: rgba(252,251,248,.84); font-size: 16px; margin-bottom: 8px; }
.footer-bottom { margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(252,251,248,.32); color: rgba(252,251,248,.72); font-size: 13px; }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1101px) and (max-width: 1260px) {
  .desktop-nav { gap: 6px; }
  .desktop-nav a { padding-inline: 11px; letter-spacing: .11em; }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .story-grid, .quote-section { grid-template-columns: 1fr; }
  .story-media, .quote-image { min-height: auto; width: min(560px,100%); margin: 0 auto; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card.tall { grid-row: auto; min-height: 560px; }
  .room-gallery { grid-template-columns: 1fr 1fr; }
  .room-large { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  :root { --header-h: 72px; }
  body { font-size: 15px; }
  .hero { min-height: 100svh; }
  .hero-inner { padding: 112px 22px 132px; }
  .hero h1 { font-size: clamp(66px, 20vw, 94px); line-height: .8; }
  .hero-lead { font-size: 15.5px; }
  .hero-actions { flex-direction: column; align-items: center; justify-content: center; }
  .hero-actions .btn { width: fit-content; max-width: calc(100vw - 44px); }
  .site-header .btn, .mobile-nav .btn { width: auto; }
  .hero-meta { left: 22px; right: 22px; bottom: 26px; flex-direction: column; gap: 6px; }
  .hero-meta span + span { border-left: 0; padding-left: 0; }
  .sunshine-track { font-size: 42px; padding: 20px 0; }
  .story-section, .menu-section, .room-section, .quote-section { padding-block: 68px; }
  .story-grid { gap: 38px; }
  .story-media { min-height: auto; }
  .story-copy h2, .section-heading h2, .room-copy h2, .visit-card h2 { font-size: clamp(28px, 8vw, 38px); }
  .stats-row { flex-direction: column; }
  .image-break { height: 52svh; min-height: 360px; }
  .menu-grid { grid-template-columns: 1fr; gap: 12px; }
  .menu-card, .menu-card.wide, .menu-card.tall { grid-column: auto; grid-row: auto; min-height: 520px; }
  .menu-card-body { padding: 20px; }
  .menu-card-body div { align-items: flex-start; flex-direction: column; gap: 8px; }
  .room-gallery { grid-template-columns: 1fr; gap: 12px; }
  .room-gallery figure, .room-gallery figure:not(.room-large) { min-height: 430px; }
  .visit-section { min-height: auto; padding: 70px 16px; }
  .visit-card { margin: 0; padding: 28px 22px; }
  .visit-card dl { grid-template-columns: 1fr; }
  .quote-section { gap: 32px; }
  .quote-section blockquote p { font-size: clamp(26px, 7vw, 36px); }
  .footer-content { grid-template-columns: 1fr; }
  .footer-mark { width: min(380px, 92vw); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* --- Final fix: center the Canva menu button inside the Menu section --- */
.menu-section .hero-actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 34px auto 0 !important;
  text-align: center !important;
}

.menu-section .hero-actions .btn,
.menu-section a[href*="canva.com"] {
  width: fit-content !important;
  min-width: 230px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .menu-section .hero-actions {
    justify-content: center !important;
    align-items: center !important;
  }

  .menu-section .hero-actions .btn,
  .menu-section a[href*="canva.com"] {
    width: fit-content !important;
    max-width: calc(100vw - 44px) !important;
    min-width: 0;
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* --- HARD FIX 20260617-2: Canva menu button must stay exactly center --- */
#menu .section-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

#menu .canva-menu-action,
#menu .hero-actions:has(a[href*="canva.com"]) {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 34px auto 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

#menu .canva-menu-button,
#menu a[href*="canva.com"] {
  display: inline-flex !important;
  width: max-content !important;
  max-width: calc(100vw - 44px) !important;
  margin-inline: auto !important;
  justify-content: center !important;
  align-items: center !important;
  align-self: center !important;
  float: none !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}


/* === ABSOLUTE FINAL CENTER FIX: Canva menu button === */
#menu .section-heading,
.menu-section .section-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#menu .canva-menu-action,
.menu-section .canva-menu-action,
#menu .hero-actions,
.menu-section .hero-actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 34px auto 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center !important;
}

#menu .canva-menu-button,
.menu-section .canva-menu-button,
#menu a[href*="canva.com"],
.menu-section a[href*="canva.com"] {
  display: inline-flex !important;
  width: fit-content !important;
  min-width: 230px !important;
  max-width: calc(100vw - 44px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center !important;
  align-items: center !important;
  align-self: center !important;
  float: none !important;
  transform: none !important;
}

@media (max-width: 767px) {
  #menu .canva-menu-button,
  .menu-section .canva-menu-button,
  #menu a[href*="canva.com"],
  .menu-section a[href*="canva.com"] {
    min-width: 0 !important;
    width: fit-content !important;
  }
}


/* Thai font unification: every Thai fallback uses Noto Sans Thai consistently */
body,
button,
input,
textarea,
select,
.desktop-nav a,
.mobile-nav a,
.btn,
.hero-lead,
.story-copy p,
.section-heading p,
.room-copy p,
.visit-card dt,
.visit-card dd,
.service-line,
.footer-content p,
.footer-bottom,
.menu-card p,
.menu-card span,
.stats-row span {
  font-family: Inter, "Noto Sans Thai", sans-serif;
}

h1, h2, h3,
.logo,
.section-label,
.hero-eyebrow,
.sunshine-track,
.footer-content h2,
.stats-row strong,
.quote-section blockquote p {
  font-family: "Playfair Display", "Noto Sans Thai", sans-serif;
}
