@font-face { font-family: 'Mitr'; font-style: normal; font-weight: 300; font-display: swap; src: url('assets/fonts/mitr-300.woff2') format('woff2'); }
@font-face { font-family: 'Mitr'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/mitr-400.woff2') format('woff2'); }
@font-face { font-family: 'Mitr'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/mitr-500.woff2') format('woff2'); }
@font-face { font-family: 'Mitr'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/mitr-600.woff2') format('woff2'); }
@font-face { font-family: 'Mitr'; font-style: normal; font-weight: 700; font-display: swap; src: url('assets/fonts/mitr-700.woff2') format('woff2'); }

:root {
  --font-head: 'Mitr', 'Sarabun', sans-serif;
}

/* ===== Base ===== */
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FAF3EA;
  color: #2B211C;
  font-family: 'Mitr', 'Sarabun', sans-serif;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; }

/* ===== Keyframes ===== */
@keyframes heroFadeUp { from { opacity: .5; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(184,147,91,0.55); } 70% { box-shadow: 0 0 0 14px rgba(184,147,91,0); } 100% { box-shadow: 0 0 0 0 rgba(184,147,91,0); } }
@keyframes floatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes heroKenBurns { 0% { transform: scale(1); } 50% { transform: scale(1.09); } 100% { transform: scale(1); } }
@keyframes particleDrift1 { 0% { transform: translate(0,0); opacity: 0; } 12% { opacity: .65; } 88% { opacity: .35; } 100% { transform: translate(18px,-180px); opacity: 0; } }
@keyframes particleDrift2 { 0% { transform: translate(0,0); opacity: 0; } 15% { opacity: .55; } 85% { opacity: .3; } 100% { transform: translate(-24px,-220px); opacity: 0; } }
@keyframes particleDrift3 { 0% { transform: translate(0,0); opacity: 0; } 18% { opacity: .6; } 86% { opacity: .3; } 100% { transform: translate(10px,-150px); opacity: 0; } }
@keyframes shimmerSweep { 0% { background-position: -160% 0; } 100% { background-position: 260% 0; } }
@keyframes softPulseGlow { 0%, 100% { opacity: .5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes cardGlow { 0%, 100% { box-shadow: 0 8px 26px rgba(90,18,32,0.06); } 50% { box-shadow: 0 16px 36px rgba(184,147,91,0.22); } }
@keyframes bgDrift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes ctaGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(184,147,91,0.18); } 50% { box-shadow: 0 0 34px 6px rgba(184,147,91,0.22); } }
@keyframes navSlideDown { from { opacity: .5; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroShineSweep { 0% { transform: translateX(-140%) skewX(-12deg); } 100% { transform: translateX(140%) skewX(-12deg); } }
@keyframes lightboxFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lightboxScale { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }

/* ===== Scroll-reveal utility ===== */
.reveal-item {
  --reveal-duration: .7s;
  --reveal-delay: 0s;
  --reveal-dy: 26px;
  opacity: .4;
  transform: translateY(var(--reveal-dy)) scale(1.03);
  transition: opacity var(--reveal-duration) ease var(--reveal-delay),
              transform var(--reveal-duration) ease var(--reveal-delay);
}
.reveal.is-revealed .reveal-item { opacity: 1; transform: translateY(0) scale(1); }

.reveal-item--blur {
  filter: blur(6px);
  transition: opacity var(--reveal-duration) ease var(--reveal-delay),
              transform var(--reveal-duration) ease var(--reveal-delay),
              filter var(--reveal-duration) ease var(--reveal-delay);
}
.reveal.is-revealed .reveal-item--blur { filter: blur(0px); }

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 110;
  background: rgba(90,18,32,0.08);
}
.scroll-progress__bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg,#B8935B,#E2C795);
  transition: width .1s linear;
}

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between;
  gap: clamp(10px,2.5vw,18px);
  padding: 14px clamp(16px,5vw,64px);
  background: transparent;
  box-shadow: none;
  transition: background .35s ease, box-shadow .35s ease;
  animation: navSlideDown .7s ease both;
}
.nav.is-scrolled {
  background: rgba(250,243,234,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(43,33,28,0.08);
}
.nav__brand { flex: none; display: flex; align-items: center; text-decoration: none; }
.nav__logo {
  height: clamp(30px,6vw,38px); width: auto; display: block;
  filter: brightness(0) invert(1);
  transition: filter .35s ease;
}
.nav.is-scrolled .nav__logo { filter: none; }
.nav__links-wrap { flex: 1; min-width: 0; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; display: flex; justify-content: flex-end; }
.nav__links-wrap::-webkit-scrollbar { display: none; }
.nav__links { display: flex; gap: clamp(14px,3vw,36px); align-items: center; font-size: 14px; font-weight: 500; white-space: nowrap; width: max-content; }
.nav__link {
  text-decoration: none; color: #FDF8F1; opacity: .9;
  transition: color .35s ease, background-size .35s ease;
  background-image: linear-gradient(#B8935B,#B8935B);
  background-repeat: no-repeat; background-position: 0 100%; background-size: 0% 1.5px;
  padding-bottom: 2px;
}
.nav.is-scrolled .nav__link { color: #2B211C; }
.nav__link:hover { background-size: 100% 1.5px; }
.nav__cta {
  flex: none; text-decoration: none; font-size: clamp(12px,3vw,13.5px); font-weight: 600;
  letter-spacing: .3px; padding: 10px clamp(14px,3vw,22px); border-radius: 99px;
  background: linear-gradient(135deg,#E2C795,#B8935B); color: #3D0D15; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(184,147,91,0.28);
  transition: transform .3s ease, box-shadow .3s ease;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(184,147,91,0.4); }
.nav__toggle { display: none; }

/* Mobile nav: hamburger + dropdown */
@media (max-width: 768px) {
  .nav__brand { margin-right: auto; }
  .nav__toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    flex: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; cursor: pointer;
  }
  .nav__toggle span {
    display: block; width: 100%; height: 2px; border-radius: 2px; background: #FDF8F1;
    transition: transform .3s ease, opacity .25s ease, background .35s ease;
  }
  .nav.is-scrolled .nav__toggle span, .nav.is-open .nav__toggle span { background: #2B211C; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav.is-open { background: rgba(250,243,234,0.98); backdrop-filter: blur(10px); box-shadow: 0 4px 24px rgba(43,33,28,0.08); }
  .nav.is-open .nav__logo { filter: none; }

  .nav__links-wrap {
    position: absolute; top: 100%; left: 0; right: 0; flex: none; width: 100%;
    display: block; overflow: hidden; max-height: 0;
    background: rgba(250,243,234,0.98); backdrop-filter: blur(10px);
    box-shadow: 0 14px 26px rgba(43,33,28,0.12);
    transition: max-height .35s ease;
  }
  .nav.is-open .nav__links-wrap { max-height: 360px; }
  .nav__links { flex-direction: column; align-items: stretch; width: 100%; gap: 0; padding: 4px 0; }
  .nav__link {
    color: #2B211C; opacity: 1; font-size: 15.5px; font-weight: 500;
    padding: 15px clamp(20px,6vw,30px); background-image: none; padding-bottom: 15px;
    border-bottom: 1px solid rgba(184,147,91,0.14);
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__link:active { background: rgba(184,147,91,0.1); }
}

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg-wrap { position: absolute; inset: 0; overflow: hidden; transform: translateY(0px); }
.hero__bg-zoom { position: absolute; inset: -4%; height: 108%; animation: heroKenBurns 20s ease-in-out infinite; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__shine {
  position: absolute; top: 0; left: 0; width: 60%; height: 100%;
  background: linear-gradient(115deg,transparent 35%,rgba(255,255,255,0.22) 48%,rgba(255,255,255,0.05) 55%,transparent 65%);
  animation: heroShineSweep 3.2s ease-in-out 1; animation-delay: .5s; animation-fill-mode: both;
  pointer-events: none;
}
.hero__particle { position: absolute; border-radius: 50%; z-index: 1; }
.hero__particle--1 { left: 14%; bottom: 20%; width: 6px; height: 6px; background: #E2C795; animation: particleDrift1 7s ease-in infinite; }
.hero__particle--2 { left: 62%; bottom: 12%; width: 4px; height: 4px; background: #F4E9D6; animation: particleDrift2 9s ease-in infinite 1.5s; }
.hero__particle--3 { left: 82%; bottom: 30%; width: 5px; height: 5px; background: #E2C795; animation: particleDrift3 8s ease-in infinite 3s; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(40,10,16,0.18) 0%, rgba(40,10,16,0.5) 55%, rgba(35,8,14,0.92) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 0 clamp(20px,6vw,80px) clamp(56px,9vw,110px); max-width: 880px; }
.hero__eyebrow {
  font-size: 12.5px; letter-spacing: 5px; font-weight: 600; color: #E2C795; margin-bottom: 22px;
  animation: heroFadeUp .6s ease both 0s;
}
.hero__title {
  font-family: var(--font-head); font-weight: 600; font-size: clamp(32px,5.4vw,66px);
  line-height: 1.35; color: #FDF8F1; margin: 0 0 22px; text-wrap: pretty;
  animation: heroFadeUp .6s ease both .08s;
}
.hero__subtitle {
  font-size: clamp(15px,1.7vw,19px); font-weight: 500; color: #E2C795; margin: 0 0 16px; line-height: 1.7;
  animation: heroFadeUp .6s ease both .16s;
}
.hero__subtitle-light { color: #F4E9D6; font-weight: 400; }
.hero__desc {
  font-size: clamp(14px,1.4vw,16.5px); color: rgba(253,248,241,0.82); line-height: 1.85; margin: 0 0 38px; max-width: 620px;
  animation: heroFadeUp .6s ease both .24s;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; animation: heroFadeUp .6s ease both .32s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  font-size: 15px; font-weight: 600; padding: 15px 30px; border-radius: 99px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.btn--gold { background: linear-gradient(135deg,#E2C795,#B8935B); color: #3D0D15; box-shadow: 0 10px 26px rgba(184,147,91,0.35); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(184,147,91,0.45); }
.btn--outline { border: 1.5px solid rgba(226,199,149,0.7); color: #FDF8F1; }
.btn--outline:hover { background: rgba(226,199,149,0.12); border-color: #E2C795; }
.btn--sm { font-size: 14.5px; padding: 15px 26px; }
.btn--gold.btn--sm { box-shadow: 0 10px 24px rgba(184,147,91,0.3); }
.btn--gold.btn--sm:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(184,147,91,0.3); }
.btn--line { border: 1.5px solid #B8935B; color: #5A1220; }
.btn--line:hover { background: rgba(184,147,91,0.1); }

/* ===== Sections (generic) ===== */
.section { padding: clamp(72px,10vw,120px) clamp(20px,6vw,80px); }
.section--pain { background: #FAF3EA; }
.section--services { background: #EFDCC5; }
.section--whyus { background: #FAF3EA; }
.section--gallery { background: #EFDCC5; }
.section--packages { background: #FAF3EA; }
.section--contact { background: linear-gradient(160deg,#40101A,#2A0A11); padding: clamp(72px,10vw,110px) clamp(20px,6vw,80px) 40px; }

.section-head { text-align: center; margin-bottom: clamp(48px,7vw,72px); }
.section-head__eyebrow { font-size: 12.5px; letter-spacing: 4px; font-weight: 600; color: #8C6A3E; margin-bottom: 14px; }
.section-head__title { font-family: var(--font-head); font-weight: 600; font-size: clamp(26px,3.6vw,40px); color: #5A1220; margin: 0; }
.section-head__sub { font-size: clamp(14px,1.6vw,16px); line-height: 1.85; color: #6B5D52; margin: 16px 0 0; }

.divider {
  width: 64px; height: 2px; margin: 0 auto 26px;
  background: linear-gradient(90deg,transparent,#B8935B,#E2C795,#B8935B,transparent);
  background-size: 200% 100%;
  animation: shimmerSweep 3.5s linear infinite;
}
.divider--dark { margin: 36px auto 0; }
.divider--thin { width: 44px; height: 1px; margin: 0 auto 34px; background: rgba(226,199,149,0.4); animation: softPulseGlow 3.5s ease-in-out infinite; }

.shine-sweep {
  position: absolute; inset: -20% -60%;
  background: linear-gradient(115deg,transparent 42%,rgba(255,255,255,0.4) 50%,transparent 58%);
  transform: translateX(-130%);
  transition: transform .8s ease;
  pointer-events: none; z-index: 2;
}

/* ===== Pain section ===== */
.pain { max-width: 760px; margin: 0 auto; text-align: center; }
.pain__title { font-family: var(--font-head); font-weight: 600; font-size: clamp(24px,3.4vw,36px); line-height: 1.5; color: #5A1220; margin: 0 0 26px; text-wrap: pretty; }
.pain__body { font-size: 16px; line-height: 2; color: #5C4B3E; margin: 0; }
.pain__body strong { color: #5A1220; font-weight: 600; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 28px; max-width: 1180px; margin: 0 auto; }
.section--services > .reveal { max-width: 1180px; margin: 0 auto; }
.service-card {
  background: #FDF8F1; border-radius: 6px; padding: 38px 28px; text-align: center;
  box-shadow: 0 8px 26px rgba(90,18,32,0.06);
  animation: cardGlow 5s ease-in-out infinite var(--glow-delay, 0s);
  transition: transform .3s ease, opacity var(--reveal-duration) ease var(--reveal-delay), transform var(--reveal-duration) ease var(--reveal-delay);
}
.reveal.is-revealed .service-card:hover { transform: translateY(-8px) scale(1.02); }
.service-card__icon { margin-bottom: 20px; animation: floatBob 4.5s ease-in-out infinite var(--float-delay, 0s); }
.service-card__title { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: #2B211C; margin: 0 0 12px; }
.service-card__desc { font-size: 14px; line-height: 1.8; color: #6B5D52; margin: 0; }

/* ===== Why us ===== */
.whyus {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit,minmax(min(320px,100%),1fr));
  gap: clamp(36px,6vw,72px); align-items: center;
}
.whyus__photo-wrap { overflow: hidden; border-radius: 6px; position: relative; height: 460px; }
.whyus__photo-wrap:hover .shine-sweep { transform: translateX(130%); }
.whyus__photo-wrap--empty {
  display: flex; align-items: center; justify-content: center;
  background: rgba(90,18,32,0.04); border: 1.5px dashed rgba(90,18,32,0.18);
}
.whyus__photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.whyus__photo-wrap:hover .whyus__photo { transform: scale(1.04); }
.whyus__eyebrow { color: #B8935B; }
.whyus__title { font-family: var(--font-head); font-weight: 600; font-size: clamp(24px,3.2vw,34px); color: #5A1220; margin: 0 0 30px; line-height: 1.5; }
.whyus__list { display: grid; gap: 18px; }
.whyus__item { display: flex; align-items: flex-start; gap: 14px; transition: transform .3s ease, opacity var(--reveal-duration) ease var(--reveal-delay), transform var(--reveal-duration) ease var(--reveal-delay); }
.reveal.is-revealed .whyus__item:hover { transform: translateX(6px); }
.whyus__check { flex: none; margin-top: 1px; }
.whyus__item span { font-size: 15.5px; line-height: 1.7; color: #3A2E26; }

/* ===== Gallery ===== */
.gallery-wrap { max-width: 1180px; margin: 0 auto; }
.gallery-groups { display: grid; gap: 44px; }
.gallery-group__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; }
.gallery-group__index { font-family: var(--font-head); font-size: 26px; font-weight: 600; color: #B8935B; opacity: .4; line-height: 1; flex: none; }
.gallery-group__label { font-size: 12px; letter-spacing: 3px; font-weight: 600; color: #8C6A3E; text-transform: uppercase; }
.gallery-group__rule {
  flex: 1; height: 1px; background: linear-gradient(90deg,rgba(140,106,62,0.5),transparent 70%);
  background-size: 220% 100%; animation: shimmerSweep 4s linear infinite;
}
.gallery-group__grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(max(150px,calc(25% - 12px)),1fr));
  gap: 16px; perspective: 1200px;
}
.gallery-item {
  --reveal-duration: .7s;
  --reveal-delay: .15s;
  width: 100%; aspect-ratio: 3/4; overflow: hidden; border-radius: 6px; position: relative;
  opacity: .4; filter: blur(6px);
  transform: translateY(30px) scale(1.04) rotateX(10deg);
  transition: opacity var(--reveal-duration) ease var(--reveal-delay),
              transform var(--reveal-duration) ease var(--reveal-delay),
              filter var(--reveal-duration) ease var(--reveal-delay);
}
.reveal.is-revealed .gallery-item { opacity: 1; filter: blur(0px); transform: translateY(0) scale(1) rotateX(0deg); }
.gallery-item__img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover .gallery-item__img { transform: scale(1.07); }
.gallery-item:hover .shine-sweep { transform: translateX(130%); }
.gallery-item__img--contain { object-fit: contain; background: rgba(90,18,32,0.04); }
.gallery-item--empty {
  display: flex; align-items: center; justify-content: center; padding: 12px; text-align: center;
  background: rgba(90,18,32,0.04); border: 1.5px dashed rgba(90,18,32,0.18);
}
.gallery-item__placeholder { font-size: 12.5px; line-height: 1.6; color: rgba(90,18,32,0.45); font-weight: 500; }
.gallery-item__zoom {
  position: absolute; inset: 0; z-index: 3; display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 16px; background: linear-gradient(180deg,transparent 50%,rgba(20,4,8,0.6) 100%);
  border: 0; cursor: zoom-in; opacity: 0; transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: translateY(0); }
.gallery-item__zoom-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 99px;
  background: rgba(253,248,241,0.14); border: 1px solid rgba(226,199,149,0.5);
  backdrop-filter: blur(4px); font-size: 12px; font-weight: 600; color: #F4E9D6; letter-spacing: .3px;
}
.gallery-footnote { text-align: center; font-size: 15px; color: #6B5D52; margin: 56px auto 0; max-width: 560px; line-height: 1.8; }

/* ===== Emotional ===== */
.section--emotional {
  background: linear-gradient(160deg,#5A1220,#3D0D15,#5A1220);
  background-size: 200% 200%;
  animation: bgDrift 14s ease-in-out infinite;
  padding: clamp(80px,12vw,140px) clamp(20px,6vw,80px);
  position: relative; overflow: hidden;
}
.emotional__stem {
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(180deg,rgba(226,199,149,0),rgba(226,199,149,0.6));
  animation: softPulseGlow 3s ease-in-out infinite; transform-origin: top center;
}
.emotional { max-width: 760px; margin: 0 auto; text-align: center; position: relative; }
.emotional__mark {
  font-size: 44px; line-height: 1; color: #B8935B; font-family: var(--font-head); margin-bottom: 8px;
  animation: softPulseGlow 3s ease-in-out infinite;
}
.emotional__title { font-family: var(--font-head); font-weight: 500; font-size: clamp(24px,3.6vw,38px); color: #FDF8F1; margin: 0 0 30px; line-height: 1.55; text-wrap: pretty; }
.emotional__body { font-size: 16px; line-height: 2; color: rgba(253,248,241,0.82); margin: 0; }

/* ===== Packages ===== */
.packages-card {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: #FDF8F1; border: 1px solid rgba(184,147,91,0.35); border-radius: 8px;
  padding: clamp(48px,7vw,72px) clamp(28px,5vw,56px);
  animation: ctaGlow 4s ease-in-out infinite;
}
.packages-card__title { font-family: var(--font-head); font-weight: 600; font-size: clamp(24px,3.2vw,34px); color: #5A1220; margin: 0 0 24px; line-height: 1.5; }
.packages-card__body { font-size: 15.5px; line-height: 1.9; color: #6B5D52; margin: 0 0 40px; }
.packages-card__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ===== Contact ===== */
.contact { max-width: 640px; margin: 0 auto; text-align: center; }
.contact__logo { height: 56px; width: auto; display: inline-block; margin-bottom: 28px; }
.contact__tagline { font-size: 15px; color: rgba(253,248,241,0.75); margin: 0 0 34px; }
.contact__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin-bottom: 34px; }
.contact__link {
  display: flex; align-items: center; gap: 10px; text-decoration: none; color: #FDF8F1; font-size: 15px;
  transition: transform .3s ease, color .3s ease;
}
.contact__link:hover { transform: translateY(-3px); color: #E2C795; }
.contact__note { font-size: 13.5px; color: rgba(253,248,241,0.6); margin: 0 0 44px; }
.contact__quote { font-family: var(--font-head); font-style: italic; font-weight: 400; font-size: clamp(15px,2vw,18px); line-height: 1.9; color: #F4E9D6; margin: 0 0 40px; }
.contact__copyright { font-size: 12px; color: rgba(253,248,241,0.4); margin: 0; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: 40px;
}
.lightbox.is-open { display: flex; animation: lightboxFade .25s ease both; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(20,4,8,0.88); backdrop-filter: blur(6px); }
.lightbox__frame {
  position: relative; width: min(92vw,900px); height: 88vh; max-width: 900px;
  background-size: contain; background-repeat: no-repeat; background-position: center;
  border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: lightboxScale .3s cubic-bezier(.2,.9,.3,1.2) both;
}
.lightbox__close {
  position: absolute; top: 24px; right: 28px; width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(226,199,149,0.6); background: rgba(0,0,0,0.3); color: #F4E9D6;
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* ===== Floating action buttons ===== */
.fab-stack {
  position: fixed; bottom: 26px; right: 26px; z-index: 200;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
.fab {
  display: flex; align-items: center; gap: 9px; text-decoration: none;
  padding: 14px 22px; border-radius: 99px;
  background: linear-gradient(135deg,#E2C795,#B8935B); color: #3D0D15;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 10px 26px rgba(184,147,91,0.4);
  animation: pulseRing 2.6s ease-out infinite, floatBob 3.4s ease-in-out infinite;
  transition: transform .3s ease, box-shadow .3s ease;
}
.fab:hover { box-shadow: 0 14px 32px rgba(184,147,91,0.5); }
.fab--round {
  padding: 0; width: 52px; height: 52px; justify-content: center;
  animation: floatBob 3.4s ease-in-out infinite .5s;
}

/* ===== Packages page ===== */
.pkg-header {
  background: linear-gradient(160deg,#5A1220,#3D0D15,#5A1220);
  background-size: 200% 200%;
  animation: bgDrift 14s ease-in-out infinite;
  padding: clamp(120px,16vw,170px) clamp(20px,6vw,80px) clamp(40px,6vw,64px);
  text-align: center; position: relative; overflow: hidden;
}
.pkg-header__eyebrow { font-size: 12.5px; letter-spacing: 5px; font-weight: 600; color: #E2C795; margin-bottom: 16px; }
.pkg-header__title { font-family: var(--font-head); font-weight: 600; font-size: clamp(30px,4.6vw,52px); color: #FDF8F1; margin: 0 0 16px; line-height: 1.3; }
.pkg-header__sub { font-size: clamp(14px,1.6vw,17px); color: rgba(253,248,241,0.8); margin: 0 0 34px; line-height: 1.8; }

.pkg-tabs { display: inline-flex; gap: 8px; padding: 6px; border-radius: 99px; background: rgba(253,248,241,0.08); border: 1px solid rgba(226,199,149,0.3); }
.pkg-tab {
  border: 0; cursor: pointer; font-family: 'Mitr', 'Sarabun', sans-serif;
  font-size: clamp(13px,1.5vw,15px); font-weight: 600; letter-spacing: .3px;
  padding: 11px clamp(18px,4vw,32px); border-radius: 99px;
  background: transparent; color: rgba(253,248,241,0.7); transition: all .3s ease;
}
.pkg-tab:hover { color: #F4E9D6; }
.pkg-tab.is-active { background: linear-gradient(135deg,#E2C795,#B8935B); color: #3D0D15; box-shadow: 0 6px 18px rgba(184,147,91,0.35); }

.pkg-panel { display: none; }
.pkg-panel.is-active { display: block; animation: heroFadeUp .5s ease both; }

.pkg-section { padding: clamp(56px,9vw,100px) clamp(20px,6vw,80px); }
.pkg-section--alt { background: #EFDCC5; }
.pkg-wrap { max-width: 1080px; margin: 0 auto; }
.pkg-lead { text-align: center; max-width: 640px; margin: 0 auto clamp(40px,6vw,60px); }
.pkg-lead__headline { font-family: var(--font-head); font-weight: 600; font-size: clamp(22px,3vw,32px); color: #5A1220; margin: 14px 0 18px; line-height: 1.45; }
.pkg-lead__text { font-size: 15.5px; line-height: 1.9; color: #5C4B3E; margin: 0; }

.pkg-highlights { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 26px 0 0; }
.pkg-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 99px;
  background: #FDF8F1; border: 1px solid rgba(184,147,91,0.35); font-size: 13.5px; font-weight: 500; color: #5C4B3E;
}
.pkg-chip svg { flex: none; }

/* Pricing cards */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 22px; }
.price-card {
  position: relative; background: #FDF8F1; border: 1px solid rgba(184,147,91,0.3); border-radius: 12px;
  padding: 38px 26px 32px; text-align: center; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(90,18,32,0.12); }
.price-card--featured { border-color: #B8935B; box-shadow: 0 12px 32px rgba(184,147,91,0.22); }
.price-card__badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 600; letter-spacing: .5px; color: #3D0D15;
  background: linear-gradient(135deg,#E2C795,#B8935B); padding: 5px 18px; border-radius: 0 0 8px 8px;
}
.price-card__label { font-size: 12.5px; letter-spacing: 2px; font-weight: 600; color: #8C6A3E; text-transform: uppercase; margin-bottom: 8px; }
.price-card__hours { font-family: var(--font-head); font-size: 22px; font-weight: 600; color: #5A1220; margin-bottom: 14px; }
.price-card__price { font-family: var(--font-head); font-size: clamp(40px,6vw,52px); font-weight: 700; line-height: 1; color: #B8935B; }
.price-card__price sup { font-size: 18px; font-weight: 600; vertical-align: super; margin-left: 2px; }
.price-card__unit { display: block; font-size: 13px; color: #6B5D52; margin-top: 8px; font-family: 'Mitr', 'Sarabun', sans-serif; font-weight: 400; }

.pkg-size-note { text-align: center; font-size: 14px; color: #6B5D52; margin: 22px 0 0; }
.pkg-size-note strong { color: #5A1220; font-weight: 600; }

/* Feature checklist */
.feature-block { margin-top: clamp(44px,6vw,64px); }
.feature-block__title { font-family: var(--font-head); font-weight: 600; font-size: clamp(19px,2.4vw,24px); color: #5A1220; text-align: center; margin: 0 0 28px; }
.feature-list { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 14px 28px; max-width: 820px; margin: 0 auto; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-item svg { flex: none; margin-top: 2px; }
.feature-item span { font-size: 15px; line-height: 1.6; color: #3A2E26; }
.feature-item strong { color: #5A1220; font-weight: 600; }

/* Add-on card */
.addon-card {
  margin-top: clamp(44px,6vw,64px); background: linear-gradient(160deg,#FDF8F1,#F4E9D6);
  border: 1px solid rgba(184,147,91,0.35); border-radius: 14px; padding: clamp(32px,5vw,48px);
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 720px) { .addon-card { grid-template-columns: 1.2fr 1fr; align-items: center; } }
.addon-card__eyebrow { font-size: 12px; letter-spacing: 3px; font-weight: 600; color: #8C6A3E; margin-bottom: 10px; }
.addon-card__title { font-family: var(--font-head); font-weight: 600; font-size: clamp(22px,2.8vw,28px); color: #5A1220; margin: 0 0 12px; }
.addon-card__text { font-size: 15px; line-height: 1.8; color: #5C4B3E; margin: 0 0 20px; }
.addon-card__list { display: grid; gap: 10px; }
.addon-prices { display: flex; gap: 14px; }
.addon-price {
  flex: 1; text-align: center; background: #FDF8F1; border: 1px solid rgba(184,147,91,0.3);
  border-radius: 10px; padding: 22px 14px;
}
.addon-price__hours { font-size: 14px; font-weight: 600; color: #5C4B3E; margin-bottom: 8px; }
.addon-price__amt { font-family: var(--font-head); font-size: clamp(30px,4.5vw,38px); font-weight: 700; line-height: 1; color: #B8935B; }
.addon-price__amt sup { font-size: 15px; font-weight: 600; vertical-align: super; margin-left: 2px; }

/* Poster thumbnails */
.poster-thumbs { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 16px; margin-top: clamp(44px,6vw,64px); max-width: 820px; margin-left: auto; margin-right: auto; }
.poster-thumb {
  position: relative; border-radius: 10px; overflow: hidden; cursor: zoom-in;
  border: 1px solid rgba(184,147,91,0.3); background: #FDF8F1; padding: 0;
  aspect-ratio: 4/5; transition: transform .3s ease, box-shadow .3s ease;
}
.poster-thumb:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(90,18,32,0.14); }
.poster-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.poster-thumb__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 12px 10px;
  background: linear-gradient(180deg,transparent,rgba(20,4,8,0.72));
  color: #F4E9D6; font-size: 12.5px; font-weight: 600; text-align: center;
}

.pkg-note { text-align: center; font-size: 13px; color: #8a7767; margin: 28px 0 0; font-style: italic; }
.pkg-cta { text-align: center; margin-top: clamp(44px,6vw,60px); }
.pkg-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 22px; }

/* Wedding placeholder recap */
.pkg-recap { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 18px; margin-top: clamp(36px,5vw,52px); }
.pkg-recap__item { background: #FDF8F1; border: 1px solid rgba(184,147,91,0.25); border-radius: 10px; padding: 24px; display: flex; align-items: center; gap: 14px; }
.pkg-recap__item svg { flex: none; }
.pkg-recap__item b { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: #2B211C; display: block; margin-bottom: 2px; }
.pkg-recap__item span { font-size: 13px; color: #6B5D52; }

.pkg-back { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; color: #8C6A3E; font-size: 14px; font-weight: 500; margin-bottom: 8px; transition: gap .3s ease; }
.pkg-back:hover { gap: 10px; }

/* Wedding category nav (show one category at a time) */
.wed-cat-nav {
  position: sticky; top: 60px; z-index: 60;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  padding: 14px 4px; margin: 0 auto clamp(28px,4vw,44px);
  background: rgba(250,243,234,0.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,147,91,0.18);
}
.wed-cat {
  border: 1px solid rgba(184,147,91,0.4); background: #FDF8F1; color: #5A1220;
  font-family: 'Mitr', 'Sarabun', sans-serif; font-size: 13.5px; font-weight: 600; letter-spacing: .2px;
  padding: 9px 18px; border-radius: 99px; cursor: pointer; white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.wed-cat:hover { border-color: #B8935B; }
.wed-cat.is-active { background: linear-gradient(135deg,#E2C795,#B8935B); color: #3D0D15; border-color: transparent; box-shadow: 0 6px 16px rgba(184,147,91,0.3); }

.pkg-subsection[data-cat] { display: none; }
.pkg-subsection[data-cat].is-active { display: block; animation: heroFadeUp .45s ease both; }

/* Wedding sub-sections */
.pkg-subsection { margin-top: clamp(56px,8vw,92px); }
.pkg-subsection:first-child { margin-top: 0; }
.pkg-subsection[data-cat] { margin-top: 0; }
.pkg-subhead { text-align: center; margin-bottom: clamp(30px,4vw,44px); }
.pkg-subhead__title { font-family: var(--font-head); font-weight: 600; font-size: clamp(24px,3.2vw,34px); color: #5A1220; margin: 12px 0 0; line-height: 1.4; }

.pkg-tier { margin-top: 40px; }
.pkg-tier__label {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 14px;
  font-family: var(--font-head); font-size: clamp(17px,2.2vw,21px); font-weight: 600; color: #5A1220;
  margin: 0 0 22px; padding-bottom: 10px; border-bottom: 2px solid rgba(184,147,91,0.3);
}
.pkg-tier__tag { font-family: 'Mitr', 'Sarabun', sans-serif; font-size: 12px; font-weight: 600; color: #8C6A3E; background: rgba(184,147,91,0.12); padding: 4px 13px; border-radius: 99px; letter-spacing: .3px; }

/* Detailed price card (with bullet list) */
.price-card--detailed { text-align: left; padding: 30px 26px; display: flex; flex-direction: column; }
.price-card--detailed .price-card__hours { margin-bottom: 2px; }
.price-card__amount { font-family: var(--font-head); font-size: clamp(30px,4vw,42px); font-weight: 700; color: #B8935B; line-height: 1; margin: 0 0 18px; }
.price-card__amount sup { font-size: 15px; font-weight: 600; vertical-align: super; margin-left: 2px; }
.price-card__amount s { font-size: 15px; font-weight: 400; color: #a9998a; margin-left: 6px; }
.price-card__list { display: grid; gap: 9px; margin: 0; }
.price-card__list .feature-item span { font-size: 13.5px; line-height: 1.55; color: #4a3d34; }
.price-card__list .feature-item svg { width: 18px; height: 18px; margin-top: 1px; }
.price-card__free { margin-top: 16px; font-size: 13px; line-height: 1.5; color: #8C6A3E; font-weight: 600; }
.price-card__free b { color: #B8935B; }
.price-card__note { margin-top: 14px; font-size: 11.5px; line-height: 1.5; color: #8a7767; font-style: italic; }

/* Ceremony shared work-detail spec box */
.ceremony-detail { background: linear-gradient(160deg,#FDF8F1,#F4E9D6); border: 1px solid rgba(184,147,91,0.35); border-radius: 12px; padding: clamp(24px,4vw,34px); margin-top: 22px; }
.ceremony-detail__title { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: #5A1220; text-align: center; margin: 0 0 18px; }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 10px 0; border-top: 1px dashed rgba(184,147,91,0.35); font-size: 14px; }
.spec-row:first-of-type { border-top: 0; }
.spec-row__k { color: #4a3d34; }
.spec-row__v { color: #5A1220; font-weight: 600; text-align: right; white-space: nowrap; }
.spec-row__v small { display: block; font-weight: 400; font-size: 11.5px; color: #8a7767; }
.ceremony-detail__free { margin-top: 16px; font-size: 13px; line-height: 1.5; color: #8C6A3E; font-weight: 600; text-align: center; }
.ceremony-detail__note { margin-top: 12px; font-size: 12px; line-height: 1.5; color: #8a7767; font-style: italic; text-align: center; }

/* Dress rental price lists */
.dress-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }
.dress-cat { background: #FDF8F1; border: 1px solid rgba(184,147,91,0.3); border-radius: 12px; padding: 28px 26px; }
.dress-cat__title { font-family: var(--font-head); font-weight: 600; font-size: 20px; color: #5A1220; margin: 0 0 4px; }
.dress-cat__sub { font-size: 12.5px; color: #8C6A3E; margin: 0 0 16px; }
.dress-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 12px 0; border-top: 1px dashed rgba(184,147,91,0.3); }
.dress-row:first-of-type { border-top: 0; }
.dress-row__name { font-size: 14.5px; color: #3A2E26; }
.dress-row__name small { display: block; font-size: 11.5px; color: #8C6A3E; }
.dress-row__price { font-family: var(--font-head); font-size: clamp(21px,2.6vw,25px); font-weight: 700; color: #B8935B; white-space: nowrap; }
.dress-cat--feature { grid-column: 1 / -1; background: linear-gradient(160deg,#5A1220,#3D0D15); border-color: rgba(226,199,149,0.4); text-align: center; }
.dress-cat--feature .dress-cat__title { color: #FDF8F1; }
.dress-cat--feature .dress-cat__sub { color: #E2C795; }
.dress-cat--feature .dress-feature__price { font-family: var(--font-head); font-size: clamp(38px,6vw,52px); font-weight: 700; color: #E2C795; line-height: 1; margin: 6px 0; }
.dress-cat--feature .dress-feature__price small { font-size: 16px; }
.dress-cat--feature .dress-feature__old { font-size: 14px; color: rgba(253,248,241,0.6); text-decoration: line-through; }
.dress-cat--feature .dress-feature__what { font-size: 14px; color: rgba(253,248,241,0.85); line-height: 1.7; margin: 14px 0 0; }

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .whyus__photo-wrap--empty { height: 320px; }
  .contact__links { gap: 20px; }
  .addon-prices { flex-direction: column; }
}

/* Mobile overrides that must beat later base rules (source order) */
@media (max-width: 768px) {
  /* Category chips: compact horizontal scroll instead of tall wrap */
  .wed-cat-nav {
    flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto;
    gap: 7px; padding: 11px 16px; margin-bottom: clamp(20px,4vw,30px);
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .wed-cat-nav::-webkit-scrollbar { display: none; }
  .wed-cat { flex: 0 0 auto; }
}
