:root {
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Sora", Arial, sans-serif;
  --ink: #12223a;
  --ink-soft: #526071;
  --navy: #172b4d;
  --navy-deep: #101f3a;
  --cyan: #09acd2;
  --cyan-dark: #078baa;
  --pink: #f53079;
  --pink-soft: #fff0f6;
  --mint: #e9faf8;
  --cream: #fbfcfd;
  --line: #dfe7eb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 34, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body), Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body), Arial, sans-serif;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(223, 231, 235, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid #edf0f3;
  border-radius: 50%;
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  color: var(--navy);
  font-family: var(--font-display), sans-serif;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 4px;
  color: #778291;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #445166;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
  background: var(--pink);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(9, 172, 210, 0.28);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 11px;
  font-size: 13px;
}

.button-primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 13px 30px rgba(245, 48, 121, 0.24);
}

.button-primary:hover {
  background: #dc1f66;
  box-shadow: 0 16px 34px rgba(245, 48, 121, 0.3);
}

.button-secondary {
  border-color: #cbd7dd;
  color: var(--navy);
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--cyan);
  box-shadow: 0 12px 28px rgba(18, 34, 58, 0.09);
}

.wa-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-style: normal;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  background:
    linear-gradient(125deg, rgba(233, 250, 248, 0.92) 0%, rgba(255, 255, 255, 0.97) 45%, rgba(255, 240, 246, 0.76) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: -160px;
  right: -110px;
  width: 440px;
  height: 440px;
  background: rgba(245, 48, 121, 0.1);
}

.hero-glow-two {
  bottom: 40px;
  left: -220px;
  width: 480px;
  height: 480px;
  background: rgba(9, 172, 210, 0.1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 68px;
  align-items: center;
}

.hero-copy {
  padding: 20px 0 58px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 19px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  background: var(--pink);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 670px;
  color: var(--navy-deep);
  font-size: clamp(44px, 5.1vw, 72px);
}

h1 em {
  position: relative;
  color: var(--pink);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  right: 2px;
  bottom: -5px;
  left: 2px;
  height: 7px;
  border-radius: 999px;
  content: "";
  transform: rotate(-1deg);
  background: rgba(9, 172, 210, 0.23);
}

h2 {
  color: var(--navy-deep);
  font-size: clamp(34px, 4vw, 52px);
}

h3 {
  color: var(--navy);
  font-size: 20px;
}

.hero-lead {
  max-width: 630px;
  margin: 26px 0 30px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
  color: #677486;
  font-size: 13px;
  line-height: 1.45;
}

.hero-location strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.location-pin,
.address-marker {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  color: var(--white);
  background: var(--cyan);
  font-size: 8px;
}

.location-pin::first-letter,
.address-marker::first-letter {
  transform: rotate(45deg);
}

.hero-visual {
  position: relative;
  min-height: 610px;
  align-self: end;
}

.hero-image-frame {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 85%;
  height: 610px;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.78);
  border-radius: 220px 220px 28px 28px;
  box-shadow: var(--shadow);
  background: #eaf5f8;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  box-shadow: 0 16px 45px rgba(18, 34, 58, 0.16);
}

.hero-note-top {
  top: 110px;
  left: -14px;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
}

.hero-note-top > span:last-child {
  display: grid;
  color: #687486;
  font-size: 11px;
  line-height: 1.4;
}

.hero-note-top strong {
  color: var(--navy);
  font-size: 13px;
}

.note-check {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--cyan);
  font-weight: 900;
}

.hero-note-bottom {
  right: -2px;
  bottom: 54px;
  display: grid;
  min-width: 150px;
  padding: 15px 20px;
  border-radius: 15px 4px 15px 15px;
  color: var(--white);
  background: var(--navy);
  line-height: 1.25;
}

.hero-note-bottom strong {
  font-size: 14px;
}

.hero-note-bottom span {
  color: #a9e8f5;
  font-size: 12px;
}

.trust-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 25px 0;
  border-top: 1px solid rgba(18, 34, 58, 0.09);
}

.trust-bar div {
  display: grid;
  padding: 0 24px;
  border-right: 1px solid rgba(18, 34, 58, 0.1);
}

.trust-bar div:first-child {
  padding-left: 0;
}

.trust-bar div:last-child {
  border-right: 0;
}

.trust-bar strong {
  color: var(--navy);
  font-family: var(--font-display), sans-serif;
  font-size: 17px;
}

.trust-bar span {
  color: #758191;
  font-size: 12px;
}

.section {
  padding: 112px 0;
}

.about-grid,
.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 92px;
  align-items: center;
}

.about-media {
  position: relative;
  width: 100%;
  height: 640px;
}

.about-media::before {
  position: absolute;
  z-index: -1;
  top: -28px;
  left: -28px;
  width: 130px;
  height: 130px;
  border-radius: 22px;
  content: "";
  background-image: radial-gradient(var(--cyan) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.28;
}

.about-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 28px 120px 28px 28px;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  right: -24px;
  bottom: 38px;
  display: grid;
  max-width: 220px;
  padding: 20px 22px;
  border: 5px solid var(--white);
  border-radius: 18px;
  color: #556375;
  background: var(--mint);
  font-size: 12px;
  line-height: 1.45;
  box-shadow: 0 18px 45px rgba(18, 34, 58, 0.13);
}

.about-badge span {
  color: var(--navy);
  font-family: var(--font-display), sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.section-intro {
  margin: 24px 0 14px;
  color: #344359;
  font-size: 18px;
  line-height: 1.7;
}

.about-copy > p:not(.section-intro) {
  color: #667386;
}

.quote-block {
  display: flex;
  gap: 14px;
  margin: 28px 0 22px;
  padding: 20px 22px;
  border-left: 3px solid var(--pink);
  border-radius: 0 14px 14px 0;
  background: var(--pink-soft);
}

.quote-block > span {
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 0.8;
}

.quote-block p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.55;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4d5a6c;
  font-size: 14px;
  font-weight: 700;
}

.check-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.check-list span {
  color: var(--cyan-dark);
}

.services-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.services-section::before {
  position: absolute;
  top: -220px;
  right: -140px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(9, 172, 210, 0.2), transparent 67%);
}

.section-heading {
  margin-bottom: 52px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.split-heading p,
.centered-heading > p {
  margin: 0;
  color: #6b7889;
  font-size: 16px;
}

.services-section h2,
.stories-section h2,
.contact-section h2 {
  color: var(--white);
}

.services-section .split-heading p,
.stories-section .centered-heading > p {
  color: #b3c0d2;
}

.section-kicker-light {
  color: #80daec;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.service-card {
  min-height: 326px;
  padding: 28px 25px;
  background: #152945;
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-3px);
  background: #1a3456;
}

.service-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(128, 218, 236, 0.45);
  border-radius: 12px;
  color: #88e5f5;
  font-family: var(--font-display), sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.service-card h3 {
  min-height: 45px;
  color: var(--white);
  font-size: 18px;
}

.service-card > p {
  min-height: 98px;
  margin: 16px 0;
  color: #aebbd0;
  font-size: 13px;
  line-height: 1.65;
}

.service-benefit {
  display: flex;
  gap: 9px;
  color: #d7e1ef;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.service-benefit span {
  color: var(--pink);
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
  color: #adbbce;
  font-size: 14px;
}

.services-cta p {
  margin: 0;
}

.text-link-light {
  color: var(--white);
  font-weight: 800;
}

.text-link-light span {
  margin-left: 6px;
  color: var(--pink);
}

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

.centered-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading > p {
  max-width: 610px;
  margin: 20px auto 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 250px;
  padding: 30px 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 34, 58, 0.04);
}

.benefit-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 14px;
  color: var(--pink);
  background: var(--pink-soft);
  font-family: var(--font-display), sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.benefit-card p {
  margin: 14px 0 0;
  color: #687588;
  font-size: 14px;
}

.gallery-heading {
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 20px;
  background: #e8eff3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item::after {
  position: absolute;
  inset: 50% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(9, 22, 42, 0.68));
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 16px;
  left: 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall img,
.gallery-standard:nth-child(2) img,
.gallery-standard:nth-child(3) img {
  object-position: center 16%;
}

.instagram-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin: 30px auto 0;
  color: #667386;
  font-size: 14px;
}

.instagram-link strong {
  color: var(--pink);
}

.instagram-link span {
  color: var(--cyan-dark);
}

.stories-section {
  color: var(--white);
  background: linear-gradient(135deg, #10213d, #172e50);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.story-stars {
  color: #ffcc63;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.story-card blockquote {
  flex: 1;
  margin: 22px 0 28px;
  color: #e7edf6;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.story-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-person > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #ad2b9e);
  font-family: var(--font-display), sans-serif;
  font-weight: 800;
}

.story-person div {
  display: grid;
}

.story-person strong {
  font-size: 14px;
}

.story-person small {
  color: #9eb0c7;
  font-size: 11px;
}

.stories-source {
  margin: 22px 0 0;
  color: #91a4bd;
  font-size: 11px;
  text-align: center;
}

.location-section {
  background: #f7fbfc;
}

.location-grid {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 68px;
}

.address-card {
  display: flex;
  gap: 17px;
  margin: 30px 0 20px;
  padding: 22px;
  border: 1px solid #d9e5ea;
  border-radius: 18px;
  background: var(--white);
}

.address-marker {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  background: var(--pink);
}

.address-card div {
  display: grid;
}

.address-card small {
  color: #8a94a2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.address-card strong {
  margin: 4px 0;
  color: var(--navy);
  font-size: 17px;
}

.address-card p {
  margin: 0;
  color: #617083;
  font-size: 13px;
  line-height: 1.6;
}

.nearby-text {
  color: #697689;
  font-size: 14px;
}

.map-button {
  margin-top: 10px;
}

.map-wrap {
  position: relative;
  height: 560px;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(0.95);
}

.map-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  min-width: 210px;
  padding: 15px 18px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(18, 34, 58, 0.18);
  line-height: 1.35;
}

.map-label strong {
  color: var(--navy);
  font-size: 14px;
}

.map-label span {
  color: #758293;
  font-size: 11px;
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(9, 172, 210, 0.24), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(245, 48, 121, 0.16), transparent 28%),
    var(--navy-deep);
}

.contact-grid {
  grid-template-columns: 0.88fr 1.12fr;
  gap: 86px;
  align-items: start;
}

.contact-copy > p {
  max-width: 530px;
  margin: 24px 0 28px;
  color: #b6c2d4;
  font-size: 17px;
}

.button-whatsapp {
  color: #0d3d2b;
  background: #63e39e;
  box-shadow: 0 14px 34px rgba(49, 208, 126, 0.19);
}

.button-whatsapp:hover {
  background: #79edac;
}

.button-large {
  min-height: 60px;
  padding: 0 28px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details > div {
  display: grid;
  align-content: start;
}

.contact-details small {
  margin-bottom: 6px;
  color: #7f93ad;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: #e6edf7;
  font-size: 13px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: 36px;
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(2, 13, 30, 0.25);
}

.form-heading {
  margin-bottom: 4px;
}

.form-heading span {
  color: var(--navy);
  font-family: var(--font-display), sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.form-heading p {
  margin: 6px 0 0;
  color: #748091;
  font-size: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #465368;
  font-size: 12px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9e2e7;
  border-radius: 11px;
  color: var(--ink);
  background: #fbfcfd;
  font-size: 14px;
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 49px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 106px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(9, 172, 210, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 2px;
  border: 0;
}

.privacy-note {
  color: #84909e;
  font-size: 10px;
  text-align: center;
}

.site-footer {
  color: #a7b5c7;
  background: #0b182d;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 52px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 35px;
}

.footer-brand strong {
  color: var(--white);
}

.footer-top > p {
  max-width: 430px;
  margin: 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: #d7e0ed;
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 18px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6e8098;
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: #0b4b2b;
  background: #62e59d;
  box-shadow: 0 16px 38px rgba(12, 70, 43, 0.28);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp .wa-icon {
  width: 29px;
  height: 29px;
  font-size: 17px;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-image-frame {
    width: 92%;
  }

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

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

  .about-grid,
  .location-grid,
  .contact-grid {
    gap: 52px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 680px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-logo {
    width: 43px;
    height: 43px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid,
  .about-grid,
  .location-grid,
  .contact-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 10px;
  }

  .hero-copy {
    padding-bottom: 34px;
  }

  .hero-visual {
    min-height: 570px;
  }

  .hero-image-frame {
    right: 4%;
    left: 4%;
    width: 92%;
    height: 560px;
  }

  .hero-note-top {
    left: 0;
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar div {
    padding: 14px;
    border-bottom: 1px solid rgba(18, 34, 58, 0.1);
  }

  .trust-bar div:nth-child(2) {
    border-right: 0;
  }

  .trust-bar div:nth-child(3),
  .trust-bar div:nth-child(4) {
    border-bottom: 0;
  }

  .section {
    padding: 84px 0;
  }

  .about-grid {
    gap: 58px;
  }

  .about-media {
    width: calc(100% - 16px);
    height: 650px;
  }

  .about-badge {
    right: -16px;
  }

  .split-heading {
    gap: 18px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .gallery-tall {
    grid-row: span 2;
  }

  .gallery-wide {
    grid-column: span 1;
  }

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

  .story-card {
    min-height: 260px;
  }

  .location-grid,
  .contact-grid {
    gap: 46px;
  }

  .map-wrap {
    height: 470px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 66px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .header-cta {
    min-width: 44px;
    width: 44px;
    padding: 0;
    font-size: 0;
  }

  .header-cta .wa-icon {
    font-size: 12px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 15px;
    font-size: 10px;
  }

  h1 {
    font-size: 41px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lead {
    margin: 22px 0 26px;
    font-size: 16px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-image-frame {
    height: 455px;
    border-width: 6px;
    border-radius: 170px 170px 22px 22px;
  }

  .hero-note-top {
    top: 75px;
    padding: 10px 13px 10px 10px;
  }

  .hero-note-bottom {
    right: 0;
    bottom: 28px;
    min-width: 135px;
    padding: 12px 15px;
  }

  .trust-bar {
    padding: 12px 0;
  }

  .trust-bar div {
    min-height: 74px;
    justify-content: center;
  }

  .trust-bar strong {
    font-size: 15px;
  }

  .trust-bar span {
    font-size: 10px;
  }

  .section {
    padding: 70px 0;
  }

  .about-media {
    height: 510px;
  }

  .about-media > img {
    border-radius: 24px 90px 24px 24px;
  }

  .about-badge {
    bottom: 20px;
    max-width: 190px;
    padding: 16px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card h3,
  .service-card > p {
    min-height: 0;
  }

  .services-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .gallery-tall,
  .gallery-wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    display: none;
  }

  .location-copy .section-intro {
    margin-top: 20px;
  }

  .map-wrap {
    height: 390px;
    border-width: 5px;
  }

  .map-label {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 18px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 8px;
    padding: 8px 10px;
    border-top: 1px solid #dbe4e9;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -10px 28px rgba(18, 34, 58, 0.1);
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #cbd7dd;
    border-radius: 10px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-contact-bar a:last-child {
    border-color: var(--pink);
    color: var(--white);
    background: var(--pink);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
