:root {
  --bg: #0a0a0a;
  --surface: rgba(18, 18, 18, 0.9);
  --surface-strong: rgba(10, 10, 10, 0.96);
  --gold: #c4a15a;
  --gold-soft: rgba(196, 161, 90, 0.14);
  --ivory: #f3eee4;
  --muted: #b6ab95;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top, rgba(196, 161, 90, 0.14), transparent 28%),
    linear-gradient(180deg, #0f0e0c 0%, #0a0a0a 52%, #070707 100%);
  color: var(--ivory);
}

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

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

.page-shell {
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(196, 161, 90, 0.16));
}

.brand-copy span {
  display: block;
}

.brand-eyebrow {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-name {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

#language-switcher {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(196, 161, 90, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  padding: 0 14px;
  font: inherit;
}

.nav a {
  color: rgba(243, 238, 228, 0.82);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--gold);
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.button {
  background: linear-gradient(135deg, #cfad68, #b48c43);
  color: #120f0a;
  box-shadow: 0 20px 48px rgba(196, 161, 90, 0.18);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ivory);
  border: 1px solid rgba(196, 161, 90, 0.26);
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  padding: 88px 0 54px;
}

.hero-grid,
.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: stretch;
}

.hero-copy,
.service-copy,
.content-block {
  background: linear-gradient(160deg, rgba(24, 22, 18, 0.96), rgba(13, 12, 11, 0.92));
  border: 1px solid rgba(196, 161, 90, 0.14);
  border-radius: 32px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.1;
  color: var(--ivory);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-copy p,
.service-copy p,
.content-block p,
.service-section p,
.footer-copy p {
  color: rgba(243, 238, 228, 0.82);
  line-height: 1.82;
  font-size: 1rem;
}

.hero-visual,
.service-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 32px;
  border: 1px solid rgba(196, 161, 90, 0.14);
  box-shadow: var(--shadow);
  background-position: center;
  background-size: cover;
}

.hero-visual::after,
.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.06), rgba(10, 10, 10, 0.54)),
    radial-gradient(circle at bottom left, rgba(196, 161, 90, 0.22), transparent 34%);
}

.hero-note,
.service-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(10, 10, 10, 0.56);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-note strong,
.service-note strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.06em;
}

.section {
  padding: 24px 0 68px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head p {
  color: rgba(243, 238, 228, 0.78);
  line-height: 1.8;
}

.service-grid,
.detail-grid,
.highlight-grid,
.session-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid,
.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.session-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.detail-card,
.session-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(165deg, rgba(20, 19, 17, 0.96), rgba(11, 11, 10, 0.94));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover,
.detail-card:hover,
.session-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 161, 90, 0.22);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.3);
}

.service-card-image,
.session-card-image {
  height: 240px;
  background-position: center;
  background-size: cover;
}

.service-card-body,
.detail-card-body,
.session-card-body {
  padding: 24px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.service-card p,
.detail-card p,
.session-card p {
  margin-bottom: 20px;
  color: rgba(243, 238, 228, 0.76);
  line-height: 1.74;
}

.inline-link {
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.service-section {
  padding: 40px 0 72px;
}

.service-hero {
  padding: 72px 0 38px;
}

.service-section + .service-section {
  padding-top: 0;
}

.footer {
  padding: 28px 0 48px;
}

.footer-panel {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 11, 0.96);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(243, 238, 228, 0.78);
}

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

.legal-copy {
  color: rgba(182, 171, 149, 0.86);
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 1040px) {
  .service-grid,
  .detail-grid,
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .service-hero-grid,
  .split,
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .service-visual {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .site-header .container {
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .service-hero {
    padding-top: 42px;
  }

  .hero-copy,
  .service-copy,
  .content-block {
    padding: 28px;
  }

  .service-grid,
  .detail-grid,
  .highlight-grid,
  .session-grid {
    grid-template-columns: 1fr;
  }

  .service-card-image,
  .session-card-image {
    height: 220px;
  }

  h1 {
    font-size: 2.4rem;
  }
}
