:root {
  --bg: #0a070b;
  --bg-raised: #141018;
  --bg-soft: #1c151f;
  --ink: #f6efe4;
  --muted: #b7aa9c;
  --gold: #e0c48a;
  --gold-soft: #f0dcb4;
  --plum: #8e4fa3;
  --plum-deep: #5c2e6c;
  --line: rgba(224, 196, 138, 0.16);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --header-h: 84px;
  --max: 1180px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(142, 79, 163, 0.22), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(224, 196, 138, 0.08), transparent 50%),
    var(--bg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.notice {
  display: flex;
  justify-content: center;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(142, 79, 163, 0.28), rgba(224, 196, 138, 0.12));
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(10, 7, 11, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

.logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(260px, 58vw);
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.04em;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

.header-phone {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid;
  place-items: end start;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(1.05) contrast(1.08);
}

@media (min-width: 901px) {
  .hero-media img {
    object-position: 30% 6%;
  }
}

@media (min-width: 1280px) {
  .hero-media img {
    object-position: 24% 0;
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 7, 11, 0.08) 0%, rgba(10, 7, 11, 0.16) 38%, rgba(10, 7, 11, 0.88) 100%),
    radial-gradient(80% 70% at 70% 40%, transparent, rgba(10, 7, 11, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 88px;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 7, 11, 0.45);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  color: #fff8ee;
}

h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

.lead {
  max-width: 54ch;
  margin: 22px 0 32px;
  color: #e8ddd0;
  font-size: clamp(16px, 1.6vw, 19px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #2a1d0a;
  font-weight: 700;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  background: var(--bg);
  padding: 28px 18px;
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

section {
  padding: 96px 0;
}

.section-kicker {
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  max-width: 14ch;
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 46ch;
}

.catalog {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 420px;
  display: grid;
  align-items: end;
}

.catalog img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 7, 11, 0.88) 0%, rgba(10, 7, 11, 0.28) 70%);
}

.catalog-copy {
  position: relative;
  z-index: 1;
  padding: 48px;
  max-width: 560px;
}

.catalog h2 {
  max-width: 12ch;
  margin-bottom: 16px;
}

.catalog p {
  color: #ddd2c4;
  margin: 0 0 28px;
}

.grid-cards {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 280px;
  isolation: isolate;
}

.card:first-child {
  grid-row: span 2;
  min-height: 580px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(8, 6, 10, 0.88));
}

.card h3 {
  font-size: 32px;
}

.card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service {
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(28, 21, 31, 0.9), rgba(16, 12, 18, 0.9));
  border: 1px solid var(--line);
  border-radius: 20px;
}

.service h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.icon {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--gold);
}

.reviews {
  background:
    radial-gradient(500px 240px at 10% 0%, rgba(142, 79, 163, 0.16), transparent 70%),
    var(--bg);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.review p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
  margin: 0 0 24px;
}

.review footer {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 13px;
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.visit-card {
  padding: 36px;
  border-radius: 28px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
}

.visit-card h2 {
  margin-bottom: 12px;
}

.visit-card > p {
  color: var(--muted);
}

.meta-list {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.meta-list span {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.meta-list b {
  font-weight: 600;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: #9be7b3;
  font-size: 14px;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.status.is-closed {
  color: #efb4a8;
}

.map {
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

.site-footer {
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner a {
  color: var(--gold);
}

@media (max-width: 900px) {
  .notice {
    letter-spacing: 0.1em;
    font-size: 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .logo img {
    height: 36px;
    max-width: min(200px, 52vw);
    padding: 4px 8px;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 18px 20px 24px;
    background: rgba(12, 9, 14, 0.96);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  header.is-open nav {
    display: flex;
  }

  .stats,
  .section-head,
  .grid-cards,
  .services,
  .review-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .card:first-child {
    grid-row: auto;
    min-height: 340px;
  }

  .hero-content,
  .catalog-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .catalog-copy {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  section {
    padding: 72px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card img,
  .btn {
    transition: none;
  }
}
