:root {
  --gold: #d4b896;
  --gold-light: #e8d4bc;
  --gold-deep: #b8956e;
  --brown: #5a4030;
  --brown-soft: #7a5c48;
  --ink: #2c2018;
  --cream: #faf7f2;
  --cream-2: #f3ebe3;
  --white: #ffffff;
  --line: rgba(90, 64, 48, 0.1);
  --shadow-sm: 0 4px 20px rgba(44, 32, 24, 0.06);
  --shadow-md: 0 12px 40px rgba(44, 32, 24, 0.1);
  --shadow-lg: 0 24px 60px rgba(44, 32, 24, 0.14);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

  .hero-content {
    animation: none;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(250, 247, 242, 0.92);
  border-bottom-color: var(--line);
}

.page-home .site-header:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.page-home .site-header:not(.scrolled) .brand,
.page-home .site-header:not(.scrolled) .nav a:not(.btn) {
  color: var(--cream);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(0, 0, 0, 0.35);
}

.page-home .site-header:not(.scrolled) .brand span,
.page-home .site-header:not(.scrolled) .brand em {
  color: inherit;
  font-style: italic;
}

.page-home .site-header:not(.scrolled) .brand em {
  font-weight: 600;
}

.page-home .site-header:not(.scrolled) .nav-toggle span {
  background: var(--cream);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

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

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--brown);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 11px;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.brand-img-lg {
  width: 160px;
  height: 160px;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
}

.brand em,
.brand span {
  font-style: italic;
  color: var(--gold-deep);
}

.site-header .brand span {
  font-style: normal;
  color: inherit;
}

.site-header .brand em {
  color: inherit;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-soft);
  transition: color 0.2s;
}

.nav a:not(.btn):hover {
  color: var(--brown);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--brown);
  box-shadow: 0 8px 24px rgba(184, 149, 110, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(184, 149, 110, 0.45);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  border: 1.5px solid var(--brown);
  color: var(--brown);
  background: transparent;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  background: var(--gold);
  color: var(--brown);
}

.btn-block {
  width: 100%;
}

/* Hero — puna pozadinska slika (hero.jpg), tekst lijevo */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 5.5rem 0 clamp(1.75rem, 4vh, 3rem);
  overflow: hidden;
  background: #1a120c;
}

.hero-bg-img {
  position: absolute;
  left: 0;
  right: 0;
  top: -72px;
  width: 100%;
  height: calc(100% + 72px);
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.02) brightness(1.02);
}

.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: -72px;
  height: calc(100% + 72px);
  background: linear-gradient(
    90deg,
    rgba(12, 8, 5, 0.76) 0%,
    rgba(12, 8, 5, 0.42) 30%,
    rgba(12, 8, 5, 0.1) 52%,
    transparent 72%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 max(1rem, 2vw) clamp(1.5rem, 4vh, 2.75rem) max(0.5rem, 1.25vw);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero-content {
  width: 100%;
  max-width: 520px;
  text-align: left;
  color: var(--cream);
  animation: fadeUp 0.8s ease-out;
}

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

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.85rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-lead {
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 28rem;
  margin: 0;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 240px));
  gap: 0.75rem;
  width: min(500px, 100%);
  max-width: 500px;
  margin: 1.35rem 0 0;
}

/* Rezervacija — topla pozadina (hero + blagi video) */
.section-booking {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}

.booking-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.booking-bg-image {
  position: absolute;
  inset: 0;
  background: url("../assets/hero.jpg") center / cover no-repeat;
  opacity: 0.35;
}

.booking-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.22;
  filter: saturate(1.05);
}

.booking-video-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(250, 247, 242, 0.94) 0%, rgba(243, 235, 227, 0.9) 55%, rgba(250, 247, 242, 0.93) 100%);
}

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

.cta-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, background 0.2s;
}

.cta-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.cta-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: var(--brown);
}

.cta-primary .cta-desc {
  color: rgba(90, 64, 48, 0.75);
}

.cta-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-desc {
  font-size: 0.78rem;
  opacity: 0.85;
}

.section-video {
  background: var(--cream-2);
}

.video-feature {
  max-width: 720px;
  margin: 0 auto;
}

.video-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--ink);
}

.video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  max-height: 70vh;
}

.video-frame figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.88rem;
  color: var(--brown-soft);
  background: var(--white);
  text-align: center;
}

.promo-banner {
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

/* Typography */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 0.5rem;
}

.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-alt {
  background: var(--cream-2);
}

.section-catalog {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 184, 150, 0.15), transparent),
    var(--cream);
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--brown);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.section-lead {
  color: rgba(44, 32, 24, 0.65);
  margin: 0;
  font-size: 0.98rem;
}

/* Highlights */
.highlights {
  background: var(--cream);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.highlight-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brown);
  margin: 0 0 0.4rem;
}

.highlight-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(44, 32, 24, 0.7);
}

/* Catalog toolbar */
.catalog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.search-wrap input {
  width: 100%;
  padding: 0.95rem 1.15rem 0.95rem 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%237a5c48' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242 1.1a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") 1rem center no-repeat;
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-wrap input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.35);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tabs .tab {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-soft);
  cursor: pointer;
  transition: all 0.2s;
}

.service-tabs .tab:hover {
  border-color: var(--gold);
  color: var(--brown);
}

.service-tabs .tab.active {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}

/* Catalog blocks */
.services-catalog {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.catalog-block {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.catalog-block-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(90deg, var(--cream-2), var(--white));
  border-bottom: 1px solid var(--line);
}

.catalog-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--gold-light);
  color: var(--brown);
  border-radius: 12px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.catalog-block-head h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0;
  color: var(--brown);
}

.catalog-block-head p {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: rgba(44, 32, 24, 0.55);
}

.catalog-count {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brown-soft);
  background: var(--cream);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.65rem;
  padding: 1rem 1.25rem 1.25rem;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  min-height: 100%;
}

.treatment-card:hover {
  background: var(--white);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
}

.treatment-card h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.treatment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
}

.badge-time {
  background: rgba(90, 64, 48, 0.08);
  color: var(--brown-soft);
}

.badge-price {
  background: var(--gold-light);
  color: var(--brown);
}

.catalog-empty,
.catalog-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(44, 32, 24, 0.6);
}

.catalog-note {
  margin-top: 2rem;
}

/* Booking */
.booking-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.booking-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--brown);
  margin: 0 0 1.5rem;
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.step-card {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1rem;
  border: 1px solid var(--line);
}

.step-card span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: var(--brown);
  color: var(--cream);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(44, 32, 24, 0.8);
}

.booking-note {
  font-size: 0.9rem;
  color: rgba(44, 32, 24, 0.7);
  margin: 0 0 1rem;
}

.booking-note a {
  color: var(--brown);
  font-weight: 600;
  text-decoration: underline;
}

.booking-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: linear-gradient(160deg, var(--cream-2), var(--white));
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
}

.booking-aside .brand-img-lg {
  margin-bottom: 0.25rem;
}

.booking-aside > p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brown);
  margin: 0;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--brown);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--brown);
  box-shadow: 0 6px 20px rgba(184, 149, 110, 0.35);
}

.store-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 149, 110, 0.45);
}

.store-play-soon {
  font-size: 0.82rem;
  color: rgba(44, 32, 24, 0.55);
  margin: 0;
}

.store-fallback {
  font-size: 0.8rem;
  color: rgba(44, 32, 24, 0.55);
  margin: 0;
}

/* About & contact */
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-grid h2,
.contact-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--brown);
  margin: 0 0 1rem;
}

.about-grid p,
.contact-grid p {
  color: rgba(44, 32, 24, 0.75);
  margin: 0 0 1rem;
}

.about-facts {
  display: grid;
  gap: 0.75rem;
}

.fact {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.fact-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown-soft);
  margin-bottom: 0.2rem;
}

.fact-value {
  font-weight: 500;
  font-size: 0.98rem;
}

.link:hover {
  text-decoration: underline;
}

.social-btn {
  display: inline-flex;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 0.5rem;
}

.social-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.map-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.map-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown);
  margin: 0 0 0.75rem;
}

.map-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 600;
  color: var(--brown);
}

.map-link:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.85);
  padding: 2.5rem 0;
}

.footer-inner {
  display: grid;
  gap: 0.75rem;
  text-align: center;
}

.brand-footer {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--gold);
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Mobile */
@media (max-width: 900px) {
  .highlights-grid,
  .step-cards {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid,
  .booking-banner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav .btn-small {
    margin-top: 0.5rem;
    text-align: center;
  }

  .catalog-block-head {
    flex-wrap: wrap;
  }

  .catalog-count {
    margin-left: 0;
  }

  .hero {
    min-height: 100svh;
    padding: 5rem 0 2rem;
  }

  .hero-bg-img {
    content: url("../assets/hero-elme-wall.png");
    object-position: center 0%;
    transform: none;
  }

  .hero-inner {
    padding-bottom: clamp(1.25rem, 3vh, 2rem);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-cta-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }
}
