/* ─────────────────────────────────────────
   Studio Niimena – Static CSS
   ───────────────────────────────────────── */

@font-face {
  font-family: 'Vogue';
  src: url('/fonts/Vogue/Vogue.woff') format('woff'),
       url('/fonts/Vogue/Vogue.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --silk:      #CAC1BA;
  --timber:    #5C5751;
  --grove:     #878675;
  --fossil:    #7B7672;
  --smoke:     #A59F99;
  --shadow:    #333230;
  --parchment: #E2DECC;
  --sand:      #D5C7AD;
  --olive:     #BEC5A5;
  --sage:      #9B9C85;
  --bark:      #78715E;
  --olivewood: #2E3024;
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--timber);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; font: inherit; }
ul { list-style: none; }

/* ── Typography helpers ─────────────────── */
.font-vogue { font-family: 'Vogue', serif; }

/* ── Scrollbar ──────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--timber); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--shadow); }

.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* ── Layout ─────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── Transitions (global) ───────────────── */
* {
  transition: color 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

/* ── Grain overlay ──────────────────────── */
.grain::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ── Hero overlay ───────────────────────── */
.hero-overlay {
  background: linear-gradient(135deg, rgba(92,87,81,.7) 0%, rgba(92,87,81,.3) 50%, transparent 100%);
}

/* ────────────────────────────────────────
   HEADER
   ──────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, opacity 0.3s;
  /* On mobile: invisible until scroll */
  opacity: 0;
  pointer-events: none;
}

#site-header.scrolled,
#site-header.menu-open {
  background: rgba(226,222,204,.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(155,156,133,.2);
  opacity: 1;
  pointer-events: auto;
}

/* Desktop: always visible */
@media (min-width: 768px) {
  #site-header {
    opacity: 1;
    pointer-events: auto;
  }
}

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

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}
.logo:hover { transform: scale(1.03); }
.logo img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Desktop nav */
.desktop-nav {
  display: none;
}
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fossil);
  position: relative;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--timber); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--timber);
  border-radius: 1px;
}

.header-cta {
  display: none;
}
@media (min-width: 768px) { .header-cta { display: flex; align-items: center; gap: 1rem; } }

/* Hamburger */
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: none;
  color: var(--timber);
  z-index: 101;
}
@media (min-width: 768px) { .menu-btn { display: none; } }

.menu-btn svg { width: 24px; height: 24px; }

/* Mobile menu */
#mobile-menu {
  display: none;
  padding: 1rem 0;
  background: rgba(226,222,204,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(155,156,133,.2);
}
#mobile-menu.open { display: block; }

#mobile-menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fossil);
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
#mobile-menu a:hover { background: rgba(155,156,133,.2); color: var(--timber); }
#mobile-menu a.active { background: rgba(155,156,133,.2); color: var(--timber); }

.mobile-menu-cta {
  padding: 1rem 1rem 0.5rem;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: scale(1.04); }

.btn-primary {
  background: var(--timber);
  color: #fff;
  box-shadow: 0 4px 12px rgba(92,87,81,.4);
}
.btn-primary:hover { background: var(--shadow); box-shadow: 0 6px 16px rgba(92,87,81,.5); }

.btn-outline {
  background: transparent;
  color: var(--timber);
  border-color: var(--timber);
}
.btn-outline:hover { background: rgba(92,87,81,.07); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.4rem 0.875rem;
  font-size: 0.8125rem;
}

.btn-full { width: 100%; }

.btn-olive {
  background: var(--grove);
  color: #fff;
  box-shadow: 0 4px 12px rgba(135,134,117,.4);
}
.btn-olive:hover { background: var(--bark); }

.btn-bark {
  background: var(--bark);
  color: #fff;
}
.btn-bark:hover { background: var(--timber); }

.btn-smoke {
  background: var(--smoke);
  color: #fff;
}
.btn-smoke:hover { background: var(--fossil); }

/* ── Fade-in animations (Intersection Observer) ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ── Hero Section ───────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem;
}

@media (min-width: 768px) {
  .hero { align-items: center; padding-top: 0; }
}

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

.hero-bg-mobile { display: block; }
.hero-bg-desktop { display: none; }

@media (min-width: 768px) {
  .hero-bg-mobile { display: none; }
  .hero-bg-desktop { display: block; }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  font-family: 'Vogue', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.8s ease forwards;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  color: rgba(255,255,255,.9);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: heroFadeIn 0.8s 0.2s ease forwards;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: heroFadeIn 0.8s 0.4s ease forwards;
}
@media (min-width: 480px) { .hero-buttons { flex-direction: row; } }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,.7);
  opacity: 0;
  animation: heroFadeIn 1s 1s ease forwards;
}
.hero-scroll-hint svg {
  width: 24px; height: 24px;
  animation: bounce 2s infinite;
}

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

/* ── About Section ──────────────────────── */
/* MOBILE: sticky scroll effect */
.about-mobile {
  display: block;
  min-height: 220vh;
}
@media (min-width: 1024px) { .about-mobile { display: none; } }

.about-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.about-sticky-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.about-sticky-overlay {
  position: absolute; inset: 0;
  background: #000;
  opacity: 0;
  transition: opacity 0.1s linear;
  pointer-events: none;
}
.about-sticky-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  padding: 2rem 1.25rem 5rem;
  color: #fff;
  opacity: 0;
  transform: translateY(28px);
  /* No CSS transition — smoothness handled by JS lerp */
}
.about-sticky-text h2 {
  font-family: 'Vogue', serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.about-sticky-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,.95);
  margin-bottom: 1.5rem;
}

/* DESKTOP: two-column */
.about-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .about-desktop {
    display: block;
    padding: 5rem 0;
    background: rgba(213,199,173,.3);
  }
}

.about-desktop .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-desktop h2 {
  font-family: 'Vogue', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--timber);
  margin-bottom: 1.5rem;
}
.about-desktop p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--fossil);
  margin-bottom: 1.5rem;
}

.about-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.about-img-wrap img {
  width: 100%;
  display: block;
}

/* ── Services Section ───────────────────── */
/* MOBILE: simple section with bg image */
.services-mobile {
  display: block;
  position: relative;
  background-image: url('/images/slike-salon/background-2.jpeg');
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) { .services-mobile { display: none; } }

.services-mobile-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.62);
  pointer-events: none;
}
.services-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1rem 4rem;
}
.services-content h2 {
  font-family: 'Vogue', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}
.services-content .subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.9);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* DESKTOP services */
.services-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .services-desktop {
    display: block;
    padding: 5rem 0;
    background: var(--silk);
  }
}

.services-desktop h2 {
  font-family: 'Vogue', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--timber);
  text-align: center;
  margin-bottom: 1rem;
}
.services-desktop .subtitle {
  font-size: 1.125rem;
  color: var(--fossil);
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 4rem;
}

/* Service card carousel (mobile) */
.service-cards-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}
.service-cards-carousel .card-wrap {
  flex-shrink: 0;
  width: 85%;
  scroll-snap-align: center;
}
.service-cards-carousel .card-wrap:first-child { margin-left: 1rem; }
.service-cards-carousel .card-wrap:last-child  { margin-right: 1rem; }

/* Service card grid (desktop) */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Service card */
.service-card {
  background: #fff;
  border-radius: 80px 80px 1.5rem 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(92,87,81,.15);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(92,87,81,.2);
}
.service-card-img {
  position: relative;
  height: 16rem;
  overflow: hidden;
  border-radius: 80px 80px 0 0;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.18), transparent);
}
.service-card-body {
  padding: 1.5rem;
  flex: 1;
}
.service-card-body h3 {
  font-family: 'Vogue', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--timber);
  margin-bottom: 0.75rem;
}
.service-card-body p {
  color: var(--fossil);
  line-height: 1.6;
}

/* ── Team Section ───────────────────────── */
.team-section {
  padding: 5rem 0;
  position: relative;
  background-image: url('/images/slike-salon/background-2.jpeg');
  background-size: cover;
  background-position: center;
}
.team-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(46, 48, 36, 0.78);
  z-index: 0;
}
.team-section > .container {
  position: relative;
  z-index: 1;
}
.team-section h2 {
  font-family: 'Vogue', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}
.team-section .subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.8);
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

/* Desktop grid */
.team-grid {
  display: none;
}
@media (min-width: 768px) {
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Mobile slider */
.team-slider-wrap {
  display: block;
  position: relative;
}
@media (min-width: 768px) { .team-slider-wrap { display: none; } }

.team-slider-viewport {
  overflow: hidden;
  position: relative;
}
.team-slider-track {
  display: flex;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.team-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.slider-btn:hover { background: rgba(255,255,255,.3); }
.slider-btn svg { width: 20px; height: 20px; }

.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.3);
  border: none;
  transition: background 0.3s, width 0.3s;
}
.slider-dot.active { background: #fff; width: 32px; }

/* Team card */
.team-card {
  background: #fff;
  border-radius: 80px 80px 1.5rem 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(92,87,81,.12);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 340px;
  width: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 8px 28px rgba(92,87,81,.18); }

.team-card-img {
  height: 14rem;
  overflow: hidden;
  border-radius: 80px 80px 0 0;
}
.team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform 0.3s;
}
.team-card:hover .team-card-img img { transform: scale(1.05); }

.team-card-body { padding: 1.5rem; }
.team-card-body h3 {
  font-family: 'Vogue', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--timber);
  margin-bottom: 0.25rem;
}
.team-card-body .role {
  font-size: 0.875rem;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.team-card-body p {
  font-size: 0.875rem;
  color: var(--fossil);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.team-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--timber);
  border-bottom: 1px solid var(--timber);
  transition: color 0.2s;
}
.team-card-link:hover { color: var(--fossil); }

/* ── Service Detail Sections ───────────── */
.service-section {
  padding: 5rem 0;
}

/* Two-column layout for service sections */
.service-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .service-section-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.service-section-img {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  order: -1; /* image first on mobile */
}
@media (min-width: 768px) {
  .service-section-img { order: 0; } /* image after text on desktop */
}
.service-section-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.service-section-img:hover img { transform: scale(1.04); }

.service-check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Desktop list item */
@media (min-width: 768px) {
  .service-check-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .service-check-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
  }
  .service-check-dot svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
  .service-check-content h3 { font-size: 1.125rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
  .service-check-content p { font-size: 0.875rem; color: rgba(255,255,255,.8); }
  .service-check-card { display: none; }
}

/* Mobile list item (cards) */
@media (max-width: 767px) {
  .service-check-item { display: none; }
  .service-check-card {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.2);
    text-align: center;
    transition: transform 0.2s;
  }
  .service-check-card:hover { transform: scale(1.02); }
  .service-check-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.2rem; }
  .service-check-card p { font-size: 0.75rem; color: rgba(255,255,255,.8); }
}

.service-btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .service-btn-group {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.service-section h2 {
  font-family: 'Vogue', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
.service-section > .container > .grid > div > p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.5rem;
}

/* Gallery cards in service sections */
.gallery-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .gallery-grid { display: grid; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-card {
  background: #fff;
  border-radius: 80px 80px 1.5rem 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}
.gallery-card-img {
  height: 14rem;
  overflow: hidden;
  border-radius: 80px 80px 0 0;
}
.gallery-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-card:hover .gallery-card-img img { transform: scale(1.05); }
.gallery-card-body { padding: 1.25rem; }
.gallery-card-body h3 {
  font-family: 'Vogue', serif;
  font-size: 1.25rem;
  color: var(--timber);
  margin-bottom: 0.5rem;
}
.gallery-card-body p { font-size: 0.875rem; color: var(--fossil); }

/* Mobile gallery carousel */
.gallery-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .gallery-carousel { display: none; } }
.gallery-carousel .card-wrap {
  flex-shrink: 0;
  width: 85%;
  scroll-snap-align: center;
}
.gallery-carousel .card-wrap:first-child { margin-left: 1rem; }
.gallery-carousel .card-wrap:last-child  { margin-right: 1rem; }

/* ── Contact CTA Section ────────────────── */
.cta-section {
  padding: 5rem 0;
  background: var(--shadow);
  color: #fff;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Vogue', serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-section p {
  font-size: 1.25rem;
  color: rgba(255,255,255,.9);
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.cta-section .btn-group {
  display: none;
}
@media (min-width: 768px) { .cta-section .btn-group { display: flex; justify-content: center; gap: 1rem; } }

/* ── Contact Form Section ───────────────── */
.contact-form-section {
  padding: 4rem 0;
  background: rgba(155,156,133,.1);
}
.contact-form-section h2 {
  font-family: 'Vogue', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--timber);
  margin-bottom: 1rem;
  text-align: center;
}
.contact-form-section .subtitle {
  font-size: 1.125rem;
  color: var(--fossil);
  text-align: center;
  margin-bottom: 2rem;
}

.form-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  overflow: hidden;
  max-width: 36rem;
  margin: 0 auto;
}
.form-card-header {
  padding: 1.5rem 2rem 0;
}
.form-card-header h3 {
  font-family: 'Vogue', serif;
  font-size: 1.5rem;
  color: var(--timber);
  font-weight: 700;
}
.form-card-body { padding: 1.5rem 2rem 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--timber);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid rgba(155,156,133,.4);
  border-radius: 0.5rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--timber);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(155,156,133,.2);
}
.form-group textarea { resize: vertical; min-height: 7rem; }
.form-group input.error,
.form-group textarea.error { border-color: #ef4444; }
.form-error { color: #ef4444; font-size: 0.8125rem; margin-top: 0.3rem; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--timber);
  cursor: pointer;
}
.form-checkbox label { font-size: 0.875rem; color: var(--fossil); }

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.form-success svg {
  width: 64px; height: 64px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 0 auto 1rem;
}
.form-success h3 {
  font-family: 'Vogue', serif;
  font-size: 1.25rem;
  color: var(--timber);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--fossil); }

/* ── Footer ─────────────────────────────── */
footer {
  background: var(--olivewood);
  color: #fff;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 2fr; }
}

footer h3 {
  font-family: 'Vogue', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
footer h4 {
  font-family: 'Vogue', serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
footer p { font-size: 0.875rem; color: rgba(255,255,255,.8); line-height: 1.6; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(226,222,204,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: rgba(226,222,204,.2); }
.footer-social svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 0.875rem; color: rgba(226,222,204,.8); transition: color 0.2s; }
.footer-nav a:hover { color: var(--parchment); }

.footer-contact { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; stroke: #fff; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.875rem; color: rgba(255,255,255,.8); transition: color 0.2s; }
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,.6); }

/* ── Mobile Fixed CTA Button ─────────────── */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  border-top: 1px solid rgba(92,87,81,.2);
}
@media (min-width: 768px) { .mobile-cta { display: none; } }

.mobile-cta .btn {
  flex: 1;
  padding: 0.5rem 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.mobile-cta .btn-cta-contact {
  background: transparent;
  color: #5C5751;
  border: 1.5px solid #5C5751;
}
.mobile-cta .btn-cta-contact:hover { background: rgba(92,87,81,.08); }
.mobile-cta .btn-cta-book {
  background: #5C5751;
  color: #fff;
}
.mobile-cta .btn-cta-book:hover { background: #4A4540; }

/* ── Page Hero (inner pages) ─────────────── */
.page-hero {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background: linear-gradient(to bottom, var(--parchment), rgba(213,199,173,.2));
  text-align: center;
}
.page-hero h1 {
  font-family: 'Vogue', serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--timber);
  margin-bottom: 1.5rem;
}
.page-hero p {
  font-size: 1.25rem;
  color: var(--fossil);
  max-width: 36rem;
  margin: 0 auto;
}

/* ── Pricing Page ────────────────────────── */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
  background: var(--parchment);
  overflow-x: auto;
}
.pricing-tab {
  flex-shrink: 0;
  padding: 0.5rem 2rem;
  font-family: 'Vogue', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fossil);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.pricing-tab:hover { color: var(--timber); }
.pricing-tab.active { color: var(--timber); border-bottom-color: var(--timber); font-weight: 700; }

.pricing-content {
  background: var(--parchment);
  padding: 2rem 1rem 4rem;
}
@media (min-width: 768px) { .pricing-content { padding: 4rem 1rem; } }

.pricing-panel { display: none; max-width: 52rem; margin: 0 auto; }
.pricing-panel.active { display: block; }

.pricing-group { margin-bottom: 2.5rem; }
.pricing-group h2 {
  font-family: 'Vogue', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--timber);
  margin-bottom: 0.5rem;
}
.pricing-note {
  font-size: 0.875rem;
  color: rgba(123,118,114,.7);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.pricing-rows {
  border-top: 1px solid rgba(92,87,81,.15);
}
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(92,87,81,.1);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--timber);
  line-height: 1.4;
}
.pricing-row-price {
  font-family: 'Vogue', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--timber);
  flex-shrink: 0;
  white-space: nowrap;
}

/* Tattoo/nohti flat items */
.pricing-flat-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(92,87,81,.1);
}
.pricing-flat-item:last-child { border-bottom: none; }
.pricing-flat-row { display: flex; align-items: flex-end; gap: 1rem; }
.pricing-flat-name {
  flex: 1;
  font-family: 'Vogue', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--timber);
}
.pricing-flat-dots {
  flex: 1;
  min-width: 60px;
  max-width: 200px;
  height: 1px;
  background-image: repeating-linear-gradient(to right, var(--timber) 0, var(--timber) 2px, transparent 2px, transparent 4px);
  opacity: 0.4;
  margin-bottom: 6px;
}
.pricing-flat-price {
  font-family: 'Vogue', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--timber);
  flex-shrink: 0;
}
.pricing-flat-duration { font-size: 0.875rem; color: var(--fossil); margin-top: 0.25rem; }

/* Additional info section */
.pricing-info {
  padding: 4rem 0;
  background: var(--parchment);
}
.pricing-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 52rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .pricing-info-grid { grid-template-columns: 1fr 1fr; } }

.pricing-info-grid h3 {
  font-family: 'Vogue', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--timber);
  margin-bottom: 1rem;
}
.pricing-info-grid ul { display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-info-grid li { font-size: 0.9375rem; color: var(--fossil); padding-left: 1rem; position: relative; }
.pricing-info-grid li::before { content: '·'; position: absolute; left: 0; color: var(--sage); }

.pricing-disclaimer {
  font-size: 0.75rem;
  color: rgba(123,118,114,.6);
  line-height: 1.7;
  border-top: 1px solid rgba(92,87,81,.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Team Page ───────────────────────────── */
.team-page { min-height: 100vh; }

.team-about {
  padding: 5rem 0;
  background: rgba(155,156,133,.1);
}
.team-about h2 {
  font-family: 'Vogue', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--timber);
  text-align: center;
  margin-bottom: 3rem;
}
.team-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .team-about-grid { grid-template-columns: repeat(3, 1fr); } }

.team-about-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.team-about-card h3 {
  font-family: 'Vogue', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--timber);
  margin-bottom: 0.75rem;
}
.team-about-card p { color: var(--fossil); line-height: 1.6; }

/* ── Contact Page ────────────────────────── */
.contact-page { min-height: 100vh; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info h2 {
  font-family: 'Vogue', serif;
  font-size: 1.875rem;
  color: var(--timber);
  margin-bottom: 2rem;
}
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-item svg { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; stroke: var(--sage); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-item h3 { font-weight: 600; color: var(--timber); margin-bottom: 0.25rem; }
.contact-info-item a, .contact-info-item p { color: var(--fossil); font-size: 0.9375rem; transition: color 0.2s; }
.contact-info-item a:hover { color: var(--timber); }

.map-wrap {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.map-wrap iframe { display: block; }

.contact-form-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  overflow: hidden;
}
.contact-form-card-header {
  padding: 1.5rem 2rem 0;
  border-bottom: 0;
}
.contact-form-card-header h2 {
  font-family: 'Vogue', serif;
  font-size: 1.5rem;
  color: var(--timber);
}
.contact-form-card-body { padding: 1.5rem 2rem 2rem; }

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: rgba(155,156,133,.1);
}
.faq-section h2 {
  font-family: 'Vogue', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--timber);
  text-align: center;
  margin-bottom: 0.75rem;
}
.faq-section .subtitle { font-size: 1.125rem; color: var(--fossil); text-align: center; margin-bottom: 2.5rem; }

.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 52rem; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.faq-item-content { padding: 1.5rem; }
.faq-item-content h3 {
  font-family: 'Vogue', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--timber);
  margin-bottom: 0.75rem;
}
.faq-item-content p { color: var(--fossil); line-height: 1.6; }

/* ── Kristina Page ───────────────────────── */
.kristina-hero {
  position: relative;
  min-height: 210vh;
}
.kristina-hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.kristina-hero-sticky img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.kristina-overlay {
  position: absolute; inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s linear;
}
.kristina-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem 4rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) { .kristina-text { padding: 2rem 4rem 5rem; } }

.kristina-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
  transition: color 0.2s, opacity 0.15s ease, transform 0.15s ease;
  opacity: 0;
}
.kristina-back:hover { color: #fff; }
.kristina-back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.kristina-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.kristina-title {
  font-family: 'Vogue', serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.kristina-p1, .kristina-p2, .kristina-p3 {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,.9);
  max-width: 42rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
@media (min-width: 1024px) {
  .kristina-p1, .kristina-p2, .kristina-p3 { font-size: 1rem; }
}

.booking-section {
  padding: 3rem 0;
  background: rgba(213,199,173,.2);
}
.booking-section h2 {
  font-family: 'Vogue', serif;
  font-size: 1.875rem;
  color: var(--timber);
  text-align: center;
  margin-bottom: 1.5rem;
}
.booking-iframe-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.kristina-cenik {
  padding: 4rem 0 6rem;
  background: var(--parchment);
}
.kristina-cenik h2 {
  font-family: 'Vogue', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--timber);
  text-align: center;
  margin-bottom: 0.5rem;
}
.kristina-cenik .subtitle {
  color: var(--fossil);
  text-align: center;
  margin-bottom: 3rem;
}

/* ── Pricing Accordion (frizerstvo) ──────── */
.pricing-accordion {
  margin-bottom: 0.375rem;
  border: 1px solid rgba(92,87,81,.15);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.pricing-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: 'Vogue', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--timber);
  transition: background 0.15s;
}
.pricing-accordion summary::-webkit-details-marker { display: none; }
.pricing-accordion summary::marker { display: none; }
.pricing-accordion summary .acc-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--timber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}
.pricing-accordion[open] summary .acc-chevron { transform: rotate(180deg); }
.pricing-accordion summary:hover { background: rgba(226,222,204,.35); }
.pricing-accordion-body {
  padding: 0 1.25rem 1rem;
  border-top: 1px solid rgba(92,87,81,.1);
}
.pricing-accordion-body .pricing-note {
  padding-top: 0.75rem;
}

/* Alja / Vita page – reuse kristina classes */
.alja-cenik, .vita-cenik {
  padding: 4rem 0 6rem;
  background: var(--parchment);
}
.alja-cenik h2, .vita-cenik h2 {
  font-family: 'Vogue', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--timber);
  text-align: center;
  margin-bottom: 0.5rem;
}
.alja-cenik .subtitle, .vita-cenik .subtitle {
  color: var(--fossil);
  text-align: center;
  margin-bottom: 3rem;
}
.vita-dogovor {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1rem;
}
.vita-dogovor p {
  color: var(--fossil);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.vita-dogovor .btn { margin-top: 0.5rem; }

/* ── Instagram Section ───────────────────── */
.instagram-section {
  padding: 5rem 1rem;
  background: var(--olivewood);
  text-align: center;
}
.instagram-inner {
  max-width: 36rem;
  margin: 0 auto;
}
.instagram-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.instagram-icon svg {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.instagram-label {
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 0.5rem;
}
.instagram-handle {
  font-size: clamp(2rem, 6vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}
.instagram-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── Location Section ───────────────────── */
.location-section {
  padding: 5rem 0;
  background: var(--parchment);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.location-info h2 {
  font-family: 'Vogue', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--timber);
  margin-bottom: 1.75rem;
}
.location-address {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--fossil);
  line-height: 1.6;
}
.location-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--grove);
}
.location-item strong { color: var(--timber); }
.location-item a { color: var(--fossil); text-decoration: none; }
.location-item a:hover { color: var(--timber); }
.location-floor {
  font-size: 0.8125rem;
  color: var(--sage);
  font-style: italic;
}
.location-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border: 1.5px solid var(--timber);
  border-radius: 4px;
  color: var(--timber);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--timber); color: #fff; }
