:root {
  --bg: #050506;
  --bg-2: #0b0b0d;
  --surface: #1d1d1f;
  --surface-2: #141416;
  --surface-3: #232326;
  --gold: #c8a45c;
  --gold-light: #e8cf94;
  --gold-dark: #9a7b3c;
  --gold-grad: linear-gradient(
    135deg,
    #9a7b3c 0%,
    #c8a45c 35%,
    #e8cf94 55%,
    #c8a45c 75%,
    #9a7b3c 100%
  );
  --text: #f5f5f7;
  --text-2: #a1a1a6;
  --text-3: #6e6e73;
  --line: rgba(255, 255, 255, 0.09);
  --line-gold: rgba(200, 164, 92, 0.35);
  --font-serif:
    "Book Antiqua", "Palatino Linotype", Palatino, "URW Palladio L", Georgia,
    serif;
  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}
h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}
h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
}
h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}
p {
  margin: 0 0 1.1em;
}
a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
a:hover {
  color: var(--gold-light);
}
img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  padding-left: 1.3em;
}
::selection {
  background: rgba(200, 164, 92, 0.35);
  color: #fff;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.muted {
  color: var(--text-2);
}
.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 2000;
  background: var(--gold);
  color: #0a0a0a;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
}
.skip-link:focus {
  left: 8px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 6, 0.72);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  transition: background 0.3s var(--ease);
  z-index: -1;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
}
.site-header.scrolled::before {
  background: rgba(5, 5, 6, 0.88);
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
  white-space: nowrap;
}
.brand:hover {
  color: var(--text);
}
.brand .brand-mark {
  width: 44px;
  height: 44px;
  flex: none;
}
.brand small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-drawer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}
.nav-drawer-head,
.nav-drawer-foot {
  display: none;
}
.nav-overlay {
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li > a,
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  color: var(--text-2);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-dropdown-trigger:hover {
  color: var(--text);
}
.nav-links a[aria-current="page"],
.nav-links a.active {
  color: var(--gold);
}
.nav-cta {
  margin-left: 0.8rem;
}
.nav-cta .btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--gold-grad);
  background-size: 200% 200%;
  color: #18120a;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 26px rgba(200, 164, 92, 0.28);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background-position 0.25s var(--ease);
}
.nav-cta .btn-nav-call:hover {
  color: #18120a;
  background: var(--gold-grad);
  background-size: 200% 200%;
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(200, 164, 92, 0.4);
}
.nav-cta .btn-nav-call svg {
  flex-shrink: 0;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-left: .4rem;
}
.nav-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text-2);
  transition: border-color .2s, color .2s, background .2s;
  flex-shrink: 0;
}
.nav-social-btn:hover {
  color: var(--gold);
}
.nav-social-btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.22s var(--ease);
  flex-shrink: 0;
}
.nav-has-dropdown {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.45rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease),
    visibility 0.2s;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
  z-index: 200;
}
.nav-dropdown li a {
  display: block;
  padding: 0.52rem 0.9rem;
  color: var(--text-2);
  font-size: 0.88rem;
  font-weight: 400;
  border-radius: 8px;
  transition:
    color 0.18s,
    background 0.18s;
  white-space: nowrap;
}
.nav-dropdown li.nav-dropdown-sep a {
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  margin-bottom: 0.3rem;
  padding-bottom: 0.7rem;
}
.nav-dropdown li a:hover {
  color: var(--text);
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
  content: "";
}
.nav-toggle span::before {
  position: absolute;
  top: -6px;
}
.nav-toggle span::after {
  position: absolute;
  top: 6px;
}
.nav-open .nav-toggle span {
  background: transparent;
}
.nav-open .nav-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}
.nav-open .nav-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
  text-align: center;
}
.btn:active {
  transform: scale(0.98);
}
.btn-gold {
  background: var(--gold-grad);
  background-size: 200% 200%;
  color: #18120a;
  box-shadow: 0 8px 26px rgba(200, 164, 92, 0.28);
}
.btn-gold:hover {
  color: #18120a;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(200, 164, 92, 0.4);
  background-position: 100% 50%;
}
.btn-outline {
  border-color: var(--line-gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(200, 164, 92, 0.08);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text-2);
}
.btn-ghost:hover {
  color: var(--text);
}
.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
}
.btn-icon {
  padding: 0;
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(4rem, 10vw, 7.5rem)) 0
    clamp(4rem, 8vw, 6.5rem);
  isolation: isolate;
}
.hero--home {
  padding-bottom: calc(clamp(4rem, 8vw, 6.5rem) + 58px);
}
@media (min-width: 861px) {
  .hero--home {
    min-height: 90vh;
  }
  .hero--home h1 {
    font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  }
  .hero--home .hero-sub {
    font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  }
  .hero--home .lead {
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      900px 480px at 85% 12%,
      rgba(200, 164, 92, 0.1),
      transparent 65%
    ),
    radial-gradient(
      700px 520px at 8% 90%,
      rgba(40, 48, 80, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, #08080a 0%, var(--bg) 100%);
}
.hero-watermark {
  position: absolute;
  z-index: -1;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(340px, 40vw, 760px);
  height: auto;
  opacity: 0.14;
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 40%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  animation: hero-zoom 12s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo img {
    animation: none;
  }
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      var(--bg) 0%,
      rgba(5, 5, 6, 0.75) 18%,
      rgba(5, 5, 6, 0.25) 45%,
      transparent 68%
    ),
    linear-gradient(to bottom, rgba(5, 5, 6, 0.55) 0%, transparent 22%),
    linear-gradient(to top, var(--bg) 0%, transparent 28%);
}
.hero-portrait {
  position: absolute;
  right: 7%;
  bottom: 0;
  height: 90%;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}
.hero-portrait img {
  height: 100%;
  width: auto;
  display: block;
  transform: scaleX(-1);
  object-fit: contain;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 18%);
  mask-image: linear-gradient(to top, transparent 0%, black 18%);
}
@media (max-width: 860px) {
  .hero-portrait {
    display: none;
  }
}
@media (max-width: 860px) {
  .hero-photo {
    left: 0;
    opacity: 0.45;
  }
  .hero-photo::before {
    background: linear-gradient(
      to bottom,
      var(--bg) 0%,
      rgba(5, 5, 6, 0.5) 20%,
      rgba(5, 5, 6, 0.3) 60%,
      var(--bg) 100%
    );
  }
  .hero-watermark {
    display: none;
  }
}
.hero-inner {
  max-width: 720px;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero .eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
}
.hero .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-2);
  max-width: 56ch;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text);
  border-bottom: 1px solid var(--line-gold);
  display: inline-block;
  padding-bottom: 0.7rem;
  margin-bottom: 1.4rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.6rem;
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero-badges .badge b {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--gold);
}
.hero-badges .badge span {
  font-size: 0.85rem;
  color: var(--text-3);
}
.card.card--extra {
  display: none;
}
.services-grid-wrap.expanded .card.card--extra {
  display: flex;
}
.services-expand-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}
.services-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.8rem;
  background: transparent;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.22s var(--ease),
    color 0.22s var(--ease);
}
.services-expand-btn:hover {
  background: rgba(200, 164, 92, 0.1);
}
.services-expand-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.services-grid-wrap.expanded .services-expand-icon {
  transform: rotate(180deg);
}
@keyframes hero-reviews-slide {
  0% {
    opacity: 0;
    transform: translateX(-60px);
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
  20% {
    opacity: 1;
    transform: translateX(0);
    animation-timing-function: linear;
  }
  62% {
    opacity: 1;
    transform: translateX(0);
    animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45);
  }
  80% {
    opacity: 0;
    transform: translateX(35px);
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: translateX(-60px);
  }
}
@keyframes hero-reviews-pulse {
  0% {
    transform: scale(1);
  }
  18% {
    transform: scale(1.22);
  }
  36% {
    transform: scale(1);
  }
  54% {
    transform: scale(1.18);
  }
  72% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.hero-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.2rem);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(
    90deg,
    #7a6228 0%,
    #b8943e 25%,
    #c8a45c 50%,
    #b8943e 75%,
    #7a6228 100%
  );
  overflow: hidden;
  z-index: 2;
}
.hero-reviews__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: hero-reviews-pulse 1.8s ease 0.6s 1 both;
}
@media (prefers-reduced-motion: reduce) {
  .hero-reviews__logo {
    animation: none;
  }
}
.hero-reviews__content {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: hero-reviews-slide 4s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-reviews__content {
    animation: none;
  }
}
.hero-reviews__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.hero-reviews__text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}
.hero-reviews__text svg {
  flex-shrink: 0;
  opacity: 0.9;
}
.section {
  padding: clamp(3.6rem, 8vw, 6.2rem) 0;
  position: relative;
  overflow: clip;
}
.section-alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.section-head {
  max-width: 680px;
  margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head .eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.9rem;
}
.section-head p {
  color: var(--text-2);
}
.grid {
  display: grid;
  gap: 1.4rem;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  position: relative;
  background: linear-gradient(165deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  bottom: -18%;
  right: -12%;
  width: 65%;
  aspect-ratio: 1;
  background: url("/assets/logo-light.webp") no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px 200px at 20% 0%,
    rgba(200, 164, 92, 0.1),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
a.card {
  color: var(--text);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
}
.card:hover::after {
  opacity: 1;
}
.card .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(200, 164, 92, 0.1);
  border: 1px solid var(--line-gold);
  color: var(--gold);
  margin-bottom: 1.1rem;
  transition: background 0.35s var(--ease);
}
.card:hover .icon {
  background: rgba(200, 164, 92, 0.18);
}
.card .icon svg {
  width: 26px;
  height: 26px;
}
.card h3 {
  margin-bottom: 0.35rem;
}
.card p {
  color: var(--text-2);
  font-size: 0.95rem;
  margin: 0;
}
.card .card-more {
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card .card-more::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}
.card:hover .card-more::after {
  transform: translateX(5px);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.team-card {
  background: linear-gradient(170deg, #f7f6f3 0%, #e9e6df 100%);
  color: #1a1a1c;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.team-photo {
  background: linear-gradient(180deg, #d8d3c8 0%, #c4beb1 100%);
  min-height: 420px;
  position: relative;
}
.team-photo img,
.team-photo svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-body {
  padding: 1.7rem 1.6rem;
  display: flex;
  flex-direction: column;
}
.team-body .role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}
.team-body h3 {
  color: #131315;
  margin-bottom: 0.5rem;
}
.team-body p {
  color: #4c4c50;
  font-size: 0.93rem;
  margin-bottom: 0;
}
.team-body .btn {
  margin-top: 1.2rem;
  align-self: flex-start;
}
.person-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 820px;
  margin-inline: auto;
}
.person-box {
  background: #1d1d1f;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.person-box:hover {
  border-color: rgba(200, 164, 92, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}
.person-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(200, 164, 92, 0.45);
  display: block;
  flex-shrink: 0;
}
.person-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #f5f5f7;
  margin: 0;
  line-height: 1.25;
}
.person-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8a45c;
  margin: 0;
}
.person-bio {
  font-size: 0.875rem;
  color: #a1a1a6;
  line-height: 1.75;
  flex: 1;
}
.person-bio p {
  margin: 0 0 0.6rem;
}
.person-bio p:last-of-type {
  margin-bottom: 0;
}
.person-bio strong {
  color: #f5f5f7;
  font-weight: 600;
}
@media (max-width: 600px) {
  .person-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}
.page-hero {
  padding: calc(var(--nav-h) + clamp(2.8rem, 6vw, 4.5rem)) 0
    clamp(2.4rem, 5vw, 3.6rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero.has-cover {
  position: relative;
  background-size: cover;
  background-position: center;
  border-bottom-color: var(--gold);
}
.page-hero.has-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,6,.72) 0%, rgba(5,5,6,.88) 100%);
  z-index: 0;
}
.page-hero.has-cover .container {
  position: relative;
  z-index: 1;
}
.page-hero .hero-watermark {
  width: clamp(140px, 18vw, 260px);
}
.hero.page-hero {
  border-bottom-color: var(--gold);
}
.page-hero-symbol {
  position: absolute;
  z-index: -1;
  left: -0.05em;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(12rem, 22vw, 26rem);
  font-family: var(--font-serif);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  user-select: none;
}
.breadcrumbs {
  font-size: 0.84rem;
  color: var(--text-3);
  margin-bottom: 1.3rem;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--text-3);
}
.breadcrumbs a {
  color: var(--text-2);
}
.breadcrumbs a:hover {
  color: var(--gold);
}
.prose {
  max-width: 760px;
}
.prose p {
  color: var(--text-2);
}
.prose strong {
  color: var(--text);
}
.prose ul {
  color: var(--text-2);
  margin: 0 0 1.3em;
}
.prose li {
  margin-bottom: 0.55em;
  padding-left: 0.3em;
}
.prose li::marker {
  color: var(--gold);
}
.prose h2 {
  margin-top: 1.8em;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  margin-top: 1.5em;
  color: var(--gold-light);
}
.prose .highlight {
  background: linear-gradient(165deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
}
.prose .highlight p {
  margin: 0;
  color: var(--text);
}
.layout-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.sidebar-box {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: linear-gradient(165deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
}
.sidebar-box h3 {
  font-size: 1.15rem;
}
.sidebar-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-box li {
  border-bottom: 1px solid var(--line);
}
.sidebar-box li:last-child {
  border-bottom: 0;
}
.sidebar-box li a {
  display: block;
  padding: 0.62rem 0.2rem;
  color: var(--text-2);
  font-size: 0.92rem;
  transition:
    color 0.25s var(--ease),
    padding-left 0.25s var(--ease);
}
.sidebar-box li a:hover {
  color: var(--gold);
  padding-left: 0.55rem;
}
.sidebar-box li a[aria-current="page"] {
  color: var(--gold);
  font-weight: 600;
}
.sidebar-box .btn {
  width: 100%;
  margin-top: 1.3rem;
}
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      700px 320px at 15% 20%,
      rgba(200, 164, 92, 0.14),
      transparent 60%
    ),
    linear-gradient(165deg, #111114 0%, #0a0a0c 100%);
  border-block: 1px solid var(--line);
  text-align: center;
  padding: clamp(3.4rem, 7vw, 5.4rem) 0;
}
.cta-band-logo {
  position: absolute;
  bottom: -12%;
  right: -2%;
  width: clamp(220px, 28vw, 420px);
  height: auto;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.cta-band h2 {
  max-width: 22ch;
  margin-inline: auto;
}
.cta-band p {
  color: var(--text-2);
  max-width: 58ch;
  margin-inline: auto;
}
.cta-band .hero-actions {
  justify-content: center;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.form-field label .req {
  color: var(--gold);
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.78rem 0.95rem;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-3);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(200, 164, 92, 0.05);
}
.form-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-2);
}
.form-check input {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  accent-color: var(--gold);
  flex: none;
}
.form-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-status {
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}
.form-status.ok {
  display: block;
  color: #7ed99a;
}
.form-status.error {
  display: block;
  color: #ff8a80;
}
p.form-disclaimer {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.6;
  text-align: left;
  margin-inline: 0;
  max-width: none;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.contact-list li:last-child {
  border-bottom: 0;
}
.contact-list .icon {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(200, 164, 92, 0.1);
  border: 1px solid var(--line-gold);
  color: var(--gold);
}
.contact-list .icon svg {
  width: 20px;
  height: 20px;
}
.contact-list b {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.contact-list a,
.contact-list span {
  color: var(--text);
  font-size: 0.98rem;
}
.contact-list a:hover {
  color: var(--gold);
}
.cinfo {
  margin: 0 0 1.8rem;
}
.cinfo-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.cinfo-item:last-child {
  border-bottom: 0;
}
.cinfo-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.cinfo-value {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
}
a.cinfo-value:hover {
  color: var(--gold);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.hours-table td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-2);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--text);
  font-weight: 500;
}
.hours-table tr.closed td:last-child {
  color: var(--text-3);
}
.hours-table tr.today td {
  color: var(--gold);
  font-weight: 600;
}
.contact-2col {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-map-band {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  border: 1px solid var(--line);
}
.contact-map-band .map-wrap {
  height: 100%;
  border-radius: 0;
  border: none;
  aspect-ratio: unset;
}
.contact-map-band .map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 860px) {
  .contact-2col {
    grid-template-columns: 1fr;
  }
}
.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
  aspect-ratio: 4 / 3;
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) contrast(0.9) brightness(0.95);
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  background:
    radial-gradient(
      500px 260px at 50% 30%,
      rgba(200, 164, 92, 0.08),
      transparent 70%
    ),
    var(--surface-2);
}
.map-placeholder p {
  color: var(--text-2);
  font-size: 0.9rem;
  max-width: 40ch;
  margin: 0;
}
.map-placeholder .icon {
  color: var(--gold);
}
.map-placeholder .icon svg {
  width: 44px;
  height: 44px;
}
.post-card {
  padding: 0;
  overflow: hidden;
}
.post-card .post-cover {
  aspect-ratio: 16 / 9;
  background: linear-gradient(150deg, #1f1f23 0%, #121214 100%);
  position: relative;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}
.post-card .post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-card .post-cover svg {
  width: 64px;
  height: 64px;
  color: var(--gold);
  opacity: 0.5;
}
.post-card .post-body {
  padding: 1.6rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-meta {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 0.55rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.post-meta .tag {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.sample-note {
  display: inline-block;
  background: rgba(200, 164, 92, 0.12);
  border: 1px solid var(--line-gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
  margin-bottom: 1rem;
}
.article-body {
  max-width: 720px;
  margin-inline: auto;
}.post-cover-img {
  max-height: 440px;
  overflow: hidden;
}
.post-cover-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.blog-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex: 1;
}
.blog-cat-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-2);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}
.blog-cat-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.blog-cat-btn.active {
  background: rgba(200, 164, 92, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}
.blog-sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-2);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.blog-sort-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.article-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--text-3);
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}
.site-footer {
  background: #030304;
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.4rem;
  margin-bottom: 2.6rem;
}
.footer-grid h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li {
  margin-bottom: 0.5rem;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}
.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 0.18rem;
  opacity: 0.6;
}
.footer-grid a {
  color: var(--text-2);
}
.footer-grid a:hover {
  color: var(--gold);
}
.footer-about p {
  color: var(--text-2);
  font-size: 0.9rem;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text-2);
  transition:
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-2);
  font-size: 0.83rem;
}
.footer-bottom a {
  color: var(--text-2);
}
.footer-bottom button.linklike {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--text-2);
  cursor: pointer;
}
.footer-bottom button.linklike:hover,
.footer-bottom a:hover {
  color: var(--gold);
}
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  color: var(--text-3);
  font-size: 0.71rem;
  line-height: 1.65;
}
.footer-legal a {
  color: var(--text-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal a:hover { color: var(--gold); }

.cookie-banner {
  position: fixed;
  z-index: 3000;
  inset: auto 1rem 1rem;
  max-width: 480px;
  margin-left: auto;
  background: rgba(20, 20, 22, 0.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.3rem;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.4s var(--ease),
    opacity 0.4s var(--ease);
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner h3 {
  font-size: 1.06rem;
  margin-bottom: 0.4rem;
}
.cookie-banner p {
  font-size: 0.86rem;
  color: var(--text-2);
  margin-bottom: 1.1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.cookie-prefs {
  margin: 0 0 1.1rem;
  display: none;
}
.cookie-banner.show-prefs .cookie-prefs {
  display: block;
}
.cookie-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.cookie-pref-row:last-child {
  border-bottom: 0;
}
.cookie-pref-row b {
  font-weight: 600;
  color: var(--text);
  display: block;
}
.cookie-pref-row small {
  color: var(--text-3);
  display: block;
  line-height: 1.45;
}
.switch {
  position: relative;
  width: 44px;
  height: 25px;
  flex: none;
}
.switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.switch .track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transition: background 0.25s var(--ease);
}
.switch .track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s var(--ease);
}
.switch input:checked + .track {
  background: var(--gold);
}
.switch input:checked + .track::after {
  transform: translateX(19px);
}
.switch input:disabled + .track {
  opacity: 0.55;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
.bio-mobile-title {
  display: none;
}
@media (max-width: 1020px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .layout-sidebar {
    grid-template-columns: 1fr;
  }
  .sidebar-box {
    position: static;
  }
}
@media (max-width: 860px) {
  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    background: #0d0d0e;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.38s var(--ease);
    overflow-y: auto;
    z-index: 400;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
  }
  .nav-open .nav-drawer {
    transform: translateX(0);
  }
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 399;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.38s var(--ease);
  }
  .nav-open .nav-overlay {
    opacity: 1;
    pointer-events: all;
  }
  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
  }
  .nav > .brand span {
    font-size: 0.88rem;
    letter-spacing: 0.02em;
  }
  .nav-drawer-head .brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }
  .nav-drawer-head .brand-logo {
    height: 34px;
    width: 34px;
  }
  .nav-drawer-head .brand span {
    font-family: var(--font-serif);
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
  }
  .nav-close {
    background: transparent;
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-2);
    flex-shrink: 0;
    transition: color 0.2s;
  }
  .nav-close:hover {
    color: var(--text);
  }
  .nav-close svg {
    width: 18px;
    height: 18px;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.6rem 0.8rem;
    flex: 1;
  }
  .nav-links > li > a,
  .nav-dropdown-trigger {
    font-size: 1.05rem;
    padding: 0.85rem 0.7rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    justify-content: space-between;
    width: 100%;
    text-align: left;
  }
  .nav-cta {
    margin: 1rem 0.7rem 0;
  }
  .nav-cta .btn {
    width: 100%;
  }
  .nav-cta .btn-nav-call {
    justify-content: flex-start;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
  }
  .nav-has-dropdown.open .nav-dropdown {
    max-height: 800px;
  }
  .nav-has-dropdown.open .nav-chevron {
    transform: rotate(180deg);
  }
  .nav-dropdown li a {
    font-size: 0.95rem;
    padding: 0.7rem 0.7rem 0.7rem 1.4rem;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }
  .nav-dropdown li:first-child a {
    border-radius: 0;
    margin-bottom: 0;
    padding-bottom: 0.7rem;
  }
  .nav-dropdown li a.nav-dropdown-featured {
    background: linear-gradient(90deg, rgba(200,164,92,.18) 0%, rgba(200,164,92,.08) 100%);
    border-bottom: none;
    border-radius: 6px;
    margin: 2px 0.4rem;
    padding: 0.6rem 0.7rem;
  }
  .nav-social { display: none; }
  .nav-drawer-foot {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 1.2rem;
    border-top: 1px solid var(--line);
    flex-shrink: 0;
  }
  .nav-drawer-foot a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--text-2);
    transition:
      color 0.2s,
      border-color 0.2s;
    text-decoration: none;
  }
  .nav-drawer-foot a:hover {
    color: var(--gold);
    border-color: var(--gold);
  }
  .nav-drawer-foot svg {
    width: 20px;
    height: 20px;
  }
  .nav-toggle {
    display: flex;
  }
  .contact-grid,
  .team-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .bio-mobile-title {
    display: block;
    font-size: clamp(1.5rem, 5vw, 1.9rem);
    text-align: center;
    margin-bottom: 1.2rem;
  }
  .bio-promo-wrap {
    position: relative;
    grid-template-columns: 1fr;
    text-align: center;
    background: linear-gradient(
      135deg,
      #7a6228 0%,
      #b8943e 28%,
      #c8a45c 55%,
      #b8943e 78%,
      #7a6228 100%
    );
    border-radius: 22px;
    padding: 70px clamp(1.5rem, 4vw, 2rem) clamp(2rem, 4vw, 2.5rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    overflow: visible;
    margin-top: 70px;
    gap: 0;
  }
  .bio-promo-wrap .bio-portrait-wrap {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px !important;
    height: 110px !important;
    border-radius: 50% !important;
    border: none !important;
    overflow: hidden;
    background: linear-gradient(135deg, #b8943e 0%, #c8a45c 50%, #b8943e 100%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    margin: 0 !important;
  }
  .bio-promo-wrap .bio-portrait-wrap::before,
  .bio-promo-wrap .bio-portrait-wrap::after {
    display: none;
  }
  .bio-promo-wrap .bio-portrait-wrap picture {
    position: static;
  }
  .bio-promo-wrap .bio-portrait-wrap img {
    width: 110px !important;
    height: 110px !important;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    display: block;
  }
  .bio-promo-content {
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-inline: calc(-1 * clamp(1.5rem, 4vw, 2rem));
    margin-bottom: calc(-1 * clamp(2rem, 4vw, 2.5rem));
    padding-inline: clamp(1.5rem, 4vw, 2rem);
    padding-bottom: clamp(2rem, 4vw, 2.5rem);
  }
  .bio-promo-content::before {
    content: "§";
    position: absolute;
    right: clamp(0.5rem, 3vw, 1.5rem);
    bottom: -0.05em;
    font-size: 52vw;
    font-family: var(--font-serif);
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }
  .bio-promo-content > * {
    position: relative;
    z-index: 1;
  }
  .bio-promo-wrap h2 {
    margin-top: 0;
    margin-bottom: 0.25rem;
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    color: #fff;
  }
  .bio-title-suffix {
    display: none;
  }
  .bio-promo-content p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 0;
  }
  .team-card {
    grid-template-columns: 1fr;
  }
  .team-photo {
    min-height: 300px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  body.nav-open {
    overflow: hidden;
  }
}
@media (max-width: 620px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cookie-banner {
    inset: auto 0.7rem 0.7rem;
  }
  .hero-badges {
    gap: 1.2rem 1.8rem;
  }
  .container {
    width: min(1180px, 100% - 2.2rem);
  }
}
.brand-logo {
  height: 44px;
  width: 44px;
  display: block;
  flex: none;
}
.card .icon {
  position: relative;
  overflow: hidden;
}
.card .card-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.87rem;
  color: var(--text-2);
}
.card .card-list li {
  padding: 0.22rem 0 0.22rem 1rem;
  position: relative;
  line-height: 1.45;
}
.card .card-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
@keyframes icon-shimmer {
  from {
    transform: translateX(-130%);
  }
  to {
    transform: translateX(130%);
  }
}
@keyframes link-shimmer {
  from {
    background-position: -200% center;
  }
  to {
    background-position: 200% center;
  }
}
.card.home-service-card:hover .icon,
.card.home-service-card.touch-active .icon {
  background: linear-gradient(
    135deg,
    #9a7b3c 0%,
    #c8a45c 40%,
    #e8cf94 60%,
    #9a7b3c 100%
  );
  border-color: transparent;
  color: #fff;
}
.card.home-service-card:hover .icon::after,
.card.home-service-card.touch-active .icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 80%
  );
  animation: icon-shimmer 1.5s ease-in-out infinite;
  pointer-events: none;
}
.card.home-service-card:hover .card-more,
.card.home-service-card.touch-active .card-more {
  background: linear-gradient(
    90deg,
    #9a7b3c,
    #e8cf94,
    #c8a45c,
    #e8cf94,
    #9a7b3c
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: link-shimmer 2s linear infinite;
}
.card.home-service-card:hover .card-more::after,
.card.home-service-card.touch-active .card-more::after {
  background: var(--gold-grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section .card:hover .icon {
  background: linear-gradient(
    135deg,
    #9a7b3c 0%,
    #c8a45c 40%,
    #e8cf94 60%,
    #9a7b3c 100%
  );
  border-color: transparent;
  color: #fff;
}
.section .card:hover .icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 80%
  );
  animation: icon-shimmer 1.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes curtain-sway-1 {
  0% {
    transform: translateX(0px) rotate(-1.5deg) skewX(1deg);
    opacity: 0.13;
  }
  45% {
    transform: translateX(32px) rotate(1.5deg) skewX(-2deg);
    opacity: 0.19;
  }
  100% {
    transform: translateX(0px) rotate(-1.5deg) skewX(1deg);
    opacity: 0.13;
  }
}
@keyframes curtain-sway-2 {
  0% {
    transform: translateX(0px) rotate(2deg) skewX(-1.5deg);
    opacity: 0.1;
  }
  50% {
    transform: translateX(-38px) rotate(-1deg) skewX(2deg);
    opacity: 0.16;
  }
  100% {
    transform: translateX(0px) rotate(2deg) skewX(-1.5deg);
    opacity: 0.1;
  }
}
@keyframes curtain-sway-3 {
  0% {
    transform: translateX(0px) rotate(-2deg) skewX(1.5deg);
    opacity: 0.1;
  }
  40% {
    transform: translateX(26px) rotate(1deg) skewX(-1deg);
    opacity: 0.15;
  }
  75% {
    transform: translateX(-12px) rotate(-1deg) skewX(0.5deg);
    opacity: 0.11;
  }
  100% {
    transform: translateX(0px) rotate(-2deg) skewX(1.5deg);
    opacity: 0.1;
  }
}
.section-veil {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  visibility: hidden;
  animation-play-state: paused;
}
body.veils-ready .section-veil {
  visibility: visible;
  animation-play-state: running;
  will-change: transform, opacity;
}
.section-veil-1 {
  width: 300px;
  height: 135%;
  top: -18%;
  left: 6%;
  border-radius: 44% 44% 40% 40% / 4% 4% 7% 7%;
  background: linear-gradient(
    180deg,
    rgba(230, 195, 130, 0.55) 0%,
    rgba(200, 164, 92, 0.4) 40%,
    rgba(170, 132, 58, 0.2) 78%,
    transparent 100%
  );
  filter: blur(20px);
  animation: curtain-sway-1 10s ease-in-out infinite;
}
.section-veil-2 {
  width: 260px;
  height: 125%;
  top: -12%;
  left: 40%;
  border-radius: 42% 42% 44% 44% / 4% 4% 7% 7%;
  background: linear-gradient(
    180deg,
    rgba(248, 224, 165, 0.45) 0%,
    rgba(200, 164, 92, 0.32) 45%,
    rgba(160, 124, 55, 0.16) 80%,
    transparent 100%
  );
  filter: blur(26px);
  animation: curtain-sway-2 13s ease-in-out infinite;
  animation-delay: -5s;
}
.section-veil-3 {
  width: 340px;
  height: 120%;
  top: -12%;
  right: 5%;
  border-radius: 40% 40% 42% 42% / 4% 4% 7% 7%;
  background: linear-gradient(
    180deg,
    rgba(215, 178, 108, 0.5) 0%,
    rgba(185, 148, 72, 0.35) 42%,
    rgba(155, 118, 48, 0.18) 78%,
    transparent 100%
  );
  filter: blur(18px);
  animation: curtain-sway-3 11s ease-in-out infinite;
  animation-delay: -2s;
}
#szolgaltatasok > .container {
  position: relative;
  z-index: 1;
}
#szolgaltatasok {
  overflow: hidden;
}
html,
body {
  overflow-x: clip;
}
.front-zv-promo {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: linear-gradient(
    135deg,
    #7a6228 0%,
    #b8943e 28%,
    #c8a45c 55%,
    #b8943e 78%,
    #7a6228 100%
  );
  border-radius: 22px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}
.bio-portrait-wrap {
  position: relative;
  background: linear-gradient(135deg, #b8943e 0%, #c8a45c 50%, #b8943e 100%);
  border: 2px solid #e2c97e;
}
.bio-portrait-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 0;
  animation: promo-shine 7s ease-in-out infinite;
}
.bio-portrait-wrap::after {
  content: "§";
  position: absolute;
  bottom: -0.1em;
  right: -0.05em;
  font-size: clamp(22rem, 45vw, 42rem);
  font-family: var(--font-serif);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.bio-portrait-wrap picture {
  position: relative;
  z-index: 1;
  display: block;
}
@keyframes promo-shine {
  0% {
    transform: translateX(-180%) skewX(-18deg);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  28% {
    transform: translateX(280%) skewX(-18deg);
    opacity: 0;
  }
  100% {
    transform: translateX(280%) skewX(-18deg);
    opacity: 0;
  }
}
.front-zv-promo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 1;
  animation: promo-shine 7s ease-in-out infinite;
}
.front-zv-promo__image {
  position: relative;
  z-index: 2;
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
}
.front-zv-promo__image img {
  display: block;
  width: 100%;
  height: auto;
}
.front-zv-promo__content {
  position: relative;
  z-index: 2;
}
.front-zv-promo__content::before {
  content: "§";
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(20rem, 38vw, 42rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  font-family: var(--font-serif);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.front-zv-promo__content > * {
  position: relative;
  z-index: 1;
}
.front-zv-promo__content h2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 1rem;
}
.front-zv-promo__content p {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.7;
}
.promo-text--mobile {
  display: none;
}
.promo-job-title {
  display: none;
}
.bio-promo-actions--mobile {
  display: none;
}
.front-zv-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
  align-items: center;
}
.front-zv-promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.front-zv-promo__btn:hover {
  background: rgba(255, 255, 255, 0.32);
  color: #fff;
  transform: translateY(-2px);
}
.front-zv-promo__btn--icon {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  flex: none;
}
.front-zv-promo__btn--icon svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 360px) {
  html {
    font-size: 14px;
  }
  h1 {
    font-size: clamp(1.55rem, 8vw, 2rem) !important;
  }
  h2 {
    font-size: clamp(1.3rem, 7vw, 1.7rem) !important;
  }
  h3 {
    font-size: clamp(1.05rem, 5.5vw, 1.3rem) !important;
  }
  .hero-sub {
    font-size: 0.95rem !important;
  }
  .lead {
    font-size: 0.92rem !important;
  }
  .btn,
  .btn-nav-call {
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
  }
  .btn-sm {
    font-size: 0.78rem;
    padding: 0.42rem 0.85rem;
  }
  .hero-reviews__text {
    font-size: 0.82rem;
  }
  .hero-reviews__logo {
    width: 30px;
    height: 30px;
  }
  .hero-reviews__logo svg {
    width: 17px;
    height: 17px;
  }
  .card {
    padding: 1.2rem;
  }
  .card h3 {
    font-size: 1rem;
  }
  .section-head h2 {
    font-size: 1.4rem;
  }
  .container {
    width: min(1180px, 100% - 1.6rem);
  }
}
@media (max-width: 860px) {
  .front-zv-promo {
    grid-template-columns: 1fr;
    text-align: center;
    overflow: visible;
    padding-top: 70px;
    margin-top: 70px !important;
  }
  .front-zv-promo::before {
    content: "§";
    width: auto;
    height: auto;
    background: none;
    animation: none;
    top: auto;
    left: auto;
    right: clamp(0.5rem, 3vw, 1.5rem);
    bottom: -0.05em;
    font-size: 52vw;
    font-family: var(--font-serif);
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.07);
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }
  .front-zv-promo__image {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    max-width: 110px;
    margin: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8943e 0%, #c8a45c 50%, #b8943e 100%);
  }
  .front-zv-promo__image img {
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  }
  .front-zv-promo__content {
    display: block;
    text-align: center;
  }
  .front-zv-promo__content::before {
    display: none;
  }
  .front-zv-promo__content h2 {
    margin-top: 0;
    margin-bottom: 0.25rem;
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }
  .promo-job-title {
    display: block;
    font-size: 0.72rem;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
  }
  .promo-text--desktop {
    display: none;
  }
  .promo-text--mobile {
    display: block;
  }
  .front-zv-promo__actions {
    justify-content: center;
    margin-top: 1rem;
  }
  .front-zv-promo__btn--team,
  .front-zv-promo__btn--fb {
    display: none;
  }
}

/* ── Lebegő akciógombok (süti + tetejére) ─────────────────── */
.float-btn {
  position: fixed;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200,164,92,.25);
  background: rgba(29,29,31,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: opacity .25s, transform .25s, background .2s, border-color .2s;
  box-shadow: 0 2px 14px rgba(0,0,0,.55);
  padding: 0;
}
.float-btn:hover {
  background: rgba(42,42,45,.98);
  border-color: var(--gold);
}
.float-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.float-cookie { bottom: 1.25rem; left: 1.25rem; right: auto; }
.float-top {
  bottom: 1.25rem;
  opacity: 0;
  transform: translateY(6px) scale(.85);
  pointer-events: none;
}
.float-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
@media (max-width: 480px) {
  .float-btn { width: 40px; height: 40px; }
  .float-cookie { bottom: .875rem; left: .875rem; }
  .float-top { bottom: .875rem; right: .875rem; }
}

/* Nav dropdown kiemelt elemek */
.nav-dropdown a.nav-dropdown-featured {
  background: linear-gradient(90deg, rgba(200,164,92,.18) 0%, rgba(200,164,92,.08) 100%);
  color: var(--gold) !important;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 2px;
}
.nav-dropdown a.nav-dropdown-featured:hover {
  background: linear-gradient(90deg, rgba(200,164,92,.32) 0%, rgba(200,164,92,.2) 100%);
}

/* Fókuszált szolgáltatás-sáv */
.focused-banner {
  grid-column: 1 / -1;
  background: var(--gold-grad);
  border-radius: 10px;
  padding: .875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.focused-banner__header {
  display: flex;
  align-items: center;
  margin-bottom: .1rem;
}
.focused-banner__badge {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: #fff;
  border-radius: 20px;
  padding: 2px 10px;
  line-height: 1.6;
}
.focused-banner__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem .875rem;
  background: rgba(5,5,6,.48);
  border-radius: 7px;
  text-decoration: none;
  color: #fff;
  transition: background .18s;
}
.focused-banner__row:hover { background: rgba(5,5,6,.32); }
.focused-banner__title {
  font-weight: 600;
  font-size: 1.15rem;
}
.focused-banner__more {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  color: rgba(255,255,255,.88);
  font-weight: 500;
  flex-shrink: 0;
}
.focused-banner__more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}
.focused-banner__row:hover .focused-banner__more svg { transform: translateX(5px); }
