:root {
  --bg: #f5f2eb;
  --white: #ffffff;
  --text: #18253d;
  --muted: #627086;
  --dark: #2f3039;
  --gold: #b89a56;
  --gold-deep: #a6863f;
  --line: rgba(24, 37, 61, 0.1);
  --shadow: 0 30px 70px rgba(24, 37, 61, 0.12);
  --shadow-soft: 0 18px 40px rgba(24, 37, 61, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1280px, calc(100vw - 40px));
}
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Mulish", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top center, rgba(184, 154, 86, 0.18), transparent 22%), var(--bg);
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.top-strip { background: #ece6db; color: var(--muted); font-size: 0.92rem; }
.top-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }
.top-strip-inner p { margin: 0; }
.top-strip-contact { display: flex; gap: 18px; flex-wrap: wrap; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.86); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(24,37,61,0.05); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; }
.brand { font-family: "Playfair Display", serif; font-size: 2rem; font-weight: 700; }
.brand span { color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 32px; color: var(--muted); }
.site-nav a:hover { color: var(--text); }
.reveal { opacity: 0; transition: opacity 900ms cubic-bezier(0.2,0.8,0.2,1), transform 900ms cubic-bezier(0.2,0.8,0.2,1), filter 900ms cubic-bezier(0.2,0.8,0.2,1); will-change: opacity, transform, filter; }
.reveal-slide-up { transform: translate3d(0,48px,0); filter: blur(10px); }
.reveal-hero { transform: translate3d(0,36px,0) scale(0.985); filter: blur(12px); }
.reveal.is-visible { opacity: 1; transform: translate3d(0,0,0) scale(1); filter: blur(0); }
.reveal-children > * { opacity: 0; transform: translate3d(0,24px,0); transition: opacity 650ms cubic-bezier(0.2,0.8,0.2,1), transform 650ms cubic-bezier(0.2,0.8,0.2,1); }
.reveal-children.is-visible > * { opacity: 1; transform: translate3d(0,0,0); }
.reveal-children.is-visible > *:nth-child(1) { transition-delay: 80ms; }
.reveal-children.is-visible > *:nth-child(2) { transition-delay: 150ms; }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: 220ms; }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: 290ms; }
.hero { padding: 26px 0 0; }
.hero-shell { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(420px,0.95fr); min-height: 700px; overflow: hidden; background: var(--white); border-radius: 0 0 var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow); }
.hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 700px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(24,37,61,0.04), rgba(24,37,61,0.12));
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  pointer-events: none;
}
.hero-photo-image {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: center top;
  display: block;
  animation: floatPhoto 8s ease-in-out infinite;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px 72px 72px 52px; }
.eyebrow { margin: 0 0 16px; color: #7b89a1; font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase; }
.eyebrow-dark { color: rgba(255,255,255,0.55); }
.hero-copy h1, .practice-intro h2, .section-head h2, .demo-copy h2, .booking-copy h2, .callcenter-shell h2, .voice-modal h2 { margin: 0; font-family: "Playfair Display", serif; line-height: 1.02; }
.hero-copy h1 { font-size: clamp(3rem,5.2vw,5rem); max-width: 8ch; }
.hero-copy h1 span { color: var(--gold); }
.hero-text, .practice-intro p, .service-card p, .demo-copy p, .booking-copy p, .callcenter-shell p, .voice-modal-copy, .voice-modal-note, .site-footer p, .booking-form-head p, .booking-feature-list span, .booking-side-card span { line-height: 1.8; }
.hero-text { margin: 26px 0 0; max-width: 34rem; color: var(--muted); font-size: 1.08rem; }
.hero-note { margin-top: 18px; color: var(--muted); font-size: 0.94rem; }
.hero-metrics { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin-top: 30px; }
.hero-metrics article { padding: 16px 18px; border: 1px solid rgba(24,37,61,0.08); border-radius: 18px; background: #fbfaf7; transition: transform 180ms ease, box-shadow 180ms ease; }
.hero-metrics article:hover { transform: translateY(-4px); box-shadow: 0 16px 28px rgba(24,37,61,0.08); }
.hero-metrics strong { display: block; margin-bottom: 6px; color: var(--gold-deep); font-size: 1.5rem; font-family: "Playfair Display", serif; }
.hero-metrics span { color: var(--muted); font-size: 0.92rem; }
.hero-actions, .voice-modal-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 15px 26px; border-radius: 999px; border: 1px solid transparent; font-weight: 700; cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--white); box-shadow: 0 16px 32px rgba(184,154,86,0.24); }
.button-gold:hover { background: var(--gold-deep); }
.button-light, .button-light-dark { background: var(--white); color: var(--text); border-color: var(--line); }
.button-light-dark { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.18); }
.practice-section { background: var(--dark); color: var(--white); padding: 88px 0; }
.practice-layout { display: grid; grid-template-columns: minmax(0,0.95fr) minmax(0,1.05fr); gap: 46px; }
.practice-intro h2 { font-size: clamp(2rem,3vw,3rem); max-width: 10ch; }
.practice-intro p { margin-top: 18px; color: rgba(255,255,255,0.68); max-width: 34rem; }
.practice-list { display: grid; gap: 18px; }
.practice-item { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: start; padding: 10px 0; }
.practice-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.08); color: var(--gold); border: 1px solid rgba(255,255,255,0.08); transition: transform 180ms ease, background-color 180ms ease; }
.practice-item:hover .practice-icon { transform: translateY(-3px); background: rgba(184,154,86,0.18); }
.practice-icon svg, .service-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.practice-item h3 { margin: 0 0 8px; color: var(--gold); font-size: 1.15rem; }
.practice-item p { margin: 0; color: rgba(255,255,255,0.7); }
.services-section, .gallery-section, .demo-section, .booking-section, .callcenter-section { padding: 92px 0; }
.section-head { max-width: 760px; }
.section-head h2, .demo-copy h2, .booking-copy h2, .callcenter-shell h2 { font-size: clamp(2rem,3vw,2.8rem); }
.service-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; margin-top: 34px; }
.gallery-layout { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(220px,0.45fr); gap: 22px; margin-top: 34px; }
.gallery-feature { position: relative; overflow: hidden; min-height: 580px; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.gallery-main-photo { width: 100%; height: 100%; min-height: 580px; background: linear-gradient(180deg, rgba(24,37,61,0.1), rgba(24,37,61,0.38)), url("https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat; transition: background 320ms ease, transform 700ms ease; }
.gallery-feature:hover .gallery-main-photo { transform: scale(1.03); }
.gallery-overlay { position: absolute; left: 30px; right: 30px; bottom: 30px; color: var(--white); }
.gallery-overlay span { display: inline-flex; margin-bottom: 10px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.12); }
.gallery-overlay strong { display: block; max-width: 18ch; font-family: "Playfair Display", serif; font-size: 2rem; line-height: 1.08; }
.gallery-thumbs { display: grid; gap: 14px; }
.gallery-thumb { padding: 0; border: 2px solid transparent; border-radius: 20px; overflow: hidden; background: transparent; cursor: pointer; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb.is-active { border-color: var(--gold); box-shadow: 0 18px 34px rgba(184,154,86,0.18); }
.gallery-thumb-photo { display: block; min-height: 134px; background-size: cover; background-position: center; }
.gallery-thumb-photo-1 { background-image: url("https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=700&q=80"); }
.gallery-thumb-photo-2 { background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=700&q=80"); }
.gallery-thumb-photo-3 { background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=700&q=80"); }
.gallery-thumb-photo-4 { background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=700&q=80"); }
.service-card { padding: 30px; background: var(--white); border: 1px solid rgba(24,37,61,0.07); border-radius: var(--radius-md); box-shadow: 0 16px 34px rgba(24,37,61,0.06); transition: transform 180ms ease, box-shadow 180ms ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 38px rgba(24,37,61,0.1); }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 16px; background: rgba(184,154,86,0.12); color: var(--gold-deep); }
.service-card h3 { margin: 0 0 12px; font-family: "Playfair Display", serif; font-size: 1.35rem; }
.service-card p { margin: 0; color: var(--muted); }
.demo-shell { display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr); gap: 34px; align-items: stretch; padding: 34px; background: var(--white); border: 1px solid rgba(24,37,61,0.07); border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.demo-photo { height: 100%; min-height: 520px; border-radius: 28px; background: linear-gradient(180deg, rgba(24,37,61,0.06), rgba(24,37,61,0.14)), url("https://images.unsplash.com/photo-1528740561666-dc2479dc08ab?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat; }
.demo-copy { padding: 8px 6px; }
.demo-copy p { margin: 18px 0 0; color: var(--muted); }
.demo-points { display: grid; gap: 16px; margin-top: 26px; }
.demo-points article { padding: 18px 20px; border: 1px solid rgba(24,37,61,0.08); border-radius: var(--radius-md); }
.demo-points strong { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.demo-points span { color: var(--muted); }
.booking-shell, .callcenter-shell { display: grid; grid-template-columns: minmax(0,0.95fr) minmax(0,1.05fr); gap: 28px; align-items: start; }
.booking-copy { position: sticky; top: 110px; }
.booking-side-stack { display: grid; gap: 18px; margin-top: 26px; }
.booking-side-card { display: grid; gap: 8px; padding: 22px 24px; border-radius: 24px; background: var(--white); border: 1px solid rgba(24,37,61,0.08); box-shadow: var(--shadow-soft); }
.booking-side-card-highlight { background: linear-gradient(135deg, rgba(184,154,86,0.12), rgba(255,255,255,0.96)); }
.booking-side-label, .booking-panel-label { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; }
.booking-side-card strong { font-family: "Playfair Display", serif; font-size: 1.5rem; line-height: 1.08; }
.booking-feature-list { display: grid; gap: 14px; }
.booking-feature-list article { padding: 18px 20px; border-radius: 20px; border: 1px solid rgba(24,37,61,0.08); background: rgba(255,255,255,0.66); }
.booking-feature-list strong { display: block; margin-bottom: 6px; }
.booking-form { display: grid; gap: 18px; padding: 32px; background: var(--white); border: 1px solid rgba(24,37,61,0.07); border-radius: 30px; box-shadow: 0 16px 34px rgba(24,37,61,0.06); }
.booking-form-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(24,37,61,0.08); }
.booking-form-head strong { display: block; margin-top: 6px; font-size: 1.5rem; font-family: "Playfair Display", serif; }
.booking-form-head p { margin: 0; max-width: 20rem; color: var(--muted); text-align: right; }
.booking-layout { display: grid; grid-template-columns: minmax(260px,0.9fr) minmax(0,1.1fr); gap: 18px; }
.booking-picker, .booking-times { display: grid; gap: 14px; }
.booking-date-field { display: grid; gap: 8px; }
.booking-date-field span, .booking-note, .booking-calendar-top span, .booking-times-head span { color: var(--muted); font-size: 0.92rem; }
.booking-date-field input, .booking-form input, .booking-form textarea, .chat-inputbar input { width: 100%; padding: 15px 16px; border: 1px solid rgba(24,37,61,0.1); border-radius: 14px; outline: none; background: #fffdf8; }
.booking-calendar-card, .booking-times { padding: 18px; border-radius: 22px; border: 1px solid rgba(24,37,61,0.08); background: #fbfaf7; }
.booking-calendar-top, .booking-times-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.booking-calendar-top strong, .booking-times-head strong { font-family: "Playfair Display", serif; font-size: 1.15rem; }
.booking-weekdays, .booking-calendar-grid { display: grid; grid-template-columns: repeat(7,minmax(0,1fr)); gap: 8px; margin-top: 14px; }
.booking-weekdays span { color: var(--muted); font-size: 0.82rem; text-align: center; }
.calendar-day, .calendar-day-empty { aspect-ratio: 1; }
.calendar-day { display: grid; place-items: center; padding: 0; border: 1px solid rgba(24,37,61,0.08); border-radius: 14px; background: var(--white); color: var(--text); cursor: pointer; transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease; }
.calendar-day:hover { transform: translateY(-2px); }
.calendar-day.is-muted { color: #a9b1bf; background: rgba(24,37,61,0.03); }
.calendar-day.is-selected { color: var(--white); border-color: var(--gold); background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.calendar-day.is-today { box-shadow: inset 0 0 0 1px rgba(184,154,86,0.35); }
.slot-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.slot-button { padding: 14px 14px; border: 1px solid rgba(24,37,61,0.1); border-radius: 16px; background: var(--white); color: var(--text); cursor: pointer; transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease; }
.slot-button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(24,37,61,0.08); }
.slot-button.is-selected { background: var(--gold); border-color: var(--gold); color: var(--white); }
.booking-fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.booking-fields textarea { grid-column: 1 / -1; resize: vertical; }
.booking-note { margin: 0; }
.callcenter-section { padding-top: 0; }
.callcenter-shell { padding: 34px 38px; background: var(--dark); color: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.callcenter-shell::after { content: ""; position: absolute; right: -80px; top: -40px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(184,154,86,0.16), rgba(184,154,86,0)); pointer-events: none; }
.callcenter-shell p { color: rgba(255,255,255,0.72); }
.callcenter-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
.site-footer { padding: 60px 0 70px; background: #e9e2d5; }
.footer-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 26px; }
.site-footer h3 { margin: 0 0 12px; font-family: "Playfair Display", serif; font-size: 1.3rem; }
.site-footer p { margin: 0; color: var(--muted); }
.chat-toggle { position: fixed; right: 22px; bottom: 22px; z-index: 30; padding: 15px 20px; border: none; border-radius: 999px; background: var(--dark); color: var(--white); box-shadow: 0 16px 30px rgba(24,37,61,0.22); cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease; }
.chat-toggle:hover { transform: translateY(-3px); box-shadow: 0 22px 36px rgba(24,37,61,0.26); }
.chat-widget { position: fixed; right: 22px; bottom: 82px; z-index: 30; width: min(380px, calc(100vw - 24px)); overflow: hidden; border: 1px solid rgba(24,37,61,0.08); border-radius: 24px; background: var(--white); box-shadow: 0 30px 60px rgba(24,37,61,0.18); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 180ms ease, transform 180ms ease; }
.chat-widget.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.chat-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 18px 20px; background: var(--dark); color: var(--white); }
.chat-header strong { display: block; }
.chat-header span { display: block; margin-top: 4px; color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.chat-header button, .voice-modal-close { border: none; background: transparent; color: inherit; font-size: 1.7rem; cursor: pointer; }
.chat-body { display: grid; gap: 12px; max-height: 300px; padding: 18px; overflow: auto; }
.message { max-width: 85%; padding: 14px 16px; border-radius: 18px; }
.message p { margin: 0; line-height: 1.6; }
.message-user { justify-self: end; background: var(--dark); color: var(--white); }
.message-bot { background: rgba(184,154,86,0.16); }
.chat-inputbar { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 16px; border-top: 1px solid rgba(24,37,61,0.08); }
.chat-inputbar button { padding: 0 18px; border: none; border-radius: 14px; background: var(--gold); color: var(--white); cursor: pointer; }
.voice-modal-backdrop { position: fixed; inset: 0; z-index: 40; background: rgba(24,37,61,0.42); backdrop-filter: blur(6px); }
.voice-modal { position: fixed; left: 50%; top: 50%; z-index: 41; width: min(560px, calc(100vw - 28px)); padding: 30px; border-radius: 28px; transform: translate(-50%, -50%); background: var(--white); box-shadow: 0 30px 60px rgba(24,37,61,0.22); animation: modalEnter 220ms ease; }
.voice-modal h2 { font-size: clamp(1.8rem,2.8vw,2.6rem); }
.voice-modal-card { display: grid; gap: 6px; margin-top: 22px; padding: 18px 20px; border: 1px solid rgba(24,37,61,0.08); border-radius: 18px; background: #faf8f3; }
.voice-modal-card span { color: var(--muted); }
.voice-modal-card strong { font-size: 1.35rem; }
.voice-modal-note { margin-bottom: 0; color: var(--muted); }
@keyframes floatPhoto { 0%,100% { transform: scale(1) translateY(0); } 50% { transform: scale(1.02) translateY(-6px); } }
@keyframes modalEnter { from { opacity: 0; transform: translate(-50%, calc(-50% + 12px)); } to { opacity: 1; transform: translate(-50%, -50%); } }
@media (max-width: 1100px) {
  .hero-shell, .practice-layout, .gallery-layout, .demo-shell, .booking-shell, .callcenter-shell, .footer-grid, .service-grid, .booking-layout { grid-template-columns: 1fr; }
  .hero-copy { padding: 48px 34px 52px; }
  .hero-photo,
  .hero-photo-image { min-height: 520px; }
  .hero-photo-image { animation: none; }
  .gallery-feature, .gallery-main-photo { min-height: 460px; }
  .booking-copy { position: static; }
  .booking-form-head { flex-direction: column; }
  .booking-form-head p { max-width: none; text-align: left; }
  .callcenter-actions { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .container { width: min(100vw - 24px, 1280px); }
  .top-strip-inner, .nav-row { flex-direction: column; align-items: flex-start; }
  .site-nav { flex-wrap: wrap; gap: 14px 18px; width: 100%; }
  .hero-shell { border-radius: 0 0 24px 24px; }
  .hero-copy, .demo-shell, .booking-form, .callcenter-shell, .voice-modal { padding: 24px; }
  .hero-copy h1 { max-width: 9ch; font-size: clamp(2.35rem,11vw,3.4rem); }
  .hero-photo, .hero-photo-image, .demo-photo, .gallery-feature, .gallery-main-photo { min-height: 380px; }
  .hero-metrics, .slot-list, .booking-fields, .footer-grid { grid-template-columns: 1fr; }
  .practice-item { grid-template-columns: 58px 1fr; }
  .gallery-overlay { left: 20px; right: 20px; bottom: 20px; }
  .gallery-overlay strong { max-width: none; font-size: 1.5rem; }
  .booking-calendar-top, .booking-times-head { align-items: flex-start; flex-direction: column; }
  .top-strip-contact { gap: 10px 16px; }
  .chat-toggle { right: 14px; bottom: 14px; }
  .chat-widget { right: 12px; left: 12px; bottom: 76px; width: auto; }
}
