:root {
  --gold: #c9a24b;
  --gold-2: #e6c877;
  --gold-dark: #a8843a;
  --ink: #0e0c08;
  --ink-2: #16130d;
  --ink-3: #1f1a12;
  --cream: #f5efe2;
  --cream-2: #ece2cd;
  --muted: #b3a88f;
  --line: rgba(201, 162, 75, 0.18);
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

.container { width: min(1160px, 92%); margin: 0 auto; }

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

a { color: inherit; }

h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; line-height: 1.15; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-family: inherit;
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1.02rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }
.btn-block { width: 100%; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #171207;
  box-shadow: 0 10px 26px rgba(201, 162, 75, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(201, 162, 75, 0.5); }
.btn-outline { border-color: var(--gold); color: var(--gold-2); background: transparent; }
.btn-outline:hover { background: rgba(201, 162, 75, 0.12); transform: translateY(-3px); }
.btn-dark { background: var(--cream); color: var(--ink); }
.btn-dark:hover { transform: translateY(-3px); background: #fff; }
.btn-link { color: var(--gold-2); text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(201,162,75,.4); padding-bottom: 2px; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(14, 12, 8, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { background: rgba(14, 12, 8, 0.92); border-color: var(--line); box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold); box-shadow: 0 4px 14px rgba(201,162,75,.35); }
.brand-icon { color: var(--gold); font-size: 1.5rem; animation: spin-slow 14s linear infinite; display: inline-block; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.brand-text { font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.4rem; line-height: 1; }
.brand-text em { color: var(--gold); font-style: normal; }
.brand-text small { display: block; font-family: "Poppins", sans-serif; font-size: 0.6rem; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.9rem; }
.nav-links a:not(.btn) { text-decoration: none; font-size: 0.92rem; font-weight: 400; color: var(--cream-2); position: relative; padding: 4px 0; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:not(.btn).active { color: var(--gold-2); }
.nav-links a:not(.btn).active::after { width: 100%; }
.nav-cta { padding: 0.55rem 1.3rem; font-size: 0.85rem; }
.nav-right { display: flex; align-items: center; gap: 0.8rem; }
.lang-toggle {
  background: rgba(201,162,75,0.12); border: 1px solid var(--gold); color: var(--gold-2);
  border-radius: 999px; padding: 0.45rem 1rem; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all 0.25s ease;
}
.lang-toggle:hover { background: rgba(201,162,75,0.25); transform: translateY(-2px); }
.nav-toggle { display: none; background: none; border: 0; color: var(--gold); font-size: 1.6rem; cursor: pointer; }
.nav.shrink .nav-inner { padding: 0.55rem 0; }
.nav.shrink .brand-logo { width: 38px; height: 38px; }
.nav.shrink .brand-text { font-size: 1.2rem; }
.nav-inner { transition: padding 0.3s ease; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(201,162,75,0.16), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201,162,75,0.12), transparent 50%),
    linear-gradient(180deg, #0e0c08 0%, #1c160c 55%, #0e0c08 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: url("images/salon-3.webp") center/cover no-repeat;
  opacity: 0.16; mask-image: linear-gradient(180deg, black 0%, transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 85%);
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,75,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,75,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-eyebrow { letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.78rem; color: var(--gold-2); margin-bottom: 1.4rem; }
.hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 600; letter-spacing: 0.01em; }
.hero h1 span { display: block; font-style: italic; }
.hero h1 em { color: var(--gold); font-style: normal; position: relative; }
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 10px;
  background: linear-gradient(90deg, transparent, rgba(201,162,75,.35), transparent);
}
.hero-sub { max-width: 560px; margin: 1.5rem auto 2.2rem; color: var(--muted); font-size: 1.08rem; font-weight: 300; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 3rem; justify-content: center; margin-top: 3.5rem; }
.hero-stats .stat { text-align: center; }
.hero-stats strong { font-family: "Playfair Display", serif; font-size: 1.9rem; color: var(--gold-2); display: block; }
.hero-stats strong span { font-size: 1rem; margin-left: 2px; }
.hero-stats small { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 1.4rem; text-decoration: none; animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ---------- Brand identity: selection, scrollbar, focus ---------- */
::selection { background: rgba(201,162,75,0.85); color: #171207; }
html { scrollbar-color: var(--gold) var(--ink); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); border-radius: 6px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--ink-2); padding: 0.9rem 0; }
.marquee-track { display: flex; gap: 2.2rem; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span { font-family: "Playfair Display", serif; font-size: 1.05rem; letter-spacing: 0.06em; }
.marquee-track i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section scaffolding ---------- */
.section { padding: 6rem 0; position: relative; }
.section-head.center { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head.center .lead, .section-head p { color: var(--muted); }
.eyebrow { letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.72rem; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; }
.eyebrow.light { color: var(--gold-2); }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; margin-bottom: 1rem; }
.section-title em { color: var(--gold); font-style: italic; }

/* ---------- About ---------- */
.about { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; height: 520px; }
.about-img { position: absolute; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-a {
  width: 68%; height: 78%; left: 0; top: 0;
  background: linear-gradient(160deg, #3a2f1c, #171207 70%);
}
.about-img-b {
  width: 55%; height: 55%; right: 0; bottom: 0;
  background: linear-gradient(320deg, #241d10, #0e0c08);
  border: 1px solid var(--line);
}
.about-badge {
  position: absolute; top: 8%; right: 2%;
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #171207; display: grid; place-items: center; text-align: center;
  font-size: 0.78rem; font-weight: 600; line-height: 1.3; box-shadow: var(--shadow);
}
.about-badge strong { font-family: "Playfair Display", serif; font-size: 1.3rem; }
.about-text .lead { font-size: 1.12rem; color: var(--cream-2); margin-bottom: 1rem; }
.about-text > p:not(.lead) { color: var(--muted); margin-bottom: 1.4rem; }
.about-feats { list-style: none; margin: 1.6rem 0 2rem; display: grid; gap: 0.7rem; }
.about-feats li { padding-left: 2rem; position: relative; color: var(--cream-2); font-size: 0.95rem; }
.about-feats li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.about-actions { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }

/* ---------- Services ---------- */
.services { background: var(--ink-2); }
.tabs { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.6rem; }
.tab {
  padding: 0.65rem 1.6rem; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  font-family: inherit; font-size: 0.9rem; font-weight: 500;
  transition: all 0.25s ease;
}
.tab:hover { color: var(--gold-2); border-color: var(--gold); }
.tab.active { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #171207; border-color: transparent; font-weight: 600; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service-card {
  background: linear-gradient(180deg, rgba(201,162,75,0.06), rgba(201,162,75,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(201,162,75,.12), transparent 55%);
  opacity: 0; transition: opacity 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,.5); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow); }
.service-icon { font-size: 1.9rem; margin-bottom: 0.9rem; }
.service-card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--muted); font-size: 0.88rem; flex: 1; margin-bottom: 1rem; }
.price { font-family: "Playfair Display", serif; font-size: 1.5rem; color: var(--gold-2); margin-bottom: 1.1rem; display: block; }
.price small { font-size: 0.75rem; color: var(--muted); font-family: "Poppins", sans-serif; }
.service-card .btn { align-self: flex-start; }
.note { color: var(--muted); font-size: 0.85rem; margin-top: 2.2rem; }
.note a { color: var(--gold-2); }

/* ---------- Booking ---------- */
.book { background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.book-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; }
.book-info p { color: var(--muted); margin-bottom: 1rem; }
.book-contacts { list-style: none; display: grid; gap: 0.6rem; margin: 1.5rem 0; }
.book-contacts a { text-decoration: none; color: var(--cream-2); font-weight: 500; }
.book-contacts a:hover { color: var(--gold-2); }
.hours {
  background: rgba(201,162,75,0.06); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.6rem; margin-top: 1.4rem;
}
.hours h4 { color: var(--gold-2); margin-bottom: 0.5rem; font-size: 1.05rem; }
.hours p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.hours strong { color: var(--cream); }
.book-form {
  background: var(--ink-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.2rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.82rem; color: var(--gold-2); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(14,12,8,0.7); border: 1px solid var(--line);
  border-radius: 10px; color: var(--cream); font-family: inherit; font-size: 0.93rem;
  transition: border-color 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.15);
}
.field textarea { resize: vertical; }
.field select option { background: var(--ink-3); }
.form-note { text-align: center; color: var(--muted); font-size: 0.8rem; margin-top: 0.9rem; }

/* ---------- Gallery ---------- */
.gallery { background: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 1.2rem; }
.g-item {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,162,75,.22), transparent 60%),
    linear-gradient(150deg, #2c2414, #120e07);
  border: 1px solid var(--line);
  cursor: pointer;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.65)); }
.g-item span {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  font-family: "Playfair Display", serif; font-size: 1.05rem; color: var(--gold-2);
}
.g-1, .g-4 { grid-row: span 2; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--ink-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi-card {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testi-card:hover { transform: translateY(-5px); border-color: rgba(201,162,75,.5); }
.stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.9rem; }
.testi-card blockquote { color: var(--cream-2); font-size: 0.95rem; flex: 1; margin-bottom: 1.3rem; font-style: italic; }
.testi-card figcaption strong { color: var(--gold-2); display: block; font-size: 0.98rem; }
.testi-card figcaption span { color: var(--muted); font-size: 0.78rem; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--ink) 0%, #0a0805 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: center; }
.contact-info p { color: var(--muted); margin-bottom: 0.8rem; }
.contact-info a { color: var(--gold-2); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
.contact-info .address { color: var(--cream-2); line-height: 1.9; }
.contact-map iframe { width: 100%; height: 420px; border: 1px solid var(--line); border-radius: var(--radius); filter: grayscale(0.2) brightness(0.9); }

/* ---------- Footer ---------- */
.footer { background: #0a0805; border-top: 1px solid var(--line); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand { font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.4rem; }
.footer-brand em { color: var(--gold); font-style: normal; }
.footer-brand small { display: block; font-family: "Poppins", sans-serif; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.footer p { color: var(--muted); font-size: 0.88rem; margin-top: 1rem; max-width: 300px; }
.footer h4 { color: var(--gold-2); font-size: 1rem; margin-bottom: 1rem; }
.footer-grid a { display: block; color: var(--muted); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.55rem; transition: color 0.2s ease; }
.footer-grid a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid var(--line); padding: 1.4rem 0; text-align: center; color: var(--muted); font-size: 0.82rem; }

/* ---------- Floating actions ---------- */
.float-actions { position: fixed; bottom: 6.4rem; right: 1.5rem; z-index: 90; display: flex; flex-direction: column; gap: 0.8rem; }
.fab {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  text-decoration: none; font-size: 1.4rem; box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.fab:hover { transform: scale(1.1); }
.fab-wa { background: #25d366; color: #fff; }
.fab-call { background: var(--gold); color: #171207; }

/* ---------- Chatbot ---------- */
.chat-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 120;
  width: 62px; height: 62px; border-radius: 50%; border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #171207; font-size: 1.6rem; box-shadow: 0 12px 30px rgba(201,162,75,0.5);
  display: grid; place-items: center; transition: transform 0.25s ease;
}
.chat-fab:hover { transform: scale(1.08); }
.chat-fab-badge {
  position: absolute; top: -2px; right: -2px;
  background: #ff5a5a; color: #fff; font-size: 0.68rem; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center;
  border: 2px solid var(--ink);
}
.chat-window {
  position: fixed; bottom: 5.6rem; right: 1.5rem; z-index: 121;
  width: min(380px, calc(100vw - 3rem));
  background: var(--ink-3); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: none; flex-direction: column;
  transform-origin: bottom right;
}
.chat-window.open { display: flex; animation: pop 0.3s ease; }
@keyframes pop { from { opacity: 0; transform: scale(0.9) translateY(10px); } to { opacity: 1; transform: none; } }
.chat-header {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #171207;
}
.chat-avatar { font-size: 1.5rem; }
.chat-header strong { font-family: "Poppins", sans-serif; font-size: 0.95rem; display: block; line-height: 1.2; }
.chat-header small { font-size: 0.72rem; opacity: 0.85; }
.chat-close { margin-left: auto; background: none; border: 0; color: #171207; font-size: 1.1rem; cursor: pointer; }
.chat-body {
  height: 300px; overflow-y: auto; padding: 1rem;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.chat-body::-webkit-scrollbar { width: 6px; }
.chat-body::-webkit-scrollbar-thumb { background: rgba(201,162,75,.4); border-radius: 3px; }
.msg { max-width: 85%; padding: 0.65rem 0.9rem; border-radius: 14px; font-size: 0.87rem; line-height: 1.5; }
.msg.bot { background: rgba(201,162,75,0.1); border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg.user { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #171207; align-self: flex-end; border-bottom-right-radius: 4px; }
.msg a { color: inherit; }
.chat-quick { display: flex; gap: 0.5rem; flex-wrap: wrap; padding: 0 1rem 0.7rem; }
.chat-quick button {
  background: rgba(201,162,75,0.12); border: 1px solid var(--line);
  color: var(--gold-2); border-radius: 999px; padding: 0.35rem 0.85rem;
  font-size: 0.75rem; cursor: pointer; font-family: inherit;
  transition: all 0.2s ease;
}
.chat-quick button:hover { background: rgba(201,162,75,0.25); border-color: var(--gold); }
.chat-input { display: flex; border-top: 1px solid var(--line); }
.chat-input input {
  flex: 1; background: transparent; border: 0; padding: 0.9rem 1rem;
  color: var(--cream); font-family: inherit; font-size: 0.9rem; outline: none;
}
.chat-input button {
  background: none; border: 0; color: var(--gold); font-size: 1.2rem;
  padding: 0 1.1rem; cursor: pointer;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 5.6rem; left: 50%; transform: translateX(-50%);
  background: var(--ink-3); border: 1px solid var(--gold); color: var(--gold-2);
  padding: 0.9rem 1.6rem; border-radius: 12px; font-size: 0.9rem;
  box-shadow: var(--shadow); z-index: 150; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-8px); }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed; bottom: 6.4rem; left: 1.5rem; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold);
  background: rgba(14,12,8,0.85); color: var(--gold-2); font-size: 1.2rem;
  cursor: pointer; font-family: inherit;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.3s ease;
}
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--gold); color: #171207; }

/* ---------- Field errors ---------- */
.field-error { display: block; color: #ff6b6b; font-size: 0.75rem; margin-top: 0.35rem; }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 1.5rem;
}
.modal.open { display: flex; animation: fadeIn 0.3s ease; }
.modal-box {
  width: min(440px, 100%); background: var(--ink-3); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 2.4rem 2.2rem; text-align: center;
  box-shadow: var(--shadow);
  animation: pop 0.35s ease;
}
.modal-icon {
  width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%;
  background: rgba(37,211,102,0.15); border: 1px solid #25d366;
  display: grid; place-items: center; font-size: 1.8rem;
}
.modal-box h3 { font-size: 1.5rem; margin-bottom: 0.6rem; color: var(--gold-2); }
.modal-box p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.2rem; }
.modal-summary {
  display: grid; gap: 0.45rem; text-align: left; background: rgba(201,162,75,0.06);
  border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: 1.4rem;
  font-size: 0.88rem; color: var(--cream-2);
}
.modal-summary b { color: var(--gold-2); font-weight: 600; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem; padding: 2rem;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s ease; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 12px; box-shadow: var(--shadow); }
.lightbox-cap { color: var(--gold-2); font-family: "Playfair Display", serif; font-size: 1.1rem; }
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  background: rgba(201,162,75,0.15); border: 1px solid var(--gold); color: var(--gold-2);
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; font-family: inherit;
  transition: all 0.25s ease;
}
.lightbox-close:hover { background: var(--gold); color: #171207; transform: rotate(90deg); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(14,12,8,0.98); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 480px; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a:not(.btn) { display: block; padding: 1rem 1.4rem; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 0.8rem 1.4rem 1.4rem; text-align: center; }
  .about-grid, .book-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { height: 420px; }
  .services-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .g-1, .g-4 { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hero-cta { flex-direction: column; align-items: center; }
}