:root {
  --blue: #0054a6;
  --blue-dark: #073d74;
  --navy: #061b33;
  --aqua: #00a9c8;
  --gold: #f6c445;
  --ink: #17202b;
  --muted: #667180;
  --soft: #f4f7fb;
  --paper: #ffffff;
  --line: rgba(23, 32, 43, .12);
  --shadow: 0 22px 60px rgba(5, 25, 48, .17);
  --font-soft: "Filson Soft", Inter, Arial, sans-serif;
  --container: 1180px;
  --section-x: clamp(18px, 5vw, 76px);
  --section-y: clamp(56px, 7vw, 96px);
}

@font-face {
  font-family: "Filson Soft";
  src: url("fontes-italnea-filson-/FilsonSoft-Thin.ttf") format("truetype");
  font-style: normal;
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: "Filson Soft";
  src: url("fontes-italnea-filson-/FilsonSoft-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Filson Soft";
  src: url("fontes-italnea-filson-/FilsonSoft-LightItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Filson Soft";
  src: url("fontes-italnea-filson-/FilsonSoft-Book.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Filson Soft";
  src: url("fontes-italnea-filson-/FilsonSoft-BookItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Filson Soft";
  src: url("fontes-italnea-filson-/FilsonSoft-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Filson Soft";
  src: url("fontes-italnea-filson-/FilsonSoft-MediumItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Filson Soft";
  src: url("fontes-italnea-filson-/FilsonSoft-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Filson Soft";
  src: url("fontes-italnea-filson-/FilsonSoft-BoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Filson Soft";
  src: url("fontes-italnea-filson-/FilsonSoft-Black.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Filson Soft";
  src: url("fontes-italnea-filson-/FilsonSoft-BlackItalic.otf") format("opentype");
  font-style: italic;
  font-weight: 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

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

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-soft);
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-soft);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(38px, 3.25vw, 50px);
  font-weight: 400;
  line-height: 1.06;
}

h1 > span {
  display: block;
}

h1 strong {
  display: block;
  font-weight: 900;
}

.hero-nowrap {
  white-space: normal;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(19px, 1.2vw, 22px);
  line-height: 1.18;
}

p {
  font-size: clamp(16px, .95vw, 18px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 14px 28px rgba(0, 84, 166, .24);
}

.button-secondary {
  color: #fff;
  background: var(--navy);
}

.button-light {
  color: var(--blue-dark);
  background: #fff;
}

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

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(380px, 520px);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  justify-content: center;
  padding: clamp(174px, 13vw, 204px) var(--section-x) clamp(56px, 7vw, 92px);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(38, 24, 14, .52);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(176, 112, 49, .18);
  mix-blend-mode: soft-light;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-brand,
.hero-copy,
.lead-card {
  position: relative;
  z-index: 2;
}

.hero-brand {
  position: absolute;
  top: clamp(24px, 3.2vw, 38px);
  left: 50%;
  width: min(calc(100% - (var(--section-x) * 2)), var(--container));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .54);
}

.hero-brand img {
  width: clamp(164px, 13vw, 198px);
  height: auto;
}

.hero-copy p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.08vw, 19px);
  font-weight: 500;
}

.hero-copy p strong {
  color: #fff;
  font-weight: 900;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: 13px;
  font-weight: 900;
}

.lead-card {
  width: min(100%, 520px);
  justify-self: end;
  padding: clamp(24px, 3vw, 34px);
  color: #fff;
  background: rgba(12, 10, 9, .64);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(3px);
}

.lead-card h2 {
  font-size: clamp(23px, 1.65vw, 29px);
  font-family: var(--font-soft);
  font-weight: 300;
  line-height: 1.08;
  text-align: center;
}

.lead-card h2 span,
.lead-card h2 strong {
  display: block;
}

.lead-card h2 strong {
  font-family: var(--font-soft);
  font-weight: 900;
}

.lead-card p {
  color: rgba(255, 255, 255, .86);
  text-align: center;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 22px 0 14px;
}

.lead-form label,
.quote-form label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.lead-form label:first-child {
  grid-column: 1 / -1;
}

.lead-form .message-field {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.quote-form input,
.quote-form select {
  width: 100%;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #6d7580;
  opacity: 1;
}

.lead-form input,
.lead-form select,
.quote-form input,
.quote-form select {
  height: 50px;
}

.lead-form textarea {
  min-height: 96px;
  padding-top: 13px;
  resize: vertical;
}

.form-button {
  grid-column: 1 / -1;
  width: 100%;
}

.lead-card > strong {
  display: block;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.qualification-teaser {
  display: grid;
  gap: 18px;
}

.qualification-teaser h2,
.qualification-teaser p,
.qualification-teaser > strong {
  margin-bottom: 0;
}

.teaser-points {
  display: grid;
  gap: 10px;
}

.teaser-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 800;
}

.teaser-points span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 999px;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(0, 169, 200, .16);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(6, 27, 51, .58);
  backdrop-filter: blur(10px);
}

.modal-overlay.active {
  display: flex;
}

.qualification-card {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.qualification-modal-card {
  position: relative;
  width: min(560px, 100%);
  max-height: min(92vh, 760px);
  overflow-y: auto;
  padding: clamp(20px, 3vw, 30px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.progress-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-right: 42px;
}

.qualification-card h2 {
  margin: 8px 0 0;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.step-indicator {
  flex: 0 0 auto;
  color: var(--blue-dark);
  background: rgba(0, 84, 166, .08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: .78rem;
  font-weight: 900;
}

.progress-bar {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 84, 166, .1);
}

.progress-bar span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  transition: width .22s ease;
}

.trust-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.trust-strip div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f4f9ff;
}

.trust-strip strong {
  display: block;
  color: var(--blue-dark);
  font-size: .86rem;
}

.qualification-form {
  margin-top: 22px;
}

.form-step {
  display: none;
  min-height: 315px;
}

.form-step.active {
  display: block;
  animation: stepIn .18s ease both;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-question {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.2;
}

.option-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-grid.compact {
  grid-template-columns: repeat(2, minmax(120px, 190px));
}

.option-chip {
  min-height: 62px;
  padding: 14px 16px;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  line-height: 1.25;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

.option-chip:hover,
.option-chip:focus-visible {
  outline: 0;
  transform: translateY(-1px);
  border-color: rgba(0, 169, 200, .48);
  box-shadow: 0 12px 26px rgba(5, 25, 48, .1);
}

.option-chip.selected {
  color: #fff;
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: 0 16px 34px rgba(5, 25, 48, .18);
}

.field-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field span {
  color: var(--blue-dark);
  font-size: .84rem;
  font-weight: 900;
}

.field input {
  width: 100%;
  min-height: 54px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  padding: 0 15px;
  outline: 0;
}

.field input:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(0, 169, 200, .14);
}

.summary-card {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  overflow: hidden;
}

.summary-content {
  display: grid;
}

.summary-item {
  display: grid;
  gap: 4px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.summary-item:last-child {
  border-bottom: 0;
}

.summary-item span {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-item strong {
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.35;
}

.summary-note {
  margin-bottom: 0;
  padding: 15px 16px;
  color: var(--muted);
  background: #f4f9ff;
  font-size: .9rem;
  line-height: 1.45;
}

.form-message {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--blue-dark);
  font-size: .88rem;
  font-weight: 800;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  border: 0;
}

.btn-ghost {
  color: var(--blue-dark);
  background: rgba(0, 84, 166, .08);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 14px 30px rgba(5, 25, 48, .2);
}

.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.hidden {
  display: none;
}

.ambiences,
.why,
.story-break,
.workflow-horizontal,
.testimonials,
.villaare-block,
.faq,
.visit {
  padding: var(--section-y) var(--section-x);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto clamp(32px, 5vw, 58px);
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 19px);
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.why .section-heading.align-left,
.faq .section-heading.align-left {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.ambiences {
  text-align: center;
  color: #fff;
  background: #111111;
}

.ambiences .section-heading p {
  color: rgba(255, 255, 255, .72);
}

.ambience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--container));
  margin-bottom: 32px;
  margin-inline: auto;
  text-align: left;
}

.ambience-grid article {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: none;
}

.ambience-grid article.wide {
  aspect-ratio: 16 / 10;
}

.ambience-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .72));
}

.ambience-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambience-grid span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  max-width: calc(100% - 36px);
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .56);
  font-size: 13px;
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 16px;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.why-grid article {
  min-height: 218px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(5, 25, 48, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.why-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 169, 200, .28);
  background: linear-gradient(180deg, #fff, #f8fcff);
  box-shadow: 0 24px 58px rgba(5, 25, 48, .16), 0 0 0 1px rgba(0, 169, 200, .08);
}

.why-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 6px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
}

.why-grid h3 {
  font-size: clamp(18px, 1.08vw, 21px);
  line-height: 1.12;
  overflow-wrap: normal;
}

.why-grid p {
  font-size: clamp(15.5px, .95vw, 17px);
  line-height: 1.55;
}

.why-action {
  display: flex;
  justify-content: center;
  width: min(100%, var(--container));
  margin-top: clamp(28px, 4vw, 44px);
  margin-inline: auto;
}

.why-grid p,
.visit p,
.faq p,
.site-footer p {
  color: var(--muted);
}

.story-break {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.story-copy {
  max-width: 590px;
  justify-self: center;
  text-align: center;
}

.story-copy h2 {
  color: var(--blue-dark);
  font-size: clamp(32px, 3.35vw, 50px);
  font-weight: 400;
  line-height: 1.16;
}

.story-media {
  position: relative;
  width: min(100%, 620px);
  justify-self: center;
}

.story-media::before {
  content: "";
  position: absolute;
  inset: -34px -22px -28px -30px;
  border: 3px solid #d8b37f;
  border-radius: 62% 38% 49% 51% / 43% 58% 42% 57%;
  transform: rotate(-13deg) skew(-3deg, 2deg);
  pointer-events: none;
}

.story-media video {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 54% 46% 59% 41% / 38% 53% 47% 62%;
  box-shadow: 0 24px 60px rgba(5, 25, 48, .16);
}

.story-media video {
  position: relative;
  background: #0b0b0b;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  justify-content: center;
  max-width: calc(var(--container) + (var(--section-x) * 2));
  margin-inline: auto;
}

.workflow-horizontal {
  color: #fff;
  background: #073d74;
}

.workflow-horizontal .eyebrow {
  color: var(--gold);
}

.workflow-horizontal .section-heading p {
  color: rgba(255, 255, 255, .76);
}

.horizontal-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.horizontal-steps article {
  position: relative;
  min-height: 238px;
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 18px 46px rgba(5, 25, 48, .16);
  backdrop-filter: blur(8px);
}

.horizontal-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-top: 3px solid rgba(255, 255, 255, .55);
  border-right: 3px solid rgba(255, 255, 255, .55);
  transform: translateY(-50%) rotate(45deg);
}

.horizontal-steps span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  font-size: 20px;
  font-weight: 900;
}

.horizontal-steps h3 {
  color: #fff;
}

.horizontal-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(100%, 1040px);
  margin-inline: auto;
}

.video-card {
  display: grid;
  gap: 14px;
  text-align: center;
}

.video-card strong {
  color: var(--blue-dark);
  font-size: 18px;
}

.video-trigger,
.video-shell iframe {
  width: min(100%, 250px);
  aspect-ratio: 638 / 1133;
  margin: 0 auto;
  border: 0;
  border-radius: 18px;
}

.video-trigger {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #071421;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.video-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-trigger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 54px;
  border-radius: 16px;
  background: #ff0033;
  transform: translate(-50%, -50%);
}

.video-trigger span::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 16px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
}

.villaare-block {
  background: #fff;
}

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

.villaare-block h2 {
  max-width: 850px;
  margin-bottom: clamp(28px, 3.6vw, 38px);
  color: var(--blue-dark);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 900;
  line-height: 1.08;
}

.villaare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.villaare-grid article {
  min-height: 270px;
  padding: clamp(24px, 3vw, 30px);
  border: 1px solid rgba(0, 84, 166, .14);
  border-radius: 20px;
  background: #f4f9ff;
  box-shadow: 0 18px 44px rgba(5, 25, 48, .08);
}

.villaare-grid article.highlight {
  border-color: rgba(0, 169, 200, .24);
  background: #eaf8fb;
}

.villaare-grid h3 {
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-size: clamp(20px, 1.45vw, 24px);
  font-weight: 900;
}

.villaare-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.58;
}

.faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(100%, 960px);
  margin-inline: auto;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.faq summary {
  padding: 22px 24px;
  color: var(--blue-dark);
  cursor: pointer;
  font-weight: 900;
}

.faq details p {
  margin: 0;
  padding: 0 24px 24px;
}

.visit-copy {
  max-width: 620px;
}

.visit-address,
.visit-hours {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.visit-address svg,
.visit-hours svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  fill: var(--blue);
}

.visit-copy .button {
  margin-top: 18px;
}

.visit-map {
  overflow: hidden;
  min-height: 420px;
  border: 8px solid #fff;
  border-radius: 24px;
  box-shadow: 0 34px 92px rgba(5, 25, 48, .24), 0 12px 30px rgba(5, 25, 48, .14);
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(18px, 5.8vw, 92px);
  color: rgba(255, 255, 255, .76);
  background: #111111;
}

.site-footer img {
  width: 160px;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
  animation: whatsapp-shake 5s ease-in-out infinite;
  transform-origin: center;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@keyframes whatsapp-shake {
  0%,
  82%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }

  85% {
    transform: translate3d(-1px, 0, 0) rotate(-6deg);
  }

  88% {
    transform: translate3d(2px, 0, 0) rotate(6deg);
  }

  91% {
    transform: translate3d(-2px, 0, 0) rotate(-5deg);
  }

  94% {
    transform: translate3d(1px, 0, 0) rotate(4deg);
  }

  97% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
}

@media (min-width: 961px) and (max-height: 780px) {
  :root {
    --section-y: clamp(46px, 5.8vw, 74px);
  }

  h1 {
    max-width: 560px;
    font-size: clamp(31px, 2.65vw, 40px);
  }

  h2 {
    font-size: clamp(28px, 2.55vw, 38px);
  }

  .hero {
    min-height: max(620px, 100svh);
    padding-top: clamp(132px, 10vw, 156px);
    padding-bottom: 38px;
    grid-template-columns: minmax(0, 540px) minmax(360px, 490px);
    gap: 34px;
  }

  .hero-brand {
    top: 22px;
    padding-bottom: 16px;
  }

  .hero-brand img {
    width: clamp(148px, 11vw, 176px);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 540px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-badges {
    margin-top: 24px;
  }

  .hero-badges span {
    padding: 8px 12px;
    font-size: 12px;
  }

  .lead-card {
    width: min(100%, 490px);
    padding: 20px;
  }

  .lead-card h2 {
    font-size: clamp(22px, 1.6vw, 26px);
  }

  .lead-card p {
    margin-bottom: 10px;
  }

  .lead-form {
    gap: 10px;
    margin: 16px 0 12px;
  }

  .qualification-teaser {
    gap: 14px;
  }

  .teaser-points {
    gap: 8px;
  }

  .lead-form input,
  .lead-form select,
  .quote-form input,
  .quote-form select {
    height: 44px;
  }

  .lead-form textarea {
    min-height: 72px;
  }

  .form-button {
    min-height: 46px;
  }

  .lead-card > strong {
    font-size: 12px;
  }
}

@media (min-width: 961px) and (max-width: 1440px) {
  :root {
    --container: 1120px;
    --section-x: clamp(24px, 4.6vw, 64px);
    --section-y: clamp(50px, 6.2vw, 84px);
  }

  h1 {
    font-size: clamp(34px, 2.9vw, 46px);
  }

  h2,
  .villaare-block h2 {
    font-size: clamp(29px, 2.7vw, 42px);
  }

  p,
  .section-heading p,
  .villaare-grid p {
    font-size: clamp(15.5px, .9vw, 17px);
  }

  .hero {
    min-height: max(650px, 100svh);
    grid-template-columns: minmax(0, 560px) minmax(360px, 500px);
    gap: clamp(26px, 3vw, 40px);
    padding-top: clamp(144px, 11vw, 172px);
    padding-bottom: clamp(42px, 5vw, 64px);
  }

  .hero-brand img {
    width: clamp(152px, 12vw, 186px);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 560px;
    font-size: clamp(16px, 1vw, 18px);
  }

  .lead-card {
    width: min(100%, 500px);
    padding: 22px;
  }

  .lead-card h2 {
    font-size: clamp(22px, 1.6vw, 27px);
  }

  .why-grid article,
  .horizontal-steps article,
  .villaare-grid article {
    padding: 22px 18px;
  }

  .why-grid article {
    min-height: 206px;
  }
}

@media (min-width: 961px) and (max-width: 1440px) and (max-height: 820px) {
  :root {
    --section-y: clamp(44px, 5.2vw, 72px);
  }

  h1 {
    max-width: 560px;
    font-size: clamp(31px, 2.65vw, 40px);
  }

  h2,
  .villaare-block h2 {
    font-size: clamp(27px, 2.35vw, 36px);
  }

  .hero {
    min-height: max(610px, 100svh);
    grid-template-columns: minmax(0, 540px) minmax(350px, 480px);
    padding-top: clamp(128px, 9.4vw, 150px);
    padding-bottom: 36px;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 520px;
    font-size: 15.8px;
    line-height: 1.48;
  }

  .hero-badges {
    margin-top: 22px;
  }

  .lead-card {
    width: min(100%, 480px);
    padding: 20px;
  }

  .lead-card h2 {
    font-size: clamp(21px, 1.55vw, 25px);
  }

  .lead-card p {
    font-size: 15px;
  }

  .lead-form {
    gap: 10px;
    margin: 16px 0 12px;
  }

  .lead-form input,
  .lead-form select,
  .quote-form input,
  .quote-form select {
    height: 44px;
  }

  .lead-form textarea {
    min-height: 72px;
  }
}

@media (min-width: 1121px) and (max-width: 1280px) {
  :root {
    --section-x: clamp(26px, 4vw, 52px);
  }

  .hero {
    grid-template-columns: minmax(0, 560px) minmax(360px, 500px);
    gap: 34px;
  }

  .lead-card {
    padding: 24px;
  }

  .horizontal-steps {
    gap: 12px;
  }

  .horizontal-steps article {
    padding: 22px 18px;
  }

  .why-grid {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 14px;
  }

  .why-grid article {
    padding: 22px 18px;
  }

  .why-grid h3 {
    font-size: 18px;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 760px);
  }

  .hero-copy,
  .lead-card {
    justify-self: center;
    width: 100%;
  }

  .lead-card {
    max-width: 620px;
  }
}

@media (max-width: 960px) {
  .hero,
  .story-break,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding-top: clamp(168px, 18vw, 190px);
  }

  .lead-card {
    justify-self: center;
    width: 100%;
    max-width: 620px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .horizontal-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .villaare-grid article {
    min-height: auto;
  }

  .horizontal-steps article:not(:last-child)::after {
    display: none;
  }

  .ambience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ambience-grid article.wide {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  :root {
    --section-x: clamp(16px, 5vw, 20px);
    --section-y: clamp(46px, 12vw, 64px);
  }

  body {
    min-width: 0;
  }

  .hero {
    width: 100%;
    padding-top: 142px;
    padding-bottom: 48px;
  }

  .hero-brand {
    justify-content: center;
    width: calc(100% - (var(--section-x) * 2));
  }

  .hero-brand img {
    width: clamp(150px, 42vw, 178px);
  }

  .hero-copy {
    text-align: center;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.7vw, 36px);
    line-height: 1.08;
  }

  .hero-copy p:not(.eyebrow) {
    margin-inline: auto;
    font-size: 15.5px;
  }

  .hero-badges {
    align-items: center;
    flex-direction: column;
  }

  .hero-badges span {
    width: min(100%, 250px);
    min-height: 42px;
    text-align: center;
  }

  .ambience-grid,
  .why-grid,
  .lead-form,
  .horizontal-steps,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .lead-card {
    padding: 22px 16px;
  }

  .lead-card h2 {
    font-size: 24px;
  }

  .qualification-teaser {
    gap: 16px;
  }

  .modal-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: 12px;
  }

  .qualification-modal-card {
    max-height: none;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .progress-header {
    display: grid;
    padding-right: 38px;
  }

  .step-indicator {
    width: fit-content;
  }

  .trust-strip,
  .option-grid,
  .option-grid.compact,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .form-step {
    min-height: 0;
  }

  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    font-size: 16px;
  }

  .ambience-grid article,
  .ambience-grid article.wide {
    aspect-ratio: 4 / 3;
  }

  .button {
    width: 100%;
  }

  .story-media {
    width: min(100%, 430px);
  }

  .story-media::before {
    inset: -12px -6px -10px -6px;
  }

  .story-media video,
  .visit-map,
  .visit-map iframe {
    min-height: 340px;
  }

  .video-trigger,
  .video-shell iframe {
    width: min(100%, 280px);
  }

  .visit-address,
  .visit-hours {
    gap: 10px;
  }

  .visit-address svg,
  .visit-hours svg {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(28px, 8.5vw, 34px);
  }

  h2 {
    font-size: clamp(26px, 8vw, 31px);
  }

  .villaare-block h2 {
    font-size: clamp(26px, 8vw, 31px);
  }

  .hero-brand img {
    width: min(170px, 56vw);
  }

  .lead-card {
    border-radius: 8px;
  }

  .hero-badges span {
    width: 100%;
  }

  .story-media video,
  .visit-map,
  .visit-map iframe {
    min-height: 300px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}
