@charset "UTF-8";
:root {
  --color-orange: #e06317;
  --color-orange-soft: rgba(224, 99, 23, 0.12);
  --color-brown: #483725;
  --color-yellow: #ffbb00;
  --color-yellow-bright: #fb0;
  --color-paper: #fdf7f3;
  --color-ink: #313337;
  --color-muted: #4a4e55;
  --color-border: #d9d9d9;
  --color-white: #ffffff;
  --color-whatsapp: #128c7e;
  --color-whatsapp-dark: #0e6b60;
  --color-instagram: #e1306c;
  /* aliases used across existing class names */
  --color-cyan: var(--color-orange);
  --color-cyan-soft: var(--color-orange-soft);
  --color-navy: var(--color-brown);
  --color-deep: var(--color-orange);
  --font-display: "Crimson Pro", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --container: 1194px;
  --header-h: 90.8px;
  --radius: 6px;
  --radius-lg: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-paper);
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 16px;
  color: var(--color-navy);
}

h2 {
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1;
}

h3 {
  font-size: 28px;
  line-height: normal;
}

p {
  margin: 0 0 16px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 13.6px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-cyan);
  opacity: 0.95;
  margin: 0 0 12px;
  line-height: 1.65;
}
.eyebrow--yellow {
  color: var(--color-yellow);
}

.section-head {
  margin-bottom: 50px;
  max-width: 600px;
}
.section-head--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}
.section-head--row > div {
  max-width: 480px;
}
.section-head--center {
  text-align: center;
  margin-inline: auto;
  max-width: 540px;
}
.section-head h2 {
  margin-bottom: 0;
}

.link-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-cyan);
  -webkit-transition: gap 0.25s var(--ease);
  transition: gap 0.25s var(--ease);
}
.link-arrow::before {
  content: "→";
  font-size: 16px;
}
.link-arrow:hover {
  gap: 14px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  -webkit-transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-transform 0.2s var(--ease);
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-transform 0.2s var(--ease);
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-transform 0.2s var(--ease);
}
.btn:hover {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  -webkit-transform: none;
  transform: none;
}
.btn--sm {
  font-size: 15px;
  padding: 12px 24px;
}
.btn--upper {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.btn--block {
  width: 100%;
  padding: 14px 24px;
}
.btn--navy {
  background: var(--color-brown);
  color: var(--color-white);
}
.btn--navy:hover:not(:disabled) {
  background: #3a2d1e;
}
.btn--deep {
  background: var(--color-orange);
  color: var(--color-white);
}
.btn--deep:hover:not(:disabled) {
  background: #c85412;
}
.btn--yellow {
  background: var(--color-yellow-bright);
  color: var(--color-white);
}
.btn--yellow:hover:not(:disabled) {
  -webkit-filter: brightness(0.96);
  filter: brightness(0.96);
}
.btn--cyan {
  background: var(--color-orange);
  color: var(--color-white);
}
.btn--cyan:hover:not(:disabled) {
  -webkit-filter: brightness(0.95);
  filter: brightness(0.95);
}
.btn--outline {
  background: transparent;
  color: var(--color-brown);
  border-color: var(--color-brown);
}
.btn--outline:hover {
  background: var(--color-brown);
  color: var(--color-white);
}
.btn--outline-orange {
  background: transparent;
  color: var(--color-orange);
  border-color: var(--color-orange);
}
.btn--outline-orange:hover {
  background: var(--color-orange);
  color: var(--color-white);
}
.btn--outline-yellow {
  background: transparent;
  color: var(--color-yellow-bright);
  border-color: var(--color-yellow-bright);
}
.btn--outline-yellow:hover {
  background: var(--color-yellow-bright);
  color: var(--color-brown);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-brown);
  border-color: var(--color-brown);
}
.btn--ghost:hover {
  background: var(--color-white);
}
.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  min-width: 274px;
  height: 50px;
}
.btn--whatsapp:hover:not(:disabled) {
  background: var(--color-whatsapp-dark);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-h);
  background: var(--color-paper);
  -webkit-box-shadow: 0 1px 0 rgba(49, 51, 55, 0.08);
  box-shadow: 0 1px 0 rgba(49, 51, 55, 0.08);
}
.header__inner {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  min-height: var(--header-h);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}
.header__logo {
  height: 50.8px;
  width: auto;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 36px;
}
.header__nav a:not(.btn) {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-brown);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.header__nav a:not(.btn):hover {
  color: var(--color-orange);
}
.header__toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}
.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-navy);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s var(--ease);
  transition: opacity 0.3s, -webkit-transform 0.3s var(--ease);
  transition: transform 0.3s var(--ease), opacity 0.3s;
  transition: transform 0.3s var(--ease), opacity 0.3s, -webkit-transform 0.3s var(--ease);
}
.header__toggle[aria-expanded=true] span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}
.header__toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.header__toggle[aria-expanded=true] span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1000px) {
  .header__toggle {
    display: block;
  }
  .header__nav {
    position: fixed;
    inset: 0;
    background: var(--color-paper);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 28px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s var(--ease);
    transition: -webkit-transform 0.4s var(--ease);
    transition: transform 0.4s var(--ease);
    transition: transform 0.4s var(--ease), -webkit-transform 0.4s var(--ease);
    z-index: 105;
  }
  .header__nav.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.hero {
  position: relative;
  height: 695px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: var(--color-white);
  overflow: visible;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #1a1612;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1.4s var(--ease), visibility 1.4s var(--ease);
  transition: opacity 1.4s var(--ease), visibility 1.4s var(--ease);
  will-change: opacity;
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero__slide.is-active .hero__img {
  -webkit-animation: hero-kenburns 7.5s ease-out forwards;
  animation: hero-kenburns 7.5s ease-out forwards;
}
.hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, right top, from(rgba(72, 55, 37, 0.45)), color-stop(42%, rgba(72, 55, 37, 0.18)), color-stop(70%, transparent)), -webkit-gradient(linear, left top, left bottom, from(rgba(26, 22, 18, 0.12)), to(rgba(26, 22, 18, 0.35)));
  background: linear-gradient(90deg, rgba(72, 55, 37, 0.45) 0%, rgba(72, 55, 37, 0.18) 42%, transparent 70%), linear-gradient(180deg, rgba(26, 22, 18, 0.12) 0%, rgba(26, 22, 18, 0.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  padding: calc(var(--header-h) + 40px) 0 210px;
  max-width: 590px;
  margin-left: max(24px, (100% - var(--container)) / 2);
}
.hero__place {
  font-family: var(--font-ui);
  font-size: 13.6px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.95;
  margin: 0;
  line-height: 18px;
}
.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 600;
  line-height: 1;
  margin: 0;
  color: var(--color-orange);
}
.hero__lead {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-white);
  max-width: 590px;
  margin: 24px 0 0;
}
.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}
.hero__perks {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: min(100% - 48px, var(--container));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.hero__perks li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  min-height: 105px;
  padding: 12px 24px;
  background: var(--color-paper);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero__perks img {
  width: 42px;
  height: 42px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.hero__perks strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-brown);
  line-height: normal;
}
.hero__perks span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-brown);
  margin-top: 4px;
}

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

@keyframes hero-kenburns {
  from {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    -webkit-transition: none;
    transition: none;
  }
  .hero__slide.is-active .hero__img {
    -webkit-animation: none;
    animation: none;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media (max-width: 1100px) {
  .hero {
    height: auto;
    min-height: 640px;
  }
  .hero__content {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
  }
  .hero__perks {
    position: relative;
    left: auto;
    bottom: auto;
    -webkit-transform: none;
    transform: none;
    margin: -1px auto 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .hero__perks li {
    border-radius: var(--radius-lg);
  }
}
@media (max-width: 560px) {
  .hero__perks {
    grid-template-columns: 1fr;
    padding-bottom: 16px;
  }
  .hero__perks li {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 85px;
  }
  .hero__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
.booking {
  padding: 80px 0 60px;
  background: var(--color-paper);
}
.booking__panel {
  display: grid;
  grid-template-columns: 356px 1fr;
  gap: 174px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--color-white);
  border-radius: 12px;
  padding: 58px 52px;
  -webkit-box-shadow: 0 20px 50px rgba(72, 55, 37, 0.06);
  box-shadow: 0 20px 50px rgba(72, 55, 37, 0.06);
}
.booking__intro h2 {
  margin-bottom: 12px;
  color: var(--color-brown);
}
.booking__intro p:last-child {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-ink);
  font-weight: 500;
}
.booking__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
  margin-left: auto;
}
.booking__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.booking__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
.booking__field label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-muted);
  opacity: 0.95;
}
.booking__field select,
.booking__field input {
  width: 100%;
  height: 50px;
  padding: 13px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-muted);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%234a4e55' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 40px;
}
.booking__field select:focus,
.booking__field input:focus {
  outline: none;
  border-color: var(--color-orange);
  -webkit-box-shadow: 0 0 0 3px var(--color-orange-soft);
  box-shadow: 0 0 0 3px var(--color-orange-soft);
}
.booking__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 12px;
}
.booking__hint {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-whatsapp);
}
.booking__error {
  margin: 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #fef2f2;
  color: #b91c1c;
  font-size: 13px;
}

.flatpickr-calendar {
  font-family: var(--font-body);
  -webkit-box-shadow: 0 16px 40px rgba(72, 55, 37, 0.18);
  box-shadow: 0 16px 40px rgba(72, 55, 37, 0.18);
  border-radius: 12px;
  z-index: 120 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover {
  background: var(--color-brown);
  border-color: var(--color-brown);
}

.flatpickr-day.inRange {
  background: var(--color-orange-soft);
  border-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 1000px) {
  .booking__panel {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 28px;
  }
  .booking__form {
    margin-left: 0;
    max-width: none;
  }
}
@media (max-width: 600px) {
  .booking__row,
  .booking__footer {
    grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .booking__hint {
    text-align: center;
  }
  .btn--whatsapp {
    width: 100%;
    min-width: 0;
  }
}
.about {
  padding: 60px 0 80px;
  background: var(--color-paper);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 152px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.about__media img {
  width: min(100%, 314px);
  height: auto;
}
.about__copy {
  max-width: 545px;
}
.about__text {
  margin-bottom: 36px;
}
.about__text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-ink);
  font-weight: 500;
  margin-bottom: 16px;
}
.about__text p:last-child {
  margin-bottom: 0;
}
.about__text p strong {
  font-weight: 700;
}

.kitnets {
  padding: 60px 0 80px;
  background: var(--color-paper);
}
.kitnets__panel {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 52px;
}
.kitnets__grid {
  display: grid;
  gap: 22px;
}
.kitnets__grid--top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 22px;
}
.kitnets__grid--bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kit-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.kit-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--color-yellow-bright);
  color: var(--color-brown);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 5.6px;
}
.kit-card__media {
  display: block;
  width: 100%;
  height: 234px;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  cursor: pointer;
  background: #ddd;
}
.kit-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.45s var(--ease);
  transition: -webkit-transform 0.45s var(--ease);
  transition: transform 0.45s var(--ease);
  transition: transform 0.45s var(--ease), -webkit-transform 0.45s var(--ease);
}
.kit-card__media:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}
.kit-card__body {
  padding: 16px 24px 24px;
  border: 1px solid var(--color-border);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 20px;
}
.kit-card__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
}
.kit-card__meta {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-ink);
  text-align: right;
  line-height: 1.2;
}
.kit-card__meta span {
  font-weight: 700;
}
.kit-card__meta strong {
  font-weight: 800;
}
.kit-card h3 {
  margin: 0;
  color: var(--color-orange);
  font-size: 28px;
}
.kit-card__title--accent {
  color: var(--color-yellow-bright) !important;
}
.kit-card__list {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.kit-card__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  padding: 2px 0;
  line-height: normal;
}
.kit-card__list li::before {
  content: "";
  width: 6.39px;
  height: 6.39px;
  margin-top: 5px;
  border-radius: 3.2px;
  background: var(--color-orange);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.kit-card__list--accent li::before {
  background: var(--color-yellow-bright);
}
.kit-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}
.kit-card__actions .btn {
  width: 100%;
  min-height: 54px;
  padding: 14px 10px;
  gap: 6px;
}

.gallery {
  padding: 80px 0 100px;
  background: var(--color-white);
  overflow: hidden;
}
.gallery .section-head {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  margin-bottom: 50px;
}
.gallery__slider {
  padding: 0 16px;
}
.gallery .swiper-slide {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 569/427;
}
.gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery .swiper-slide span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(49, 51, 55, 0.72);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}
.gallery__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.gallery__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: 28px;
  line-height: 1;
  color: var(--color-brown);
  -webkit-transition: background 0.2s, color 0.2s, border-color 0.2s;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gallery__btn:hover {
  background: var(--color-brown);
  color: var(--color-white);
  border-color: var(--color-brown);
}

.location {
  padding: 80px 0 100px;
  background: var(--color-paper);
}
.location__grid {
  display: grid;
  grid-template-columns: 354px 1fr;
  gap: 95px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.location__copy p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-ink);
  margin-bottom: 24px;
}
.location__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 12px;
}
.location__instagram {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--color-instagram);
  color: var(--color-white);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.2s var(--ease), -webkit-filter 0.2s;
  transition: -webkit-transform 0.2s var(--ease), -webkit-filter 0.2s;
  transition: transform 0.2s var(--ease), filter 0.2s;
  transition: transform 0.2s var(--ease), filter 0.2s, -webkit-transform 0.2s var(--ease), -webkit-filter 0.2s;
}
.location__instagram:hover {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-filter: brightness(1.05);
  filter: brightness(1.05);
}
.location__map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 440px;
  background: var(--color-white);
}
.location__map iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}

.contact {
  padding: 0 0 80px;
  background: var(--color-paper);
}
.contact__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  min-height: 352px;
  padding: 72px;
  background: var(--color-yellow-bright);
  border-radius: 12px;
  color: var(--color-brown);
}
.contact__copy {
  max-width: 408px;
}
.contact__copy .eyebrow {
  color: var(--color-orange);
}
.contact__copy h2 {
  color: var(--color-brown);
}
.contact__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-brown);
  font-weight: 500;
}
.contact__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 17px;
}
.contact__whatsapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 254px;
  height: 95px;
  border-radius: var(--radius);
  background: var(--color-brown);
  color: var(--color-white);
}
.contact__whatsapp strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}
.contact__whatsapp span {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 6px;
}
.contact__cta {
  width: 254px;
  height: 96px;
  font-size: 12px;
}

.footer {
  background: var(--color-paper);
  padding-top: 80px;
}
.footer__top {
  display: grid;
  grid-template-columns: 174px 1fr auto;
  gap: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 60px;
}
.footer__logo {
  height: 61px;
  width: auto;
}
.footer__label {
  font-family: var(--font-ui);
  font-size: 13.6px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-brown);
  opacity: 0.95;
  margin: 0 0 3px;
}
.footer__address {
  text-align: center;
}
.footer__address p:last-child {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
}
.footer__top-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-orange);
}
.footer__top-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(72, 55, 37, 0.06);
  color: var(--color-orange);
}
.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 28px 0 40px;
}
.footer__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
.footer__bottom-inner p {
  margin: 0;
  font-size: 14px;
  color: var(--color-muted);
}
.footer__mark {
  width: 46px;
  height: auto;
  opacity: 0.9;
}

.float-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 10px 28px rgba(18, 140, 126, 0.4);
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.4);
  -webkit-transition: background 0.25s, -webkit-transform 0.25s var(--ease);
  transition: background 0.25s, -webkit-transform 0.25s var(--ease);
  transition: transform 0.25s var(--ease), background 0.25s;
  transition: transform 0.25s var(--ease), background 0.25s, -webkit-transform 0.25s var(--ease);
}
.float-wa:hover {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
  background: var(--color-whatsapp-dark);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden] {
  display: none !important;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.88);
  cursor: pointer;
}
.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  max-height: calc(100vh - 48px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  outline: none;
}
.lightbox__top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  color: var(--color-paper);
}
.lightbox__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--color-paper);
}
.lightbox__count {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(253, 247, 243, 0.8);
}
.lightbox__close {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(253, 247, 243, 0.12);
  color: var(--color-paper);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.lightbox__close:hover {
  background: var(--color-orange);
  color: var(--color-white);
}
.lightbox__stage {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  min-height: 0;
}
.lightbox__slider {
  width: 100%;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}
.lightbox__slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: min(72vh, 720px);
  background: transparent;
}
.lightbox__slider img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.lightbox__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(253, 247, 243, 0.28);
  background: rgba(253, 247, 243, 0.1);
  color: var(--color-paper);
  font-size: 28px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background 0.2s, border-color 0.2s, color 0.2s;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lightbox__nav:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}
.lightbox__nav[hidden] {
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 700px) {
  .lightbox {
    padding: 12px;
  }
  .lightbox__top {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }
  .lightbox__count {
    grid-column: 1/-1;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .lightbox__stage {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lightbox__nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
  }
  .lightbox__nav--prev {
    left: 8px;
  }
  .lightbox__nav--next {
    right: 8px;
  }
  .lightbox__slider .swiper-slide {
    height: min(62vh, 520px);
  }
}
@media (max-width: 1100px) {
  .about__grid,
  .location__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .kitnets__panel {
    padding: 32px 24px;
  }
  .kitnets__grid--top,
  .kitnets__grid--bottom {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    justify-items: center;
  }
  .footer__address {
    text-align: center;
  }
  .contact__panel {
    padding: 48px 28px;
    min-height: 0;
  }
}
@media (max-width: 700px) {
  .about__media img {
    width: 220px;
  }
  .kit-card__actions {
    grid-template-columns: 1fr;
  }
  .kit-card__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .kit-card__meta {
    text-align: left;
  }
}