:root {
  --bg: #09090a;
  --surface: #111113;
  --surface-2: #18181b;
  --text: #f7f2e8;
  --muted: #b9b2a6;
  --gold: #d5ac61;
  --gold-light: #f0d394;
  --line: rgba(213, 172, 97, 0.24);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 10%, rgba(213, 172, 97, 0.09), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 1rem;
  z-index: 1000;
  background: var(--gold);
  color: #090909;
  padding: .7rem 1rem;
  border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .76rem;
  margin: 0 0 .65rem;
}
.section { padding: 6.4rem 0; }
.section.compact { padding: 4.3rem 0; }
.section-head { max-width: 690px; margin-bottom: 2.2rem; }
.section-head h2, .split-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.07;
  letter-spacing: -.03em;
}
.section-head p, .split-copy > p { color: var(--muted); font-size: 1.06rem; }
.muted { color: var(--muted); }

.topbar {
  border-bottom: 1px solid var(--line);
  background: #070708;
  font-size: .84rem;
  color: var(--muted);
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--gold-light); }
.topbar-links { display: flex; align-items: center; gap: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(9,9,10,.86);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand img { width: 76px; height: 48px; object-fit: contain; }
.brand-name { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 700; letter-spacing: .08em; }
.nav-links { display: flex; align-items: center; gap: 1.45rem; }
.nav-links a { text-decoration: none; font-size: .93rem; font-weight: 750; color: #e9e3d8; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-light); }
.language-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: .18rem; }
.language-switch a { padding: .28rem .58rem; border-radius: 999px; font-size: .78rem; }
.language-switch a.active { color: #090909; background: var(--gold); }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.menu-button span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .78rem 1.15rem;
  border-radius: 13px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #0c0b09; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 10px 30px rgba(213,172,97,.2); }
.btn-secondary { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.14); }
.btn-small { min-height: 40px; padding: .55rem .85rem; font-size: .88rem; }

.hero {
  min-height: 750px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('/images/gallery-2.webp') center 37% / cover no-repeat;
  filter: saturate(.8) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5,5,6,.98) 0%, rgba(5,5,6,.86) 42%, rgba(5,5,6,.36) 72%, rgba(5,5,6,.56) 100%), linear-gradient(0deg, var(--bg), transparent 34%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 700px) 1fr; align-items: center; min-height: 670px; }
.hero-copy { padding: 5rem 0; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7.2vw, 6.5rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.hero h1 span { color: var(--gold-light); }
.hero-lead { max-width: 620px; color: #d4cec3; font-size: clamp(1rem, 2vw, 1.2rem); margin: 1.4rem 0 2rem; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 1.3rem; flex-wrap: wrap; margin-top: 2.2rem; color: #d9d1c4; font-size: .9rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-proof span::before { content: "✓"; color: var(--gold-light); font-weight: 900; }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.trust-grid { min-height: 92px; display: grid; grid-template-columns: repeat(3,1fr); }
.trust-item { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.5rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #0b0a08; background: var(--gold); font-weight: 900; }
.trust-item strong { display: block; }
.trust-item small { color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.service-card {
  min-height: 250px;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(213,172,97,.6); }
.service-number { color: var(--gold); font-weight: 900; font-size: .8rem; letter-spacing: .12em; }
.service-card h3 { font-family: Georgia, serif; font-size: 1.45rem; margin: 2.6rem 0 .6rem; }
.service-card p { color: var(--muted); margin: 0; }

.promotion-shell {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.promotion-image { min-height: 420px; object-fit: cover; width: 100%; height: 100%; }
.promotion-copy { padding: clamp(2rem, 5vw, 4.2rem); display: flex; flex-direction: column; justify-content: center; }
.promotion-copy h3 { font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.05; margin: 0 0 1rem; }
.promotion-copy p { color: var(--muted); }
.promotion-slider { display: grid; gap: 1rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.gallery-card { position: relative; overflow: hidden; min-height: 390px; border-radius: 22px; border: 1px solid var(--line); background: var(--surface); }
.gallery-card:nth-child(3n+1) { grid-column: span 5; }
.gallery-card:nth-child(3n+2) { grid-column: span 4; }
.gallery-card:nth-child(3n+3) { grid-column: span 3; }
.gallery-card img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; transition: transform .55s ease; }
.gallery-card:hover img { transform: scale(1.045); }
.gallery-caption { position: absolute; inset: auto 0 0; padding: 3.4rem 1.2rem 1.1rem; background: linear-gradient(transparent, rgba(0,0,0,.9)); font-weight: 750; }

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.info-card { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.schedule-list { display: grid; gap: .2rem; }
.schedule-row { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: .8rem .2rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.schedule-row:last-child { border-bottom: 0; }
.schedule-row .closed { color: #d79c91; }
.contact-list { display: grid; gap: .75rem; margin-top: 1.7rem; }
.contact-list a { text-decoration: none; display: flex; gap: .7rem; align-items: flex-start; color: #e7e0d4; }
.contact-list a:hover { color: var(--gold-light); }
.map-frame { width: 100%; min-height: 430px; border: 0; border-radius: var(--radius); filter: grayscale(.8) contrast(1.05); }

.cta-band { padding: 1rem; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(110deg, rgba(213,172,97,.18), rgba(255,255,255,.035)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.8rem; }
.cta-inner h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.8rem, 4vw, 3rem); }
.cta-inner p { margin: .4rem 0 0; color: var(--muted); }

.site-footer { padding: 3.2rem 0 6rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-brand img { width: 140px; }
.footer-brand p { color: var(--muted); max-width: 470px; }
.footer-links { display: grid; align-content: start; gap: .55rem; }
.footer-links h3 { margin: 0 0 .5rem; color: var(--gold-light); font-size: .92rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); font-size: .86rem; }

.product-hero { padding: 5.5rem 0 3.5rem; text-align: center; }
.product-hero h1 { font-family: Georgia, serif; font-size: clamp(3rem, 7vw, 5.6rem); line-height: 1; margin: 0; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.product-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 2rem; }
.product-icon { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: rgba(213,172,97,.12); color: var(--gold-light); font-size: 1.8rem; }
.product-card h2 { font-family: Georgia, serif; margin: 1.6rem 0 .5rem; }
.product-card p { color: var(--muted); }

.mobile-book { display: none; }

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 117px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(12,12,13,.98);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .7rem; }
  .nav-links .btn { margin-top: .5rem; }
  .menu-button { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .promotion-shell, .split { grid-template-columns: 1fr; }
  .promotion-image { max-height: 460px; }
  .gallery-card:nth-child(n) { grid-column: span 6; }
  .products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 4.5rem 0; }
  .topbar-inner { justify-content: center; min-height: 34px; }
  .topbar-inner > span { display: none; }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 63px; }
  .brand-name { font-size: 1rem; }
  .nav-links { inset: 105px .7rem auto; }
  .hero { min-height: 680px; }
  .hero-grid { min-height: 620px; }
  .hero::after { background: linear-gradient(90deg, rgba(5,5,6,.93), rgba(5,5,6,.57)), linear-gradient(0deg,var(--bg),transparent 40%); }
  .hero h1 { font-size: clamp(2.9rem, 14vw, 4.5rem); }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: .65rem; flex-direction: column; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .card-grid, .products-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 215px; }
  .gallery-card:nth-child(n) { grid-column: 1 / -1; min-height: 360px; }
  .gallery-card img { min-height: 360px; }
  .cta-inner { align-items: flex-start; flex-direction: column; padding: 1.2rem; }
  .cta-inner .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-book {
    display: flex;
    position: fixed;
    inset: auto .75rem .75rem;
    z-index: 60;
    box-shadow: 0 16px 45px rgba(0,0,0,.45);
  }
}
