:root {
  color-scheme: dark;
  --bg: #0b0b0d;
  --bg-deep: #050506;
  --panel: #111217;
  --panel-strong: #171923;
  --metal: #23262f;
  --gold: #caa24d;
  --gold-soft: #e2c275;
  --text: #f3efe7;
  --muted: #c4b9a2;
  --line: #2b2d36;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Saira Condensed", sans-serif;
  background: radial-gradient(circle at top, #1a1d26 0%, var(--bg) 45%)
      no-repeat,
    linear-gradient(135deg, var(--bg-deep), #0b0e13 60%, #0a0b11 100%);
  color: var(--text);
  min-height: 100vh;
  letter-spacing: 0.3px;
}

main section {
  position: relative;
}


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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.06'/></svg>");
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(8, 9, 12, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

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

.logo {
  width: 110px;
  filter: drop-shadow(0 0 12px rgba(202, 162, 77, 0.3));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 1px;
}

.brand-tag {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(14, 15, 20, 0.96), rgba(8, 9, 12, 0.85));
  border: 1px solid rgba(202, 162, 77, 0.35);
  color: var(--gold-soft);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  position: relative;
}

.nav-toggle-line {
  width: 22px;
  height: 2px;
  background: var(--gold-soft);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at top right,
      rgba(202, 162, 77, 0.2),
      rgba(5, 6, 9, 0.88)
    );
  opacity: 0;
  pointer-events: none;
  z-index: 15;
  backdrop-filter: blur(6px);
}

.nav-overlay.is-open {
  pointer-events: auto;
}

.nav a {
  position: relative;
  color: var(--muted);
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active,
.nav a:active {
  color: var(--gold-soft);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after,
.nav a:active::after {
  opacity: 0.7;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: linear-gradient(145deg, rgba(14, 15, 20, 0.96), rgba(8, 9, 12, 0.85));
  color: var(--gold-soft);
  border-radius: 14px;
  border: 1px solid rgba(202, 162, 77, 0.35);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    border-color 0.3s ease;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.65;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(202, 162, 77, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(202, 162, 77, 0.6);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(202, 162, 77, 0.35),
    0 0 26px rgba(202, 162, 77, 0.35);
}

.btn:hover::after {
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(202, 162, 77, 0.6);
  color: var(--gold-soft);
  box-shadow: none;
}

.btn-ghost::before {
  opacity: 0.45;
}

.btn-ghost:hover {
  background: rgba(202, 162, 77, 0.1);
  transform: translateY(-2px);
}

.header-cta-icon,
.mobile-cta-icon {
  display: none;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e2c275' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='17' rx='2'/><line x1='8' y1='2.5' x2='8' y2='6'/><line x1='16' y1='2.5' x2='16' y2='6'/><line x1='3' y1='9' x2='21' y2='9'/></svg>")
    center/contain no-repeat;
}

.header-cta-text {
  display: inline;
}

.mobile-cta {
  display: none;
}

.btn-compact {
  padding: 10px 18px;
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  border-radius: 12px;
}

.hero {
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero .precision-orbs {
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 6, 9, 0.85) 0%,
    rgba(5, 6, 9, 0.5) 45%,
    rgba(5, 6, 9, 0.2) 70%,
    rgba(5, 6, 9, 0) 100%
  );
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.06);
  filter: saturate(0.5) contrast(1.05) brightness(0.7);
  opacity: 0.6;
}


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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}



.hero-copy h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.05;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero-copy h1 span {
  display: block;
  font-size: 0.9em;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}


.eyebrow {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 14px 34px;
  font-size: 0.95rem;
}

.btn-link {
  position: relative;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.9rem;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.btn-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-link:hover {
  color: var(--gold);
}

.btn-link:hover::after,
.btn-link:focus-visible::after {
  opacity: 0.9;
}

.micro {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-micro {
  display: block;
  margin-top: 10px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(202, 162, 77, 0.25);
}

.stat-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}



.proof {
  position: relative;
  padding: 70px 0 70px;
  background: linear-gradient(135deg, rgba(6, 7, 10, 0.9), rgba(11, 12, 16, 0.85)),
    radial-gradient(circle at 20% 20%, rgba(202, 162, 77, 0.1), transparent 55%);
  overflow: hidden;
}

.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.012) 0,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 16px
    ),
    linear-gradient(180deg, rgba(9, 10, 14, 0.72), rgba(9, 10, 14, 0.4));
  pointer-events: none;
  z-index: 0;
}

.proof .container {
  position: relative;
  z-index: 1;
}

.proof-line {
  font-family: "Cinzel", serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--gold-soft);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

.proof-item {
  position: relative;
  background: linear-gradient(145deg, rgba(14, 15, 20, 0.96), rgba(8, 9, 12, 0.85));
  padding: 26px 24px;
  border-radius: 14px;
  border: 1px solid rgba(202, 162, 77, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 16px;
  min-height: 210px;
  overflow: hidden;
}

.proof-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.65;
}

.proof-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(202, 162, 77, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.proof-item:hover::after {
  opacity: 1;
}

.proof-icon {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(202, 162, 77, 0.2), rgba(18, 20, 26, 0.9));
  border: 1px solid rgba(202, 162, 77, 0.4);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35),
    inset 0 0 18px rgba(202, 162, 77, 0.12);
}

.proof-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(74%) sepia(31%)
    saturate(655%) hue-rotate(9deg) brightness(93%) contrast(92%);
  opacity: 0.95;
}

.proof-body {
  display: grid;
  gap: 8px;
}

.proof-title {
  font-size: 1.1rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.proof-item p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.services,
.pricing,
.locations,
.reviews {
  padding: 80px 0;
}

.services {
  position: relative;
  background: url("assets/interior-la-barbiera-zagreb.png") center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

@media (min-width: 1100px) {
  .services {
    background-size: cover;
    background-position: center 55%;
    background-repeat: no-repeat;
  }
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(5, 6, 9, 0.86) 0%,
      rgba(5, 6, 9, 0.62) 45%,
      rgba(5, 6, 9, 0.35) 70%,
      rgba(5, 6, 9, 0.12) 100%
    ),
    radial-gradient(circle at 25% 30%, rgba(5, 6, 9, 0.45), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 900px) {
  .services {
    background-attachment: scroll;
  }
}

.services .container {
  position: relative;
  z-index: 1;
}

.services .section-head {
  max-width: 720px;
  margin-bottom: 36px;
  position: relative;
}

.services .section-head::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 16px;
  opacity: 0.7;
}

.services .section-head h2 {
  line-height: 1.15;
  letter-spacing: 0.6px;
}

.services .section-head p {
  max-width: 560px;
}

.gallery {
  padding: 120px 0 110px;
  position: relative;
  background: linear-gradient(135deg, rgba(6, 7, 10, 0.9), rgba(11, 12, 16, 0.85));
  overflow: hidden;
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.012) 0,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 16px
    ),
    radial-gradient(circle at 20% 20%, rgba(202, 162, 77, 0.08), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.gallery .container,
.gallery-track {
  position: relative;
  z-index: 1;
}

.gallery .section-head {
  margin-bottom: 26px;
}

.gallery-track {
  overflow: hidden;
  padding: 40px 5vw 44px;
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 320px);
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.gallery-frame {
  position: relative;
  background: linear-gradient(145deg, rgba(14, 15, 20, 0.96), rgba(8, 9, 12, 0.85));
  border-radius: 14px;
  border: 1px solid rgba(202, 162, 77, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(202, 162, 77, 0.08);
  scroll-snap-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.gallery-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.9;
  z-index: 1;
}

.gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(202, 162, 77, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-frame:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(202, 162, 77, 0.5);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(202, 162, 77, 0.35),
    0 0 26px rgba(202, 162, 77, 0.35);
}

.gallery-frame:hover::after {
  opacity: 1;
}

.gallery-card {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.team {
  padding: 110px 0 120px;
  position: relative;
  background: linear-gradient(135deg, rgba(7, 8, 12, 0.96), rgba(12, 13, 18, 0.92)),
    radial-gradient(circle at 15% 25%, rgba(202, 162, 77, 0.12), transparent 55%);
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(180deg, rgba(9, 10, 14, 0.7), rgba(9, 10, 14, 0.45));
  pointer-events: none;
  z-index: 0;
}

.team::after {
  content: "";
  position: absolute;
  inset: 10% 0 auto 0;
  height: 220px;
  background: radial-gradient(circle, rgba(202, 162, 77, 0.18), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.team .container {
  position: relative;
  z-index: 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

.team-card {
  position: relative;
  background: linear-gradient(145deg, rgba(14, 15, 20, 0.96), rgba(8, 9, 12, 0.85));
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(202, 162, 77, 0.24);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(202, 162, 77, 0.08);
  display: grid;
  gap: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.8;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(202, 162, 77, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(202, 162, 77, 0.55);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(202, 162, 77, 0.35),
    0 0 28px rgba(202, 162, 77, 0.35);
}

.team-card:hover::after {
  opacity: 1;
}

.team-cover {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #0c0d12;
  border: 1px solid rgba(202, 162, 77, 0.4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.team-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(5, 6, 8, 0.2) 0,
      rgba(5, 6, 8, 0.45) 55%,
      rgba(5, 6, 8, 0.82) 100%
    ),
    radial-gradient(circle at 70% 20%, rgba(202, 162, 77, 0.2), transparent 55%);
  z-index: 1;
}

.team-cover::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 18px rgba(202, 162, 77, 0.12);
  z-index: 2;
  pointer-events: none;
}

.team-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.06) brightness(0.95);
  transform: scale(1.02);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.team-card:hover .team-cover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.1) brightness(1);
}



.team-body {
  display: grid;
  gap: 8px;
}

.team-body h3 {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.team-years {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.78rem;
}

.team-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.72rem;
}

.team-cover .team-location {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(9, 10, 14, 0.75);
  border: 1px solid rgba(202, 162, 77, 0.4);
  box-shadow: inset 0 0 14px rgba(202, 162, 77, 0.12);
  z-index: 3;
}

.team-cover .pin {
  width: 12px;
  height: 12px;
  border-width: 1.5px;
}

.team-cover .pin::after {
  width: 3px;
  height: 3px;
  top: 3.5px;
  left: 3.5px;
}

.pin {
  position: relative;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold-soft);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  z-index: 0;
}

.pin::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  top: 4px;
  left: 4px;
}

.pin::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(202, 162, 77, 0.5);
  transform: translate(-50%, -50%) rotate(45deg) scale(0.4);
  opacity: 0.7;
  animation: pinPulse 2.4s ease-out infinite;
  z-index: -1;
}


@keyframes pinPulse {
  0% {
    transform: translate(-50%, -50%) rotate(45deg) scale(0.4);
    opacity: 0.7;
  }
  60% {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.7);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.7);
    opacity: 0;
  }
}

.section-head {
  margin-bottom: 36px;
  max-width: 720px;
  position: relative;
}

.section-head h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: 0.6px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
}

.section-head::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 16px;
  opacity: 0.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.service-card {
  position: relative;
  padding: 24px;
  background: linear-gradient(145deg, rgba(14, 15, 20, 0.96), rgba(8, 9, 12, 0.85));
  border-radius: 14px;
  border: 1px solid rgba(202, 162, 77, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    border-color 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.65;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(202, 162, 77, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(202, 162, 77, 0.5);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(202, 162, 77, 0.35),
    0 0 26px rgba(202, 162, 77, 0.35);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card h3 {
  color: var(--gold-soft);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 20px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(202, 162, 77, 0.25);
}

.price-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  color: var(--gold-soft);
}

.price-card summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold-soft);
  transition: transform 0.2s ease;
}

.price-card[open] summary::after {
  transform: rotate(45deg);
}

.price-card[open] .price-section {
  animation: priceReveal 0.35s ease both;
}

.price-card summary::-webkit-details-marker {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 8, 0.7);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  width: min(820px, 92vw);
  max-height: 84vh;
  overflow: auto;
  margin: 6vh auto 0;
  background: var(--panel-strong);
  border-radius: var(--radius-lg);
  padding: 32px 32px 36px;
  border: 1px solid rgba(202, 162, 77, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  will-change: transform, opacity;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  background: transparent;
  border: 1px solid rgba(202, 162, 77, 0.4);
  color: var(--gold-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
}

.modal-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding-right: 90px;
}

.modal-title {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: var(--gold-soft);
}

.modal-sub {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.9rem;
}

.modal-body .price-section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.modal-body .price-section:first-child {
  border-top: 0;
  padding-top: 0;
}

body.modal-open {
  overflow: hidden;
}

.summary-sub {
  color: var(--muted);
  font-family: "Saira Condensed", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.price-section {
  padding: 12px 0 6px;
  border-top: 1px solid var(--line);
}

@keyframes priceReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-section h4 {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.price-section ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.price-section li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.locations {
  position: relative;
  background: linear-gradient(135deg, rgba(6, 7, 10, 0.9), rgba(11, 12, 16, 0.85)),
    radial-gradient(circle at 20% 20%, rgba(202, 162, 77, 0.1), transparent 55%);
  overflow: hidden;
}

.locations::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 12px
    ),
    linear-gradient(180deg, rgba(9, 10, 14, 0.72), rgba(9, 10, 14, 0.4));
  pointer-events: none;
  z-index: 0;
}

.locations .container {
  position: relative;
  z-index: 1;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.location-card {
  position: relative;
  background: linear-gradient(145deg, rgba(14, 15, 20, 0.96), rgba(8, 9, 12, 0.85));
  border-radius: 14px;
  border: 1px solid rgba(202, 162, 77, 0.22);
  padding: 24px;
  display: grid;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.65;
}

.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(202, 162, 77, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.location-card:hover::after {
  opacity: 1;
}

.location-address {
  color: var(--muted);
  font-size: 0.98rem;
  transition: color 0.3s ease;
}

.location-address:hover {
  color: var(--gold-soft);
}

.location-phone {
  color: var(--muted);
  font-size: 0.98rem;
  transition: color 0.3s ease;
}

.location-phone:hover {
  color: var(--gold-soft);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
  align-items: center;
}

.location-link {
  position: relative;
  background: transparent;
  border: none;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.75rem;
  padding: 10px 6px 6px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.location-link::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-link:hover {
  color: var(--gold);
}

.location-link:hover::after,
.location-link:focus-visible::after {
  opacity: 0.85;
}

.location-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  filter: grayscale(1);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.location-card:hover .location-image {
  filter: grayscale(0);
  transform: scale(1.02);
}

.location-card h3 {
  color: var(--gold-soft);
  letter-spacing: 1px;
}

.reviews {
  padding-bottom: 110px;
  position: relative;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
  padding: 26px 0 30px;
  align-items: start;
}

.review-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.review-grid::before,
.review-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 48px;
  pointer-events: none;
  z-index: 2;
}

.review-grid::before {
  top: 0;
  background: linear-gradient(180deg, rgba(11, 12, 16, 0.9), rgba(11, 12, 16, 0));
}

.review-grid::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(11, 12, 16, 0.9), rgba(11, 12, 16, 0));
}

.review-column {
  position: relative;
  height: 520px;
  overflow: hidden;
  padding: 12px 0;
}

.review-location {
  display: none;
  position: relative;
  padding: 0 2px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 0.75rem;
  z-index: 3;
}

.review-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  will-change: transform;
}

.review-set {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-down {
  animation: review-scroll-down 28s linear infinite;
}

.review-up {
  animation: review-scroll-up 28s linear infinite;
}

.review-column:hover .review-track,
.review-column:focus-within .review-track {
  animation-play-state: paused;
}

.review-delay {
  animation-delay: -7s;
}

.review-mid {
  animation-duration: 34s;
  animation-delay: -14s;
}

.review-card {
  position: relative;
  background: linear-gradient(145deg, rgba(14, 15, 20, 0.96), rgba(8, 9, 12, 0.85));
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(202, 162, 77, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(202, 162, 77, 0.08);
  overflow: hidden;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.7;
}

.review-card p {
  color: var(--muted);
  line-height: 1.5;
}

.quote-mark {
  color: var(--gold-soft);
  font-size: 1.05em;
  display: inline;
}

.review-card span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes review-scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes review-scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .review-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .review-up {
    animation-name: review-scroll-down;
  }
}

@media (max-width: 800px) {
  .review-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .review-grid::before {
    top: 36px;
    height: 32px;
  }

  .review-column {
    height: 460px;
    padding-top: 0;
  }

  .review-location {
    display: block;
    margin-bottom: 0;
  }

  .review-location::after {
    content: "";
    display: block;
    height: 1px;
    margin-top: 10px;
    background: rgba(202, 162, 77, 0.18);
  }

  .review-up {
    animation-name: review-scroll-down;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-down,
  .review-up {
    animation: none;
  }

  .pin::before {
    animation: none;
  }
}

.cta {
  padding: 80px 0 100px;
  background: radial-gradient(circle, rgba(202, 162, 77, 0.1), transparent 60%);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, rgba(12, 13, 18, 0.98), rgba(10, 11, 16, 0.9));
  border-radius: var(--radius-lg);
  padding: 46px;
  border: 1px solid rgba(202, 162, 77, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.8;
  pointer-events: none;
}

.cta-panel::after {
  content: "";
  position: absolute;
  top: -35%;
  right: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(202, 162, 77, 0.25), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

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

.cta-copy p {
  max-width: 520px;
}

.cta-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cta-steps span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(202, 162, 77, 0.25);
  color: var(--muted);
  background: rgba(9, 10, 14, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.7rem;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.cta-actions .btn {
  justify-content: center;
}

.cta-link {
  align-self: flex-start;
}

.cta-micro {
  display: block;
  margin-top: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.site-footer {
  padding: 30px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .nav {
    position: fixed;
    top: 76px;
    right: max(5vw, 16px);
    width: min(320px, 88vw);
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    background: linear-gradient(145deg, rgba(14, 15, 20, 0.98), rgba(8, 9, 12, 0.92));
    border-radius: 18px;
    border: 1px solid rgba(202, 162, 77, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    pointer-events: none;
    z-index: 22;
  }

  .nav.is-open {
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    color: var(--text);
    font-size: 1.05rem;
    padding-bottom: 4px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header .header-cta {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 20px;
    left: auto;
    bottom: calc(20px + env(safe-area-inset-bottom));
    z-index: 14;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    letter-spacing: 0;
    background: linear-gradient(145deg, rgba(14, 15, 20, 0.96), rgba(8, 9, 12, 0.85));
    border: 1px solid rgba(202, 162, 77, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(202, 162, 77, 0.3);
  }

  .mobile-cta::before {
    opacity: 0;
  }

  .mobile-cta-icon {
    display: block;
  }

  .logo {
    width: 90px;
  }

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

@media (max-width: 700px) {
  .hero {
    padding-top: 60px;
  }


  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-panel {
    padding: 30px;
  }
}

@media (max-width: 900px) {
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    align-items: flex-start;
  }

  .cta-actions .btn {
    width: 100%;
  }
}
