/* =========================================================
   Moon Cuts – Premium Barbershop
   Design System (Plain CSS)
   ========================================================= */

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h); }
img, svg { display: block; max-width: 100%; }

:root {
  /* Colors */
  --black:      #0B0B0C;
  --black-2:    #0E0E10;
  --panel:      #141416;
  --panel-2:    #17171A;
  --white:      #F6F4EF;
  --text:       #CFCBC1;
  --muted:      #938F85;
  --gold:       #C6A15B;
  --gold-light: #F0DCA6;
  --gold-deep:  #9C7A33;
  --gold-grad:  linear-gradient(135deg, #F0DCA6 0%, #C6A15B 48%, #9C7A33 100%);
  --line:       rgba(198,161,91,.20);
  --line-soft:  rgba(255,255,255,.07);

  /* Type */
  --font-display: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-body:    'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --container: 1140px;
  --radius: 6px;
  --header-h: 76px;
}

/* Thai uses a font with Thai glyphs for headings + body */
html[lang="th"] {
  --font-display: 'Noto Sans Thai', system-ui, sans-serif;
  --font-body:    'Noto Sans Thai', system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}
html[lang="th"] body { line-height: 1.85; }

a { color: inherit; text-decoration: none; }
.svg-defs { position: absolute; width: 0; height: 0; }

::selection { background: rgba(198,161,91,.28); color: #fff; }

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

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--alt { background: var(--black-2); border-block: 1px solid var(--line-soft); }

.section__head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}
html[lang="th"] .eyebrow { letter-spacing: .12em; }

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: .01em;
}
.section__intro { margin-top: 18px; color: var(--muted); font-size: 1.02rem; }

/* ---------- Brand mark / logo ---------- */
.mark { width: 34px; height: 34px; color: var(--gold); flex: none; }
.mark--xl { width: 104px; height: 96px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__img { height: 44px; width: auto; display: block; flex: none; }
.brand__fallback { display: none; }
.site-footer .brand__img { height: 48px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.24rem;
  letter-spacing: .12em;
  color: var(--white);
  text-transform: uppercase;
}
.brand__sub {
  font-size: .58rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
  font-weight: 500;
}
html[lang="th"] .brand__name,
html[lang="th"] .brand__sub { letter-spacing: .04em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
html[lang="th"] .btn { letter-spacing: .04em; }
.btn--gold {
  background: var(--gold-grad);
  color: #17130A;
  box-shadow: 0 8px 26px -12px rgba(198,161,91,.7);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(198,161,91,.85); }
.btn--ghost { border-color: var(--gold); color: var(--gold-light); background: transparent; }
.btn--ghost:hover { background: rgba(198,161,91,.10); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: .74rem; }
.btn--lg { padding: 18px 40px; font-size: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,11,12,.86);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-header .brand__sub { display: none; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text); font-weight: 500; position: relative; padding: 6px 0;
  transition: color .25s ease;
}
html[lang="th"] .nav__link { letter-spacing: .02em; text-transform: none; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-grad); transition: width .3s ease;
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__cta, .nav .lang { display: none; }

.site-header__actions { display: flex; align-items: center; gap: 16px; }

/* Language switch */
.lang { display: inline-flex; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang__btn {
  background: transparent; border: 0; cursor: pointer;
  color: var(--muted); font-family: var(--font-body); font-weight: 600;
  font-size: .72rem; letter-spacing: .08em; padding: 6px 11px; border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.lang__btn:hover { color: var(--white); }
.lang__btn.is-active { background: var(--gold-grad); color: #17130A; }

/* Hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 0; cursor: pointer; position: relative; }
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--white);
  transition: transform .3s ease, opacity .2s ease, top .3s ease; border-radius: 2px;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--header-h) + 40px) 0 80px; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 85% at 50% -15%, rgba(198,161,91,.20), transparent 55%),
    radial-gradient(90% 70% at 50% 118%, rgba(198,161,91,.10), transparent 55%),
    linear-gradient(180deg, #0B0B0C 0%, #0E0D0B 55%, #0B0B0C 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 42%, transparent 55%, rgba(0,0,0,.55) 100%);
}
.hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px;
  text-transform: uppercase; letter-spacing: .26em; font-size: .68rem; font-weight: 600; color: var(--gold-light);
  background: rgba(198,161,91,.06);
}
html[lang="th"] .hero__badge { letter-spacing: .08em; }
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 0 rgba(240,220,166,.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(240,220,166,.6);} 70% { box-shadow: 0 0 0 9px rgba(240,220,166,0);} 100% { box-shadow: 0 0 0 0 rgba(240,220,166,0);} }

.hero__lockup { margin-top: 30px; display: flex; flex-direction: column; align-items: center; }
/* Echtes Logo-Bild (assets/img/logo.png) */
.hero__title { margin: 0; display: flex; flex-direction: column; align-items: center; }
.hero__logo { width: auto; max-width: min(460px, 86%); max-height: 46vh; height: auto; margin: 4px auto 0; }
.hero__title-fallback { display: none; flex-direction: column; align-items: center; }
.hero__lockup.no-logo .hero__title-fallback { display: flex; }
/* Wenn das echte Logo (mit eigener Schere) geladen ist, den Scheren-Trenner ausblenden */
.hero__lockup:not(.no-logo) ~ .scissor-divider { display: none; }
.hero__wordmark {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.7rem, 9vw, 5.2rem); line-height: .98; letter-spacing: .06em;
  color: var(--white); text-transform: uppercase; margin-top: 14px;
}
.hero__brandline {
  margin-top: 14px; text-transform: uppercase; letter-spacing: .5em; font-size: clamp(.66rem, 1.6vw, .84rem);
  color: var(--gold); font-weight: 500; padding-left: .5em;
}
html[lang="th"] .hero__wordmark,
html[lang="th"] .hero__brandline { letter-spacing: .06em; }

.scissor-divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 30px 0 8px; width: min(340px, 80%); }
.scissor-divider__line { height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.scissor-divider__icon { width: 26px; height: 26px; }

.hero__eyebrow { text-transform: uppercase; letter-spacing: .3em; font-size: .74rem; color: var(--gold); font-weight: 600; margin-top: 14px; }
html[lang="th"] .hero__eyebrow { letter-spacing: .08em; }
.hero__intro { max-width: 560px; margin: 18px auto 0; color: var(--text); font-size: 1.05rem; }

.countdown { margin-top: 38px; }
.countdown__title { text-transform: uppercase; letter-spacing: .24em; font-size: .7rem; color: var(--muted); margin-bottom: 14px; }
.countdown__grid { display: flex; gap: 14px; justify-content: center; }
.countdown__item {
  min-width: 74px; padding: 14px 10px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255,255,255,.02); display: flex; flex-direction: column; gap: 6px;
}
.countdown__num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.countdown__label { text-transform: uppercase; letter-spacing: .14em; font-size: .6rem; color: var(--muted); }

.hero__cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 1; color: var(--gold); opacity: .8; }
.hero__scroll svg { width: 26px; height: 26px; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(6px);} }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 26px; border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--black-2));
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: 0 20px 40px -28px rgba(0,0,0,.9); }
.service-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; color: var(--white); }
.service-card__desc { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.service-card__price {
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  flex: none;
}
.services__note { text-align: center; margin-top: 26px; color: var(--muted); font-size: .82rem; font-style: italic; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
  text-align: center; padding: 34px 22px; border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: rgba(255,255,255,.015); transition: transform .28s ease, border-color .28s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--line); }
.feature__icon { width: 42px; height: 42px; margin: 0 auto 18px; }
.feature__title { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--white); }
.feature__desc { color: var(--muted); font-size: .9rem; margin-top: 10px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 1000px; margin-inline: auto; }
.gallery__item {
  position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-soft); background: linear-gradient(180deg, var(--panel), var(--black));
  transition: transform .3s ease, border-color .3s ease;
}
.gallery__item:hover { transform: translateY(-4px); border-color: var(--line); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__ph {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--muted);
}
.gallery__ph svg { width: 34px; height: 34px; opacity: .5; }
.gallery__ph span { text-transform: uppercase; letter-spacing: .2em; font-size: .64rem; }
html[lang="th"] .gallery__ph span { letter-spacing: .06em; }
.gallery__item::after { content: none; }
@keyframes shimmer { 0% { background-position: 120% 0;} 100% { background-position: -120% 0;} }

/* ---------- Location ---------- */
.location { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 940px; margin-inline: auto; }
.location__col {
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px;
  background: rgba(255,255,255,.015);
}
.location__subtitle { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--white); margin-bottom: 20px; }
.inline-icon { width: 22px; height: 22px; flex: none; }
.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: .94rem; }
.hours li:last-child { border-bottom: 0; }
.hours__val { color: var(--gold-light); font-weight: 500; }
.address { font-style: normal; color: var(--text); line-height: 1.9; margin-bottom: 20px; }
.map { margin-top: 24px; border-top: 1px solid var(--line-soft); padding-top: 22px; }
.map__load {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  background: transparent; border: 1px dashed var(--line); border-radius: var(--radius);
  color: var(--gold-light); padding: 12px 18px; font-family: var(--font-body); font-weight: 500; font-size: .84rem; width: 100%; justify-content: center;
  transition: background .2s ease;
}
.map__load:hover { background: rgba(198,161,91,.08); }
.map__note { color: var(--muted); font-size: .72rem; margin-top: 10px; }
.map iframe { width: 100%; height: 260px; border: 0; border-radius: var(--radius); }

/* ---------- Booking ---------- */
.booking {
  text-align: center;
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(198,161,91,.14), transparent 60%),
    var(--black);
  border-block: 1px solid var(--line-soft);
}
.booking__inner { max-width: 640px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.booking__mark { width: 60px; height: 56px; margin-bottom: 22px; }
.booking__logo { height: 72px; width: auto; margin-bottom: 22px; display: block; }
.booking .btn { margin-top: 30px; }
.booking__note { margin-top: 20px; color: var(--muted); font-size: .86rem; }
.booking__policy { margin-top: 34px; width: 100%; max-width: 560px; text-align: left; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(198,161,91,.05); padding: 20px 24px; }
.booking__policy-title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--gold-light); margin-bottom: 14px; text-align: center; }
.booking__policy-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.booking__policy-list li { position: relative; padding-left: 20px; color: var(--text); font-size: .9rem; line-height: 1.6; }
.booking__policy-list li::before { content: "•"; position: absolute; left: 4px; top: -1px; color: var(--gold); font-size: 1.1rem; }
.booking__widget { width: 100%; margin-top: 32px; }
.booking__widget iframe { width: 100%; min-height: 760px; border: 0; border-radius: var(--radius); background: #fff; display: block; box-shadow: 0 30px 60px -30px rgba(0,0,0,.9); }
@media (max-width: 520px) { .booking__widget iframe { min-height: 660px; } }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 34px; max-width: 980px; margin-inline: auto; }
.contact__methods { display: flex; flex-direction: column; gap: 14px; }
.contact__method {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  border: 1px solid var(--line-soft); border-radius: var(--radius); background: rgba(255,255,255,.015);
  transition: transform .25s ease, border-color .25s ease;
}
.contact__method:hover { transform: translateX(4px); border-color: var(--line); }
.contact__method svg { width: 26px; height: 26px; flex: none; }
.contact__method span { display: flex; flex-direction: column; }
.contact__method strong { color: var(--white); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.contact__method em { color: var(--gold-light); font-style: normal; font-size: .96rem; margin-top: 3px; }

.socials { margin-top: 8px; padding: 18px 20px; }
.socials__label { text-transform: uppercase; letter-spacing: .2em; font-size: .68rem; color: var(--muted); margin-bottom: 14px; }
.socials__row { display: flex; gap: 12px; }
.social {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%; transition: transform .25s ease, background .25s ease;
}
.social:hover { transform: translateY(-3px); background: rgba(198,161,91,.10); }
.social svg { width: 22px; height: 22px; }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 600; }
html[lang="th"] .field label { letter-spacing: .03em; text-transform: none; }
.field input, .field textarea {
  background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: var(--radius);
  color: var(--white); font-family: var(--font-body); font-size: .96rem; padding: 14px 16px; resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.14); }
.field input::placeholder, .field textarea::placeholder { color: #6d6a62; }
.form-status { font-size: .88rem; min-height: 1.2em; }
.form-status.is-ok { color: #7fca8c; }
.form-status.is-err { color: #e08a7a; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black-2); border-top: 1px solid var(--line-soft); padding-top: 60px; }
.site-footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 34px; padding-bottom: 44px; }
.site-footer .brand__sub { display: block; }
.site-footer__about { color: var(--muted); font-size: .9rem; margin: 18px 0; max-width: 340px; }
.site-footer__heading { text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; color: var(--white); font-weight: 600; margin-bottom: 16px; }
.site-footer__nav { display: flex; flex-direction: column; gap: 10px; }
.site-footer__nav a { color: var(--muted); font-size: .92rem; transition: color .2s ease; width: fit-content; }
.site-footer__nav a:hover { color: var(--gold-light); }
.site-footer__bottom { border-top: 1px solid var(--line-soft); padding: 22px 0; text-align: center; }
.site-footer__bottom p { color: var(--muted); font-size: .82rem; }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal-header { position: sticky; top: 0; z-index: 50; background: rgba(11,11,12,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.legal-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-light); font-size: .85rem; font-weight: 500; }
.legal-back svg { width: 18px; height: 18px; }
.legal { padding: 40px 0 80px; }
.legal .container { max-width: 820px; }
.legal h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--white); margin-bottom: 10px; }
.legal .lead { color: var(--muted); margin-bottom: 30px; }
.legal h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; color: var(--white); margin: 32px 0 12px; }
.legal p, .legal address, .legal li { color: var(--text); margin-bottom: 12px; font-style: normal; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--gold-light); text-decoration: underline; }
.legal .placeholder { color: #E7BE79; border-bottom: 1px dotted #8a6f39; }
.note-box { border: 1px solid var(--line); background: rgba(198,161,91,.06); border-radius: var(--radius); padding: 16px 18px; color: var(--gold-light); font-size: .9rem; margin-bottom: 30px; }

/* ---------- Intro (Scheren-Animation beim Scrollen) ---------- */
#introWrap { display: none; }
html.intro-on #introWrap { display: block; position: relative; height: 220vh; z-index: 60; }
#introStage { position: sticky; top: 0; height: 100svh; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--black); will-change: opacity; }
.intro__bg { position: absolute; inset: 0; background: radial-gradient(75% 55% at 50% 46%, rgba(198,161,91,.16), transparent 62%), var(--black); }
.intro__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 52% at 50% 46%, transparent 58%, rgba(0,0,0,.55)); }
.intro__logo { position: absolute; width: min(440px, 72%); height: auto; opacity: 0; z-index: 1; filter: drop-shadow(0 0 46px rgba(198,161,91,.35)); pointer-events: none; }
.scissors { position: relative; z-index: 2; width: min(300px, 58%); height: auto; filter: drop-shadow(0 24px 44px rgba(0,0,0,.55)); }
.scissors #bladeL, .scissors #bladeR { transition: transform .08s linear; }
.intro__hint { position: absolute; bottom: 6%; left: 0; right: 0; text-align: center; z-index: 3; color: var(--gold-light); text-transform: uppercase; letter-spacing: .34em; font-size: .7rem; }
.intro__hint-arrow { display: block; margin-top: 8px; font-size: 1rem; animation: bob 2s ease-in-out infinite; }
.intro__skip { position: absolute; top: 20px; right: 20px; z-index: 4; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; background: rgba(0,0,0,.35); backdrop-filter: blur(4px); }
.intro__skip:hover { color: var(--white); border-color: var(--gold); }
.site-header { transition: opacity .45s ease, transform .45s ease, visibility .45s, background .3s ease, border-color .3s ease, backdrop-filter .3s ease; }
html.intro-on body:not(.intro-done) .site-header { opacity: 0; visibility: hidden; transform: translateY(-100%); }
html[lang="th"] .intro__hint, html[lang="th"] .intro__skip { letter-spacing: .08em; }
@media (prefers-reduced-motion: reduce) { html.intro-on #introWrap { display: none; } }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in-view { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .services, .location, .contact { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .lang--desktop, .site-header__actions .btn { display: none; }
  .nav-toggle { display: block; }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: var(--black-2); border-left: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    padding: 40px; transform: translateX(100%); transition: transform .35s ease; z-index: 90;
  }
  .nav.is-open { transform: translateX(0); box-shadow: -30px 0 60px -20px rgba(0,0,0,.8); }
  .nav__link { font-size: 1.1rem; }
  .nav__cta { display: inline-flex; margin-top: 6px; }
  .nav .lang { display: inline-flex; }
  body.nav-open { overflow: hidden; }

  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; z-index: 80;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

@media (max-width: 520px) {
  .features { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .countdown__item { min-width: 64px; }
  .service-card { padding: 20px; }
  .btn { width: 100%; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
