:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --surface-2: #ede8df;
  --ink: #202326;
  --muted: #6b6f73;
  --line: #ddd5c8;
  --anthracite: #2c3135;
  --gold: #b59a72;
  --gold-soft: #e8ddcd;
  --shadow: 0 24px 70px rgba(44, 49, 53, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 72px);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221,213,200,.75);
}

.brand img { height: 72px; width: auto; object-fit: contain; }
.nav { display: flex; gap: 34px; align-items: center; }
.nav a {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--anthracite);
  opacity: .82;
  transition: opacity .2s ease, color .2s ease;
}
.nav a:hover { opacity: 1; color: var(--gold); }
.menu-toggle { display: none; }

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) clamp(22px, 5vw, 72px);
  overflow: hidden;
}

.eyebrow, .section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 18px;
}

h1, h2, h3 { line-height: 1.08; margin: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 {
  font-size: clamp(48px, 7vw, 92px);
  max-width: 820px;
  letter-spacing: -.04em;
}
h2 { font-size: clamp(34px, 4.6vw, 58px); letter-spacing: -.03em; }
h3 { font-size: 21px; letter-spacing: -.02em; }
.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--anthracite); color: #fff; box-shadow: 0 14px 30px rgba(44,49,53,.18); }
.btn.secondary { border: 1px solid var(--line); color: var(--anthracite); background: rgba(255,255,255,.35); }

.hero-visual { position: relative; min-height: 560px; }
.lobby-card {
  position: relative;
  height: min(64vw, 620px);
  min-height: 460px;
  border-radius: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 20%, rgba(255,255,255,.92), transparent 24%),
    linear-gradient(135deg, #f7f2ea 0%, #ddd3c3 48%, #2d3237 49%, #1f2326 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.75);
}
.lobby-card::before {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.45);
}
.reception-desk {
  position: absolute;
  left: 13%; right: 9%; bottom: 20%; height: 22%;
  border-radius: 18px;
  background: linear-gradient(90deg, #403b36, #6d6358, #303438);
  box-shadow: 0 22px 44px rgba(0,0,0,.28);
}
.reception-desk::after {
  content: ""; position: absolute; left: 7%; right: 7%; top: 24%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.wall-panel { position: absolute; top: 15%; bottom: 45%; width: 18%; border-radius: 18px; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.25); }
.wall-panel.one { left: 15%; }
.wall-panel.two { left: 37%; }
.plant { position: absolute; right: 13%; bottom: 38%; width: 86px; height: 86px; border-radius: 50%; background: radial-gradient(circle, #f8f1df 0 16%, #b7a98c 17% 35%, transparent 36%); }
.plant::after { content:""; position:absolute; left:30px; top:56px; width:32px; height:50px; border-radius: 0 0 15px 15px; background:#383633; }
.lamp { position: absolute; left: 18%; bottom: 42%; width: 70px; height: 86px; border-radius: 20px 20px 8px 8px; background: rgba(255,255,255,.36); clip-path: polygon(25% 0, 75% 0, 100% 54%, 62% 54%, 62% 100%, 38% 100%, 38% 54%, 0 54%); }
.floor-line { position: absolute; left: 7%; right: 7%; bottom: 13%; height: 1px; background: rgba(255,255,255,.35); }

.section { padding: clamp(78px, 8vw, 126px) clamp(22px, 5vw, 72px); }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(300px, 1fr);
  gap: clamp(36px, 7vw, 96px);
}
.text-stack p { margin: 0 0 22px; color: var(--muted); font-size: 17px; }

.section-heading { max-width: 760px; margin-bottom: 36px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--surface);
  border: 1px solid rgba(221,213,200,.8);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 12px 36px rgba(44,49,53,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(181,154,114,.55);
}
.service-icon {
  display: inline-flex;
  width: 54px; height: 54px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--anthracite);
  font-weight: 800;
  margin-bottom: 26px;
}
.service-card p { color: var(--muted); margin: 18px 0 22px; }
ul { margin: 0; padding: 0; list-style: none; }
li { position: relative; padding-left: 25px; margin: 9px 0; color: #474c50; }
li::before { content: ""; position: absolute; left: 0; top: .78em; width: 9px; height: 1px; background: var(--gold); }

.quality {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}
.quality-card {
  background: var(--anthracite);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.quality-card p:not(.eyebrow) { color: rgba(255,255,255,.72); margin: 24px 0 0; }
.points { display: grid; gap: 16px; }
.point {
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(221,213,200,.9);
  border-radius: 24px;
  padding: 28px;
}
.point p { color: var(--muted); margin: 12px 0 0; }

.contact { padding-top: 50px; }
.contact-inner {
  background: linear-gradient(135deg, #ffffff, #eee6da);
  border: 1px solid rgba(221,213,200,.9);
  border-radius: 36px;
  padding: clamp(34px, 6vw, 66px);
  box-shadow: 0 18px 60px rgba(44,49,53,.08);
}
.contact-inner p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 18px; }
.contact-placeholders {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.contact-placeholders span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(44,49,53,.07);
  color: #3f454a;
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  padding: 42px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer img { width: 98px; margin-bottom: 14px; }
.footer p { margin: 0; }
.footer-links { display: flex; gap: 24px; font-size: 14px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header { height: 86px; }
  .brand img { height: 62px; width: auto; }
  .menu-toggle {
    display: inline-flex;
    width: 46px; height: 46px; border: 0; background: transparent; flex-direction: column; gap: 6px; align-items: center; justify-content: center;
  }
  .menu-toggle span { width: 24px; height: 2px; background: var(--anthracite); }
  .nav {
    position: fixed; left: 16px; right: 16px; top: 102px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
    opacity: 0; pointer-events: none; transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .hero, .two-col, .quality { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 52px; }
  .hero-visual { min-height: 360px; }
  .lobby-card { min-height: 360px; height: 420px; border-radius: 30px; }
  .service-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; }
}

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


.legal-main {
  padding: clamp(52px, 7vw, 90px) clamp(22px, 5vw, 72px);
}
.legal-hero {
  max-width: 960px;
  margin: 0 auto 34px;
}
.legal-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
}
.legal-content {
  max-width: 960px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(221,213,200,.85);
  border-radius: 30px;
  padding: clamp(28px, 4vw, 54px);
  box-shadow: 0 16px 50px rgba(44,49,53,.07);
}
.legal-content h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 34px;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: 24px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content ul { list-style: none; margin: 10px 0 20px; padding: 0; }
.legal-content strong { color: var(--ink); }
.legal-note {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--gold-soft);
  color: #514534;
}
.back-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--gold);
  font-weight: 700;
}
