:root {
  --cream: #f3efe9;
  --cream-dark: #e6dfd6;
  --nude: #d4c6b8;
  --rose: #8a7460;
  --rose-deep: #6e5b4a;
  --brown: #6e5b4a;
  --ink: #111;
  --gold: #a8927c;
  --muted: #6f675f;
  --white: #fff;
  --beige: #c9bfb4;
  --beige-deep: #b7ab9e;
  --black: #0d0d0d;
  --font-sans: "Archivo", "Be Vietnam Pro", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", "Gotu", Georgia, serif;
  --font-script: "Great Vibes", "Segoe Script", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--beige); color: var(--ink); }

.wrap { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }
.serif { font-family: var(--font-serif); }
.muted { color: var(--muted); }
.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.btn-primary { background: var(--beige-deep); color: #fff; }
.btn-primary:hover { background: #9a8b7c; }
.btn-ghost { background: transparent; border: 1px solid currentColor; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-sm { padding: 8px 14px; font-size: 11px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.promo {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.promo a { text-decoration: underline; }

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 28px;
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  color: #555;
}
.topbar strong { font-weight: 500; letter-spacing: 0.04em; }

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.social-btn.zalo { background: #0068ff; color: #fff; }
.social-btn.zalo:hover { background: #0054d1; color: #fff; }
.social-btn.facebook { background: #1877f2; color: #fff; }
.social-btn.facebook:hover { background: #0f65d8; color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.header-inner, .footer-bottom, .cta-row, .split, .three, .two, .look-grid, .gallery-grid, .catalog-grid, .news-grid {
  display: grid;
  gap: 16px;
}
.header-inner {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 0;
  width: min(1280px, calc(100% - 40px));
}
.brand { display: inline-flex; align-items: center; justify-content: center; }
.logo-img {
  height: 56px;
  width: auto;
  background: transparent;
  padding: 0;
}
.site-header .logo-img,
.admin-header .logo-img {
  height: 72px;
}
.nav { display: none; }
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.header-actions .phone-link { display: none; color: #555; font-size: 13px; }
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: none;
  border: 0;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
  padding: 8px 0;
  width: max-content;
}
.drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(13, 13, 13, 0.55);
}
.drawer.open { display: block; }
.drawer-panel {
  width: min(420px, 92vw);
  height: 100%;
  background: #fff;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: auto;
}
.drawer-close {
  align-self: flex-end;
  background: none;
  border: 0;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}
.drawer a {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}
.drawer a.social-btn {
  margin-top: 8px;
  border: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-slider {
  position: relative;
  height: min(78vh, 760px);
  min-height: 420px;
  overflow: hidden;
  background: #111;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 1; pointer-events: auto; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
}
.hero-caption {
  position: absolute;
  z-index: 2;
  left: 8%;
  bottom: 18%;
  color: #fff;
  max-width: 560px;
}
.hero-caption h2 {
  margin: 8px 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
}
.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
}
.hero-dots button.is-active { background: #fff; }

.band { padding: 72px 0; }
.band-alt { background: var(--cream); }
.band-beige {
  background: var(--beige);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.band-beige::before,
.band-beige::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.band-beige::before { width: 520px; height: 520px; left: -180px; top: -220px; }
.band-beige::after { width: 640px; height: 640px; right: -220px; bottom: -280px; }
.band-black { background: var(--black); color: #d8d3cd; }
.band-brown { background: var(--black); color: var(--cream); }
.three { grid-template-columns: repeat(3, 1fr); }
.two { grid-template-columns: 1fr 1fr; }
.four { display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}
.section-head h2 {
  margin: 6px 0 0;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
  line-height: 1;
}
.section-head.outline h2 {
  color: transparent;
  -webkit-text-stroke: 1px #cfc8bf;
}
.about-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-copy h1,
.about-copy h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 12px 0 20px;
}
.about-copy p { line-height: 1.8; color: rgba(255,255,255,0.92); }

.catalog-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
.catalog-card {
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.catalog-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 50% 18%;
  transition: transform 0.6s ease;
}
.catalog-card:hover img { transform: scale(1.06); }
.catalog-card span {
  display: block;
  background: #fff;
  color: #222;
  padding: 14px 12px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.catalog-card small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.card, .service-card, .quote {
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 24px;
}
.service-card {
  border: 1px solid #ece7e1;
  color: var(--ink);
}
.service-card h3, .card h2, .quote footer { color: var(--ink); }
.service-card h3 a { color: inherit; }
.service-card h3 a:hover { text-decoration: underline; }

.service-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
  gap: 36px;
  align-items: start;
}
.service-detail-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
  background: #111;
}

.home-services .section-head .eyebrow {
  font-family: var(--font-script);
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 400;
  color: #fff;
}
.home-services .section-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.home-services .section-head > p {
  font-size: 16px;
  line-height: 1.7;
}
.home-services .three { gap: 20px; }
.home-services .service-card {
  background: #fff;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 18px 40px rgba(80, 60, 40, 0.12);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.home-services .service-card .eyebrow {
  color: var(--rose-deep);
  letter-spacing: 0.2em;
}
.home-services .service-card .muted {
  flex: 1;
  margin: 0 0 16px;
  line-height: 1.65;
}
.home-services .service-card .btn {
  align-self: flex-start;
  margin-top: 16px;
  background: var(--brown);
  color: #fff;
}
.home-services .service-card .btn:hover { background: #5a4a3c; }
.home-services .btn-ghost {
  border-width: 1.5px;
  padding: 14px 28px;
}
.page-hero.home-services .eyebrow {
  font-family: var(--font-script);
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #fff;
}
.page-hero.home-services h1 {
  font-family: var(--font-serif);
  font-weight: 600;
}
.services-page h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--brown);
  font-size: 32px;
  letter-spacing: 0.04em;
}
.services-page .two { gap: 20px; }
.services-page .service-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.services-page .service-card .btn { margin-top: 0; }
.services-page .service-card-actions .btn-primary {
  padding: 14px 28px;
  font-size: 13px;
  background: var(--brown);
  color: #fff;
}
.services-page .service-card-actions .btn-ghost {
  padding: 8px 14px;
  font-size: 11px;
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--brown);
}
.services-page .service-card-media {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e8e0d6;
  box-shadow: 0 14px 36px rgba(80, 60, 40, 0.1);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #f3ebe3;
}
.service-card-body { padding: 28px 26px 26px; }
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(20, 16, 12, 0.88);
  display: grid;
  place-items: center;
  padding: 48px 20px 32px;
  gap: 16px;
  text-align: center;
  color: #fff;
}
.photo-lightbox[hidden] { display: none; }
.photo-lightbox img {
  max-width: min(920px, 100%);
  max-height: 72vh;
  object-fit: contain;
  background: #111;
}
.photo-lightbox-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}
.photo-lightbox p { margin: 0; font-family: var(--font-serif); font-size: 28px; }

.page-hero {
  background: var(--beige);
  color: #fff;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  right: -120px;
  top: -160px;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 8px 0 0;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-hero p { max-width: 640px; color: rgba(255,255,255,0.9); line-height: 1.7; }
.page-hero .eyebrow { color: rgba(255,255,255,0.8); }

.look-grid { grid-template-columns: 1fr 1fr; }
.look-grid img { height: 220px; object-fit: cover; width: 100%; }
.gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-card { overflow: hidden; background: #fff; }
.gallery-card img { height: 340px; width: 100%; object-fit: cover; object-position: 50% 18%; }
.gallery-card figcaption, .gallery-card p {
  padding: 12px 8px 4px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip {
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 8px 16px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}
.chip.active { background: var(--black); color: #fff; border-color: var(--black); }

.news-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
.news-card { position: relative; overflow: hidden; color: #fff; min-height: 280px; }
.news-card img { width: 100%; height: 320px; object-fit: cover; object-position: 50% 18%; }
.news-card h3 {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: transparent;
  padding: 0;
}
.quote p { line-height: 1.8; font-size: 15px; }
.quote footer {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: auto;
  min-height: 0;
  padding: 10px;
  background: #0d0d0d;
}
.about-hero-main,
.about-hero-side {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 3 / 4;
  background: #111;
}
.about-hero-main { grid-row: auto; }
.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform 0.7s ease;
}
.about-hero-side:hover img { transform: scale(1.03); }
.about-hero-main figcaption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 52px 36px 36px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78));
  color: #fff;
  max-width: 100%;
}
.about-hero-script {
  font-family: var(--font-script);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 2px;
  color: #e8dccf;
}
.about-hero-main h1 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.08;
}
.about-hero-side figcaption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 28px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
  color: #fff;
}
.about-hero-side figcaption small {
  display: block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: #e8dccf;
  margin-bottom: 4px;
}
.about-hero-side figcaption span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 0 10px 10px;
  background: #0d0d0d;
}
.about-strip figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.about-strip img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.about-strip img:hover { transform: scale(1.03); }
.about-strip figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  margin: 0;
  padding: 4px 8px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-stats {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid #ece6de;
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-stats-row > div { min-width: 0; }
.about-stats-row .eyebrow { margin-bottom: 6px; }
.about-stats-row p:last-child {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.35;
  color: var(--ink);
}

.about-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--brown);
  margin: 8px 0 20px;
  line-height: 1.15;
}
.about-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-story .muted { line-height: 1.85; margin: 0 0 16px; }
.about-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.about-mosaic img:first-child { grid-row: auto; }
.about-mosaic img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.about-value {
  background: #fff;
  color: var(--ink);
  overflow: hidden;
}
.about-value img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
}
.about-value h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 16px 18px 8px;
  font-weight: 600;
}
.about-value p {
  margin: 0 18px 20px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.about-cinematic {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 46%) 1fr;
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  background: #111;
}
.about-cinematic img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
}
.about-cinematic-copy {
  position: relative;
  z-index: 2;
  padding: 64px 8vw 56px 48px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}
.about-cinematic-copy h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin: 8px 0 22px;
}
.about-cinematic::after { display: none; }

.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.about-gallery a {
  position: relative;
  overflow: hidden;
  display: block;
  background: #111;
  aspect-ratio: 3 / 4;
}
.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.55s ease, opacity 0.3s ease;
}
.about-gallery a span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-gallery a span small {
  display: block;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: #e8dccf;
  margin-bottom: 4px;
}
.about-gallery a:hover img { transform: scale(1.04); }
.about-gallery a:hover span { opacity: 1; }

.about-copy-wide {
  max-width: 760px;
  margin: 0 auto;
}
.about-copy-wide p { line-height: 1.9; font-size: 16px; }

.cta-banner {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.cta-banner .inner { position: relative; z-index: 1; padding: 48px 20px; }
.cta-banner h2 {
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 8px 0 20px;
}
.cta-banner.about-cta {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(260px, 42%) 1fr;
  place-items: stretch;
  text-align: left;
  background: #111;
}
.cta-banner.about-cta img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
}
.cta-banner.about-cta::after { display: none; }
.cta-banner.about-cta .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 48px 8vw 48px 40px;
}

.table-wrap { overflow: auto; border: 1px solid #ece7e1; background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { text-align: left; background: var(--cream); color: var(--ink); padding: 12px 16px; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; font-weight: 500; }
td { padding: 14px 16px; border-top: 1px solid #ece7e1; vertical-align: top; }

.form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
label { display: block; font-size: 14px; }
input, select, textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #d8d0c7;
  border-radius: 0;
  padding: 10px 12px;
  background: #fff;
}
.check { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border: 1px solid #ece7e1; background: var(--white); }
.check input { width: auto; margin-top: 4px; }
.error { color: #9a3b32; font-size: 14px; }

.site-footer {
  background: var(--black);
  color: #cfc8bf;
  margin-top: 0;
}
.footer-grid { display: grid; gap: 32px; padding: 56px 0; grid-template-columns: 1.3fr 1fr 1fr 1fr; }
.site-footer strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}
.site-footer p, .site-footer a { font-size: 14px; line-height: 1.7; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  grid-template-columns: 1fr auto;
  padding: 16px 0 28px;
  font-size: 12px;
  color: #8a837b;
  border-top: 1px solid #222;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }

.float-cta {
  position: fixed;
  right: 16px;
  bottom: 84px;
  z-index: 40;
  display: grid;
  gap: 10px;
}
.float-cta a {
  min-width: 52px;
  height: 52px;
  padding: 0 8px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.float-cta a.zalo { background: #0068ff; color: #fff; }
.float-cta a.facebook { background: #1877f2; color: #fff; }
.float-cta a.call { background: var(--beige-deep); color: #fff; }

.mobile-cta {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 40;
  background: rgba(255,255,255,0.96);
  border-top: 1px solid #eee;
  padding: 8px;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 6px;
}
.mobile-cta a {
  border-radius: 0;
  padding: 10px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--ink);
}
.mobile-cta a.zalo { background: #0068ff; color: #fff; }
.mobile-cta a.facebook { background: #1877f2; color: #fff; }
.mobile-cta a.primary { background: var(--beige-deep); color: #fff; }

.till { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; align-items: start; }
.till-search { width: 100%; margin: 12px 0; }
.till-menu {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-height: 62vh;
  overflow: auto;
  padding-right: 4px;
}
.till-block h2 {
  margin: 0 0 6px;
  font-size: 26px;
  color: var(--brown);
}
.till-hint { margin: 0 0 8px; font-size: 13px; font-style: italic; }
.till-size-h,
.till-row {
  display: grid;
  gap: 6px;
  align-items: center;
}
.till-size-h {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #6f5c53);
  padding: 0 0 4px;
  border-bottom: 1px solid #ece7e1;
}
.till-size-h-sml, .till-row-sml { grid-template-columns: minmax(0, 1fr) 72px 72px 72px; }
.till-size-h-tep, .till-row-tep,
.till-size-h-range, .till-row-range { grid-template-columns: minmax(0, 1fr) 88px 88px; }
.till-row-one { grid-template-columns: minmax(0, 1fr) 110px; }
.till-row {
  padding: 4px 0;
  border-bottom: 1px solid #f3eee8;
}
.till-row-name { font-size: 14px; }
.till-price {
  appearance: none;
  border: 1px solid #ece7e1;
  background: #fff;
  padding: 8px 4px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  text-align: center;
}
.till-price:hover { border-color: var(--brown); background: #faf6f1; }
.till-block[hidden], .till-row[hidden], .till-svc[hidden] { display: none !important; }
.till-svc {
  text-align: left;
  border: 1px solid #ece7e1;
  background: #fff;
  padding: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
}
.till-svc:hover { border-color: var(--brown); }
.till-bill { position: sticky; top: 16px; }
.till-table { width: 100%; font-size: 14px; }
.till-table th, .till-table td { padding: 8px 0; border-bottom: 1px solid #eee; vertical-align: top; }
.till-qty { display: flex; gap: 4px; align-items: center; }
.till-qty input { width: 56px; }
.till-qty button { width: 32px; height: 32px; border: 1px solid #ddd; background: #fff; cursor: pointer; }
.till-sum { display: grid; gap: 8px; margin-top: 16px; }
.till-sum p { display: flex; justify-content: space-between; margin: 0; }
.till-discount { display: grid; grid-template-columns: auto 110px 1fr; gap: 8px; align-items: center; }
.till-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.till-locked .till-catalog,
.till-locked .till-discount,
.till-locked .till-line-disc,
.till-locked .till-line-staff,
.till-locked .till-qty,
.till-locked [data-remove],
.till-locked [data-extra-add],
.till-locked [data-customer-name],
.till-locked [data-customer-phone],
.till-locked [data-paid],
.till-locked [data-till-clear] {
  pointer-events: none;
  opacity: 0.55;
}
.bill-flag {
  display: inline-block;
  margin-left: 8px;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  vertical-align: middle;
}
.bill-flag.is-paid { background: #eef6ea; color: #3d6b3a; }
.bill-flag.is-open { background: #f7efe4; color: #8a5a2b; }
.till-pay-qr,
.bill-pay-qr {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #d8d0c7;
}
.till-pay-qr[hidden] { display: none !important; }
.till-pay-qr p,
.bill-pay-qr p { margin: 0; }
.till-pay-qr img,
.bill-pay-qr img {
  width: 168px;
  height: 168px;
  object-fit: contain;
  background: #fff;
}
.bill-pay-qr {
  padding: 20px 16px;
  border: 1px solid #ece7e1;
  border-radius: 12px;
  background: #faf8f6;
}
.bill-pay-qr img { width: 200px; height: 200px; }
.print-only { display: none; }
@page {
  margin: 0;
}
@media print {
  .print-only { display: inline; }
  .no-print,
  .admin-header,
  .till-catalog,
  .site-footer,
  .promo,
  .topbar,
  .site-header,
  .float-cta,
  .mobile-cta,
  .drawer { display: none !important; }
  .till { grid-template-columns: 1fr; }
  .till-bill { position: static; border: 0; box-shadow: none; }
  html, body { padding: 12mm 10mm; margin: 0; background: #fff; }
  .till-pay-qr,
  .bill-pay-qr {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .till-pay-qr img,
  .bill-pay-qr img {
    width: 200px;
    height: 200px;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 8px; margin-top: 8px; }
.slot-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  border: 1px solid #d8d0c7;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}
.slot-btn span { font-size: 12px; color: var(--muted, #7a726a); }
.slot-btn.is-full { opacity: 0.4; cursor: not-allowed; }
.slot-btn.is-selected { border-color: var(--brown); background: var(--cream); }
.tl { display: grid; grid-template-columns: 64px 1.4fr 1fr; gap: 16px; align-items: start; margin-top: 20px; }
.tl-hours { position: relative; }
.tl-hour { position: absolute; left: 0; font-size: 12px; color: #7a726a; transform: translateY(-6px); }
.tl-label { margin: 0 0 8px; font-size: 14px; }
.tl-board { position: relative; background: #faf8f6; border: 1px solid #ece7e1; overflow: hidden; }
.tl-line { position: absolute; left: 0; right: 0; height: 1px; background: #ece7e1; }
.tl-line.is-full { background: #e4c4bc; height: 2px; }
.tl-block {
  position: absolute;
  box-sizing: border-box;
  overflow: hidden;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 1.3;
  text-decoration: none;
  color: var(--ink);
}
.tl-block span { display: block; opacity: 0.75; }
.tl-block.hair { background: #d9cfc4; }
.tl-block.nail { background: #c5d2cb; }

.till-line-disc {
  display: grid;
  grid-template-columns: auto 72px 1fr;
  gap: 6px;
  align-items: center;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted, #6f675f);
}
.till-line-disc input, .till-line-disc select { font-size: 13px; }
.till-line-staff {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.till-line-staff label {
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: var(--muted, #6f675f);
}
.till-line-staff select {
  width: 100%;
  font-size: 13px;
}
.till-hh {
  font-size: 12px;
  color: var(--brown, #6e5b4a);
}
.hoa-hong-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 12px 16px;
  align-items: end;
}
.hoa-hong-role {
  display: grid;
  gap: 6px;
}
@media (max-width: 900px) {
  .hoa-hong-row { grid-template-columns: 1fr; }
}
.till-rate-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 8px;
}
.till-rate-row input {
  width: 100%;
  margin-top: 4px;
}
.till-staff-card {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 8px;
  align-items: center;
  border: 1px solid #ece7e1;
  padding: 8px 10px;
}
.till-pct { width: 64px; display: inline-block; margin: 0 4px; }
.till-staff-card .till-pct { width: 72px; }
.till-pick {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(20, 16, 12, 0.55);
  display: grid;
  place-items: center;
  padding: 16px;
}
.till-pick[hidden] { display: none; }
.till-pick-panel {
  width: min(440px, 100%);
  max-height: min(82vh, 640px);
  overflow: auto;
  background: #fff;
  padding: 16px;
}
.till-pick-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.till-pick-item {
  display: grid;
  gap: 4px;
  width: 100%;
  text-align: left;
  border: 1px solid #ece7e1;
  background: #fff;
  padding: 12px;
  margin: 0 0 8px;
  cursor: pointer;
}
.till-pick-item:hover { border-color: var(--brown); }
.till-pick-item span, .till-pick-item small { font-size: 13px; }

.slot-board-wrap { overflow-x: auto; margin: 20px 0; }
.slot-board {
  display: grid;
  grid-template-columns: repeat(var(--cols, 8), minmax(84px, 1fr));
  gap: 8px;
  min-width: min-content;
}
.slot-cell {
  position: relative;
  border: 1px solid #1a1a1a;
  background: #fff;
  border-radius: 4px;
  padding: 12px 8px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  min-height: 44px;
}
.slot-cell.is-empty {
  visibility: hidden;
  pointer-events: none;
  border: 0;
  min-height: 44px;
}
.slot-cell.is-past {
  background: #ededed;
  border-color: transparent;
  color: #b5b5b5;
}
.slot-cell.is-busy:not(.is-past) { background: #f7f3ee; }
.slot-cell.is-full:not(.is-past) { background: #eee; color: #888; border-color: #ddd; }
.slot-cell.is-selected { outline: 2px solid var(--brown); outline-offset: 1px; }
.slot-dot {
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--brown);
}
.slot-cell.is-past .slot-dot { color: #999; }
.slot-detail { margin-top: 8px; }
.slot-guest { padding-bottom: 12px; border-bottom: 1px solid #eee; }
.slot-guest:last-child { border-bottom: 0; padding-bottom: 0; }

.admin-header { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 55; }
.admin-body {
  background: #f4f0ea;
  min-height: 100vh;
}
.admin-body .admin-main { padding-top: 28px; padding-bottom: 48px; }
.admin-body .admin-title { color: var(--brown); font-size: clamp(26px, 5vw, 36px); margin: 0 0 8px; }
.admin-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  min-height: 64px;
}
.admin-header .admin-bar .logo-img { height: 48px; }
.admin-bar-title {
  margin-left: auto;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.admin-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: #f4f0ea;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.admin-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 12, 0.45);
  z-index: 56;
}
.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
  padding: 0 0 12px;
  font-size: 13px;
}
.admin-nav a {
  padding: 8px 10px;
  letter-spacing: 0.04em;
  color: #4a433c;
}
.admin-nav a.is-active {
  color: var(--brown);
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--brown);
}
.admin-nav form { margin: 0; }
.admin-form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.audit-detail {
  margin: 8px 0 0;
  padding: 10px;
  background: #f7f3ee;
  font-size: 12px;
  white-space: pre-wrap;
  overflow: auto;
  max-height: 280px;
}
.field {
  display: grid;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #6b625a;
}
.field input,
.field textarea,
.field select {
  font-size: 15px;
  letter-spacing: 0;
  color: inherit;
}
.staff-history {
  grid-column: 1 / -1;
  padding-top: 4px;
}
.staff-history summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--brown);
}
.staff-history-table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
  font-size: 14px;
}
.staff-history-table th,
.staff-history-table td {
  text-align: left;
  padding: 8px 10px 8px 0;
  border-bottom: 1px solid #eee;
}
.bill-card details { margin-top: 10px; }
.bill-card summary { cursor: pointer; font-weight: 600; color: var(--brown); }
.bill-lines { margin: 10px 0 0; font-size: 14px; }
.bill-lines p { margin: 4px 0; }
.svc-photo {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
}
.svc-photo img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  background: #111;
}
.svc-photo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.home-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 0 0 20px;
}
.home-slot-card .home-slot-photo {
  grid-template-columns: 1fr;
  margin: 8px 0 12px;
}
.home-slot-card .home-slot-photo img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.home-slot-card input {
  width: 100%;
  margin: 0 0 8px;
}
.admin-saved {
  background: #eef6ea;
  color: #3d6b32;
  padding: 10px 14px;
  margin: 12px 0 0;
}
.admin-picker {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(20, 16, 12, 0.6);
  display: grid;
  place-items: end center;
  padding: 12px;
}
.admin-picker[hidden] { display: none; }
.admin-picker-panel {
  width: min(920px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  background: #fff;
  padding: 16px;
}
.admin-picker-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.admin-picker-close {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}
.admin-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.admin-pick-item {
  border: 1px solid #ece7e1;
  background: #fff;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.admin-pick-item img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}
.admin-pick-item span {
  display: block;
  padding: 8px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .admin-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .admin-bar-title { font-size: 11px; }
  .admin-body .admin-main { padding-top: 16px; padding-bottom: 32px; }
  .admin-body .wrap { width: min(1200px, calc(100% - 24px)); }
  .admin-body .band { padding: 16px 0 40px; }
  .admin-body h1 { font-size: 26px !important; }
  .admin-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 86vw);
    z-index: 57;
    background: #fff;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    padding: 72px 16px 32px;
    transform: translateX(-110%);
    transition: transform 0.2s ease;
    overflow: auto;
    box-shadow: 8px 0 32px rgba(0,0,0,0.12);
  }
  .admin-nav.is-open { transform: translateX(0); }
  .admin-nav a {
    border-bottom: 1px solid #f0ebe4;
    padding: 14px 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
  }
  .admin-nav a.is-active { box-shadow: none; background: #f4f0ea; }
  .admin-scrim:not([hidden]) { display: block; }
  .admin-nav-open { overflow: hidden; }
  .admin-body .card { padding: 18px 16px; }
  .admin-body .filters { gap: 8px; }
  .admin-body .table-wrap { margin-left: -4px; margin-right: -4px; }
  .svc-photo { grid-template-columns: 72px 1fr; }
  .svc-photo img { width: 72px; height: 72px; }
  .admin-picker { place-items: stretch; padding: 0; }
  .admin-picker-panel { max-height: 100%; width: 100%; }
}
.menu-stage {
  width: 100%;
  overflow: hidden;
}
.menu-fit {
  width: 210mm;
  height: auto;
  margin: 0;
  transform-origin: top left;
}
.menu-frame {
  width: 210mm;
  height: auto;
  min-height: 120px;
  max-width: none;
  border: 1px solid #ece7e1;
  display: none;
  background: #fff;
}
.menu-frame.is-active { display: block; }
.menu-zoom-hint { display: none; font-size: 13px; }
.faq-list {
  display: grid;
  gap: 0;
  max-width: 720px;
}
.faq-list details {
  border-bottom: 1px solid #ece7e1;
  padding: 14px 0;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--brown);
}
.faq-list details p {
  margin: 10px 0 4px;
  color: #5c534c;
}
.stack { display: grid; gap: 16px; }
.map { width: 100%; min-height: 320px; border: 0; }

@media (min-width: 901px) {
  .header-actions .phone-link { display: inline; }
}

@media (max-width: 1100px) {
  .catalog-grid, .four, .review-track, .news-grid, .about-values, .about-stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .header-actions .phone-link { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .three, .two, .look-grid, .gallery-grid, .form-grid.two,
  .catalog-grid, .four, .review-track, .news-grid, .section-head,
  .till, .till-menu, .till-discount, .tl, .till-staff-row, .till-staff-card, .till-line-staff, .till-line-disc,
  .about-story, .about-values, .service-detail { grid-template-columns: 1fr; }
  .about-hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
  .about-hero-main {
    grid-column: 1 / -1;
    grid-row: auto;
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .about-hero-main figcaption { padding: 28px 20px 24px; }
  .about-strip { grid-template-columns: repeat(3, 1fr); }
  .about-strip img { height: auto; }
  .about-stats-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .about-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
  .about-mosaic img:first-child { grid-column: 1 / -1; }
  .about-cinematic { grid-template-columns: 1fr; }
  .about-cinematic-copy { padding: 36px 24px 40px; }
  .about-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .about-gallery a span { opacity: 1; padding: 22px 10px 10px; font-size: 11px; }
  .about-value img { height: auto; }
  .cta-banner.about-cta { grid-template-columns: 1fr; }
  .cta-banner.about-cta .inner { padding: 32px 24px 40px; }
  .till-bill { position: static; }
  .till-menu { max-height: none; }
  .mobile-cta { display: grid; }
  .float-cta { display: none; }
  .header-actions .social-btn { display: none; }
  .header-actions .btn { padding: 8px 12px; font-size: 10px; }
  body { padding-bottom: 72px; }
  .admin-body { padding-bottom: 0; }
  .hero-slider { height: 62vh; min-height: 360px; }
  .catalog-card,
  .news-card { min-height: 0; }
  .catalog-card img,
  .news-card img,
  .gallery-card img,
  .service-card-img {
    height: auto;
    object-fit: contain;
    object-position: center;
    background: #f3ebe3;
  }
  .topbar { padding: 8px 16px; font-size: 12px; }
  .menu-zoom-hint { display: block; }
}
