﻿:root {
  --ink: #20221e;
  --muted: #65665d;
  --paper: #f5f4ed;
  --cream: #e9e8dc;
  --lime: #d8ed63;
  --line: #c8c9bd;
  --white: #fbfbf7;
  --radius: 18px;
}
* {
  box-sizing: border-box;
}
html {
  max-width: 100%;
  overflow-x: clip;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
body {
  max-width: 100%;
  overflow-x: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, sans-serif;
}
main {
  padding-top: 78px;
}
body,
button,
input,
select,
textarea {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
  font: inherit;
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
#comparison:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}
.wrap {
  width: min(1180px, calc(100% - clamp(28px, 6vw, 48px)));
  margin: auto;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
.eyebrow {
  font:
    500 11px "DM Mono",
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 244, 237, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(32, 34, 30, 0.12);
  box-shadow: 0 8px 24px rgba(32, 34, 30, 0.04);
}
.nav {
  position: relative;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.logo:hover,
.logo:focus-visible {
  opacity: 0.78;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--ink);
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header-phone::before {
  content: "✆";
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-style: normal;
}
.header-phone:hover,
.header-phone:focus-visible {
  color: #65665d;
}
.logo-mark {
  display: inline-block;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50% 50% 50% 4px;
  position: relative;
  transform: rotate(-18deg);
  box-shadow: 2px 3px 0 rgba(32, 34, 30, 0.12);
}
.logo-mark:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  left: 9px;
  top: 9px;
}
.nav-links {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max-content;
  transform: translate(-50%, -50%);
  display: flex;
  gap: clamp(16px, 2.4vw, 30px);
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(32, 34, 30, 0.14);
  border-radius: 8px;
  background: var(--white);
}
.menu-toggle span {
  width: 17px;
  height: 1.5px;
  background: var(--ink);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.nav-links a {
  position: relative;
  padding: 7px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links a:hover {
  color: var(--ink);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-height: 48px;
  padding: 0 21px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: 0.2s ease;
}
.button:hover {
  background: #4b4d40;
  transform: translateY(-2px);
}
.button.light {
  background: var(--lime);
  color: var(--ink);
}
.button.light:hover {
  background: #e4f47f;
}
.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 78px);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #303329;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(20, 22, 18, 0.28);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - clamp(28px, 6vw, 48px)));
  margin: 0 auto;
  padding: 72px 0;
  color: var(--white);
  pointer-events: none;
}
.hero-logo {
  position: absolute;
  top: clamp(24px, 4vw, 52px);
  right: clamp(28px, 7vw, 110px);
  z-index: 4;
  width: clamp(104px, 12vw, 160px);
  height: auto;
  border-radius: 100px;
  box-shadow: 0 14px 34px rgba(20, 22, 18, 0.26);
  pointer-events: none;
}
.hero > .compare .before-label,
.hero > .compare .after-label {
  display: none;
}
.hero-copy a,
.hero-copy button {
  pointer-events: auto;
}
.hero-copy .eyebrow {
  color: var(--lime);
}
.hero-copy > p {
  color: rgba(251, 251, 247, 0.86);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.22);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  max-width: 540px;
  margin: 19px 0 25px;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  font-weight: 700;
  overflow-wrap: break-word;
}
h1 em,
h2 em {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.hero-copy > p {
  max-width: 410px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.hero-smalltext {
  color: var(--lime) !important;
  text-shadow: 0 2px 14px rgba(20, 22, 18, 0.42);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}
.hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(20, 22, 18, 0.48);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 22px rgba(20, 22, 18, 0.16);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.hero-phone:hover,
.hero-phone:focus-visible {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-1px);
}
.hero-social {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(20, 22, 18, 0.42);
  box-shadow: 0 8px 22px rgba(20, 22, 18, 0.14);
}
.social-inline a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.social-inline a:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-1px);
}
.hero-social a {
  width: 36px;
  height: 36px;
  font-size: 15px;
}
.text-link {
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.compare {
  position: absolute;
  inset: clamp(14px, 3vw, 28px) clamp(16px, 3.4vw, 32px);
  z-index: 1;
  height: auto;
  overflow: hidden;
  background: #d4d4cc;
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(20, 22, 18, 0.22);
  cursor: default;
  touch-action: none;
  user-select: none;
}
.comparison-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  object-position: center center;
  user-select: none;
  pointer-events: none;
}
.after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 52%);
}
.compare-label {
  position: absolute;
  top: 20px;
  z-index: 3;
  padding: 9px 14px;
  border: 1px solid rgba(251, 251, 247, 0.35);
  border-radius: 999px;
  font:
    500 9px "DM Mono",
    monospace;
  letter-spacing: 0.14em;
  line-height: 1;
  background: rgba(20, 22, 18, 0.62);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(20, 22, 18, 0.18);
  backdrop-filter: blur(8px);
}
.before-label {
  left: 20px;
}
.after-label {
  right: 20px;
  border-color: rgba(32, 34, 30, 0.2);
  background: rgba(216, 237, 99, 0.92);
  color: var(--ink);
}
.compare-hint {
  position: absolute;
  right: 20px;
  bottom: 22px;
  z-index: 3;
  padding: 9px 13px;
  border: 1px solid rgba(251, 251, 247, 0.25);
  border-radius: 999px;
  background: rgba(20, 22, 18, 0.58);
  color: rgba(251, 251, 247, 0.9);
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}
.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 2px;
  background: var(--white);
  z-index: 4;
  pointer-events: none;
}
.slider-line:after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 19px;
  opacity: 0;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.compare.show-slider-handle .slider-line:after {
  opacity: 1;
}
#comparison {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.intro-band {
  background: var(--ink);
  color: var(--white);
  padding: 20px 0;
}
.compare.show-slider-handle {
  cursor: ew-resize;
  gap: 20px;
}
.intro-band span:last-child {
  color: var(--lime);
  font:
    500 11px "DM Mono",
    monospace;
}
section {
  padding: 112px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 45px;
  gap: 30px;
}
.section-heading > *,
.booking-grid > *,
.why-grid > *,
.faq-grid > *,
.contact-inner > *,
.footer-top > * {
  min-width: 0;
}
h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.07em;
  margin: 13px 0 0;
}
.section-heading p {
  max-width: 330px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 4px;
  font-size: 14px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(18px, 3vw, 40px);
}
.service {
  position: relative;
  min-height: 520px;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}
.service:not(:first-child) {
  padding-left: 0;
}
.service:last-child {
  border-right: 0;
}
.service::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 22, 18, 0.2) 18%,
    rgba(20, 22, 18, 0.88) 100%
  );
  pointer-events: none;
}
.service-image-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--cream);
}
.service-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}
.service:hover .service-image {
  transform: scale(1.05);
}
.service-number {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font:
    500 11px "DM Mono",
    monospace;
  color: rgba(251, 251, 247, 0.78);
  gap: 12px;
}
.service-number span:last-child {
  text-align: right;
}
.service > div:not(.service-image-frame):not(.service-number) {
  position: absolute;
  right: 22px;
  bottom: 58px;
  left: 22px;
  z-index: 2;
}
.service h3 {
  font-size: 22px;
  letter-spacing: -0.05em;
  color: var(--white);
  margin: 0 0 10px;
}
.service p {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.48);
}
.service-arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  font-size: 22px;
  color: var(--lime);
}
.booking {
  background: var(--cream);
  overflow: hidden;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: start;
}
.booking-grid > div:first-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
}
.booking-grid > div > p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 360px;
  font-size: 15px;
}
.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 14px;
}
.size-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background-color: #596057;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  min-height: 178px;
  padding: 22px;
  color: var(--white);
  text-align: left;
  transition: 0.2s ease;
}
.size-card-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.size-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(20, 22, 18, 0.2),
    rgba(20, 22, 18, 0.78)
  );
  transition: background 0.2s ease;
}
.size-card::after {
  content: "↗";
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(20, 22, 18, 0.34);
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  transition: 0.2s ease;
}
.size-card:hover,
.size-card.selected {
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(32, 34, 30, 0.1);
}
.size-card:hover .size-card-image,
.size-card.selected .size-card-image {
  transform: scale(1.05);
}
.size-card:hover::before,
.size-card.selected::before {
  background: linear-gradient(
    180deg,
    rgba(20, 22, 18, 0.28),
    rgba(20, 22, 18, 0.84)
  );
}
.size-card:hover::after,
.size-card.selected::after {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
  transform: translate(2px, -2px);
}
.size-card small {
  display: block;
  font:
    500 10px "DM Mono",
    monospace;
  position: relative;
  z-index: 1;
  color: rgba(251, 251, 247, 0.82);
  margin: 0 48px 10px 0;
}
.size-card strong {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 20px;
  letter-spacing: -0.05em;
}
.size-card span {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(251, 251, 247, 0.82);
}
.size-cta {
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 14px;
  padding: 20px 22px;
  margin-top: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
}
.size-cta .button {
  background: var(--lime);
  color: var(--ink);
}
.gallery-showcase {
  background: var(--paper);
}
.gallery-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 45px;
}
.gallery-intro p {
  max-width: 330px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 20px;
}
.gallery-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -0.04em;
}
.gallery-card .compare {
  position: relative;
  inset: auto;
  width: 100%;
  height: clamp(260px, 28vw, 360px);
  border-radius: 18px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}
.step-number {
  color: var(--muted);
  font:
    500 12px "DM Mono",
    monospace;
}
.step h3 {
  font-size: 25px;
  letter-spacing: -0.06em;
  margin: 66px 0 12px;
}
.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 290px;
}
.why {
  background: var(--ink);
  color: var(--white);
}
.why .eyebrow,
.why p {
  color: #b0b1a6;
}
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
}
.why h2 {
  max-width: 500px;
}
.why-list {
  border-top: 1px solid #55574d;
}
.why-item {
  display: grid;
  grid-template-columns: minmax(28px, 40px) 1fr;
  gap: 16px;
  padding: 23px 0;
  border-bottom: 1px solid #55574d;
}
.why-item b {
  font:
    500 11px "DM Mono",
    monospace;
  color: var(--lime);
}
.why-item h3 {
  font-size: 17px;
  margin: 0 0 7px;
  letter-spacing: -0.03em;
}
.why-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  font-size: 21px;
  font-weight: 400;
}
details[open] summary:after {
  content: "−";
}
details p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
  max-width: 600px;
  margin: 15px 0 0;
}
.contact {
  background: var(--lime);
  padding: 104px 0;
}
.contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 96px;
}
.contact h2 {
  max-width: 620px;
}
.contact-copy {
  flex: 1.2;
}
.contact-details {
  flex: 0.8;
  max-width: 390px;
}
.contact-details p,
.contact-location p {
  max-width: 320px;
  line-height: 1.6;
  font-size: 14px;
}
.contact-location {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(32, 34, 30, 0.25);
}
.contact-location p {
  margin: 10px 0 0;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 26px;
}
.contact-actions .button {
  background: var(--ink);
}
.contact-actions .contact-whatsapp {
  background: var(--white);
  color: var(--ink);
}
.contact-actions .text-link {
  width: 100%;
}
footer {
  background: var(--ink);
  color: var(--white);
  padding: 52px 0 26px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 70px;
}
.footer-top .logo {
  width: fit-content;
  margin-bottom: 18px;
}
.footer-top p {
  color: #aeb0a5;
  font-size: 13px;
  line-height: 1.6;
  max-width: 260px;
  margin-top: 17px;
}
.footer-links {
  display: flex;
  gap: 60px;
  font-size: 13px;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #aeb0a5;
}
.footer-social {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.footer-location-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #aeb0a5;
  transition: color 0.2s ease;
}
.footer-location-link:hover,
.footer-location-link:focus-visible {
  color: var(--lime);
}
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 220px;
  color: #aeb0a5;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}
.footer-email::before {
  content: "✉";
  color: var(--lime);
  font-size: 14px;
  line-height: 1;
}
.footer-email:hover,
.footer-email:focus-visible {
  color: var(--lime);
}
.footer-location-pin {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.footer-location-pin::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.footer-links strong {
  color: var(--white);
  margin-bottom: 5px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #4d4f46;
  padding-top: 20px;
  color: #aeb0a5;
  font:
    500 10px "DM Mono",
    monospace;
}
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  place-items: start center;
  overflow-y: auto;
  padding: clamp(8px, 3vw, 24px);
  background: rgba(20, 22, 18, 0.62);
  backdrop-filter: blur(8px);
}
.booking-modal.is-open {
  display: grid;
}
.booking-dialog {
  width: min(900px, 100%);
  max-height: calc(100svh - 34px);
  margin: 17px 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 28px 32px 34px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(20, 22, 18, 0.24);
  animation: modal-in 0.24s ease both;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.booking-dialog::-webkit-scrollbar {
  display: none;
}
@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.booking-dialog-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(32, 34, 30, 0.12);
}
.booking-dialog h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 43px);
  letter-spacing: -0.06em;
}
.modal-close {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-size: 27px;
  line-height: 1;
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}
.booking-form[hidden],
.booking-success[hidden] {
  display: none;
}
.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font:
    500 12px Manrope,
    sans-serif;
  letter-spacing: 0;
  text-transform: none;
}
.home-size-panel {
  padding: 24px 20px 18px;
  border: 1px solid rgba(32, 34, 30, 0.04);
  border-radius: 16px;
  background: #f1f2ed;
}
.stepper-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stepper-field {
  gap: 8px;
  color: var(--ink) !important;
  font-family: Manrope, sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.stepper {
  display: grid;
  grid-template-columns: minmax(44px, 52px) 1fr minmax(44px, 52px);
  align-items: center;
  min-height: 62px;
  border: 1px solid #d8d9d4;
  border-radius: 13px;
  background: var(--white);
  overflow: hidden;
  text-align: center;
  font-size: 21px;
}
.stepper button {
  height: 44px;
  margin: 8px;
  border-radius: 10px;
  background: #eef0ed;
  color: var(--muted);
  font-size: 27px;
  line-height: 1;
}
.stepper button:last-child {
  background: var(--ink);
  color: var(--white);
}
.home-size-panel > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.extras {
  min-width: 0;
  padding: 0;
  border: 0;
}
.extras legend,
.form-section-title {
  margin-bottom: 12px;
  color: var(--ink);
  font:
    700 15px Manrope,
    sans-serif;
  letter-spacing: 0;
  text-transform: none;
}
.extra-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.extra-options label {
  position: relative;
  display: block;
  color: var(--ink);
  font:
    500 13px Manrope,
    sans-serif;
  letter-spacing: 0;
  text-transform: none;
}
.extra-options input {
  position: absolute;
  opacity: 0;
}
.extra-options span {
  display: block;
  padding: 14px 15px;
  border: 1px solid #e0e1dc;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.extra-options input:checked + span {
  border-color: var(--ink);
  background: var(--lime);
}
.form-section-title {
  margin-top: 4px;
  margin-bottom: -4px;
}
.upload-box {
  position: relative;
  min-height: 165px;
  color: var(--ink) !important;
  font:
    700 15px Manrope,
    sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.upload-title {
  display: block;
  margin-bottom: 12px;
}
.upload-box input[type="file"] {
  position: absolute;
  inset: 30px 0 0;
  z-index: 2;
  height: auto;
  min-height: 130px;
  opacity: 0;
  cursor: pointer;
}
.upload-content {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  border: 1px dashed #cfd1ca;
  border-radius: 15px;
  background: #fafbf8;
  text-align: center;
  overflow-wrap: anywhere;
}
.upload-content strong {
  font-size: 25px;
  font-weight: 400;
}
.upload-content b {
  font-size: 14px;
}
.upload-content small {
  color: #9a9c96;
  font-size: 11px;
  font-weight: 400;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font:
    500 14px Manrope,
    sans-serif;
  letter-spacing: 0;
  text-transform: none;
}
.booking-form textarea {
  resize: vertical;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(216, 237, 99, 0.55);
}
.form-full {
  grid-column: 1 / -1;
}
.form-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding-top: 4px;
  color: #8a8d86;
  font-size: 11px;
  line-height: 1.5;
}
.submit-booking {
  width: 100%;
  min-height: 58px;
  border-radius: 999px;
  font-size: 14px;
}
.booking-success {
  text-align: center;
  padding: 22px 12px 8px;
}
.success-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-size: 25px;
}
.booking-success h3 {
  margin-bottom: 8px;
  font-size: 27px;
  letter-spacing: -0.05em;
}
.booking-success p {
  max-width: 390px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 1020px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(14px, 3vw, 24px);
    left: clamp(14px, 3vw, 24px);
    transform: none;
    flex-direction: column;
    gap: 2px;
    padding: 12px;
    border: 1px solid rgba(32, 34, 30, 0.1);
    border-radius: 14px;
    background: rgba(251, 251, 247, 0.98);
    box-shadow: 0 18px 40px rgba(32, 34, 30, 0.14);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 10px;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  .wrap {
    width: min(100% - 32px, 580px);
  }
  .nav {
    height: 68px;
  }
  .menu-toggle {
    margin-right: 8px;
  }
  .nav .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
  }
  .header-phone {
    font-size: 13px;
  }
  .header-phone::before {
    width: 23px;
    height: 23px;
    font-size: 12px;
  }
  .hero-smalltext {
    display: none;
  }
  .hero-contact-row {
    margin-top: 18px;
    gap: 10px;
  }
  .hero-phone {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }
  .hero-social {
    min-height: 44px;
    padding: 4px 6px;
  }
  .hero-social a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .logo {
    min-width: 0;
    font-size: clamp(14px, 4vw, 18px);
    letter-spacing: 0.03em;
  }
  .logo-mark {
    width: 25px;
    height: 25px;
  }
  .logo-mark:after {
    left: 7px;
    top: 7px;
  }
  section.wrap.hero,
  .hero {
    width: 100vw !important;
    max-width: none !important;
    min-height: calc(100svh - 68px);
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .hero-copy {
    width: calc(100% - 32px) !important;
    padding: 60px 0;
  }
  .hero-logo {
    top: 18px;
    right: 16px;
    width: 88px;
    border-radius: 100px;
  }
  .compare {
    inset: 0;
    width: 100vw !important;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    touch-action: pan-y;
  }
  .hero .compare {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
  }
  .gallery-card .compare {
    inset: auto;
    width: 100% !important;
    height: clamp(260px, 72vw, 340px);
    border-radius: 18px;
  }
  .compare-label {
    top: 16px;
  }
  .before-label {
    left: 16px;
  }
  .after-label {
    right: 16px;
  }
  .compare-hint {
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }
  .intro-band .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  section {
    padding: 78px 0;
  }
  .section-heading,
  .contact-inner {
    display: block;
  }
  .contact {
    padding: 78px 0;
  }
  .contact-details {
    max-width: none;
    margin-top: 38px;
  }
  .contact-copy h2,
  .booking-grid h2,
  .why h2,
  .faq-grid h2 {
    max-width: 100%;
  }
  .section-heading p {
    margin-top: 23px;
  }
  .gallery-intro {
    display: block;
  }
  .gallery-intro p {
    margin-top: 23px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-grid {
    gap: 24px;
  }
  .service {
    min-height: 460px;
    border: 0;
  }
  .service:nth-child(2) {
    border: 0;
  }
  .service:nth-child(3) {
    padding-left: 0;
    border: 0;
  }
  .service:nth-child(4) {
    border: 0;
  }
  .booking-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .booking-grid > div:first-child {
    display: block;
  }
  .size-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .size-card {
    min-height: 165px;
    padding: 18px;
  }
  .size-card small {
    margin-bottom: 28px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .step h3 {
    margin-top: 35px;
  }
  .footer-top {
    flex-direction: column;
    padding-bottom: 48px;
  }
  .footer-links {
    gap: 30px;
    flex-wrap: wrap;
  }
  .booking-dialog {
    width: 100%;
    max-height: calc(100svh - 20px);
    margin: 10px 0;
    padding: 24px 20px 26px;
  }
  .booking-form {
    grid-template-columns: 1fr;
  }
  .stepper-row,
  .extra-options {
    grid-template-columns: 1fr;
  }
  .stepper-row {
    gap: 14px;
  }
  .form-full {
    grid-column: auto;
  }
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .form-footer .button {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .size-grid {
    grid-template-columns: 1fr;
  }
  .size-card {
    min-height: 132px;
  }
  .size-card small {
    margin-bottom: 20px;
  }
  .contact-actions .button {
    width: 100%;
  }
}
@media (max-width: 420px) {
  html,
  body {
    overflow-x: hidden;
  }
  .wrap:not(.hero) {
    width: calc(100% - 28px);
  }
  .wrap.hero,
  .hero {
    width: 100vw !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .compare {
    inset: 0;
    width: 100vw !important;
  }
  .gallery-card .compare {
    inset: auto;
    width: 100% !important;
    border-radius: 18px;
  }
  section {
    padding: 64px 0;
  }
  h1 {
    font-size: clamp(38px, 12vw, 48px);
    letter-spacing: -0.055em;
  }
  h2 {
    font-size: clamp(34px, 10vw, 40px);
    letter-spacing: -0.055em;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .nav .button {
    display: none;
  }
  .nav {
    gap: 10px;
  }
  .menu-toggle {
    margin-left: auto;
    margin-right: 0;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service {
    min-height: 430px;
  }
  .service h3 {
    font-size: 18px;
  }
  .size-card {
    min-height: 132px;
  }
  .size-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .size-cta .button {
    width: 100%;
  }
  .booking-modal {
    padding: 8px;
  }
  .booking-dialog {
    border-radius: 18px;
    padding: 20px 16px 22px;
  }
  .booking-dialog-header {
    gap: 12px;
    margin-bottom: 24px;
  }
  .extra-options {
    gap: 8px;
  }
  .extra-options span {
    padding: 12px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    line-height: 1.5;
  }
}
