:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: "Manrope", system-ui, sans-serif;
  --bg: #090807;
  --card: #151412;
  --soft: #1b1815;
  --text: #ffffff;
  --text2: #e4e4e7;
  --muted: #9ca3af;
  --gold: #c9a96e;
  --gold2: #ddbd8a;
  --border: #302923;
  --radius: 24px;
  --shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(221, 189, 138, .12), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 420;
  font-optical-sizing: auto;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .06;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, .7) 0 1px, transparent 1px 2px);
}

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

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

.container {
  width: min(1268px, calc(100% - 32px));
  margin: auto;
}

.narrow {
  width: min(860px, calc(100% - 32px));
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(135deg, var(--gold), #fff1c4, var(--gold));
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: logoShimmer 8s ease-in-out infinite;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link,
.dropdown-toggle {
  color: var(--text2);
  font: inherit;
  font-family: var(--font-ui);
  font-weight: 720;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-link:hover,
.dropdown-toggle:hover {
  color: var(--gold2);
}

.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 260px;
  padding: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .25s;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--text2);
  border-radius: 12px;
}

.dropdown-menu a:hover {
  color: var(--gold);
  background: var(--soft);
}

.burger,
.nav-close {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-ui);
  font-weight: 720;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: .25s;
}

.btn-sm {
  padding: 10px 18px;
}

.btn-block {
  width: 100%;
}

.btn-gold {
  color: #14110a;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 10px 30px rgba(201, 169, 110, .25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(201, 169, 110, .34);
}

.btn-ghost,
.btn-outline {
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  border-color: var(--border);
}

.btn-ghost:hover,
.btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100dvh - 82px);
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 12%, rgba(221, 189, 138, .2), transparent 30%),
    linear-gradient(90deg, rgba(9, 8, 7, .94), rgba(9, 8, 7, .5), rgba(9, 8, 7, .94));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  text-align: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  padding: 8px 14px;
  margin-bottom: 18px;
  color: var(--gold2);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 720;
  background: rgba(201, 169, 110, .08);
  border: 1px solid rgba(201, 169, 110, .36);
  border-radius: 10px;
}

.hero h1,
.section h2,
.page-hero h1,
.content-body h2,
.content-body h3,
.steps-grid b {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-optical-sizing: auto;
  line-height: 1.05;
  text-wrap: balance;
  hyphens: auto;
}

.hero h1 {
  max-width: 12ch;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.35rem;
  font-size: 5.5rem;
  line-height: .94;
}

.hero p {
  color: var(--text2);
  font-size: 1.55rem;
  line-height: 1.45;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 28px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.stats div,
.service-card,
.steps-grid div,
.review-card,
.content-card,
.post-card,
.sidebar,
.booking-form,
.video-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32), inset 0 1px rgba(255, 255, 255, .04);
}

.stats div {
  padding: 20px;
}

.stats strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.stats span {
  color: var(--muted);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  z-index: 2;
  color: var(--gold);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  50% {
    transform: translateY(8px);
  }
}

@keyframes logoShimmer {
  0%,
  100% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section h2,
.page-hero h1 {
  font-size: 3.45rem;
  line-height: 1;
}

.video-presentation {
  background: rgba(14, 13, 12, .72);
}

.video-presentation__wrapper {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.video-presentation__content {
  max-width: 620px;
}

.video-presentation .section-tag {
  padding: 0;
  margin-bottom: 22px;
  letter-spacing: .55em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.video-presentation .section-title {
  margin-bottom: 24px;
  color: var(--gold2);
  font-size: clamp(3rem, 5vw, 4.35rem);
  line-height: .98;
  text-wrap: balance;
}

.video-presentation__content p {
  max-width: 34ch;
  margin: 0;
  color: var(--text2);
  font-size: 1.14rem;
  line-height: 1.7;
}

.video-presentation__content p a {
  color: var(--gold2);
}

.video-presentation__content p a:hover {
  color: #fff1c4;
}

.video-presentation__player {
  overflow: hidden;
  border-radius: 28px;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, .04);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
  transition: transform .3s ease, box-shadow .3s ease;
}

.video-presentation__player:hover {
  transform: translateY(-2px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .44);
}

.video-presentation__player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.split-grid,
.booking-grid,
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 34px;
}

.layout-sidebar {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.video-card {
  position: relative;
  overflow: hidden;
}

.play-btn {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 78px;
  height: 78px;
  color: #111111;
  font-size: 24px;
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

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

.service-card {
  min-height: 245px;
  padding: 28px;
}

.service-card i {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 34px;
}

.service-card h3,
.post-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.05;
  text-wrap: balance;
}

.service-card p,
.post-card p,
.content-body,
.sidebar p {
  color: var(--text2);
}

.service-card span,
.text-link {
  color: var(--gold);
  font-weight: 800;
}

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

.steps-grid div {
  padding: 24px;
}

.steps-grid b {
  color: var(--gold);
  font-size: 42px;
}

.review-card {
  padding: 28px;
}

.review-card div {
  color: var(--gold);
  letter-spacing: 3px;
}

.booking-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 169, 110, .16), transparent 35%),
    var(--bg);
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr);
  gap: 0;
  overflow: hidden;
  background: #111113;
  border: 1px solid rgba(221, 189, 138, .2);
  border-radius: 34px;
  box-shadow: 0 36px 120px rgba(0, 0, 0, .44), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.booking-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #070707;
}

.booking-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06);
}

.booking-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 6, 5, .9), rgba(7, 6, 5, .48), rgba(7, 6, 5, .78)),
    radial-gradient(circle at 38% 42%, rgba(201, 169, 110, .2), transparent 28rem);
}

.booking-media-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  max-width: 760px;
  padding: clamp(34px, 5vw, 74px);
}

.booking-media-content h2 {
  margin: 0 0 18px;
  color: var(--gold2);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4vw, 4.7rem);
  line-height: .96;
  text-wrap: balance;
}

.booking-media-content p {
  max-width: 60ch;
  color: rgba(255, 255, 255, .86);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-list a,
.contact-list span {
  color: var(--text2);
}

.contact-list i {
  width: 24px;
  color: var(--gold);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 26px;
  align-content: center;
  background: rgba(14, 14, 16, .96);
  border: 0;
  border-left: 1px solid rgba(221, 189, 138, .16);
  border-radius: 0;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--text2);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 720;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--text);
  font: inherit;
  background: #0f0f11;
  border: 1px solid var(--border);
  border-radius: 14px;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
}

.booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.check {
  display: flex !important;
  grid-template-columns: auto 1fr !important;
  align-items: center;
}

.check input {
  width: auto;
}

.form-message {
  grid-column: 1 / -1;
  color: var(--gold);
  font-weight: 800;
}

.page-hero.compact {
  padding: 54px;
  margin-bottom: 34px;
  background:
    radial-gradient(circle at 10% 10%, rgba(201, 169, 110, .16), transparent 35%),
    var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.featured-image img,
.post-image img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-page .featured-image {
  overflow: hidden;
  margin: 0 0 26px;
  background: var(--card);
  border: 1px solid rgba(201, 169, 110, .18);
  border-radius: var(--radius);
}

.article-page .featured-image img {
  height: clamp(190px, 22vw, 300px);
  object-position: center 12%;
  border-radius: 0;
}

.featured-image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.lead {
  color: var(--text2);
  font-size: 20px;
}

.content-body p,
.seo-text p,
.lead {
  max-width: 65ch;
  text-wrap: pretty;
  hyphens: auto;
}

.content-body a {
  color: var(--gold);
}

.seo-text .container {
  width: min(1336px, calc(100% - 32px));
}

.seo-premium-panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(430px, 48vw, 580px);
  padding: clamp(38px, 4.2vw, 66px);
  background:
    radial-gradient(circle at 78% 20%, rgba(201, 169, 110, .14), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    #0f0d0c;
  border: 1px solid rgba(201, 169, 110, .18);
  border-radius: calc(var(--radius) + 8px);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, .36),
    inset 0 1px rgba(255, 255, 255, .04);
}

.seo-premium-copy {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .82fr);
  column-gap: clamp(30px, 4vw, 60px);
  row-gap: 18px;
  align-items: start;
  max-width: min(1180px, 100%);
}

.seo-premium-copy > .section-tag,
.seo-premium-copy > h2 {
  grid-column: 1 / 2;
}

.seo-premium-copy > h2 {
  max-width: 13ch;
  margin-bottom: 8px;
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: .94;
}

.seo-text-stream {
  grid-column: 1 / 2;
  display: grid;
  gap: 22px;
  max-width: min(780px, 100%);
}

.seo-text-stream p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(1.08rem, 1.05vw, 1.28rem);
  line-height: 1.78;
  text-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.seo-text-stream a {
  color: var(--gold2);
  text-decoration: underline;
  text-decoration-color: rgba(221, 189, 138, .48);
  text-underline-offset: .18em;
}

.seo-premium-photo,
.seo-premium-glow {
  pointer-events: none;
}

.seo-premium-photo {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(201, 169, 110, .22);
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 26px 60px rgba(0, 0, 0, .34),
    inset 0 1px rgba(255, 255, 255, .14);
}

.seo-premium-photo-right {
  top: 50%;
  right: clamp(22px, 3vw, 44px);
  width: clamp(300px, 28vw, 410px);
  aspect-ratio: 4 / 5;
  transform: translateY(-50%) rotate(4deg);
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, .08), rgba(8, 8, 8, .32)),
    url("/assets/images/about.jpg");
}

.seo-premium-photo-left {
  display: none;
}

.seo-premium-glow {
  position: absolute;
  top: 16%;
  right: 12%;
  z-index: 0;
  width: clamp(240px, 22vw, 360px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 169, 110, .3), rgba(201, 169, 110, .08) 42%, transparent 72%);
  filter: blur(22px);
  opacity: .88;
}

.quote {
  padding: 24px;
  color: var(--text2);
  background: var(--card);
  border-left: 4px solid var(--gold);
  border-radius: 16px;
}

.cta-band {
  padding: 34px;
  margin-top: 34px;
  background: linear-gradient(135deg, rgba(201, 169, 110, .16), rgba(255, 255, 255, .03));
  border: 1px solid rgba(201, 169, 110, .28);
  border-radius: var(--radius);
}

.cta-band .btn {
  margin-top: 8px;
}

.sidebar {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.sidebar .avatar {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
}

.article-page .sidebar {
  align-content: start;
}

.article-page .sidebar .avatar {
  justify-self: center;
  width: 108px;
  border: 2px solid rgba(221, 189, 138, .82);
  border-radius: 50%;
}

.article-page .sidebar h3,
.article-page .sidebar p {
  text-align: center;
}

.article-page .sidebar .btn {
  justify-self: stretch;
  width: 100%;
  max-width: none;
}

.sidebar i {
  width: 22px;
  color: var(--gold);
}

.post-card {
  overflow: hidden;
}

.post-image img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.post-body {
  padding: 22px;
}

.post-meta {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 70px 0 24px;
  background: #070707;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 36px;
}

.footer-grid h3 {
  color: var(--gold);
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  display: block;
  margin: 8px 0;
  color: var(--text2);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--border);
}

.global-player {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 80;
  display: grid;
  grid-template-columns: 50px minmax(120px, 1fr) auto auto auto minmax(160px, 320px) 120px auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(20, 20, 22, .95);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.global-player[hidden] {
  display: none;
}

.player-cover {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.global-player button {
  width: 40px;
  height: 40px;
  color: var(--gold);
  cursor: pointer;
  background: #101012;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.player-title {
  display: block;
}

.player-time {
  color: var(--muted);
  font-size: 12px;
}

input[type="range"] {
  accent-color: var(--gold);
}

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

.gallery-item,
.gallery-ready {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  transition: opacity .2s, transform .2s;
}

.gallery-ready[hidden] {
  display: none !important;
}

.gallery-item img,
.gallery-ready img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-item::after,
.gallery-ready::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .72));
  opacity: 0;
  transition: .25s;
}

.gallery-item:hover::after,
.gallery-ready:hover::after {
  opacity: 1;
}

.gallery-item span {
  position: absolute;
  inset: auto 12px 12px;
  z-index: 1;
  padding: 8px 10px;
  color: var(--gold);
  background: rgba(10, 10, 10, .72);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.system-message {
  width: min(1180px, calc(100% - 32px));
  padding: 18px 20px;
  margin: 24px auto;
  color: var(--text2);
  background: rgba(201, 169, 110, .08);
  border: 1px solid rgba(201, 169, 110, .35);
  border-radius: 18px;
}

.system-message strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
}

.content-card {
  padding: 28px;
}

.service-section {
  margin-top: 28px;
}

.service-section h2 {
  margin-bottom: 14px;
}

.service-section p:last-child {
  margin-bottom: 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.filter-bar .active {
  color: #14110a;
  background: var(--gold);
  border-color: var(--gold);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.check-list li,
.check-list p {
  position: relative;
  padding-left: 28px;
  margin: 0;
  color: var(--text2);
}

.check-list li::before,
.check-list p::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.why-card {
  margin-top: 28px;
}

.faq-block {
  margin-top: 32px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
  padding: 18px 20px;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.faq-question i {
  color: var(--gold);
  transition: .25s;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--text2);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  color: var(--gold);
}

.video-tile {
  min-height: 0;
}

.video-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-caption {
  padding: 20px;
}

.video-caption h3 {
  margin: 0 0 6px;
}

.video-caption p {
  margin: 0;
  color: var(--text2);
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.media-modal[hidden] {
  display: none;
}

.media-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(10px);
}

.media-modal-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  background: #08080a;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.media-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  cursor: pointer;
  background: rgba(10, 10, 10, .78);
  border: 1px solid var(--border);
  border-radius: 50%;
}

.media-modal-content {
  display: grid;
  gap: 0;
}

.media-modal-content img,
.media-modal-content video,
.media-modal-content iframe {
  width: 100%;
  max-height: calc(100vh - 96px);
  object-fit: contain;
  background: #000000;
}

.media-modal-content iframe {
  aspect-ratio: 16 / 9;
  border: 0;
}

.media-modal-content p {
  padding: 14px 18px;
  margin: 0;
  color: var(--text2);
  background: var(--card);
}

body.modal-open {
  overflow: hidden;
}

.track-play {
  width: 100%;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.music-page {
  padding-top: 22px;
  padding-bottom: 88px;
}

.music-hero {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.music-hero p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.music-showcase {
  display: grid;
  gap: 26px;
}

.music-playlist {
  display: grid;
  max-width: 900px;
  gap: 16px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.music-track {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 44px;
  gap: 20px;
  align-items: center;
  padding: 16px 24px;
  background: rgba(20, 20, 22, .82);
  border: 1px solid rgba(201, 169, 110, .15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition:
    transform .35s cubic-bezier(.22, 1, .36, 1),
    border-color .35s cubic-bezier(.22, 1, .36, 1),
    box-shadow .35s cubic-bezier(.22, 1, .36, 1),
    background .35s cubic-bezier(.22, 1, .36, 1);
}

.music-track:hover,
.music-track.active-track {
  transform: translateX(8px);
  border-color: rgba(201, 169, 110, .88);
  background: rgba(26, 26, 29, .96);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .2);
}

.music-track__cover {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 12px;
}

.music-track__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-track__info {
  min-width: 0;
}

.music-track__title {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.music-track__duration {
  display: block;
  padding: 0;
  color: var(--gold2);
  font-size: 13px;
  font-weight: 500;
}

.music-track__play {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #17120d;
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.music-track__play:hover,
.music-track__play.is-active {
  transform: scale(1.04);
  background: var(--gold2);
}

.music-track__play i {
  margin-left: 3px;
  font-size: 16px;
}

.music-note {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 900px;
  margin: 24px auto 0;
  padding: 36px 40px;
  flex-wrap: wrap;
}

.music-note__icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--gold2);
  font-size: 2rem;
  background: rgba(201, 169, 110, .1);
  border: 1px solid rgba(201, 169, 110, .18);
  border-radius: 20px;
  flex: 0 0 auto;
}

.music-note__text {
  display: grid;
  gap: 12px;
  min-width: min(100%, 320px);
  flex: 1 1 320px;
}

.music-note__text h2 {
  margin: 0;
  color: var(--gold2);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.music-note__text p {
  margin: 0;
  color: var(--text2);
}

.music-note__text .btn {
  justify-self: start;
}

.static-page .content-body form#registration {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.static-page .content-body form#registration .bbcodes {
  min-height: 48px;
  padding: 0 22px;
  font: inherit;
  font-weight: 700;
  color: #17120d;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.static-page .content-body form#registration .bbcodes[type="button"] {
  color: var(--text);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
}

.static-page .content-body form#registration .bbcodes:hover {
  transform: translateY(-1px);
}

.static-page .content-body form#registration .bbcodes[type="submit"] {
  box-shadow: 0 18px 40px rgba(201, 169, 110, .2);
}

@supports (font-variation-settings: normal) {
  .nav-link,
  .btn,
  .section-tag,
  .eyebrow {
    font-variation-settings: "wght" 720;
  }

  .service-card:hover h3,
  .post-card:hover h3 {
    font-variation-settings: "wght" 700;
  }
}

/* Premium interaction layer */
.site-main {
  overflow: hidden;
  padding-top: 96px;
}

.site-header {
  position: fixed;
  top: 16px;
  right: 0;
  left: 0;
  z-index: 70;
  background: transparent;
  border-bottom: 0;
  pointer-events: none;
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  padding: 0 12px 0 22px;
  background:
    linear-gradient(180deg, rgba(18, 16, 14, .86), rgba(9, 8, 7, .72)),
    rgba(9, 8, 7, .62);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(22px);
  pointer-events: auto;
}

.nav-link,
.dropdown-toggle,
.btn,
.service-card,
.steps-grid div,
.review-card,
.stats div,
.video-card,
.post-card,
.socials a,
.global-player button {
  transition:
    color .45s cubic-bezier(.22, 1, .36, 1),
    background .45s cubic-bezier(.22, 1, .36, 1),
    border-color .45s cubic-bezier(.22, 1, .36, 1),
    box-shadow .45s cubic-bezier(.22, 1, .36, 1),
    opacity .45s cubic-bezier(.22, 1, .36, 1),
    transform .45s cubic-bezier(.22, 1, .36, 1);
}

.nav-link,
.dropdown-toggle {
  position: relative;
}

.nav-link::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
  opacity: 0;
  transform: scaleX(.3);
  transition: opacity .45s cubic-bezier(.22, 1, .36, 1), transform .45s cubic-bezier(.22, 1, .36, 1);
}

.nav-link:hover::after,
.dropdown-toggle:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.btn {
  position: relative;
  min-height: 52px;
  padding-right: 58px;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .26), transparent);
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

.btn::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: currentColor;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), background .45s cubic-bezier(.22, 1, .36, 1);
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(55%);
}

.btn:hover::after {
  background: rgba(255, 255, 255, .28);
  transform: translate(4px, -50%);
}

.btn:active {
  transform: translateY(1px) scale(.985);
}

.hero {
  margin-top: -96px;
  min-height: 100dvh;
  padding-top: 118px;
  background: #070605;
  perspective: 1200px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 74%) var(--my, 38%), rgba(221, 189, 138, .2), transparent 22rem),
    radial-gradient(circle at 8% 78%, rgba(115, 61, 35, .2), transparent 26rem);
  mix-blend-mode: screen;
  opacity: .9;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -22% auto;
  z-index: 1;
  width: 62vw;
  aspect-ratio: 1;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle, rgba(221, 189, 138, .2) 0 1px, transparent 1px 18px),
    radial-gradient(circle, rgba(201, 169, 110, .14), transparent 60%);
  border-radius: 50%;
  opacity: .32;
  transform: rotate(-8deg);
  animation: slowSpin 42s linear infinite;
}

.hero-bg {
  opacity: .38;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 6, 5, .96) 0%, rgba(7, 6, 5, .78) 38%, rgba(7, 6, 5, .28) 65%, rgba(7, 6, 5, .88) 100%),
    radial-gradient(circle at 76% 34%, rgba(221, 189, 138, .22), transparent 28%),
    linear-gradient(180deg, rgba(7, 6, 5, .3), rgba(7, 6, 5, .92));
}

.hero-content {
  width: min(1328px, calc(100% - 24px));
  padding: 16px 0 30px;
  text-align: left;
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  min-height: calc(100dvh - 132px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  margin-bottom: 26px;
  color: #efd7a7;
  background: rgba(201, 169, 110, .1);
  border-color: rgba(221, 189, 138, .32);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(3.15rem, 4.8vw, 6.1rem);
  line-height: .92;
  letter-spacing: 0;
  text-shadow: 0 16px 44px rgba(0, 0, 0, .5);
}

.hero h1 > span {
  display: block;
}

.hero-dynamic-word {
  position: relative;
  display: inline-block !important;
  max-width: 10ch;
  color: transparent;
  background: linear-gradient(105deg, #fffef8 0%, #fff3d2 42%, #f0d19b 72%, #fff9ec 100%);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 24px rgba(240, 209, 155, .18);
  filter: brightness(1.08);
  animation: titleGoldFlow 5.4s cubic-bezier(.22, 1, .36, 1) infinite;
  transition: opacity .38s cubic-bezier(.22, 1, .36, 1), filter .38s cubic-bezier(.22, 1, .36, 1), transform .38s cubic-bezier(.22, 1, .36, 1);
}

.hero-dynamic-word.is-changing {
  opacity: 0;
  filter: blur(12px) brightness(1.04);
  transform: translateY(12px);
}

.hero-dynamic-word::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.08em;
  left: 0;
  height: .08em;
  background: linear-gradient(90deg, transparent, rgba(221, 189, 138, .7), transparent);
  border-radius: 999px;
  transform-origin: left center;
  animation: lineSweep 3.2s cubic-bezier(.22, 1, .36, 1) infinite;
}

.hero p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.06rem, 1.4vw, 1.34rem);
}

.hero-actions {
  justify-content: flex-start;
  margin: 34px 0 0;
}

.hero .stats {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  max-width: 780px;
  margin-top: clamp(34px, 5vw, 62px);
}

.stats div {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
    rgba(15, 13, 11, .72);
  border-color: rgba(221, 189, 138, .2);
}

.stats div::before,
.service-card::before,
.steps-grid div::before,
.review-card::before,
.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(221, 189, 138, .22), transparent 13rem);
  opacity: 0;
  transition: opacity .45s cubic-bezier(.22, 1, .36, 1);
}

.stats div:hover,
.service-card:hover,
.steps-grid div:hover,
.review-card:hover,
.video-card:hover {
  border-color: rgba(221, 189, 138, .45);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .42), 0 0 0 1px rgba(221, 189, 138, .08);
  transform: translateY(-6px);
}

.stats div:hover::before,
.service-card:hover::before,
.steps-grid div:hover::before,
.review-card:hover::before,
.video-card:hover::before {
  opacity: 1;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  transform-style: preserve-3d;
}

.hero-portrait-frame {
  position: absolute;
  inset: 20px 18px 0 8px;
  padding: 10px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(221, 189, 138, .24), rgba(255, 255, 255, .04)),
    rgba(20, 17, 14, .46);
  border: 1px solid rgba(221, 189, 138, .28);
  border-radius: 42px;
  box-shadow: 0 36px 120px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .1);
  transform: rotate(1.6deg);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), box-shadow .7s cubic-bezier(.22, 1, .36, 1);
  animation: portraitDrift 9s cubic-bezier(.45, 0, .55, 1) infinite;
}

.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 32px;
  filter: saturate(1.02) contrast(1.04);
}

.hero-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(7, 6, 5, .62)),
    radial-gradient(circle at 52% 16%, rgba(255, 237, 194, .18), transparent 16rem);
  border-radius: 32px;
}

.hero-portrait-frame:hover {
  box-shadow: 0 46px 140px rgba(0, 0, 0, .56), 0 0 0 1px rgba(221, 189, 138, .22);
  transform: rotate(0deg) translateY(-8px);
}

.hero-play-orbit {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: #16110a;
  background: linear-gradient(135deg, #f2dca9, var(--gold));
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(201, 169, 110, .34);
}

.hero-play-orbit::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(221, 189, 138, .38);
  border-radius: inherit;
  animation: pulseRing 2.8s cubic-bezier(.22, 1, .36, 1) infinite;
}

.hero-floating-card,
.hero-signature {
  position: absolute;
  z-index: 4;
  color: #f5e7c8;
  font-weight: 780;
  background: rgba(11, 9, 8, .62);
  border: 1px solid rgba(221, 189, 138, .26);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.hero-floating-card {
  padding: 13px 16px;
  font-size: .88rem;
  border-radius: 999px;
}

.hero-card-top {
  top: 84px;
  left: -8px;
  animation: floatY 5.8s cubic-bezier(.45, 0, .55, 1) infinite;
}

.hero-card-bottom {
  right: -2px;
  bottom: 112px;
  animation: floatY 6.6s cubic-bezier(.45, 0, .55, 1) infinite reverse;
}

.hero-signature {
  bottom: 36px;
  left: 18px;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: .8;
  border-radius: 24px;
}

.service-card,
.steps-grid div,
.review-card,
.video-card {
  position: relative;
  overflow: hidden;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card span {
  margin-top: auto;
}

.service-card:hover i {
  transform: translateY(-4px) rotate(-5deg);
}

.service-card i {
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.is-revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0) !important;
}

.reveal-on-scroll {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(36px) scale(.985);
  transition:
    opacity .85s cubic-bezier(.22, 1, .36, 1),
    filter .85s cubic-bezier(.22, 1, .36, 1),
    transform .85s cubic-bezier(.22, 1, .36, 1);
}

@keyframes slowSpin {
  to {
    transform: rotate(352deg);
  }
}

@keyframes pulseRing {
  0% {
    opacity: .8;
    transform: scale(.78);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes titleGoldFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes lineSweep {
  0%,
  100% {
    opacity: .22;
    transform: scaleX(.28);
  }

  50% {
    opacity: .75;
    transform: scaleX(1);
  }
}

@keyframes portraitDrift {
  0%,
  100% {
    transform: rotate(1.6deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(.6deg) translate3d(0, -10px, 0);
  }
}

@media (min-width: 993px) {
  .footer-grid {
    grid-template-columns: 1.7fr 1fr 1fr 1fr 1.35fr;
  }
}

@media (max-width: 1200px) {
  .main-nav {
    gap: 12px;
  }

  .stats,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section h2,
  .page-hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .burger {
    display: grid;
    gap: 5px;
    background: none;
    border: 0;
  }

  .burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text);
  }

  .nav-close {
    display: block;
    margin: 0 0 20px auto;
    color: var(--text);
    font-size: 24px;
    background: none;
    border: 0;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    display: block;
    width: min(360px, 100%);
    padding: 28px;
    background: #0d0d0f;
    box-shadow: var(--shadow);
    transform: translateX(100%);
    transition: .25s;
  }

  .main-nav.open {
    transform: none;
  }

  .nav-link,
  .dropdown-toggle {
    display: block;
    padding: 13px 0;
  }

  .dropdown-menu {
    position: static;
    display: none;
    margin: 8px 0 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-dropdown.open .dropdown-menu {
    display: block;
  }

  .split-grid,
  .booking-grid,
  .layout-sidebar {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sidebar {
    position: static;
  }

  .global-player {
    grid-template-columns: 50px 1fr auto auto auto;
  }

  .player-progress,
  .player-volume {
    grid-column: 1 / -1;
    width: 100%;
  }

  .player-close {
    grid-column: 5;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(2.85rem, 8.6vw, 4.1rem);
  }

  .hero p {
    font-size: 1.25rem;
  }

  .section h2,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .logo {
    font-size: 1.55rem;
  }
}

@media (max-width: 576px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .header-inner {
    height: 68px;
  }

  .logo {
    font-size: 1.55rem;
  }

  .hero {
    min-height: calc(100dvh - 68px);
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.35rem);
  }

  .section h2,
  .page-hero h1 {
    font-size: 2.1rem;
  }

  .service-card h3,
  .post-card h3 {
    font-size: 1.5rem;
  }

  .stats,
  .steps-grid,
  .cards-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .page-hero.compact {
    padding: 28px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: block;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    padding: 16px 20px;
  }

  .global-player {
    right: 8px;
    bottom: 8px;
    left: 8px;
    grid-template-columns: 44px 1fr auto auto;
  }

  .player-next,
  .player-volume {
    display: none;
  }

  .player-close {
    grid-column: 4;
  }

  .player-cover {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .logo,
  .scroll-cue {
    animation: none;
  }
}

@media (max-width: 1200px) {
  .hero-stage {
    grid-template-columns: 1fr .76fr;
    gap: 32px;
  }

  .hero .stats {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-portrait-frame img {
    min-height: 500px;
  }
}

@media (max-width: 992px) {
  .site-main {
    padding-top: 84px;
  }

  .site-header {
    top: 10px;
  }

  .header-inner {
    height: 62px;
  }

  .burger {
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid rgba(221, 189, 138, .2);
    border-radius: 50%;
  }

  .main-nav {
    inset: 0;
    width: 100%;
    padding: 84px 28px 28px;
    background:
      radial-gradient(circle at 70% 20%, rgba(201, 169, 110, .16), transparent 28rem),
      rgba(8, 7, 6, .94);
    backdrop-filter: blur(22px);
  }

  .nav-link,
  .dropdown-toggle {
    font-size: 1.2rem;
  }

  .hero {
    margin-top: -84px;
    padding-top: 104px;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 0 84px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(2.8rem, 8.6vw, 4.6rem);
  }

  .hero-visual {
    min-height: 520px;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-portrait-frame {
    inset: 0 8px;
  }

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

@media (max-width: 576px) {
  .site-main {
    padding-top: 76px;
  }

  .site-header {
    top: 8px;
  }

  .header-inner {
    width: min(100% - 18px, 1180px);
    height: 58px;
    padding-left: 16px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    margin-top: -76px;
    padding-top: 94px;
  }

  .hero-content {
    width: min(100% - 22px, 1180px);
  }

  .hero-stage {
    gap: 28px;
    padding: 36px 0 72px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .hero p {
    font-size: 1.04rem;
  }

  .hero .stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stats div {
    padding: 16px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-portrait-frame img {
    min-height: 400px;
  }

  .hero-floating-card {
    font-size: .78rem;
  }

  .hero-card-top {
    top: 44px;
    left: 0;
  }

  .hero-card-bottom {
    right: 0;
    bottom: 88px;
  }

  .hero-signature {
    bottom: 18px;
    left: 10px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Reference alignment pass: wider layout, pinned header, gold headings, icon navigation */
.container {
  width: min(1360px, calc(100% - 40px));
}

.narrow {
  width: min(980px, calc(100% - 40px));
}

.site-main {
  padding-top: 74px;
}

.site-header {
  top: 0 !important;
  background: rgba(4, 4, 4, .9);
  border-bottom: 0;
  box-shadow: 0 14px 50px rgba(0, 0, 0, .32);
}

.header-inner {
  width: min(1440px, calc(100% - 24px));
  height: 74px;
  padding: 0 12px 0 18px;
  background:
    linear-gradient(180deg, rgba(15, 13, 11, .96), rgba(7, 6, 5, .88)),
    #070605;
  border: 0;
  border-top: 0;
  border-radius: 0 0 28px 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(221, 189, 138, .18));
}

.logo span {
  color: transparent;
  background: linear-gradient(135deg, var(--gold), #fff1c4, var(--gold));
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
}

.main-nav {
  gap: clamp(9px, 1vw, 16px);
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .91rem;
  line-height: 1;
}

.nav-link i:first-child,
.dropdown-toggle i:first-child,
.dropdown-menu i,
.footer-grid i,
.contact-list i {
  color: var(--gold);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn i {
  color: currentColor;
}

.hero {
  margin-top: -74px;
  padding-top: 112px;
}

.hero-content {
  width: min(1360px, calc(100% - 40px));
}

.hero-stage {
  grid-template-columns: minmax(0, 1fr) minmax(430px, .92fr);
  min-height: calc(100dvh - 144px);
}

.hero h1 {
  max-width: 760px;
  color: var(--gold2);
  font-size: clamp(3.15rem, 4.35vw, 5.65rem);
}

.hero h1 > span:not(.hero-dynamic-word),
.section h2,
.page-hero h1,
.content-body h2,
.content-body h3,
.content-card h2,
.cta-band h2,
.seo-text h2,
.service-card h3,
.post-card h3,
.footer-grid h3 {
  color: var(--gold2);
}

.section h2,
.page-hero h1,
.content-card h2,
.cta-band h2,
.seo-text h2 {
  text-shadow: 0 14px 36px rgba(0, 0, 0, .26);
}

.hero-dynamic-word {
  max-width: 11ch;
}

.section {
  padding: 104px 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 82px 0 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(201, 169, 110, .11), transparent 24rem),
    linear-gradient(180deg, #0b0908, #050505);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(221, 189, 138, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 189, 138, .04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .2;
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  grid-template-columns: 1.55fr 1fr 1.05fr 1.35fr 1.45fr;
  gap: 34px;
}

.footer-grid a,
.footer-grid span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-grid .logo span {
  display: inline;
  margin: 0;
}

.footer-grid .socials a {
  display: grid;
  margin: 0;
}

.footer-grid a {
  transition: color .35s cubic-bezier(.22, 1, .36, 1), transform .35s cubic-bezier(.22, 1, .36, 1);
}

.footer-grid a:hover {
  color: var(--gold2);
  transform: translateX(4px);
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-bottom {
  color: rgba(228, 228, 231, .72);
}

.footer-bottom a {
  transition: color .3s cubic-bezier(.22, 1, .36, 1);
}

.footer-bottom a:hover {
  color: var(--gold2);
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 8px;
  }

  .nav-link,
  .dropdown-toggle {
    font-size: .84rem;
  }

  .hero-stage {
    grid-template-columns: 1fr .82fr;
  }

  .seo-premium-panel {
    min-height: auto;
    padding: 34px 28px;
  }

  .seo-premium-copy {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .seo-premium-copy > .section-tag,
  .seo-premium-copy > h2,
  .seo-text-stream {
    grid-column: auto;
  }

  .seo-premium-copy > h2,
  .seo-text-stream {
    max-width: 100%;
  }

  .seo-premium-photo-right {
    width: clamp(240px, 31vw, 320px);
    opacity: .28;
  }

  .seo-premium-photo-left {
    display: none;
  }
}

@media (max-width: 992px) {
  .container,
  .narrow,
  .hero-content {
    width: min(100% - 28px, 1360px);
  }

  .site-main {
    padding-top: 66px;
  }

  .header-inner {
    width: 100%;
    height: 66px;
    border-radius: 0;
  }

  .hero {
    margin-top: -66px;
    padding-top: 92px;
  }

  .hero-stage {
    grid-template-columns: 1fr;
  }

  .main-nav {
    top: 0;
  }

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

  .booking-panel {
    grid-template-columns: 1fr;
  }

  .booking-media,
  .booking-media-content {
    min-height: 440px;
  }

  .booking-form {
    border-left: 0;
    border-top: 1px solid rgba(221, 189, 138, .16);
  }

  .seo-premium-copy > h2 {
    max-width: 100%;
  }

  .seo-premium-photo-right,
  .seo-premium-glow {
    display: none;
  }
}

@media (max-width: 576px) {
  .container,
  .narrow,
  .hero-content {
    width: min(100% - 22px, 1360px);
  }

  .site-main {
    padding-top: 62px;
  }

  .header-inner {
    height: 62px;
  }

  .logo img {
    width: 28px;
    height: 28px;
  }

  .hero {
    margin-top: -62px;
    padding-top: 86px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  .section {
    padding: 72px 0;
  }

  .page-hero.compact {
    padding: 28px;
  }

  .page-hero h1 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .article-page .featured-image img {
    height: 220px;
  }

.footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    border-radius: 24px;
  }

  .booking-media,
  .booking-media-content {
    min-height: 360px;
  }

  .booking-media-content {
    padding: 26px;
  }

  .seo-premium-panel {
    padding: 28px 20px;
  }

  .seo-premium-copy > h2 {
    font-size: clamp(2.4rem, 8vw, 3.15rem);
    line-height: .98;
  }

  .seo-text-stream {
    gap: 18px;
  }

  .seo-text-stream p {
    font-size: 1rem;
    line-height: 1.72;
  }
}

.pagination-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.pagination-wrap a,
.pagination-wrap span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 15px;
  color: var(--text2);
  font-weight: 800;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(221, 189, 138, .2);
  border-radius: 999px;
  transition: .3s cubic-bezier(.22, 1, .36, 1);
}

.pagination-wrap a:hover,
.pagination-wrap .active,
.pagination-wrap span {
  color: #15110a;
  background: var(--gold);
  border-color: var(--gold);
}

.comments-section {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.comments-section h2 {
  color: var(--gold2);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
}

.add-comment-card textarea,
.add-comment-card input {
  width: 100%;
  color: var(--text);
  background: #0f0f11;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.hero h1,
.hero-title {
  max-width: min(680px, 100%);
  font-size: clamp(2.55rem, 3.55vw, 4.55rem);
  line-height: 1.02;
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-title-line,
.hero-dynamic-word {
  display: block;
  position: relative;
  background: linear-gradient(180deg, #fff6dd 0%, #f4d89e 18%, #e9c37d 44%, #c7964d 73%, #8d632e 100%);
  background-size: 100% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(255, 243, 210, .14);
  text-shadow:
    0 1px 0 rgba(255, 247, 225, .22),
    0 10px 24px rgba(0, 0, 0, .52),
    0 18px 44px rgba(115, 76, 26, .28);
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, .34));
}

.hero-title-line {
  transform: translateZ(22px);
}

.hero-title-line:first-child {
  margin-bottom: .03em;
}

.hero-title-line:nth-child(2) {
  margin-bottom: .08em;
}

.hero-dynamic-word {
  width: min(100%, 11.6em);
  max-width: none;
  overflow-wrap: anywhere;
  white-space: normal;
  background: linear-gradient(180deg, #fff8ea 0%, #f9e1ae 22%, #edca84 52%, #bf8a42 100%);
  -webkit-text-stroke: 1px rgba(255, 245, 221, .16);
  text-shadow:
    0 1px 0 rgba(255, 248, 231, .26),
    0 10px 24px rgba(0, 0, 0, .44),
    0 18px 44px rgba(128, 83, 28, .28),
    0 0 12px rgba(255, 223, 160, .14);
  transform: translateZ(44px);
  animation: titleGoldFlow 4.8s cubic-bezier(.22, 1, .36, 1) infinite, wordFloat 6s cubic-bezier(.45, 0, .55, 1) infinite;
}

.hero-dynamic-word::before {
  content: none;
}

.hero-letter {
  display: inline-block;
  transform-origin: 50% 74%;
  text-shadow:
    0 1px 0 rgba(255, 250, 234, .24),
    0 6px 14px rgba(0, 0, 0, .3),
    0 12px 30px rgba(118, 76, 27, .24);
  animation: letterLive 4.6s cubic-bezier(.45, 0, .55, 1) infinite;
  animation-delay: calc(var(--letter-index, 0) * 55ms);
  will-change: transform, filter;
}

.hero-letter-space {
  width: .28em;
}

.hero-copy {
  animation: heroCopyDrift 8s cubic-bezier(.45, 0, .55, 1) infinite;
}

.hero-copy > p {
  color: #f3efe8;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .06),
    0 8px 22px rgba(0, 0, 0, .28);
}

@keyframes wordFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes letterLive {
  0%,
  100% {
    filter: brightness(1);
    transform: translate3d(0, 0, 0) rotate(0deg) skewX(0deg);
  }

  28% {
    filter: brightness(1.16);
    transform: translate3d(0, -.04em, 0) rotate(-.45deg) skewX(-.4deg);
  }

  62% {
    filter: brightness(1.08);
    transform: translate3d(0, .018em, 0) rotate(.32deg) skewX(.28deg);
  }
}

@keyframes heroCopyDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@media (max-width: 576px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.04rem, 9.2vw, 2.82rem);
    line-height: 1.04;
  }

  .hero-title-line,
  .hero-dynamic-word {
    -webkit-text-stroke-width: .6px;
    text-shadow:
      0 1px 0 rgba(255, 247, 225, .18),
      0 8px 18px rgba(0, 0, 0, .44),
      0 14px 28px rgba(115, 76, 26, .22);
  }

  .pagination-wrap a,
  .pagination-wrap span {
    min-width: 40px;
    min-height: 40px;
    padding: 8px 13px;
  }
}

.donor-video-page .page-hero {
  margin-bottom: 34px;
}

.donor-video-page .video-grid {
  align-items: stretch;
}

.donor-video-page .video-card {
  min-height: 420px;
}

.donor-video-page .video-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.video-caption h3 i {
  margin-right: 8px;
  color: var(--gold);
}

.donor-video-more {
  margin-top: 38px;
}

/* Button sizing cleanup: desktop buttons should not stretch across whole panels. */
.header-actions .btn,
.booking-form .btn,
.contacts-page .booking-form .btn,
.booking-media-content .btn,
.donor-video-more .btn {
  width: auto;
  max-width: max-content;
}

.header-actions .btn {
  min-height: 48px;
  padding: 12px 56px 12px 20px;
}

.booking-form .btn.full {
  justify-self: start;
  grid-column: 1 / -1;
  min-width: 246px;
  padding: 14px 58px 14px 24px;
}

.booking-media-content .btn {
  justify-self: start;
}

@media (max-width: 1100px) {
  .video-presentation__wrapper {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .video-presentation__content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .video-presentation__content p {
    max-width: 48ch;
    margin-right: auto;
    margin-left: auto;
  }

  .music-note {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .music-playlist {
    gap: 14px;
  }

  .video-presentation__content p {
    font-size: 1.06rem;
  }

  .music-track {
    grid-template-columns: 60px minmax(0, 1fr) 44px;
    gap: 14px;
    padding: 14px 16px;
  }

  .music-track__cover {
    width: 60px;
    height: 60px;
  }

  .music-track__play {
    width: 44px;
    height: 44px;
  }

  .music-note {
    padding: 26px 22px;
    gap: 18px;
  }

  .music-note__icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }
}

@media (max-width: 576px) {
  .header-actions .btn,
  .booking-form .btn,
  .contacts-page .booking-form .btn,
  .booking-media-content .btn,
  .donor-video-more .btn {
    width: 100%;
    max-width: none;
  }

  .booking-form .btn.full {
    justify-self: stretch;
  }

  .music-page {
    padding-top: 8px;
  }

  .video-presentation .section-tag {
    letter-spacing: .36em;
  }

  .video-presentation .section-title {
    font-size: 2.6rem;
  }

  .video-presentation__content p {
    max-width: none;
    font-size: 1rem;
  }

  .video-presentation__player {
    border-radius: 22px;
  }

  .music-hero {
    margin-bottom: 28px;
  }

  .music-hero p {
    margin-left: auto;
  }

  .music-track {
    grid-template-columns: 64px minmax(0, 1fr) 50px;
    gap: 12px;
    padding: 14px;
  }

  .music-track__cover {
    width: 64px;
    height: 64px;
  }

  .music-track__title {
    font-size: 1rem;
  }

  .music-track__play {
    width: 50px;
    height: 50px;
  }

  .music-note {
    margin-top: 18px;
    padding: 22px 18px;
  }

  .music-note__text h2 {
    font-size: 1.6rem;
  }

  .music-note__text .btn {
    width: 100%;
    justify-self: stretch;
    justify-content: center;
  }

  .static-page .content-body form#registration {
    flex-direction: column;
  }

  .static-page .content-body form#registration .bbcodes {
    width: 100%;
  }
}

.auth-section,
.profile-section {
  padding: 72px 0 110px;
}

.auth-layout,
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .72fr);
  gap: 28px;
  align-items: start;
}

.auth-layout--wide {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
}

.auth-box,
.profile-sidebar,
.profile-main > .content-card {
  border-radius: 28px;
}

.auth-box {
  padding: 34px;
}

.auth-box h1,
.auth-box h2,
.profile-summary h2,
.profile-sidebar h1 {
  margin: 12px 0 16px;
  color: var(--gold2);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.auth-box p,
.profile-summary p,
.profile-status {
  color: var(--text2);
}

.auth-grid,
.profile-form-grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.auth-grid--two,
.profile-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-grid--captcha {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.field {
  display: grid;
  gap: 10px;
}

.field--full {
  grid-column: 1 / -1;
}

.field span,
.check span {
  color: var(--text2);
  font-weight: 700;
}

.field input,
.field textarea,
.field select,
.registration-xfields input,
.registration-xfields textarea,
.registration-xfields select,
.profile-xfields input,
.profile-xfields textarea,
.profile-xfields select {
  width: 100%;
  min-height: 58px;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.field textarea,
.registration-xfields textarea,
.profile-xfields textarea {
  min-height: 148px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.registration-xfields input:focus,
.registration-xfields textarea:focus,
.registration-xfields select:focus,
.profile-xfields input:focus,
.profile-xfields textarea:focus,
.profile-xfields select:focus {
  border-color: rgba(201, 169, 110, .9);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, .12);
}

.check {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-top: 18px;
}

.check--wide {
  max-width: 760px;
}

.check input {
  margin-top: 4px;
  accent-color: var(--gold);
}

.auth-actions,
.quick-actions-grid,
.profile-side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.auth-links {
  margin-top: 20px;
}

.auth-links a,
.check a {
  color: var(--gold2);
}

.auth-links a:hover,
.check a:hover {
  color: #fff1c4;
}

.auth-benefits {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.auth-benefits li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--text2);
}

.auth-benefits i {
  color: var(--gold);
  margin-top: 3px;
}

.auth-note {
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(201, 169, 110, .18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(201, 169, 110, .08), rgba(255, 255, 255, .02));
}

.auth-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold2);
  font-size: 1.06rem;
}

.captcha-shell {
  min-width: 150px;
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
}

.registration-xfields,
.profile-xfields {
  display: grid;
  gap: 14px;
}

.profile-sidebar {
  position: sticky;
  top: 102px;
  padding: 28px;
}

.profile-avatar {
  width: min(100%, 240px);
  margin: 0 auto 18px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, .22);
}

.profile-avatar img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.profile-stat-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.profile-stat-list div,
.profile-public-item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: rgba(255, 255, 255, .025);
}

.profile-stat-list span,
.profile-public-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .92rem;
}

.profile-stat-list strong,
.profile-public-item strong {
  color: var(--text);
  font-weight: 800;
}

.profile-main {
  display: grid;
  gap: 22px;
}

.profile-summary,
.profile-edit-card,
.profile-public-card {
  padding: 30px;
}

.profile-public-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.profile-public-item--wide {
  grid-column: 1 / -1;
}

.profile-bio {
  color: var(--text2);
}

@media (max-width: 1100px) {
  .auth-layout,
  .auth-layout--wide,
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .auth-section,
  .profile-section {
    padding: 48px 0 82px;
  }

  .auth-box,
  .profile-sidebar,
  .profile-summary,
  .profile-edit-card,
  .profile-public-card {
    padding: 24px;
  }

  .auth-grid--two,
  .profile-form-grid,
  .profile-public-grid {
    grid-template-columns: 1fr;
  }

  .auth-grid--captcha {
    grid-template-columns: 1fr;
  }
}

/* Service/detail polish: compact sidebar, centered service hero, balanced media. */
@media (min-width: 993px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .main-nav {
    justify-content: center;
    min-width: 0;
    text-align: center;
  }

  .nav-link,
  .dropdown-toggle {
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  .has-dropdown .dropdown-menu {
    left: 50%;
    transform: translate(-50%, 8px);
  }

  .has-dropdown .dropdown-menu a {
    justify-content: center;
    text-align: center;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown.open .dropdown-menu {
    transform: translate(-50%, 0);
  }

  .article-page .layout-sidebar,
  .static-page .layout-sidebar {
    grid-template-columns: minmax(0, 860px) 320px;
    justify-content: center;
    gap: 34px;
  }
}

.article-page .page-hero.compact,
.static-page .page-hero.compact {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(34px, 4vw, 54px);
  text-align: center;
}

.article-page .page-hero.compact p,
.static-page .page-hero.compact p {
  max-width: 72ch;
  margin-right: auto;
  margin-left: auto;
}

.article-page .featured-image {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.article-page .featured-image img {
  height: clamp(300px, 34vw, 520px);
  object-position: center 24%;
}

.article-page .lead,
.article-page .content-body,
.article-page .content-card,
.article-page .quote,
.article-page .faq-block,
.article-page .cta-band {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.article-page .content-card {
  padding: clamp(24px, 3vw, 34px);
}

.article-page .sidebar {
  top: 96px;
  gap: 16px;
  padding: 0;
  font-size: .98rem;
}

.article-page .sidebar-widget {
  display: grid;
  gap: 12px;
  padding: 24px 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
}

.article-page .sidebar-widget--author {
  justify-items: center;
  text-align: center;
}

.article-page .sidebar-widget--author .avatar {
  width: 132px;
  height: 132px;
  object-fit: cover;
  object-position: center 24%;
  border: 2px solid rgba(221, 189, 138, .78);
  border-radius: 50%;
}

.article-page .sidebar-widget h3 {
  margin: 2px 0 0;
  font-size: 1.14rem;
}

.article-page .sidebar-widget p {
  margin: 0;
  color: var(--text2);
  line-height: 1.58;
}

.article-page .sidebar-widget .btn {
  justify-self: center;
  width: fit-content;
  min-height: 42px;
  padding: 10px 18px;
  font-size: .92rem;
}

.article-page .sidebar-widget--cta {
  background: linear-gradient(135deg, rgba(201, 169, 110, .16), rgba(20, 18, 16, .98));
  border-color: rgba(201, 169, 110, .28);
}

.article-page .sidebar-widget--cta h4 {
  margin: 0;
  font-size: 1rem;
}

.article-page .sidebar-widget--cta p {
  color: var(--text2);
  text-align: center;
}

.article-page .sidebar-widget--cta .btn {
  width: 100%;
  justify-self: stretch;
}

.article-page .sidebar-categories {
  display: grid;
  gap: 4px;
}

.article-page .sidebar-categories a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 31px;
  padding: 6px 0;
  font-size: .9rem;
}

@media (max-width: 992px) {
  .has-dropdown .dropdown-menu,
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown.open .dropdown-menu {
    transform: none;
  }

  .article-page .featured-image img {
    height: clamp(260px, 56vw, 420px);
  }
}

@media (max-width: 576px) {
  .article-page .page-hero.compact,
  .static-page .page-hero.compact {
    text-align: left;
  }

  .article-page .sidebar .avatar {
    width: 116px;
    height: 116px;
  }

  .article-page .sidebar-widget {
    padding: 18px;
  }
}
