:root {
  color-scheme: light;
  --ink: #171310;
  --muted: #6d625b;
  --paper: #fffaf6;
  --surface: #ffffff;
  --soft: #fff1e8;
  --rose: #e58aa6;
  --lavender: #8b5cf6;
  --gold: #c6a143;
  --gold-dark: #8d6b18;
  --line: rgba(23, 19, 16, .13);
  --shadow: 0 22px 70px rgba(65, 45, 31, .14);
  --focus: #7c3aed;
  font-family: Raleway, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.58;
  letter-spacing: 0;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
main { overflow-x: clip; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button, a, select { touch-action: manipulation; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.wrap {
  width: min(calc(100% - 34px), 1180px);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 246, .92);
  backdrop-filter: blur(18px);
}
.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 96px;
  height: auto;
  flex: 0 0 auto;
}
.brand-text {
  display: grid;
  line-height: 1.1;
}
.brand-text strong { font-size: 1rem; }
.brand-text span { color: var(--muted); font-size: .84rem; font-weight: 700; }
.nav {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #3a312b;
  font-weight: 800;
  font-size: .94rem;
}
.top-actions { display: flex; align-items: center; gap: 10px; }
.lang-select {
  width: 58px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--ink);
  padding: 0 8px;
  font-size: 1.08rem;
  cursor: pointer;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(65,45,31,.16); }
.btn.secondary { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn.gold { background: var(--gold); border-color: var(--gold); color: #171310; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 2; flex: 0 0 auto; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; }

.hero {
  min-height: calc(100dvh - 74px);
  display: grid;
  align-items: center;
  padding: clamp(34px, 7vw, 86px) 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.hero-copy { display: grid; gap: 20px; }
.eyebrow {
  margin: 0;
  color: var(--gold-dark);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
h1, h2, h3, p { letter-spacing: 0; }
h1, h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  line-height: .98;
  font-weight: 600;
}
h1 { font-size: clamp(3rem, 7.6vw, 7rem); }
h2 { font-size: clamp(2rem, 4.8vw, 4.7rem); }
h3 { margin: 0; font-size: 1.16rem; line-height: 1.22; }
.lead {
  margin: 0;
  max-width: 720px;
  color: #3e352f;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}
.hero-media {
  position: relative;
  min-width: 0;
}
.hero-photo {
  position: relative;
  min-height: 540px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #211a17;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.photo-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: min(330px, calc(100% - 36px));
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 8px;
  padding: 15px;
  background: rgba(255,250,246,.88);
  backdrop-filter: blur(14px);
}
.photo-note strong { display: block; }
.photo-note p { margin: 4px 0 0; color: var(--muted); }
.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.fact-pill {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255,255,255,.76);
}
.fact-pill strong { display: block; font-size: 1.16rem; }
.fact-pill span { color: var(--muted); font-size: .88rem; font-weight: 700; }

.section { padding: clamp(58px, 8vw, 108px) 0; }
.section.alt { background: #fff3ee; }
.section.dark { background: #15120f; color: #fff8ef; }
.section.dark .muted, .section.dark .section-head p { color: #d9cfc3; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .55fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: end;
  margin-bottom: 28px;
}
.section-head p { margin: 0; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.mini-card, .panel, .team-card, .variant-card, .price-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 38px rgba(65,45,31,.08);
}
.mini-card, .panel, .team-card { padding: 22px; }
.mini-card p, .panel p, .team-card p { margin: 8px 0 0; color: var(--muted); }
.panel h3 { margin-bottom: 8px; }
.wide-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}
.price-stack { display: grid; gap: 12px; }
.price-group { overflow: hidden; }
.price-group summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 900;
}
.price-group summary small {
  color: var(--muted);
  font-size: .82rem;
}
.table-scroll { overflow-x: auto; }
.price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: .95rem;
}
.price-table th,
.price-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.price-table th {
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
}
.price-table td:nth-child(2),
.price-table td:nth-child(3) { white-space: nowrap; }
.price-table a {
  color: var(--gold-dark);
  font-weight: 900;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.team-card {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.team-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--soft);
  color: var(--gold-dark);
  font-weight: 900;
}
.team-card small {
  display: block;
  margin-top: 8px;
  color: #765a1f;
  font-weight: 800;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #eaded5;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.review-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.review-box {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.review-box strong { display: block; font-size: 1.6rem; }
.review-box span { color: #d9cfc3; }
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .75fr);
  gap: 22px;
  align-items: start;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.hours-table th,
.hours-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: 0; }
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 80;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  border-radius: 999px;
  background: #15120f;
  color: #fff8ef;
  padding: 12px 16px;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.premium-body {
  --paper: #14110f;
  --surface: #211a17;
  --soft: #2b211c;
  --line: rgba(255,255,255,.13);
  background: #14110f;
  color: #fff8ef;
}
.premium-body .topbar { background: rgba(20,17,15,.88); }
.premium-body .nav a,
.premium-body .brand-text span,
.premium-body .lead,
.premium-body .muted,
.premium-body .mini-card p,
.premium-body .panel p,
.premium-body .team-card p { color: #e7dcd1; }
.premium-body .mini-card,
.premium-body .panel,
.premium-body .team-card,
.premium-body .price-group,
.premium-body .wide-panel,
.premium-body .fact-pill { background: rgba(255,255,255,.06); }
.premium-body .section.alt { background: #1b1512; }
.premium-body .price-table th { color: #d7cbbd; }
.premium-body .btn.secondary { background: transparent; color: #fff8ef; }
.premium-body .footer { color: #d7cbbd; }

.service-body .hero {
  min-height: auto;
  padding: clamp(32px, 5vw, 58px) 0;
}
.service-body .hero-grid { grid-template-columns: minmax(0, .92fr) minmax(300px, .98fr); }
.service-body h1 { font-size: clamp(2.85rem, 5.4vw, 5.85rem); }

.dashboard-body { background: #f8f1ea; }
.dashboard-main { min-height: calc(100dvh - 74px); padding: clamp(24px, 4vw, 44px) 0; }
.dashboard-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(260px, .45fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.variant-card { overflow: hidden; background: #fff; }
.preview-button { display: block; }
.shot {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eaded5;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 17px; }
.card-body p { color: var(--muted); margin: 8px 0 0; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.modal.open { display: block; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
}
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - 28px), 1180px);
  height: min(calc(100dvh - 28px), 860px);
  margin: 14px auto;
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.modal-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
}
.modal-tools { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.modal-tools button, .modal-tools a {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  font-weight: 900;
}
.modal-stage {
  min-height: 0;
  background: #efe8e1;
}
.modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}
.modal-stage.mobile {
  display: grid;
  place-items: center;
  padding: 18px;
  background: #181512;
}
.modal-stage.mobile .modal-frame {
  width: min(390px, 100%);
  height: min(844px, 100%);
  border-radius: 28px;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid, .section-head, .split, .contact-panel, .dashboard-head { grid-template-columns: 1fr; }
  .quick-facts, .grid-3, .dashboard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero-photo { min-height: 430px; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 28px), 1180px); }
  .topbar-inner { min-height: 68px; }
  .brand img { width: 76px; }
  .brand-text span { display: none; }
  h1 { font-size: clamp(2.55rem, 15vw, 4.2rem); }
  .quick-facts, .grid-3, .grid-2, .team-grid, .dashboard-grid, .review-strip { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-photo { min-height: 340px; }
  .actions .btn { width: 100%; }
  .modal-toolbar { align-items: flex-start; flex-direction: column; }
}
