/* De'ahwa Aroma — สไตล์ชีตหลัก
   ฟอนต์: IBM Plex Sans Thai ใช้ทั้งเว็บ (ไทย+อังกฤษ)
          Playfair Display ใช้เฉพาะหัวข้อภาษาอังกฤษล้วน ไม่มีตัวไทยตกไป fallback */

/* ---------- ตัวแปรกลาง ---------- */
:root {
  --paper:      #F4F0EA;
  --paper-2:    #E9E4DA;
  --paper-3:    #DFD8CB;
  --white:      #FFFFFF;
  --ink:        #14120F;
  --ink-2:      #1C1917;
  --ink-soft:   #3D3833;
  --muted:      #787066;
  --muted-2:    #9A9188;
  --line:       #DCD4C7;
  --line-dark:  rgba(255,255,255,.16);
  --brand:      #003348;
  --gold:       #B08D5B;

  --shell: 1320px;
  --pad: clamp(20px, 5vw, 64px);

  --f-sans: "IBM Plex Sans Thai", "Noto Sans Thai", system-ui, sans-serif;
  --f-display: "Playfair Display", Georgia, serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- รีเซ็ต ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

figure, blockquote, dl, dd { margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.32; color: var(--ink); font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--pad); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 10px 18px; border-radius: 4px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- ตัวอักษรร่วม ---------- */
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted); line-height: 1.6;
}
.display {
  font-family: var(--f-display); font-weight: 500; color: var(--ink);
  line-height: 1.06; letter-spacing: -.01em;
}
.h2-th { font-size: clamp(26px, 3.4vw, 42px); font-weight: 600; line-height: 1.34; letter-spacing: -.01em; }
.lede { color: var(--muted); font-size: clamp(15px, 1.15vw, 16px); line-height: 1.85; }

/* ---------- ปุ่ม ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 15px 28px; border: 1px solid transparent; border-radius: 2px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease);
}
.btn svg { flex: none; transition: transform .28s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: #2C2823; }
.btn--ghost { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--block { width: 100%; }

/* ---------- แถบหัวเว็บ ---------- */
.site-head {
  position: sticky; top: 0; z-index: 90;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-head.is-stuck { border-bottom-color: var(--line); background: rgba(244,240,234,.92); backdrop-filter: blur(12px); }
.site-head__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 78px;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: 108px; height: 54px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 38px); }
.nav a {
  position: relative; font-size: 14.5px; color: var(--ink-soft); padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }

.head-cta { flex: none; }
@media (min-width: 1024px) { .nav .btn { display: none; } }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 2px;
  background: var(--white); align-items: center; justify-content: center; cursor: pointer;
}

@media (max-width: 1023px) {
  .nav-toggle { display: inline-flex; }
  .head-cta { display: none; }
  .nav {
    position: fixed; inset: 78px 0 auto; display: block; flex-direction: column;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 26px; gap: 0;
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: opacity .24s var(--ease), transform .24s var(--ease);
    max-height: calc(100dvh - 78px); overflow-y: auto;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { display: block; padding: 15px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 20px; width: 100%; }
}

/* ---------- ฮีโร่ ---------- */
.hero { background: var(--paper); padding-top: clamp(28px, 4vw, 52px); overflow: hidden; }
.hero__grid {
  display: grid; gap: clamp(24px, 3vw, 44px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.32fr) minmax(0, .62fr);
  align-items: start;
}
.hero__copy { padding-top: clamp(10px, 2.4vw, 34px); }
.hero__title {
  font-family: var(--f-display); font-weight: 700; color: var(--ink);
  font-size: clamp(44px, 7.2vw, 96px); line-height: .96; letter-spacing: -.022em;
  margin: 20px 0 0;
}
.hero__title span { display: block; }
.hero__sub {
  margin-top: 26px; font-size: clamp(19px, 1.85vw, 26px); font-weight: 600;
  line-height: 1.5; color: var(--ink);
}
.hero__actions { margin-top: 30px; }
.hero__rent {
  display: flex; align-items: center; gap: 14px; margin-top: 26px;
  font-size: 14px; color: var(--muted);
}
.hero__rent-line { width: 56px; height: 1px; background: var(--ink); flex: none; position: relative; }
.hero__rent-line::after {
  content: ""; position: absolute; right: 0; top: -3px;
  border: 3.5px solid transparent; border-left-color: var(--ink);
}
.hero__pillars {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px; margin-top: clamp(34px, 4.5vw, 62px);
}
.hero__pillar-no { font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--ink); }
.hero__pillar-en {
  font-size: 11.5px; letter-spacing: .17em; text-transform: uppercase;
  color: var(--ink); margin-top: 7px; font-weight: 500;
}
.hero__pillar-th { font-size: 13.5px; color: var(--muted); margin-top: 3px; line-height: 1.6; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 5 / 7; object-fit: cover; object-position: 52% 45%;
  border-radius: 2px;
}
.hero__note {
  padding-top: clamp(16px, 3.4vw, 56px);
  font-size: 15px; line-height: 1.95; color: var(--ink-soft);
}

@media (max-width: 1023px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .hero__media { order: -1; margin-inline: calc(var(--pad) * -1); }
  .hero__media img { aspect-ratio: 4 / 3; max-height: 62vh; border-radius: 0; object-position: 50% 40%; }
  .hero__note { padding-top: 0; font-size: 15.5px; }
  .hero__pillars { margin-top: 30px; }
}
@media (max-width: 479px) {
  .hero__pillars { grid-template-columns: minmax(0, 1fr); gap: 16px; }
}

/* ---------- แถบดำสองบริการ ---------- */
.strip { background: var(--ink); color: rgba(255,255,255,.74); margin-top: clamp(30px, 4vw, 54px); }
.strip__inner {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0; padding-block: 22px;
}
.strip__item { display: flex; align-items: baseline; gap: clamp(14px, 2vw, 34px); padding-block: 8px; }
.strip__item + .strip__item { border-left: 1px solid var(--line-dark); padding-left: clamp(20px, 3vw, 46px); }
.strip__no {
  flex: none; font-size: 11.5px; letter-spacing: .17em; text-transform: uppercase;
  color: var(--white); font-weight: 500;
}
.strip__txt { font-size: 13.5px; line-height: 1.7; }
@media (max-width: 767px) {
  .strip__inner { grid-template-columns: minmax(0, 1fr); padding-block: 8px; }
  .strip__item { flex-direction: column; gap: 6px; padding-block: 16px; }
  .strip__item + .strip__item { border-left: 0; border-top: 1px solid var(--line-dark); padding-left: 0; }
}

/* ---------- บล็อกเช่าเครื่อง (สองฝั่ง) ---------- */
.rent { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); }
.rent__left {
  background: var(--paper-2);
  padding: clamp(34px, 4vw, 64px) clamp(24px, 3.4vw, 58px) 0;
  display: flex; flex-direction: column; justify-content: space-between; gap: clamp(28px, 4vw, 56px);
}
.rent__left h2 { font-size: clamp(22px, 2.3vw, 30px); font-weight: 600; line-height: 1.45; }
.rent__left img { width: calc(100% + clamp(24px, 3.4vw, 58px)); max-width: none; margin-left: calc(clamp(24px, 3.4vw, 58px) * -1); aspect-ratio: 730 / 540; object-fit: cover; }
.rent__right {
  background: var(--white); padding: clamp(34px, 4vw, 64px) clamp(24px, 3.4vw, 58px);
  display: grid; grid-template-columns: minmax(0, 1fr) clamp(120px, 15vw, 190px);
  gap: clamp(20px, 3vw, 44px); align-content: start;
}
.rent__head .display { font-size: clamp(30px, 3.5vw, 46px); }
.rent__head h3 { margin-top: 18px; font-size: clamp(18px, 1.6vw, 22px); font-weight: 600; line-height: 1.5; }
.rent__head p { margin-top: 18px; }
.rent__tower { align-self: start; }
.rent__tower img { width: 100%; aspect-ratio: 300 / 647; object-fit: contain; object-position: top center; }
.rent__features {
  grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 26px); margin-top: clamp(18px, 2.6vw, 38px);
  padding-top: clamp(20px, 2.6vw, 34px); border-top: 1px solid var(--line);
}
.feature { text-align: center; }
.feature__icon {
  width: 42px; height: 42px; margin: 0 auto 12px;
  display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%;
  color: var(--ink);
}
.feature__icon svg { width: 20px; height: 20px; }
.feature p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

@media (max-width: 1023px) {
  .rent { grid-template-columns: minmax(0, 1fr); }
  .rent__right { grid-template-columns: minmax(0, 1fr); }
  .rent__tower { max-width: 118px; }
}
@media (max-width: 767px) {
  .rent__features { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 10px; }
}

/* ---------- คอลเลกชันกลิ่น ---------- */
.section { padding-block: clamp(52px, 7vw, 104px); }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }

.sec-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(16px, 3vw, 48px); align-items: end; margin-bottom: clamp(26px, 3.6vw, 50px);
}
.sec-head__title { margin-top: 12px; }
.sec-head p { justify-self: end; text-align: right; max-width: 42ch; }
@media (max-width: 767px) {
  .sec-head { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .sec-head p { justify-self: start; text-align: left; }
}

.scents { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(10px, 1.6vw, 24px); }
.scent { display: block; }
.scent img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 46%; }
.scent__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 16px; margin-top: 14px; border-top: 1px solid var(--line);
}
.scent__name { font-size: 14px; color: var(--ink); font-weight: 500; line-height: 1.5; }
.scent__bar svg { flex: none; color: var(--ink); transition: transform .28s var(--ease); }
.scent:hover .scent__bar svg { transform: translateX(5px); }
.scent img { transition: opacity .3s var(--ease); }
.scent:hover img { opacity: .9; }
@media (max-width: 767px) { .scents { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 10px; } }

/* ---------- แถบดำ คัดสรรกลิ่นเฉพาะ ---------- */
.curate { background: var(--ink); color: rgba(255,255,255,.72); }
.curate__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr) minmax(0, .56fr);
  gap: clamp(20px, 3vw, 46px); align-items: center;
  padding-block: clamp(44px, 5.5vw, 78px);
}
.curate h2 { color: var(--white); font-size: clamp(26px, 3.3vw, 42px); font-weight: 600; line-height: 1.36; }
.curate p { margin-top: 22px; font-size: 15px; line-height: 1.9; }
.curate__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: 50% 78%; }
.curate__aside { text-align: left; }
.curate__aside img { width: 96px; height: 48px; object-fit: contain; margin-bottom: 20px; }
.curate__aside p { margin-top: 0; font-size: 14.5px; }
@media (max-width: 1023px) {
  .curate__grid { grid-template-columns: minmax(0, 1fr); }
  .curate__media img { aspect-ratio: 16 / 11; }
}

/* ---------- Designed for your business ---------- */
.biz__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.34fr);
  gap: clamp(24px, 4vw, 64px); align-items: start;
}
.biz .display { font-size: clamp(30px, 4vw, 52px); }
.biz__sub { margin-top: 16px; font-size: clamp(17px, 1.5vw, 21px); font-weight: 500; color: var(--ink); line-height: 1.55; }
.biz__types {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px); margin-top: clamp(28px, 3.6vw, 48px);
}
.biz__type { text-align: left; }
.biz__type svg { width: 30px; height: 30px; color: var(--ink); stroke-width: 1.5; }
.biz__type p { margin-top: 12px; font-size: 12.5px; color: var(--muted); line-height: 1.5; }

.biz__media { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(10px, 1.4vw, 18px); }
.biz__shot { position: relative; }
.biz__shot img { width: 100%; height: 100%; object-fit: cover; }
.biz__shot--tall { aspect-ratio: 1279 / 1600; }
.biz__shot--short { aspect-ratio: 700 / 900; align-self: end; }
.biz__shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 44px 18px 18px; font-size: 13.5px; line-height: 1.7; color: var(--white);
  background: linear-gradient(to top, rgba(10,9,8,.72), rgba(10,9,8,0));
}
@media (max-width: 1023px) { .biz__grid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 767px) {
  /* ปล่อยให้ข้อความใต้รูปตัดบรรทัดเองบนจอแคบ จะได้ไม่มีคำโดดบรรทัดสุดท้าย */
  .biz__shot figcaption { font-size: 12.5px; padding: 36px 14px 14px; }
  .biz__shot figcaption br { display: none; }
}
@media (max-width: 479px) { .biz__types { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; } }

/* ---------- ผลงาน ---------- */
.works { display: grid; grid-template-columns: 567fr 359fr 372fr; gap: clamp(10px, 1.4vw, 20px); align-items: start; }
.works img { width: 100%; object-fit: cover; }
.works__a img { aspect-ratio: 567 / 574; }
.works__b img { aspect-ratio: 359 / 574; }
.works__c img { aspect-ratio: 372 / 574; }
@media (max-width: 767px) {
  .works { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .works__a { grid-column: 1 / -1; }
  .works__a img { aspect-ratio: 16 / 10; }
}

/* ---------- ติดต่อ ---------- */
.contact__grid {
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.1fr) minmax(0, .82fr);
  gap: clamp(26px, 3.4vw, 54px); align-items: start;
}
.contact h2 { font-size: clamp(26px, 3.2vw, 40px); font-weight: 600; line-height: 1.34; }
.contact__lede { margin-top: 18px; }

.field { margin-bottom: 14px; }
.field > label { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 6px; }
.field .req { color: #B4462F; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-size: 16px; line-height: 1.5;
  background: var(--white); border: 1px solid var(--line); border-radius: 2px;
  transition: border-color .2s var(--ease);
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); outline: none; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23787066' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field--bad input, .field--bad select, .field--bad textarea { border-color: #B4462F; }
.field__err { display: none; margin-top: 6px; font-size: 12.5px; color: #B4462F; line-height: 1.5; }
.field--bad .field__err { display: block; }
.form__note { margin-top: 12px; font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.form__status { margin-top: 14px; font-size: 14px; line-height: 1.65; display: none; padding: 12px 14px; border-radius: 2px; }
.form__status.is-ok { display: block; background: #E8F0E8; color: #2A5B33; }
.form__status.is-bad { display: block; background: #F6E7E3; color: #8E3520; }

.contact__list { display: grid; gap: 16px; }
.contact__row { display: flex; align-items: center; gap: 14px; font-size: 14.5px; color: var(--ink-soft); }
.contact__row svg { width: 20px; height: 20px; flex: none; color: var(--ink); }
.contact__row a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.map-card { margin-top: 26px; background: var(--paper); border: 1px solid var(--line); padding: 20px; }
.map-card__pin { display: flex; align-items: flex-start; gap: 12px; }
.map-card__pin svg { width: 22px; height: 22px; flex: none; color: #C0392B; }
.map-card__pin p { font-size: 14px; line-height: 1.65; }
.map-card .btn { margin-top: 18px; }

@media (max-width: 1023px) { .contact__grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- ท้ายเว็บ ---------- */
.site-foot { background: var(--ink); color: rgba(255,255,255,.66); padding-top: clamp(44px, 5vw, 72px); }
.foot__grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .7fr) minmax(0, .9fr) minmax(0, 1.2fr);
  gap: clamp(26px, 3vw, 46px); padding-bottom: clamp(34px, 4vw, 56px);
}
.foot__brand img { width: 128px; height: 64px; object-fit: contain; }
.foot__brand p { margin-top: 18px; font-size: 14px; line-height: 1.8; max-width: 30ch; }
.foot h3 { color: var(--white); font-size: 13.5px; font-weight: 600; margin-bottom: 16px; }
.foot__links { display: grid; gap: 11px; font-size: 14px; }
.foot__links a:hover { color: var(--white); }
.foot .contact__row { color: rgba(255,255,255,.66); font-size: 14px; }
.foot .contact__row svg { color: rgba(255,255,255,.66); }
.foot .contact__row a:hover { color: var(--white); }
.foot__addr { font-size: 14px; line-height: 1.85; }
.foot__bottom {
  border-top: 1px solid var(--line-dark); padding-block: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.5);
}
@media (max-width: 1023px) { .foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 559px) { .foot__grid { grid-template-columns: minmax(0, 1fr); gap: 30px; } }

/* ---------- ปุ่มลอยมือถือ ---------- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none;
  grid-template-columns: repeat(2, 1fr); background: var(--ink); border-top: 1px solid var(--line-dark);
}
.dock a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  height: 56px; font-size: 14.5px; font-weight: 500; color: var(--paper);
}
.dock a + a { border-left: 1px solid var(--line-dark); }
.dock svg { width: 19px; height: 19px; }
@media (max-width: 767px) {
  .dock { display: grid; }
  body { padding-bottom: 56px; }
}

/* ---------- อนิเมชันตอนเลื่อนถึง ---------- */
/* ซ่อนรอเลื่อนถึงเฉพาะเมื่อ JS ทำงาน — ถ้า JS โหลดไม่ได้ เนื้อหาต้องแสดงครบทุกส่วน */
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .55s var(--ease), transform .55s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.is-in { opacity: 1; transform: none; transition: none; }
  .btn:hover svg, .scent:hover .scent__bar svg { transform: none; }
}

/* =========================================================
   ส่วนที่ใช้เฉพาะหน้ารอง (สินค้า / เกี่ยวกับเรา / ผลงาน / ติดต่อ)
   ========================================================= */

/* ---------- หัวหน้ารอง ---------- */
.page-hero { background: var(--paper); padding-block: clamp(34px, 5vw, 76px) clamp(30px, 4vw, 58px); }
.page-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(20px, 3vw, 52px); align-items: end;
}
.page-hero h1 {
  font-size: clamp(30px, 4.4vw, 56px); font-weight: 600; line-height: 1.24;
  letter-spacing: -.015em; margin-top: 14px;
}
.page-hero p.lede { max-width: 48ch; }
.page-hero__media { margin-top: clamp(26px, 3.4vw, 48px); }
.page-hero__media img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; object-position: 50% 45%; }
@media (max-width: 767px) {
  .page-hero__grid { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .page-hero__media img { aspect-ratio: 4 / 3; }
}

/* ---------- แถบชื่อหมวด ---------- */
.band {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(16px, 3vw, 48px); row-gap: 10px; align-items: end;
  padding-bottom: 18px; margin-bottom: clamp(26px, 3.4vw, 44px); border-bottom: 1px solid var(--line);
}
.band__no, .band h2 { grid-column: 1; }
.band p { grid-column: 2; grid-row: 1 / span 2; align-self: end; justify-self: end; text-align: right; max-width: 44ch; }
@media (max-width: 767px) {
  .band { grid-template-columns: minmax(0, 1fr); }
  .band p { grid-column: 1; grid-row: auto; justify-self: start; text-align: left; margin-top: 6px; }
}
.band__no { font-size: 11.5px; letter-spacing: .17em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.band h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 600; line-height: 1.32; }
.band p { color: var(--muted); font-size: 15px; line-height: 1.85; }

/* ---------- แถวข้อความ + รูป ---------- */
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px); align-items: center;
}
.split--wide-media { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.split__media img { width: 100%; object-fit: cover; }
.split + .split { margin-top: clamp(40px, 5vw, 80px); }
.split--flip .split__media { order: -1; }
@media (max-width: 767px) {
  .split, .split--wide-media { grid-template-columns: minmax(0, 1fr); }
  .split--flip .split__media { order: 0; }
}

.prose p + p { margin-top: 16px; }
.prose h3 { font-size: clamp(19px, 1.8vw, 24px); font-weight: 600; line-height: 1.45; margin-bottom: 14px; }
.prose .lede { max-width: 58ch; }
.quote {
  font-family: var(--f-display); font-size: clamp(22px, 2.8vw, 34px); line-height: 1.45;
  color: var(--ink); font-weight: 500; margin-bottom: 22px;
}

/* ---------- การ์ดกลิ่นแบบมีคำบรรยาย ---------- */
.scent-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.8vw, 26px); }
.scent-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 46%; }
.scent-card h3 { font-size: 15.5px; font-weight: 600; margin-top: 16px; line-height: 1.5; }
.scent-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; margin-top: 7px; }
.scent-card__notes {
  display: block; margin-top: 10px; font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
}
@media (max-width: 1023px) { .scent-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 767px) { .scent-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 10px; } }

/* ---------- จุดเด่น 5 ข้อ ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2.2vw, 32px); }
.pillar { padding: clamp(20px, 2.4vw, 30px); background: var(--white); border: 1px solid var(--line); }
.section--white .pillar { background: var(--paper); }
.pillar svg { width: 26px; height: 26px; color: var(--ink); }
.pillar h3 { font-size: 16px; font-weight: 600; margin: 14px 0 8px; line-height: 1.45; }
.pillar p { font-size: 13.5px; color: var(--muted); line-height: 1.8; }
@media (max-width: 1023px) { .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 559px) { .pillars { grid-template-columns: minmax(0, 1fr); } }

/* ---------- ขั้นตอนการใช้บริการ ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 28px); }
.step { position: relative; padding-top: 22px; border-top: 1px solid var(--line); }
.step__no { font-family: var(--f-display); font-size: 30px; line-height: 1; color: var(--gold); }
.step h3 { font-size: 15.5px; font-weight: 600; margin: 12px 0 7px; line-height: 1.5; }
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.78; }
@media (max-width: 767px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; } }
@media (max-width: 419px) { .steps { grid-template-columns: minmax(0, 1fr); } }

/* ---------- รุ่นเครื่อง ---------- */
.models { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.6vw, 38px); }
.model { background: var(--white); border: 1px solid var(--line); padding: clamp(22px, 2.6vw, 34px); display: grid; gap: 20px; }
.section--white .model { background: var(--paper); }
.model__shot { display: grid; place-items: center; min-height: 230px; }
.model__shot img { max-height: 300px; width: auto; object-fit: contain; }
.model h3 { font-size: 18px; font-weight: 600; line-height: 1.45; }
.model p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-top: 10px; }
.model ul { margin-top: 14px; display: grid; gap: 9px; }
.model li { position: relative; padding-left: 18px; font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); }
.model li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
@media (max-width: 767px) { .models { grid-template-columns: minmax(0, 1fr); } }

/* ---------- คำถามที่พบบ่อย ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 18px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-size: clamp(15.5px, 1.4vw, 17px); font-weight: 600; color: var(--ink); line-height: 1.6;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 13px; height: 13px; margin-top: 7px;
  border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg); }
.faq__a { padding: 0 0 22px; max-width: 74ch; color: var(--muted); font-size: 15px; line-height: 1.9; }

/* ---------- แกลเลอรีผลงาน (หลายรูป) ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(10px, 1.4vw, 20px); }
.gallery figure { break-inside: avoid; }
.gallery img { width: 100%; object-fit: cover; }
.gallery figcaption { font-size: 13px; color: var(--muted); line-height: 1.7; margin-top: 12px; }
@media (max-width: 1023px) { .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 767px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 10px; } }

/* ---------- กล่องเคสลูกค้า ---------- */
.case { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(22px, 3.4vw, 52px); align-items: center; }
.case__media img { width: 100%; aspect-ratio: 567 / 574; object-fit: cover; }
@media (max-width: 767px) { .case { grid-template-columns: minmax(0, 1fr); } }

/* ---------- แถบชวนติดต่อ ---------- */
.cta-band { background: var(--ink); color: rgba(255,255,255,.72); }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 3vw, 48px);
  flex-wrap: wrap; padding-block: clamp(38px, 4.6vw, 64px);
}
.cta-band h2 { color: var(--white); font-size: clamp(24px, 2.9vw, 36px); font-weight: 600; line-height: 1.38; }
.cta-band p { margin-top: 12px; font-size: 15px; line-height: 1.85; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: var(--white); }
.btn--outline { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.35); }
.btn--outline:hover { border-color: var(--paper); }

/* ---------- ตารางข้อมูลติดต่อ ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.6vw, 38px); }
.info-card { padding: clamp(22px, 2.6vw, 32px); background: var(--paper); border: 1px solid var(--line); }
.section--paper .info-card { background: var(--white); }
.info-card svg { width: 24px; height: 24px; color: var(--ink); }
.info-card h3 { font-size: 15.5px; font-weight: 600; margin: 14px 0 8px; }
.info-card p, .info-card a { font-size: 14.5px; line-height: 1.8; color: var(--muted); }
.info-card a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 767px) { .info-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- แผนที่ฝัง ---------- */
.map-embed { border: 1px solid var(--line); background: var(--paper-2); }
.map-embed iframe { display: block; width: 100%; height: clamp(280px, 38vw, 420px); border: 0; }

/* ---------- ลูกค้าที่ไว้วางใจ (โลโก้ + ชื่อสาขา) ---------- */
.clients {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 3.4vw, 54px); align-items: center;
  padding: clamp(24px, 3vw, 40px) clamp(22px, 3vw, 44px);
  background: var(--white); border: 1px solid var(--line);
  margin-bottom: clamp(24px, 3.4vw, 44px);
}
.section--white .clients { background: var(--paper); }
.clients__mark {
  display: grid; place-items: center; padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid var(--line); background: var(--paper); min-height: 108px;
}
.section--white .clients__mark { background: var(--white); }
.clients__mark img { width: 100%; max-width: 280px; height: auto; object-fit: contain; }
.clients__mark span {
  font-family: var(--f-display); font-size: clamp(22px, 2.6vw, 30px); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink); line-height: 1.2;
}
.clients__names { display: grid; gap: 12px; }
.clients__names li {
  display: flex; align-items: baseline; gap: 12px;
  font-size: clamp(16px, 1.5vw, 19px); font-weight: 600; color: var(--ink); line-height: 1.5;
}
.clients__names li::before {
  content: ""; flex: none; width: 18px; height: 1px; background: var(--gold); transform: translateY(-5px);
}
@media (max-width: 767px) { .clients { grid-template-columns: minmax(0, 1fr); } }

/* ---------- สาขาที่จำหน่าย ---------- */
.branches { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 2vw, 22px); }
.branch { padding: clamp(18px, 2.2vw, 26px); background: var(--paper); border: 1px solid var(--line); }
.section--paper .branch, .contact .branch { background: var(--white); }
.branch__no {
  font-size: 11.5px; letter-spacing: .17em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 10px;
}
.branch h3 { font-size: clamp(15.5px, 1.4vw, 17.5px); font-weight: 600; line-height: 1.5; }
.branch__meta { margin-top: 9px; font-size: 14px; color: var(--muted); line-height: 1.8; }
.branch__hours { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.branch__hours svg { width: 15px; height: 15px; flex: none; color: var(--gold); }
.branch a.branch__map {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: 13.5px; font-weight: 500; color: var(--ink);
}
.branch a.branch__map svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.branch a.branch__map:hover svg { transform: translateX(4px); }
.branches--stack { grid-template-columns: minmax(0, 1fr); margin-top: 26px; }
@media (max-width: 559px) { .branches { grid-template-columns: minmax(0, 1fr); } }

/* ---------- โลโก้ศูนย์การค้าเหนือรายการสาขา ---------- */
.partner-mark {
  display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); flex-wrap: wrap;
  padding-bottom: 20px; margin-bottom: clamp(20px, 2.6vw, 30px); border-bottom: 1px solid var(--line);
}
.partner-mark img { width: clamp(150px, 19vw, 210px); height: auto; }
.partner-mark p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.branches--stack .partner-mark { margin-bottom: 18px; }

/* ---------- แผนที่ในการ์ดสาขา ---------- */
.branch__frame {
  margin-top: 16px; border: 1px solid var(--line); background: var(--paper-2);
  overflow: hidden; line-height: 0;
}
.branch__frame iframe {
  display: block; width: 100%; aspect-ratio: 16 / 10; border: 0;
  filter: grayscale(.18) contrast(1.02);
}
.branches--stack .branch__frame iframe { aspect-ratio: 16 / 11; }
@media (prefers-reduced-motion: reduce) { .branch__frame iframe { filter: none; } }
