*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #111111;
  --bg-soft: #171717;
  --card: #1c1c1c;
  --ink: #f5f1eb;
  --muted: rgba(245, 241, 235, 0.58);
  --gold: #c9a45c;
  --gold-deep: #9a7a3d;
  --gold-soft: #e4c98a;
  --line: rgba(201, 164, 92, 0.22);
  --paper: #f6f1ea;
  --paper-ink: #1a1a1a;
  --paper-muted: rgba(26, 26, 26, 0.62);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;
  --font-script: "Playfair Display", "Times New Roman", serif;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.8rem);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(201, 164, 92, 0.18);
  color-scheme: dark;
}

#usluge,
#cijenik,
#galerija,
#upoznaj-mene,
#recenzije,
#pitanja,
#kontakt {
  scroll-margin-top: 6.4rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--gold-deep);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.wrap {
  width: min(1180px, calc(100% - 10vw));
  margin-inline: auto;
}

p {
  margin: 0 0 1rem;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 1.35rem;
  height: 1px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
  cursor: pointer;
  color: inherit;
  background: transparent;
  transition: transform 0.3s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

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

.btn--gold {
  background: var(--gold);
  color: #14110c;
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.btn--dark {
  background: var(--paper-ink);
  color: var(--paper);
  border-color: var(--paper-ink);
  margin-top: 1.6rem;
}

.btn--dark:hover {
  background: #000;
  border-color: #000;
  color: var(--gold-soft);
}

.btn--ghost {
  border-color: rgba(246, 240, 230, 0.2);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: transparent;
}

.nav {
  position: fixed;
  top: env(safe-area-inset-top);
  left: 0;
  right: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-h);
  padding: 0 5vw;
  color: var(--ink);
  background: rgba(18, 16, 14, 0.48);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav.is-scrolled {
  background: rgba(14, 12, 10, 0.62);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav.is-open {
  background: rgba(12, 11, 10, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 1;
  color: var(--ink);
  font-size: inherit;
}

.nav__mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}

.nav__brand-text {
  display: grid;
  gap: 0.1rem;
}

.nav__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: none;
}

.nav__tag {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links,
.nav__cta {
  display: none;
}

.nav__right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.75rem;
}

.nav__toggle {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  z-index: 2;
}

.nav.is-open .nav__toggle span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav.is-open .nav__toggle span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.nav__toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 3px auto;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.nav__drawer {
  display: none;
}

.nav__drawer.is-open {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: max(6.8rem, calc(env(safe-area-inset-top) + 5.8rem)) 8vw 2.4rem;
  overflow: auto;
  background: var(--bg);
  color: var(--ink);
  counter-reset: item;
}

.nav__drawer.is-open a {
  display: flex;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4.4vw, 2.2rem);
  letter-spacing: 0.01em;
}

.nav__drawer.is-open a:not(.nav__drawer-cta)::before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-right: 0.9rem;
  transform: translateY(-0.2em);
}

.nav__drawer-cta {
  margin-top: 1.1rem;
  border-bottom: 0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--gold) !important;
}

@media (min-width: 1100px) {
  .nav__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
  }

  .nav__links a {
    position: relative;
    color: rgba(246, 240, 230, 0.62);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0.2rem 0;
    transition: color 0.2s ease;
  }

  .nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.3rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
  }

  .nav__links a:hover {
    color: var(--ink);
  }

  .nav__links a:hover::after {
    transform: scaleX(1);
  }

  .nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.45rem;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: #14110c;
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .nav__cta:hover {
    background: var(--gold-soft);
    border-color: var(--gold-soft);
    color: #14110c;
  }

  .nav__toggle {
    display: none;
  }

  .nav__drawer,
  .nav__drawer.is-open {
    display: none;
  }
}

@media (min-width: 1100px) and (max-width: 1280px) {
  .nav__links {
    gap: 1.25rem;
  }
}





.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  margin-top: 0;
  padding-top: calc(var(--header-h) + env(safe-area-inset-top));
  background: #0c0b0a;
  overflow: hidden;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: 0;
  overflow: hidden;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 4%;
  transform: scale(1.05);
  animation: hero-kenburns 24s var(--ease) forwards;
}

@keyframes hero-kenburns {
  to {
    transform: scale(1);
  }
}

.hero__veil {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      100deg,
      rgba(8, 7, 6, 0.72) 0%,
      rgba(8, 7, 6, 0.36) 28%,
      rgba(8, 7, 6, 0.1) 52%,
      transparent 72%
    ),
    linear-gradient(
      to top,
      rgba(8, 7, 6, 0.55) 0%,
      rgba(8, 7, 6, 0.18) 34%,
      transparent 58%
    ),
    linear-gradient(
      to bottom,
      rgba(8, 7, 6, 0.28) 0%,
      transparent 18%
    );
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 7vw));
  margin: 0 auto 0 max(1.5rem, 5vw);
  padding: 0 0 clamp(7rem, 18vh, 10.5rem);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

.hero__content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 0.9s var(--ease) forwards;
}

.hero__content > *:nth-child(1) { animation-delay: 0.08s; }
.hero__content > *:nth-child(2) { animation-delay: 0.18s; }
.hero__content > *:nth-child(3) { animation-delay: 0.3s; }
.hero__content > *:nth-child(4) { animation-delay: 0.42s; }

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__place {
  margin: 0 0 1.15rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__place::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  margin-right: 0.8rem;
  vertical-align: middle;
  background: rgba(201, 164, 92, 0.75);
}

.hero__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6.8vw, 5.6rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: #f7f2ea;
}

.hero__motto {
  margin: 1.15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: rgba(245, 241, 235, 0.82);
  white-space: nowrap;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.4rem;
  margin-top: 1.85rem;
}

.hero__actions .btn {
  min-height: 2.6rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.hero__ghost {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.78);
  border-bottom: 1px solid rgba(201, 164, 92, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero__ghost:hover {
  color: var(--gold-soft);
  border-bottom-color: rgba(201, 164, 92, 0.85);
}


.about,
.services,
.gallery,
.visit,
.products,
.prices,
.meet,
.reviews,
.faq {
  padding: 6.4rem 0;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.5fr);
  gap: 5rem;
  align-items: start;
}

.about__facts {
  margin: 0;
  padding-top: 0.35rem;
}

.about__facts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.about__facts li {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.05rem;
}

.about__facts strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.about__copy h2,
.section-head h2,
.visit h2,
.book h2,
.meet h2 {
  font-size: clamp(2.35rem, 4.6vw, 3.7rem);
  margin-bottom: 1.2rem;
}

.about__copy p,
.section-head p,
.visit__info > p,
.book__inner > p,
.meet__lead p {
  color: var(--muted);
  max-width: 40rem;
}

.about--story .about__copy p {
  max-width: 40rem;
}

.about--story .about__facts {
  position: sticky;
  top: 6.4rem;
}

.section-head {
  margin-bottom: 2.8rem;
}

.services {
  display: block;
  background: var(--bg);
  border-block: 0;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  background: transparent;
  border: 0;
  counter-reset: svc;
}

.service-card {
  padding: 1.7rem 1.45rem 1.45rem;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 1.4rem 1.4rem 0.4rem 0.4rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(212, 182, 153, 0.35);
}

.service-card h3 {
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.service-card h3::before {
  counter-increment: svc;
  content: counter(svc, decimal-leading-zero);
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
}

.service-card ul {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}

.service-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.48rem 0;
  border-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card li span {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.service-card li span::after {
  content: "";
  flex: 1 1 auto;
  min-width: 0.8rem;
  border-bottom: 1px dotted rgba(201, 164, 92, 0.42);
  transform: translateY(-0.28em);
}

.service-card strong {
  color: var(--gold-soft);
  font-weight: 500;
  text-align: right;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.services__note {
  margin: 1.5rem 0 0;
  max-width: 46rem;
  color: var(--muted);
  font-weight: 300;
}

.products {
  background: var(--bg);
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.product-card {
  display: grid;
  gap: 1.4rem;
  padding: 0 0 0.4rem;
  border: 0;
  background: transparent;
}

.product-card figure {
  margin: 0;
  background: #0c0b09;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.product-card img {
  width: 100%;
  height: min(46vh, 380px);
  object-fit: contain;
  padding: 1rem;
}

.product-card h3 {
  font-size: 2.15rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.products__note {
  margin-top: 2.2rem;
  padding: 1.6rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.products__note h3 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.products__note p {
  margin: 0;
  color: var(--muted);
  max-width: 46rem;
}

.gallery {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.gallery .section-head {
  text-align: center;
  margin-inline: auto;
  max-width: 36rem;
}

.gallery .section-head .eyebrow {
  justify-content: center;
}

.gallery .section-head .eyebrow::before {
  display: none;
}

.gallery .section-head p {
  margin-inline: auto;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(780px, 100%);
  margin-inline: auto;
}

.gallery__item {
  position: relative;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #101010;
  border-radius: 0.85rem;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__note {
  margin: 1.6rem 0 0;
  text-align: center;
  color: var(--muted);
}

.gallery__note a {
  color: var(--gold);
  border-bottom: 1px solid currentColor;
}

.book {
  margin: 0;
  padding: 6.6rem 0;
  border: 0;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(201, 164, 92, 0.05), transparent 40%),
    var(--bg);
}

.book__inner {
  max-width: 42rem;
}

.book__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.9rem 0 0;
}

.book__hint {
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
}


.meet {
  display: block;
  background: var(--paper);
  color: var(--paper-ink);
  border-block: 0;
  padding: 7rem 0;
}

.meet__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.2rem, 5vw, 5rem);
  align-items: center;
}

.meet .eyebrow {
  color: var(--gold-deep);
}

.meet .eyebrow::before {
  background: var(--gold);
}

.meet__title h2 {
  margin-bottom: 1.35rem;
  color: var(--paper-ink);
}

.meet__lead {
  display: grid;
  gap: 1.05rem;
}

.meet__lead p {
  margin: 0;
  color: var(--paper-muted);
  max-width: 40rem;
}

.meet__close {
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: var(--gold-deep);
  max-width: 26rem;
}

.meet__collage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.06;
  min-height: 0;
}

.meet__arch {
  position: absolute;
  left: 8%;
  top: 0;
  width: 58%;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 999px 999px 0.4rem 0.4rem;
  overflow: hidden;
  background: #ddd;
}

.meet__circle {
  position: absolute;
  right: 0;
  top: 40%;
  width: 48%;
  margin: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--paper);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.meet__product {
  position: absolute;
  left: 0;
  top: 56%;
  width: 38%;
  margin: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--paper);
  background: #f3ebe1;
  z-index: 2;
}

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

.meet__circle img {
  object-position: center 48%;
}

.meet__product img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
}


.reviews {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2rem;
}

.quote {
  margin: 0;
  padding: 1.55rem 0 1.4rem;
  border-top: 1px solid var(--line);
}

.quote__stars {
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  line-height: 1;
}

.quote blockquote {
  margin: 0;
}

.quote blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.7vw, 1.28rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  text-wrap: pretty;
}

.quote figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 0.85rem;
  margin-top: 1.15rem;
}

.quote figcaption strong {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.quote figcaption span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews__more {
  margin: 1.8rem 0 0;
}

.reviews__more a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.reviews__more a:hover {
  color: var(--gold-soft);
  border-bottom-color: rgba(201, 164, 92, 0.45);
}

.faq__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.4rem;
  align-items: start;
}

.faq__list details {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0;
}

.faq__list summary {
  cursor: pointer;
  padding: 1.1rem 1.8rem 1.1rem 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  list-style: none;
  position: relative;
}

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

.faq__list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.05rem;
  color: var(--gold);
  font-weight: 400;
}

.faq__list details[open] summary::after {
  content: "-";
}

.faq__list details p {
  margin: 0 1.6rem 1.05rem 0;
  color: var(--muted);
  font-weight: 300;
}

.faq__list a {
  color: var(--gold);
  border-bottom: 1px solid currentColor;
}

.faq__more {
  margin: 1.7rem 0 0;
  color: var(--muted);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.4rem;
  align-items: start;
}

.visit__list {
  list-style: none;
  padding: 0;
  margin: 1.7rem 0 2rem;
  display: grid;
  gap: 0.95rem;
}

.visit__list li {
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.visit__list strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

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

.visit__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.visit__map {
  position: sticky;
  top: 7.2rem;
}

.visit__map iframe {
  width: 100%;
  height: 520px;
  border: 1px solid var(--line);
  filter: grayscale(0.45) contrast(1.08) brightness(0.88);
  box-shadow: var(--shadow);
}

.visit__maps {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 3.2rem 0 0;
  border-top: 1px solid var(--line);
  background: #080705;
  color: rgba(244, 236, 225, 0.55);
  font-size: 0.88rem;
}

.footer__main {
  display: grid;
  gap: 2.2rem;
  padding-bottom: 2.4rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold);
}

.footer__brand p {
  max-width: 22rem;
  margin: 0.95rem 0 0;
  line-height: 1.7;
}

.footer__heading {
  margin: 0 0 0.85rem;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__socials {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.05rem;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(244, 236, 225, 0.16);
  color: var(--ink);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer__social:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.footer__nav ul,
.footer__contact ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__nav a,
.footer__contact a {
  color: rgba(244, 236, 225, 0.72);
  transition: color 0.2s ease;
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--gold-soft);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.45;
}

.footer__contact svg {
  flex: none;
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  color: var(--gold);
}

.footer__bar {
  display: grid;
  gap: 0.35rem;
  padding: 1.05rem 0 max(1.4rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(244, 236, 225, 0.1);
  color: rgba(244, 236, 225, 0.42);
  font-size: 0.78rem;
}

.footer__bar p {
  margin: 0;
}

.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 1100px);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid var(--line);
}

.lightbox__close {
  position: absolute;
  top: -2.4rem;
  right: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: 100svh;
    margin-top: 0;
    padding-top: calc(var(--header-h) + env(safe-area-inset-top));
    align-items: flex-end;
  }

  .hero__bg {
    object-position: 70% 12%;
  }

  .hero__veil {
    background:
      linear-gradient(
        180deg,
        rgba(8, 7, 6, 0.18) 0%,
        rgba(8, 7, 6, 0.04) 28%,
        rgba(8, 7, 6, 0.38) 70%,
        rgba(8, 7, 6, 0.7) 100%
      ),
      linear-gradient(
        105deg,
        rgba(8, 7, 6, 0.36) 0%,
        rgba(8, 7, 6, 0.12) 40%,
        transparent 68%
      );
  }

  .hero__inner {
    width: calc(100% - 2rem);
    margin: 0 0 0 1rem;
    padding: 0 0 clamp(2.8rem, 7vh, 4rem);
  }

  .hero__content {
    max-width: 32rem;
  }

  .hero__name {
    font-size: clamp(3.1rem, 13vw, 4.1rem);
  }

  .hero__motto {
    font-size: clamp(0.98rem, 3.5vw, 1.18rem);
  }

  .gallery__grid {
    gap: 0.55rem;
    width: min(640px, 100%);
  }

  .about__grid,
  .visit__grid,
  .products__grid,
  .meet__grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .meet__intro {
    display: contents;
  }

  .meet__title {
    order: 1;
  }

  .meet__collage {
    order: 2;
    margin-block: 0.35rem 1.35rem;
  }

  .meet__copy {
    order: 3;
  }

  .meet__title h2 {
    margin-bottom: 0;
  }

  .about__grid {
    gap: 2.6rem;
  }

  .about--story .about__facts {
    position: static;
  }

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

}

@media (max-width: 760px) {
  .faq__list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .eyebrow {
    letter-spacing: 0.16em;
    font-size: 0.64rem;
  }

  .hero {
    margin-top: 0;
    min-height: 100svh;
    padding-top: calc(var(--header-h) + env(safe-area-inset-top));
  }

  .hero__bg {
    object-position: 74% 10%;
  }

  .hero__inner {
    width: calc(100% - 1.7rem);
    margin: 0 0 0 0.85rem;
    padding: 0 0 clamp(2.4rem, 6vh, 3.4rem);
  }

  .hero__content {
    max-width: none;
  }

  .hero__name {
    font-size: clamp(2.85rem, 12.8vw, 3.5rem);
  }

  .hero__motto {
    font-size: clamp(0.9rem, 3.4vw, 1.06rem);
    margin-top: 0.9rem;
    white-space: nowrap;
  }

  .hero__place {
    font-size: 0.6rem;
    margin-bottom: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    margin-top: 1.65rem;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    flex: none;
    justify-content: center;
  }

  .hero__ghost {
    width: 100%;
    min-height: 2.75rem;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid rgba(201, 164, 92, 0.4);
  }

  .gallery__grid {
    gap: 0.45rem;
  }

  .gallery__item {
    border-radius: 0.7rem;
  }

  .about,
  .services,
  .gallery,
  .visit,
  .products,
  .prices,
  .meet,
  .reviews,
  .faq {
    padding: 3.8rem 0 3.3rem;
  }

  .book {
    margin: 0;
    padding: 3.4rem 0;
  }

  .about__grid,
  .visit__grid,
  .products__grid,
  .meet__grid,
  .service-cards,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .about__grid {
    gap: 2.4rem;
  }

  .about__copy h2,
  .section-head h2,
  .visit h2,
  .book h2,
  .meet h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    margin-bottom: 0.85rem;
  }

  .product-card img {
    height: min(32vh, 220px);
    min-height: min(32vh, 220px);
  }

  .section-head {
    margin-bottom: 1.6rem;
  }


  .visit__grid {
    gap: 1.8rem;
  }

  .visit__cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .visit__cta .btn {
    width: 100%;
  }

  .visit__map {
    position: static;
  }

  .visit__map iframe {
    height: 260px;
  }

  .footer {
    padding: 3.4rem 0 0;
    margin-bottom: 4.2rem;
  }

  .footer__main {
    gap: 2rem;
  }

  .footer__bar {
    padding-bottom: max(1.2rem, env(safe-area-inset-bottom));
  }

  .book__actions .btn {
    flex: 1 1 100%;
  }

  .lightbox {
    width: calc(100vw - 1.6rem);
    max-width: none;
    margin: auto;
  }

  .lightbox img {
    max-height: 78svh;
  }

  .lightbox__close {
    position: fixed;
    top: max(0.7rem, env(safe-area-inset-top));
    right: 0.8rem;
    z-index: 2;
    min-height: 44px;
    padding: 0 0.9rem;
    background: rgba(8, 8, 6, 0.82);
    border: 1px solid var(--line);
    color: var(--gold-soft);
  }

  .service-card strong {
    white-space: normal;
  }
}

@media (max-width: 380px) {
  .hero__motto {
    font-size: 0.82rem;
    letter-spacing: -0.01em;
  }

  .hero__actions {
    gap: 0.7rem 0.9rem;
  }
}

@media (min-width: 900px) {
  .footer {
    padding-top: 3.8rem;
  }

  .footer__main {
    grid-template-columns: 1.35fr 0.85fr 1.1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 2.8rem;
  }

  .footer__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-in,
  .hero__content > *,
  .hero__bg {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
