@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #0b0d11;
  --surface: #151920;
  --surface-strong: #1c222c;
  --surface-glass: rgba(23, 28, 35, 0.78);
  --ink: #f5edde;
  --ink-soft: #c0b29c;
  --accent: #d1a669;
  --accent-strong: #b6803f;
  --line: #4a3b2a;
  --line-soft: rgba(209, 166, 105, 0.22);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 38px rgba(0, 0, 0, 0.36);
  --shadow-card: 0 28px 55px rgba(0, 0, 0, 0.48);
  --shadow-glow: 0 0 0 1px rgba(209, 166, 105, 0.12), 0 24px 42px rgba(0, 0, 0, 0.45);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  transition: opacity 260ms ease, visibility 0s linear 260ms;
}

body[data-hydrated="false"] {
  opacity: 0;
  visibility: hidden;
}

body[data-hydrated="true"] {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(circle at 8% 12%, rgba(209, 166, 105, 0.2), transparent 40%),
    radial-gradient(circle at 90% 2%, rgba(182, 128, 63, 0.16), transparent 36%),
    radial-gradient(circle at 50% 110%, rgba(48, 58, 76, 0.26), transparent 44%),
    linear-gradient(180deg, #121720 0%, #090b10 100%);
}

body::after {
  background-image: linear-gradient(rgba(197, 154, 91, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 154, 91, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.14;
  z-index: -1;
}

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

main {
  transition: opacity 260ms ease;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: var(--space-8) 0;
}

.section-sm {
  padding: var(--space-7) 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--accent-strong);
  margin-bottom: var(--space-2);
}

.section-head {
  margin-bottom: var(--space-5);
}

.section-head h2 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: 0.015em;
  text-wrap: balance;
}

.section-head p {
  margin: var(--space-2) 0 0;
  color: var(--ink-soft);
  max-width: 64ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  letter-spacing: 0.015em;
  transition: transform 320ms var(--ease-premium), box-shadow 320ms var(--ease-premium), background-color 220ms ease, border-color 220ms ease;
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-accent {
  background: linear-gradient(132deg, #e0b67a 0%, #c28f4d 48%, #a26f34 100%);
  color: #18120a;
  box-shadow: 0 14px 30px rgba(182, 128, 63, 0.34), inset 0 1px 0 rgba(255, 239, 212, 0.32);
}

.btn-accent:hover {
  box-shadow: 0 20px 34px rgba(182, 128, 63, 0.42), inset 0 1px 0 rgba(255, 239, 212, 0.42);
}

.btn-ghost {
  border-color: var(--line-soft);
  color: var(--ink);
  background: linear-gradient(150deg, rgba(37, 42, 50, 0.92), rgba(23, 27, 33, 0.78));
}

.btn-ghost:hover {
  border-color: var(--accent);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px) saturate(1.05);
  background: linear-gradient(180deg, rgba(13, 16, 22, 0.92), rgba(10, 12, 17, 0.8));
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.header-row {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand-mark {
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.11em;
  font-size: 1.15rem;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(209, 166, 105, 0.18);
}

.site-nav {
  justify-self: center;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  padding: 0.42rem 0.62rem;
  color: var(--ink-soft);
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--line-soft);
  background: rgba(209, 166, 105, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(23, 26, 31, 0.86);
  color: var(--ink);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font-weight: 700;
}

.hero {
  padding: var(--space-8) 0 var(--space-7);
}

.hero-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.1;
  font-size: clamp(2.1rem, 4.8vw, 3.8rem);
}

.hero-copy p {
  margin: var(--space-3) 0 var(--space-4);
  color: var(--ink-soft);
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-media {
  position: relative;
  padding: 12px;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(209, 166, 105, 0.34);
  background:
    radial-gradient(circle at 14% 12%, rgba(209, 166, 105, 0.2), transparent 44%),
    linear-gradient(152deg, rgba(197, 147, 83, 0.2), rgba(19, 24, 33, 0.92)),
    linear-gradient(35deg, rgba(169, 120, 54, 0.2), rgba(20, 24, 31, 0.94));
  box-shadow: var(--shadow-card);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(242, 234, 219, 0.08);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 154, 91, 0.28);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
}

.surface {
  background: linear-gradient(165deg, rgba(30, 36, 46, 0.82), rgba(20, 24, 30, 0.92));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

.stat-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 154, 91, 0.2);
  background: rgba(16, 19, 23, 0.78);

  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-family: "Cinzel", "Times New Roman", serif;
}

.stat-card span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.cards-3,
.cards-2,
.cards-4 {
  display: grid;
  gap: var(--space-4);
}

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

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

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

.service-card,
.team-card,
.testimonial-card,
.value-card,
.contact-card,
.gallery-card {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(165deg, rgba(31, 37, 46, 0.84), rgba(18, 22, 29, 0.92)),
    linear-gradient(330deg, rgba(209, 166, 105, 0.06), transparent 36%);
  box-shadow: var(--shadow-soft);
  transition: transform 380ms var(--ease-premium), box-shadow 380ms var(--ease-premium), border-color 240ms ease;
}

.service-card:hover,
.team-card:hover,
.gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(209, 166, 105, 0.36);
  box-shadow: var(--shadow-card);
}

.service-thumb,
.team-thumb,
.gallery-thumb {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(197, 154, 91, 0.24);
  margin-bottom: var(--space-3);
}

.service-thumb,
.gallery-thumb {
  aspect-ratio: 4 / 3;
}

.team-thumb {
  aspect-ratio: 3 / 4;
}

.service-thumb img,
.team-thumb img,
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-premium), filter 0.35s ease;
}

.service-card:hover .service-thumb img,
.team-card:hover .team-thumb img,
.gallery-card:hover .gallery-thumb img {
  transform: scale(1.05);
  filter: saturate(1.04);
}

.service-card h3,
.team-card h3,
.value-card h3,
.contact-card h3,
.gallery-card h3 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.2rem;
}

.service-card p,
.team-card p,
.value-card p,
.contact-card p,
.gallery-card p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
}

.service-meta {
  margin-top: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-weight: 700;
}

.service-meta .duration {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.team-role,
.team-specialty {
  color: var(--accent);
  font-weight: 600;
}

.rating {
  color: #efc06e;
  letter-spacing: 0.05em;
  font-size: 1rem;
  margin-bottom: var(--space-2);
}

.price-table {
  padding: var(--space-4);
  background: linear-gradient(170deg, rgba(28, 34, 43, 0.78), rgba(18, 22, 29, 0.92));
  border: 1px solid var(--line-soft);
}

.price-table-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2);
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px dashed rgba(209, 166, 105, 0.28);
}

.price-table-row:last-child {
  border-bottom: 0;
}

.price-table-row h4 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
}

.price-table-row span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.page-hero {
  padding: var(--space-7) 0 var(--space-5);
}

.page-hero h1 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
  margin: var(--space-3) 0 0;
  color: var(--ink-soft);
  max-width: 62ch;
}

.split {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hours-list {
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0;
  border-bottom: 1px dashed rgba(209, 166, 105, 0.32);
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row strong {
  font-size: 0.95rem;
}

.hours-row span {
  color: var(--ink-soft);
  text-align: right;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.filter-chip {
  border: 1px solid var(--line-soft);
  background: linear-gradient(150deg, rgba(35, 40, 48, 0.84), rgba(22, 26, 32, 0.86));
  color: var(--ink);
  border-radius: 999px;
  padding: 0.52rem 0.95rem;
  font-weight: 700;
  font-size: 0.82rem;
  transition: transform 260ms var(--ease-premium), border-color 220ms ease, background-color 220ms ease;
  cursor: pointer;
}

.filter-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(209, 166, 105, 0.4);
}

.filter-chip.active {
  background: linear-gradient(132deg, #dfb578, #b37b3a);
  color: #171109;
  border-color: rgba(239, 210, 164, 0.45);
}

.gallery-grid {
  display: grid;
  gap: clamp(1.1rem, 1.8vw, 1.6rem);
  margin-top: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card[hidden] {
  display: none;
}

.contact-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr 1fr;
}

.contact-actions {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-strip {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 8% 18%, rgba(209, 166, 105, 0.22), transparent 42%),
    linear-gradient(120deg, rgba(169, 120, 54, 0.24), rgba(22, 27, 35, 0.92));
  border: 1px solid rgba(209, 166, 105, 0.28);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(197, 154, 91, 0.26);
  background: rgba(15, 18, 22, 0.9);
}

.map-embed iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
}

.cta-band {
  padding: var(--space-7) 0;
}

.cta-shell {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(209, 166, 105, 0.3);
  background:
    radial-gradient(circle at 12% 18%, rgba(209, 166, 105, 0.2), transparent 46%),
    linear-gradient(120deg, rgba(173, 124, 58, 0.26), rgba(19, 24, 32, 0.94));
  box-shadow: var(--shadow-card);
}

.cta-shell h2 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.cta-shell p {
  margin: var(--space-2) 0 0;
  color: var(--ink-soft);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.site-footer {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(12, 15, 20, 0.9), rgba(9, 11, 16, 0.96));
}

.footer-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1.3fr 1fr 1fr;
}

.footer-grid h3 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.2rem;
}

.footer-grid p,
.footer-grid li {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.copyright {
  margin-top: var(--space-4);
  font-size: 0.9rem;
  color: var(--ink-soft);
}



.is-empty {
  display: none !important;
}

/* Animate on scroll - toggled by JS (.aos--visible) */
.aos {
  --aos-delay: 0ms;
  --aos-shift: 44px;
  --aos-scale: 0.968;
  --aos-blur: 10px;
  opacity: 0;
  transform: translate3d(0, var(--aos-shift), 0) scale(var(--aos-scale)) rotateX(1.2deg);
  filter: blur(var(--aos-blur)) saturate(0.82) brightness(0.88);
  transform-origin: 50% 65%;
  will-change: opacity, transform, filter;
}

.aos.aos--visible {
  animation: premiumReveal 980ms cubic-bezier(0.2, 0.85, 0.2, 1) var(--aos-delay) both;
}

.aos--stagger {
  --aos-shift: 26px;
  --aos-blur: 7px;
}

@keyframes premiumReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, var(--aos-shift), 0) scale(var(--aos-scale)) rotateX(1.2deg);
    filter: blur(var(--aos-blur)) saturate(0.82) brightness(0.88);
  }

  55% {
    opacity: 1;
    transform: translate3d(0, -3px, 0) scale(1.006) rotateX(0deg);
    filter: blur(0) saturate(1.04) brightness(1.02);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
    filter: blur(0) saturate(1) brightness(1);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .contact-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    justify-content: flex-start;
  }

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

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

@media (max-width: 820px) {
  .header-row {
    grid-template-columns: 1fr auto;
    row-gap: 0.65rem;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    min-height: 38px;
    z-index: 5;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  body.nav-open .site-nav {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.2rem;
    padding: 0.55rem;
    border-radius: 14px;
    border: 1px solid rgba(197, 154, 91, 0.24);
    background: rgba(15, 18, 23, 0.96);
  }

  body.nav-open .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0;
  }

  body.nav-open .site-nav a {
    display: block;
    padding: 0.7rem 0.8rem;
    border-bottom: 0;
    border-radius: 8px;
  }

  body.nav-open .site-nav a:hover,
  body.nav-open .site-nav a[aria-current="page"] {
    background: rgba(197, 154, 91, 0.14);
  }

  .cards-2,
  .cards-3,
  .cards-4,
  .gallery-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero-media {
    padding: 8px;
    border-radius: 18px;
  }

  .hero-media img {
    aspect-ratio: 5 / 6;
    min-height: 320px;
  }

  .container {
    width: min(1120px, 94vw);
  }

  .section,
  .hero,
  .section-sm {
    padding: var(--space-6) 0;
  }

  .hero-copy h1 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .page-hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .brand-mark {
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  .price-table-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .price-table-row strong {
    justify-self: start;
  }

  .hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .hours-row span {
    text-align: left;
  }

  .hero-actions,
  .contact-actions,
  .cta-buttons {
    width: 100%;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .cta-buttons .btn {
    width: 100%;
  }

  .filter-row {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.35rem;
  }
}






.visit-points {
  margin-top: 0.9rem;
}

.visit-points .hours-row strong {
  font-size: 0.9rem;
}

.visit-points .hours-row span {
  font-size: 0.88rem;
}

@media (prefers-reduced-motion: reduce) {
  .call-shop-spawn {
    animation: none;
  }
}



.call-shop-spawn {
  animation: callShopSpawn 680ms var(--ease-premium) 220ms both;
  transform-origin: center;
}

@keyframes callShopSpawn {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(12px);
  }

  60% {
    opacity: 1;
    transform: scale(1.08) translateY(-2px);
  }

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









