:root {
  --black: #050505;
  --black-2: #0b0b0b;
  --black-3: #111111;
  --ivory: #f5efe3;
  --muted: #b8afa2;
  --dim: #82786d;
  --gold: #c9a45d;
  --gold-2: #f0d38a;
  --oxblood: #5c1024;
  --line: rgba(245, 239, 227, 0.13);
  --line-strong: rgba(245, 239, 227, 0.22);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body::selection { background: var(--gold); color: var(--black); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.nav {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(245, 239, 227, 0.08);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.5));
  backdrop-filter: blur(18px);
}
.mark { display: inline-grid; gap: 4px; line-height: 1; }
.mark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 400;
}
.mark span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(245, 239, 227, 0.78);
  font-size: 0.88rem;
}
.nav-links a:not(.pill):hover { color: var(--ivory); }
.pill, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.pill {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  background: rgba(245, 239, 227, 0.04);
  color: var(--ivory);
  font-weight: 800;
}
.btn {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
}
.pill:hover, .btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--ivory); color: var(--black); }
.btn.secondary, .pill:hover {
  border-color: rgba(240, 211, 138, 0.72);
  background: rgba(201, 164, 93, 0.12);
  color: var(--ivory);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0.88;
  filter: contrast(1.08) saturate(0.88);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 34%, rgba(5, 5, 5, 0.28) 66%, rgba(5, 5, 5, 0.7) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.04) 44%, rgba(5, 5, 5, 0.5));
}
.hero-shell, .page-hero-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  gap: clamp(34px, 6vw, 68px);
}
.hero-shell { padding: 138px 0 34px; }
.hero-copy { max-width: 760px; display: grid; gap: 24px; }
.kicker {
  margin: 0;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}
h1 { font-size: clamp(4.6rem, 12vw, 11.8rem); line-height: 0.82; }
h2 { font-size: clamp(2.8rem, 6.4vw, 7.2rem); line-height: 0.88; }
.lead, .hero-copy .lead {
  max-width: 650px;
  margin: 0;
  color: rgba(245, 239, 227, 0.82);
  font-size: clamp(1.06rem, 1.8vw, 1.38rem);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.72fr);
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.46);
  backdrop-filter: blur(20px);
}
.hero-panel > div {
  min-height: 116px;
  padding: 22px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: space-between;
  gap: 16px;
}
.hero-panel > div:last-child { border-right: 0; }
.meta-label, .hero-panel span, .contact-line span, .card-label {
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-panel strong {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  font-weight: 400;
  line-height: 1;
}

section, .page-section { padding: clamp(76px, 10vw, 136px) clamp(18px, 4vw, 54px); background: var(--black); }
.wrap { width: min(var(--max), 100%); margin: 0 auto; }
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 78px);
}
.intro p, .muted { margin: 0; color: var(--muted); font-size: 1.02rem; }

.page-hero {
  padding: 150px clamp(18px, 4vw, 54px) 70px;
  min-height: 68svh;
  display: grid;
  align-items: end;
  background:
    radial-gradient(circle at 80% 18%, rgba(92, 16, 36, 0.34), transparent 30%),
    linear-gradient(135deg, #050505 0%, #090909 52%, #130d0a 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero-shell { padding: 0; }
.breadcrumbs { color: var(--dim); font-size: 0.86rem; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--ivory); }
.page-title { max-width: 980px; display: grid; gap: 24px; }
.page-title h1 { font-size: clamp(4rem, 10vw, 9.5rem); }

.service-system, .list-system { border-top: 1px solid var(--line-strong); }
.service-row, .list-row {
  display: grid;
  grid-template-columns: 92px minmax(220px, 0.7fr) minmax(0, 1fr) 144px;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  min-height: 132px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.service-row .num, .list-row .num {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}
.service-row h3, .list-row h3 { margin: 0; font-size: clamp(1.3rem, 2.2vw, 2rem); line-height: 1.1; }
.service-row p, .list-row p { margin: 0; color: var(--muted); max-width: 620px; }
.tag {
  justify-self: end;
  padding: 8px 12px;
  border: 1px solid rgba(201, 164, 93, 0.32);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); background: #070707; }
.card {
  min-height: 320px;
  padding: clamp(24px, 4vw, 36px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  align-content: space-between;
  gap: 36px;
}
.card:nth-child(3n) { border-right: 0; }
.card h3 { margin: 12px 0 12px; font-size: clamp(1.4rem, 2vw, 2rem); line-height: 1.05; }
.card p { color: var(--muted); margin: 0; }
.card a { color: var(--gold-2); font-weight: 900; font-size: 0.86rem; }

.black-band {
  background: linear-gradient(180deg, #050505 0%, #0c0a09 44%, #050505 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.atelier-grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: clamp(26px, 6vw, 90px); align-items: stretch; }
.atelier-copy { display: grid; align-content: center; gap: 26px; }
.atelier-copy p:not(.kicker) { color: var(--muted); margin: 0; font-size: 1.04rem; }
.names { display: grid; border: 1px solid var(--line-strong); background: var(--black-2); }
.name-panel {
  min-height: 290px;
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  align-content: space-between;
  gap: 42px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.name-panel:last-child { border-bottom: 0; }
.name-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.7;
}
.name-panel h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 400;
  line-height: 0.86;
}
.name-panel p { max-width: 610px; margin: 0; color: var(--muted); }
.specialty { color: var(--gold-2); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }

.experience { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); background: #070707; }
.experience-item {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: space-between;
  gap: 34px;
}
.experience-item:last-child { border-right: 0; }
.experience-item span { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 2.4rem; }
.experience-item h3 { margin-bottom: 10px; font-size: 1.08rem; }
.experience-item p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.detail-layout { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.38fr); gap: clamp(34px, 7vw, 90px); align-items: start; }
.detail-copy { display: grid; gap: 28px; }
.detail-copy p { color: var(--muted); font-size: 1.08rem; margin: 0; max-width: 820px; }
.side-panel { position: sticky; top: 104px; border: 1px solid var(--line-strong); background: #080808; }
.side-panel a, .side-panel div { display: block; padding: 20px 22px; border-bottom: 1px solid var(--line); color: var(--muted); }
.side-panel a:hover { color: var(--ivory); background: rgba(201, 164, 93, 0.08); }
.side-panel a:last-child, .side-panel div:last-child { border-bottom: 0; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { padding: 16px 18px; border: 1px solid var(--line); background: #070707; color: var(--ivory); }

.booking {
  min-height: 76vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 82% 24%, rgba(92, 16, 36, 0.34), transparent 30%),
    linear-gradient(135deg, #050505 0%, #090909 48%, #120d0a 100%);
}
.booking-shell { display: grid; grid-template-columns: 1fr minmax(300px, 0.58fr); gap: clamp(32px, 6vw, 90px); align-items: center; }
.booking-copy h2 { max-width: 830px; }
.booking-copy p { max-width: 620px; color: var(--muted); font-size: 1.08rem; margin: 28px 0 0; }
.contact-panel { border: 1px solid var(--line-strong); background: rgba(5, 5, 5, 0.62); backdrop-filter: blur(18px); }
.contact-line { padding: 26px; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-line span { display: block; margin-bottom: 7px; }
.contact-line strong, .contact-line a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  font-weight: 400;
  line-height: 1.1;
}
.contact-panel .btn { width: calc(100% - 52px); margin: 26px; }

footer { padding: 32px clamp(18px, 4vw, 54px); border-top: 1px solid var(--line); color: var(--dim); background: var(--black); }
.footer-inner { width: min(var(--max), 100%); margin: 0 auto; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 0.9rem; }

@media (max-width: 980px) {
  .nav { position: absolute; }
  .nav-links a:not(.pill) { display: none; }
  .hero-shell { padding-top: 120px; }
  .hero-panel, .intro, .atelier-grid, .booking-shell, .detail-layout { grid-template-columns: 1fr; }
  .hero-panel > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-panel > div:last-child { border-bottom: 0; }
  .service-row, .list-row { grid-template-columns: 64px 1fr; }
  .service-row p, .service-row .tag, .list-row p, .list-row .tag { grid-column: 2; justify-self: start; }
  .experience { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-item:nth-child(2) { border-right: 0; }
  .experience-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card:nth-child(3n) { border-right: 1px solid var(--line); }
  .card:nth-child(2n) { border-right: 0; }
  .side-panel { position: static; }
}

@media (max-width: 640px) {
  .nav { min-height: 68px; padding: 14px 16px; }
  .mark span { font-size: 0.62rem; }
  .pill { min-height: 38px; padding: 0 13px; font-size: 0.84rem; }
  .hero-media img { object-position: 64% center; opacity: 0.66; }
  .hero-shell { width: min(100% - 28px, var(--max)); padding-bottom: 24px; }
  h1, .page-title h1 { font-size: clamp(3.8rem, 20vw, 6.2rem); }
  h2 { font-size: clamp(2.65rem, 16vw, 4.6rem); }
  .actions, .btn { width: 100%; }
  .service-row, .list-row { grid-template-columns: 1fr; min-height: auto; }
  .service-row p, .service-row .tag, .list-row p, .list-row .tag { grid-column: 1; }
  .experience, .cards-grid, .check-list { grid-template-columns: 1fr; }
  .card, .card:nth-child(2n), .card:nth-child(3n) { border-right: 0; }
  .experience-item { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .experience-item:last-child { border-bottom: 0; }
  .contact-line { padding: 22px; }
  .contact-panel .btn { width: calc(100% - 44px); margin: 22px; }
}
