:root {
  --ink: #2b2221;
  --muted: #746761;
  --paper: #fff9f6;
  --cream: #f6ebe8;
  --surface: #ffffff;
  --line: #e5d8ce;
  --rose: #a94f64;
  --rose-soft: #e4a8b4;
  --sage: #768b73;
  --charcoal: #2a302e;
  --gold: #c7a25c;
  --shadow: 0 22px 60px rgba(67, 45, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: clamp(18px, 5vw, 70px);
  color: var(--ink);
  background: #cbbbc5;
  font-family: "Segoe UI", "Noto Sans Thai", Tahoma, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-frame {
  width: min(1760px, 100%);
  margin: 0 auto;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(ellipse at 86% 0%, rgba(229, 168, 188, 0.5), transparent 34%),
    linear-gradient(135deg, #fff8f7 0%, #fff8f7 64%, #efd9e4 100%);
  box-shadow: 0 34px 90px rgba(69, 52, 64, 0.18);
}

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: clamp(36px, 5vw, 72px) clamp(18px, 5vw, 64px) 18px;
  border-bottom: 0;
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 0;
  text-align: center;
}

.brand-mark {
  display: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #9f7190;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-style: italic;
  line-height: 0.92;
}

.brand small {
  margin-top: 12px;
  color: #b49da9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.82rem, 1.4vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: clamp(16px, 3vw, 46px);
  row-gap: 10px;
  width: min(1120px, 100%);
  padding-top: 18px;
  border-top: 1px solid #d7c5cd;
  color: #9f8793;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--rose);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1.08fr);
  min-height: 0;
  overflow: hidden;
  padding: 28px clamp(18px, 5vw, 70px) 0;
  background:
    linear-gradient(110deg, rgba(255, 248, 247, 0.78), rgba(244, 226, 236, 0.3)),
    transparent;
}

.pixel-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.58;
  pointer-events: none;
}

.hero-image,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-image {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 12px;
  align-items: stretch;
  min-height: 520px;
  overflow: hidden;
  border: 14px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(145deg, #ffd5e7, #ddf6fb);
  box-shadow: 0 24px 70px rgba(156, 109, 128, 0.16);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main {
  height: 100%;
  min-height: 520px;
  object-position: 50% center;
}

.hero-accent {
  position: static;
  width: 100%;
  min-height: 520px;
  border-left: 12px solid rgba(255, 255, 255, 0.72);
  box-shadow: none;
  object-position: center;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 76px);
  color: var(--ink);
  background: rgba(255, 248, 247, 0.72);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 20px;
  color: #9f7190;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-style: italic;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.12rem;
}

.rating-card {
  display: grid;
  width: min(280px, 100%);
  gap: 2px;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.rating-card strong {
  font-size: 3rem;
  line-height: 1;
}

.rating-card span {
  color: #f6c646;
  letter-spacing: 0.08em;
}

.rating-card small {
  color: var(--muted);
  font-weight: 800;
}

.hero-actions,
.section-heading,
.proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--rose);
  box-shadow: 0 16px 34px rgba(159, 79, 99, 0.28);
}

.button.quiet {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.button.light {
  color: var(--ink);
  background: #fff;
}

.button:hover,
.phone-link:hover {
  transform: translateY(-1px);
}

.status-strip {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1.4fr;
  margin: 0 clamp(18px, 5vw, 70px);
  border: 1px solid #eadbe1;
  background: rgba(255, 255, 255, 0.68);
}

.studio-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 70px);
  background: transparent;
}

.studio-intro p:last-child {
  color: var(--muted);
  font-size: 1.12rem;
}

.status-strip div {
  padding: 22px clamp(18px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.status-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-strip strong {
  display: block;
  margin-top: 4px;
}

.map-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--rose);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.services,
.lashes,
.certificates,
.gallery,
.promotion,
.booking,
.site-footer {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 70px);
}

.services {
  background: transparent;
}

.lashes {
  background: rgba(255, 255, 255, 0.48);
}

.certificates {
  background: transparent;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  margin-bottom: 6px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 290px;
  padding: 26px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.service-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
  font-weight: 900;
}

.service-grid p,
.proof-copy p,
.lash-copy p,
.certificate-copy p,
.booking p,
figcaption {
  color: var(--muted);
}

.certificate-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.certificate-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid #eadbe1;
  background: rgba(255, 255, 255, 0.72);
}

.certificate-copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 800;
}

.certificate-layout img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.promotion {
  margin: 0 clamp(18px, 5vw, 70px) clamp(58px, 8vw, 90px);
  border: 1px solid #eadbe1;
  background:
    linear-gradient(135deg, rgba(255, 248, 247, 0.92), rgba(240, 218, 224, 0.72)),
    #fff;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.promo-card {
  overflow: hidden;
  border: 1px solid #e3c7bc;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(119, 78, 47, 0.12);
}

.promo-card.featured {
  border-color: #c79b75;
}

.promo-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid #eadbe1;
}

.promo-card div {
  padding: 18px;
}

.promo-card h3 {
  margin-bottom: 8px;
}

.promo-card strong {
  display: block;
  color: #7b4a22;
  font-size: 2rem;
  line-height: 1;
}

.promo-button {
  margin-top: 18px;
}

.lash-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

.lash-card.large {
  grid-row: span 2;
}

.lash-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
}

.lash-card.large img {
  height: 590px;
}

.color-guide img {
  object-fit: contain;
  background: #fff;
}

.lash-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  padding: 28px;
  border: 1px solid #eadbe1;
  background: rgba(255, 255, 255, 0.72);
}

.lash-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.proof {
  align-items: stretch;
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 70px);
  color: var(--ink);
  margin: 0 clamp(18px, 5vw, 70px);
  border: 1px solid #eadbe1;
  background: rgba(255, 255, 255, 0.62);
}

.proof-copy {
  width: min(520px, 100%);
}

.proof-copy p {
  color: var(--muted);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
  width: min(760px, 100%);
}

blockquote {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

blockquote p {
  font-size: 1.05rem;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.gallery {
  background: transparent;
}

.shop-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 22px 60px rgba(156, 109, 128, 0.16);
}

.shop-gallery img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.shop-gallery .tall {
  grid-row: span 2;
}

.shop-gallery .tall img {
  height: 640px;
}

.shop-gallery .wide {
  grid-column: span 2;
}

.shop-gallery .wide img {
  height: 440px;
}

.shop-gallery figcaption,
.lash-card figcaption {
  position: absolute;
  right: 50%;
  bottom: 16px;
  min-height: 0;
  width: min(170px, calc(100% - 34px));
  padding: 10px 18px;
  border-radius: 999px;
  color: #9f8793;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  text-align: center;
  transform: translateX(50%);
}

.certificate-layout figcaption {
  padding: 12px 0 0;
  color: var(--muted);
  font-weight: 900;
}

.google-gallery {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #eadbe1;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.62);
}

.google-gallery > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
}

.google-gallery h3 {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.google-gallery img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: top center;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.google-gallery figcaption {
  position: static;
  width: auto;
  min-height: auto;
  padding: 12px;
  border-radius: 0;
  background: transparent;
  font-size: 0.92rem;
  transform: none;
}

.booking {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  margin: 0 clamp(18px, 5vw, 70px) clamp(58px, 8vw, 100px);
  border: 1px solid #eadbe1;
  background: rgba(255, 255, 255, 0.66);
}

.phone-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--rose);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(199, 162, 92, 0.28);
  border-color: var(--gold);
}

.full {
  grid-column: 1 / -1;
}

.booking-output {
  white-space: pre-wrap;
  border: 1px dashed var(--rose-soft);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  background: #fff6f7;
}

.booking-output-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-output-actions[hidden] {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  color: var(--ink);
  background: rgba(255, 248, 247, 0.72);
}

.site-footer h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.site-footer p {
  color: var(--muted);
}

address {
  display: grid;
  gap: 9px;
  min-width: min(420px, 100%);
  color: var(--muted);
  font-style: normal;
}

address a,
.owner-links summary {
  color: var(--rose);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.owner-links {
  margin-top: 6px;
}

.owner-links summary {
  cursor: pointer;
}

.owner-links span,
.owner-links a {
  display: block;
  margin-top: 8px;
}

.chat-widget {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.chat-panel {
  width: min(360px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid #eadbe1;
  border-radius: 8px;
  background: #fff8f7;
  box-shadow: 0 24px 64px rgba(99, 52, 72, 0.24);
}

.chat-panel[hidden] {
  display: none;
}

.chat-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  color: #fff;
  background: #9f4f63;
  font-weight: 900;
}

.chat-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font: inherit;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.chat-bubble {
  margin: 14px;
  white-space: pre-wrap;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.chat-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 14px 14px;
}

.chat-quick-actions button,
.chat-send {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
}

.chat-send {
  display: grid;
  place-items: center;
  margin: 0 14px 14px;
  color: #fff;
  background: #9f4f63;
}

.chat-float {
  display: grid;
  gap: 2px;
  min-width: 152px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #fff;
  background: #9f4f63;
  box-shadow: 0 18px 38px rgba(99, 52, 72, 0.28);
  cursor: pointer;
}

.chat-float span {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.chat-float strong {
  font-size: 1rem;
  line-height: 1;
}

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

@media (max-width: 1100px) {
  .hero,
  .studio-intro,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero-image {
    grid-template-columns: 1fr 1fr;
    min-height: 430px;
  }

  .hero-main,
  .hero-accent {
    min-height: 430px;
  }

  .status-strip,
  .service-grid,
  .lash-layout,
  .certificate-layout,
  .shop-gallery,
  .google-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof {
    flex-direction: column;
  }

  .review-cards {
    width: 100%;
  }
}

@media (max-width: 760px) {
  body {
    padding: 0;
  }

  .site-frame {
    border: 0;
  }

  .site-header {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    z-index: 20;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: min(72vh, 520px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff8f7;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 2.5rem;
  }

  .hero-image {
    grid-template-columns: 1fr;
    min-height: 360px;
    overflow: hidden;
  }

  .hero-main,
  .hero-accent {
    min-height: 360px;
  }

  .hero-accent {
    width: 100%;
    border-top: 10px solid rgba(255, 255, 255, 0.72);
    border-left: 0;
  }

  .hero-panel {
    padding: 42px 18px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .hero-actions,
  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-strip,
  .service-grid,
  .review-cards,
  .lash-layout,
  .certificate-layout,
  .promo-grid,
  .shop-gallery,
  .google-gallery,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .status-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .shop-gallery .wide,
  .shop-gallery .tall,
  .lash-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .shop-gallery img,
  .shop-gallery .wide img,
  .shop-gallery .tall img,
  .lash-card img,
  .lash-card.large img,
  .certificate-layout img,
  .promo-card img,
  .google-gallery img {
    height: auto;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-panel {
    width: min(340px, calc(100vw - 24px));
  }

  .chat-float {
    min-width: 132px;
    padding: 11px 15px;
  }
}
