:root {
  --c2-bg: hsl(0 0% 98%);
  --c2-bg-secondary: hsl(0 0% 94%);
  --c2-fg: hsl(0 0% 10%);
  --c2-fg-muted: hsl(0 0% 45%);
  --c2-accent: hsl(0 0% 20%);
  --c2-border: hsl(0 0% 88%);
  --c2-warm: hsl(30 20% 96%);

  --radius: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--c2-bg);
  color: var(--c2-fg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.container-narrow {
  width: min(720px, calc(100% - 2rem));
}

.center {
  text-align: center;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 200ms ease, box-shadow 200ms ease, backdrop-filter 200ms ease;
  background: transparent;
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--c2-bg) 90%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header-row {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .header-row {
    height: 80px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.brand-strong {
  font-weight: 600;
}

.brand-word {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
}

.brand-icon {
  width: 50px;
  height: 50px;

  object-fit: contain;
}

@media (max-width: 380px) {
  .brand {
    gap: 8px;
  }

  .brand-word {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--c2-fg-muted);
  transition: color 150ms ease;
}

.nav-link:hover {
  color: var(--c2-fg);
}

.nav-phone {
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--c2-fg);
  font-size: 18px;
}

.nav-phone:hover {
  color: var(--c2-accent);
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

/* Language switcher */
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px 34px 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--c2-border);
  background: color-mix(in srgb, var(--c2-bg) 92%, transparent);
  color: var(--c2-fg);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}

.lang-select:focus-visible {
  outline: 2px solid var(--c2-accent);
  outline-offset: 2px;
}

.lang-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-select-wrap::after {
  content: "▾";
  position: absolute;
  right: 12px;
  pointer-events: none;
  font-size: 12px;
  color: var(--c2-fg-muted);
}

.mobile-lang {
  display: flex;
  padding: 12px 0;
}

.icon-btn {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.icon-btn:focus-visible {
  outline: 2px solid var(--c2-accent);
  outline-offset: 2px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.burger {
  width: 22px;
  height: 2px;
  background: var(--c2-fg);
  position: relative;
  display: inline-block;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--c2-fg);
  transition: transform 150ms ease, top 150ms ease, opacity 150ms ease;
}

.burger::before {
  top: -7px;
}

.burger::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .burger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .burger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .burger::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid var(--c2-border);
  background: var(--c2-bg);
}

.mobile-menu-inner {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-link {
  font-size: 18px;
  font-weight: 300;
  color: var(--c2-fg-muted);
}

.mobile-link:hover {
  color: var(--c2-fg);
}

.mobile-phone {
  color: var(--c2-fg);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 14px 18px;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
  cursor: pointer;
}

.btn-sm {
  padding: 10px 14px;
  border-radius: 12px;
}

.btn-lg {
  padding: 16px 22px;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--c2-fg);
  color: var(--c2-bg);
}

.btn-primary:hover {
  background: var(--c2-accent);
}

.btn-outline {
  background: transparent;
  border-color: var(--c2-fg);
  color: var(--c2-fg);
}

.btn-outline:hover {
  background: color-mix(in srgb, var(--c2-fg) 5%, transparent);
}

.btn-soft {
  background: color-mix(in srgb, var(--c2-fg) 5%, transparent);
  border-color: var(--c2-border);
  color: var(--c2-fg);
}

.btn-soft:hover {
  background: color-mix(in srgb, var(--c2-fg) 10%, transparent);
}

/* Sections */
main {
  padding-top: 64px;
}

@media (min-width: 768px) {
  main {
    padding-top: 80px;
  }
}

.section {
  padding: 80px 0;
  background: var(--c2-bg);
}

@media (min-width: 768px) {
  .section {
    padding: 120px 0;
  }
}

.section-warm {
  background: var(--c2-warm);
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--c2-fg-muted);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 200;
  line-height: 1.1;
}

.section-text {
  margin: 0;
  color: var(--c2-fg-muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
}

.section-head {
  margin-bottom: 42px;
}

/* Hero (split like mock) */
.hero {
  background: var(--c2-warm);
  padding: 46px 0 36px;
}

@media (min-width: 768px) {
  .hero {
    padding: 64px 0 52px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
  }
}

.hero-left {
  max-width: 620px;
}

.hero-eyebrow {
  margin: 0 0 18px;
  color: var(--c2-fg-muted);
  font-size: 12px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 5.6vw, 74px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--c2-fg);
  text-shadow: none;
}

.hero-subtitle {
  margin: 0 0 22px;
  color: var(--c2-fg-muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 520px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c2-fg);
  color: var(--c2-bg);
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--c2-fg) 92%, transparent);
  transition: background 150ms ease;
}

.hero-cta:hover {
  background: var(--c2-accent);
}

.hero-cta-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, #000 28%, transparent);
  border: 1px solid color-mix(in srgb, var(--c2-bg) 18%, transparent);
  font-size: 18px;
  line-height: 1;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--c2-border);
}

@media (min-width: 768px) {
  .hero-badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px 20px;
  }
}

.hero-metric {
  position: relative;
  padding-left: 10px;
}

.hero-metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: color-mix(in srgb, var(--c2-fg) 18%, transparent);
}

.hero-metric-label {
  margin: 0 0 2px;
  color: var(--c2-fg-muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-metric-value {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--c2-fg);
}

.hero-card {
  width: 100%;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  /* border: 1px solid var(--c2-border); */
  background: var(--c2-warm);
}




.hero-slider {
  position: relative;
  width: 100%;
  height: min(560px, 58vh);
}

@media (max-width: 1023px) {
  .hero-slider {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mask-image: radial-gradient(85% 80%, black 50%, transparent 100%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 360ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, #fff 70%, transparent);
  background: color-mix(in srgb, #000 20%, transparent);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
  border-color: #fff;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-sep {
  width: 1px;
  height: 32px;
  background: color-mix(in srgb, var(--c2-fg) 20%, transparent);
}

.badge-label {
  margin: 0;
  color: var(--c2-fg-muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.badge-value {
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 500;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.feature-card {
  border: 1px solid var(--c2-border);
  padding: 18px;
  transition: border-color 150ms ease;
}

.feature-card:hover {
  border-color: color-mix(in srgb, var(--c2-fg) 20%, transparent);
}

.feature-icon {
  color: var(--c2-fg-muted);
  font-size: 18px;
  margin: 0 0 14px;
}

.feature-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 500;
}

.feature-desc {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--c2-fg-muted);
}

/* Gallery */
.gallery-head {
  text-align: center;
  margin-bottom: 44px;
}

.gallery-title {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
}

.gallery-subtitle {
  margin: 0;
  color: var(--c2-fg-muted);
  font-size: 18px;
  font-weight: 300;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }
}

.gallery-item {
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 400ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* House showcases */
.showcase {
  padding: 28px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}

.showcase-media {
  padding: 0;
}

@media (min-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 44px;
  }

  .showcase-media {
    padding: 0 84px;
  }

  .showcase--right .showcase-grid {
    grid-template-columns: 1fr 1.25fr;
  }
  .showcase--right .showcase-media {
    order: 2;
  }
  .showcase--right .showcase-content {
    order: 1;
  }
}

.showcase-title {
  margin: 0 0 14px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.showcase-title-strong {
  letter-spacing: 0.02em;
}

.showcase-text {
  color: var(--c2-fg-muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 18px;
}

.showcase-text p {
  margin: 0 0 14px;
}

.showcase-text p:last-child {
  margin-bottom: 0;
}

.details {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 260ms ease, opacity 260ms ease;
}

.details.is-open {
  opacity: 1;
}

.details-inner {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--c2-border);
}

@media (prefers-reduced-motion: reduce) {
  .details {
    transition: none;
  }
}

/* Slider */
.slider {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

@media (min-width: 640px) {
  .slider {
    min-height: 420px;
  }
}

.slider-stage {
  width: min(820px, 100%);
  aspect-ratio: 16/10;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--c2-border);
  background: var(--c2-bg-secondary);
}

.slider-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--c2-border);
  background: var(--c2-bg-secondary);
  opacity: 0.20;
  pointer-events: none;
}

.slider-side--left {
  left: -10%;
}

.slider-side--right {
  right: -10%;
}

.slider-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .slider-side {
    display: none;
  }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--c2-border);
  background: color-mix(in srgb, var(--c2-bg) 92%, transparent);
  color: var(--c2-fg);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.slider-arrow:hover {
  background: color-mix(in srgb, var(--c2-fg) 6%, var(--c2-bg));
}

.slider-arrow--left {
  left: 12px;
}

.slider-arrow--right {
  right: 12px;
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

@media (min-width: 768px) {
  .slider-dots {
    display: none;
  }
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--c2-border);
  background: transparent;
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--c2-fg);
  border-color: var(--c2-fg);
}

/* Map */
.map-placeholder {
  aspect-ratio: 16/9;
  border: 1px solid var(--c2-border);
  background: var(--c2-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-inner {
  text-align: center;
}

.map-icon {
  font-size: 42px;
  color: var(--c2-fg-muted);
  margin-bottom: 12px;
}

.map-text {
  margin: 0;
  color: var(--c2-fg-muted);
  font-weight: 300;
}



.metrics-grid {
  margin-top: 1px;
  border-top: 1px solid var(--c2-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric {
  border-right: 1px solid var(--c2-border);
  border-bottom: 1px solid var(--c2-border);
  background: var(--c2-bg);
  padding: 26px 18px;
  text-align: center;
}

.metric:nth-child(2n) {
  border-right: 0;
}

@media (min-width: 768px) {
  .metric {
    border-right: 1px solid var(--c2-border);
  }
  .metric:nth-child(4n) {
    border-right: 0;
  }
  .metric:nth-last-child(-n + 4) {
    border-bottom: 0;
  }
}

.metric-value {
  margin: 0;
  font-size: 26px;
  font-weight: 300;
}

.metric-label {
  margin: 8px 0 0;
  color: var(--c2-fg-muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Advantages */
.advantages {
  border-top: 1px solid var(--c2-border);
}

.adv-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c2-border);
  transition: padding-left 150ms ease;
}

.adv-item:hover {
  padding-left: 10px;
}

.adv-num {
  width: 42px;
  color: var(--c2-fg-muted);
  font-weight: 300;
}

.adv-text {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
}

/* Potential */
.potential-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--c2-border);
}

@media (min-width: 640px) {
  .potential-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .potential-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.potential-card {
  padding: 36px 22px;
  text-align: center;
  background: var(--c2-bg);
  transition: background 150ms ease;
  border-right: 1px solid var(--c2-border);
  border-bottom: 1px solid var(--c2-border);
}

.potential-card:hover {
  background: var(--c2-warm);
}

@media (min-width: 1024px) {
  .potential-card {
    border-bottom: 0;
  }
  .potential-card:last-child {
    border-right: 0;
  }
}

@media (max-width: 1023px) {
  .potential-card:nth-child(2n) {
    border-right: 0;
  }
}

.potential-icon {
  margin: 0 auto 16px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--c2-fg-muted);
  background: color-mix(in srgb, var(--c2-fg) 4%, transparent);
}

.potential-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 500;
}

.potential-desc {
  margin: 0;
  color: var(--c2-fg-muted);
  font-size: 13px;
  font-weight: 300;
}

/* Numbers */
.numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .numbers-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
  }
}

.number {
  text-align: center;
}

.number-value {
  margin: 0;
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 200;
  line-height: 1;
}

.number-suffix {
  font-size: 0.35em;
  font-weight: 300;
}

.number-label {
  margin: 14px 0 0;
  color: var(--c2-fg-muted);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* Contact */
.contact-card {
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--c2-border);
  border-radius: 18px;
  padding: 28px;
  background: var(--c2-bg);
  text-align: center;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 2px solid var(--c2-border);
  background: var(--c2-bg-secondary);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 18px;
}

.contact-name {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
}

.contact-role {
  margin: 0 0 16px;
  color: var(--c2-fg-muted);
  font-weight: 300;
}

.contact-info {
  margin: 0 0 18px;
  color: var(--c2-fg-muted);
  font-weight: 300;
}

.contact-info p {
  margin: 6px 0;
}

.contact-ico {
  display: inline-block;
  width: 22px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Form */
.lead-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--c2-border);
  background: var(--c2-bg);
  color: var(--c2-fg);
  outline: none;
  transition: border-color 150ms ease;
}

.input:focus {
  border-color: var(--c2-accent);
}

.error {
  margin: 0;
  color: #b42318;
  font-size: 13px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--c2-fg-muted);
  font-weight: 300;
}

.consent input {
  margin-top: 4px;
}

.form-actions {
  display: grid;
  gap: 12px;
  padding-top: 6px;
}

@media (min-width: 640px) {
  .form-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.toast {
  margin-top: 14px;
  border: 1px solid var(--c2-border);
  background: var(--c2-bg);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--c2-fg);
  font-weight: 400;
}

/* CTA */
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    align-items: center;
  }
}

/* Footer */
.footer {
  padding: 56px 0;
  background: var(--c2-fg);
  color: var(--c2-bg);
  border-top: 1px solid var(--c2-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 26px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.footer-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.footer-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--c2-bg) 70%, transparent);
}

.footer-list {
  display: grid;
  gap: 8px;
}

.footer-list .lang-select-wrap {
  justify-self: start;
  width: fit-content;
}

.footer-link {
  font-size: 13px;
  color: color-mix(in srgb, var(--c2-bg) 70%, transparent);
  transition: color 150ms ease;
}

.footer-link:hover {
  color: var(--c2-bg);
}

.footer-copy {
  border-top: 1px solid color-mix(in srgb, var(--c2-bg) 10%, transparent);
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: color-mix(in srgb, var(--c2-bg) 40%, transparent);
}

/* Mobile CTA */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  background: color-mix(in srgb, var(--c2-bg) 95%, transparent);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--c2-border);
  z-index: 40;
}

@media (min-width: 768px) {
  .mobile-cta {
    display: none;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 120;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

@media (max-width: 767px) {
  .cookie-banner {
    bottom: 92px;
  }
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-box {
  pointer-events: auto;
  width: min(1120px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--c2-fg);
  color: var(--c2-bg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.cookie-banner-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: color-mix(in srgb, var(--c2-bg) 92%, transparent);
}

.cookie-banner-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-btn {
  border: 1px solid color-mix(in srgb, var(--c2-bg) 20%, transparent);
  background: var(--c2-warm);
  color: var(--c2-fg);
  border-radius: 10px;
  padding: 10px 18px;
  cursor: pointer;
  transition: filter 150ms ease, transform 150ms ease;
  white-space: nowrap;
}

.cookie-banner-btn:hover {
  filter: brightness(0.98);
}

.cookie-banner-btn:active {
  transform: translateY(1px);
}

.cookie-banner-btn:focus-visible {
  outline: 2px solid var(--c2-warm);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .cookie-banner-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Policy page */
.policy {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.policy-title {
  margin: 18px 0 0;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.policy-text {
  margin: 0;
  color: var(--c2-fg-muted);
  line-height: 1.7;
}

.policy-list {
  margin: 0;
  padding-left: 18px;
  color: var(--c2-fg-muted);
  line-height: 1.7;
}

.policy-list li {
  margin: 6px 0;
}

.policy-actions {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--c2-bg) 92%, transparent);
  backdrop-filter: blur(18px);
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  height: min(80vh, 760px);
  display: grid;
  place-items: center;
}

.lightbox-image {
  max-width: 92vw;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 28px;
  background: color-mix(in srgb, var(--c2-fg) 8%, transparent);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px;
  background: color-mix(in srgb, var(--c2-fg) 8%, transparent);
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 450ms ease, transform 450ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .gallery-item img {
    transition: none;
  }
}
