:root {
  --black: #132018;
  --white: #fbf5e8;
  --muted-beige: #d9c9aa;
  --soft-blue: #b9c89e;
  --dark-grey: #61705a;
  --deep-green: #0d1711;
  --sage: #8fa37a;
  --clay: #b88663;
  --overlay: rgba(13, 23, 17, 0.38);
  --heading-font: "Marcellus", Georgia, serif;
  --body-font: "Plus Jakarta Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body-font);
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.5;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
}

.nav-shell {
  width: min(100% - 5vw, 1320px);
  margin: 0 auto;
  padding: 1.25vw 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  width: clamp(2.75rem, 3.4vw, 4rem);
  min-width: 0;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  justify-self: start;
  border: 1px solid rgba(251, 245, 232, 0.74);
  border-radius: 50%;
  overflow: hidden;
  background: rgba(19, 32, 24, 0.44);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-mark,
.primary-menu a,
.header-cta,
.hero-button,
.directions-button,
.social-links a,
.footer-nav a,
.footer-contact a {
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 300ms ease;
}

.brand-mark:hover {
  transform: translateY(-3px) scale(1.04);
}

.primary-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}

.primary-menu a,
.header-cta {
  color: var(--white);
  font-size: clamp(0.72rem, 0.78vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.primary-menu a {
  position: relative;
  padding: 0.4rem 0;
}

.primary-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 0.4vw 1.2vw;
  border: 1px solid rgba(217, 201, 170, 0.86);
  border-radius: 25rem;
  background: transparent;
  transition: background 220ms ease, color 220ms ease;
}

.header-cta:hover {
  background: var(--white);
  color: var(--black);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.js .hero-image {
  opacity: 0.72;
  filter: blur(5px) saturate(0.92);
  transform: translate3d(0, var(--hero-y, 0px), 0) scale(1.08);
  transition: opacity 1200ms ease, filter 1400ms ease, transform 120ms linear;
  will-change: transform;
}

.js .is-loaded .hero-image {
  opacity: 1;
  filter: blur(0) saturate(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 23, 17, 0.58), rgba(13, 23, 17, 0.12) 52%, rgba(13, 23, 17, 0.5)),
    linear-gradient(180deg, rgba(13, 23, 17, 0.36), rgba(13, 23, 17, 0.2) 48%, rgba(13, 23, 17, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 980px);
  margin-top: -1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5vw;
  text-align: center;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(3rem, 5.7vw, 6.4rem);
  font-weight: 400;
  line-height: 1.05;
}

.js .hero h1,
.js .hero p,
.js .hero-action,
.js .site-header {
  opacity: 0;
  transform: translateY(24px);
}

.js .is-loaded .site-header,
.js .is-loaded .hero h1,
.js .is-loaded .hero p,
.js .is-loaded .hero-action {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 900ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .is-loaded .hero h1 {
  transition-delay: 180ms;
}

.js .is-loaded .hero p {
  transition-delay: 320ms;
}

.js .is-loaded .hero-action {
  transition-delay: 480ms;
}

.hero p {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.12vw, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
}

.hero-action {
  position: absolute;
  right: 0;
  bottom: 8%;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 0.7vw;
  padding: 0.3vw 0.4vw 0.3vw 1.3vw;
  border-radius: 25rem;
  background: var(--soft-blue);
  color: var(--black);
  font-size: clamp(0.72rem, 0.78vw, 0.9rem);
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 0.9rem 2.2rem rgba(13, 23, 17, 0.22);
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.4rem 3rem rgba(13, 23, 17, 0.28);
}

.button-icon {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-family: Arial, sans-serif;
  line-height: 1;
}

.button-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-button:hover .button-icon svg {
  transform: translateX(3px);
}

.services-section {
  background: var(--black);
  color: var(--white);
}

.section-padding {
  width: min(100% - 5vw, 1320px);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.services-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5vw;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  text-align: center;
}

.services-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.services-heading p {
  width: min(28vw, 520px);
  min-width: 330px;
  margin: 0;
  color: var(--white);
  font-weight: 400;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1vw;
}

.service-group {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 420ms ease;
}

.service-group:hover {
  transform: translateY(-8px);
}

.service-image-title {
  position: relative;
}

.service-image-wrap {
  width: 100%;
  height: 28vw;
  min-height: 28vw;
  max-height: 28vw;
  overflow: hidden;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-group:hover .service-image-wrap img {
  transform: scale(1.08);
}

.service-category {
  position: absolute;
  inset: 1.5vw auto auto 1vw;
  max-width: calc(100% - 2vw);
  padding: 0.3vw 1.2vw;
  border-radius: 25rem;
  background: var(--sage);
  color: var(--black);
  font-weight: 500;
  text-transform: uppercase;
}

.service-list-wrap {
  flex: 1;
  padding: 2vw;
  background: var(--white);
  color: var(--black);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.service-item {
  min-height: 7.5vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5vw;
  transition: transform 260ms ease;
}

.service-item:hover {
  transform: translateX(6px);
}

.service-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-item h3 {
  margin: 0;
  color: var(--black);
  font-family: var(--heading-font);
  font-size: clamp(1.05rem, 1.3vw, 1.6rem);
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-item span {
  display: block;
  margin-top: 0.15rem;
  color: var(--dark-grey);
  font-size: clamp(0.75rem, 0.78vw, 0.95rem);
}

.service-badge {
  flex: 0 0 auto;
  max-width: 52%;
  padding: 0.35vw 1vw;
  border-radius: 25rem;
  background: var(--black);
  color: var(--white);
  font-size: clamp(0.68rem, 0.68vw, 0.82rem);
  line-height: 1.2;
  text-align: center;
}

.service-item p {
  min-height: 3.5vw;
  margin: 0;
  padding-bottom: 0.7vw;
  border-bottom: 1px solid var(--muted-beige);
  color: var(--dark-grey);
  font-weight: 400;
  line-height: 1.45;
}

.service-item.is-last p {
  border-bottom: 0;
}

.services-cta {
  display: flex;
  justify-content: center;
  padding-top: clamp(3rem, 5vw, 5rem);
  clear: both;
}

.why-section {
  background: var(--black);
  color: var(--white);
}

.why-shell {
  width: min(100% - 5vw, 1320px);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.why-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  text-align: center;
}

.why-heading span,
.why-list span {
  color: var(--soft-blue);
  font-size: clamp(0.72rem, 0.78vw, 0.9rem);
  font-weight: 600;
  text-transform: uppercase;
}

.why-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(2.7rem, 4.8vw, 5.3rem);
  font-weight: 400;
  line-height: 1.08;
}

.why-heading p {
  max-width: 620px;
  margin: 0;
  color: rgba(251, 245, 232, 0.72);
  font-size: clamp(0.98rem, 1vw, 1.1rem);
  line-height: 1.7;
}

.why-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 1vw;
  align-items: stretch;
}

.why-statement {
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--soft-blue);
  color: var(--black);
}

.why-statement p {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(1.65rem, 2.3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(251, 245, 232, 0.16);
  border-left: 1px solid rgba(251, 245, 232, 0.16);
}

.why-list article {
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  border-right: 1px solid rgba(251, 245, 232, 0.16);
  border-bottom: 1px solid rgba(251, 245, 232, 0.16);
  transition: background 300ms ease, transform 300ms ease;
}

.why-list article:hover {
  background: rgba(251, 245, 232, 0.06);
  transform: translateY(-4px);
}

.why-list h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(1.25rem, 1.65vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}

.faq-section {
  background: #f1eadb;
  color: var(--black);
}

.faq-shell {
  width: min(100% - 5vw, 1320px);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 2rem;
}

.faq-heading h2 {
  margin: 0;
  color: var(--black);
  font-family: var(--heading-font);
  font-size: clamp(2.6rem, 4.8vw, 5.2rem);
  font-weight: 400;
  line-height: 1.08;
}

.faq-heading p {
  max-width: 390px;
  margin: 1.25rem 0 0;
  color: var(--dark-grey);
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--muted-beige);
}

.faq-item {
  border-bottom: 1px solid var(--muted-beige);
  transition: background 220ms ease;
}

.faq-item:hover {
  background: rgba(185, 200, 158, 0.18);
}

.faq-item button {
  width: 100%;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  text-align: left;
}

.faq-item button > span:first-child {
  font-family: var(--heading-font);
  font-size: clamp(1.25rem, 1.55vw, 1.9rem);
  font-weight: 400;
  line-height: 1.25;
}

.faq-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.2rem;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--black);
  font-family: Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--dark-grey);
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 4rem 1.5rem 0;
}

.faq-item.is-open .faq-icon {
  background: var(--deep-green);
  color: var(--white);
  transform: rotate(180deg);
}

.directions-section {
  background: #d8cfb7;
  color: var(--black);
}

.directions-shell {
  width: min(100% - 5vw, 1320px);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.directions-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.directions-copy span {
  color: var(--dark-grey);
  font-size: clamp(0.72rem, 0.78vw, 0.9rem);
  font-weight: 600;
  text-transform: uppercase;
}

.directions-copy h2 {
  margin: 0;
  color: var(--black);
  font-family: var(--heading-font);
  font-size: clamp(2.55rem, 4.6vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
}

.directions-copy p {
  margin: 0;
  color: var(--dark-grey);
  line-height: 1.7;
}

.directions-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  padding-top: 0.35rem;
}

.directions-button,
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25rem;
  background: var(--deep-green);
  color: var(--white);
}

.directions-button {
  min-height: 3rem;
  padding: 0 1.35rem;
  font-size: clamp(0.72rem, 0.78vw, 0.9rem);
  font-weight: 600;
  text-transform: uppercase;
}

.directions-button:hover,
.social-links a:hover {
  background: var(--clay);
  color: var(--black);
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-links a {
  width: 3rem;
  height: 3rem;
}

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  fill: currentColor;
}

.map-card {
  min-height: clamp(22rem, 38vw, 32rem);
  overflow: hidden;
  border: 1px solid rgba(19, 32, 24, 0.16);
  background: var(--white);
  box-shadow: 0 2rem 4rem rgba(13, 23, 17, 0.14);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: clamp(22rem, 38vw, 32rem);
  display: block;
  border: 0;
  filter: saturate(0.9) contrast(0.96);
}

.site-footer {
  background: var(--black);
  color: var(--white);
}

.footer-shell {
  width: min(100% - 5vw, 1320px);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, auto) minmax(220px, 1fr);
  gap: 2rem;
  align-items: start;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(251, 245, 232, 0.16);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand p {
  margin: 0;
  color: rgba(251, 245, 232, 0.72);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer-nav a,
.footer-contact a {
  color: var(--white);
  font-size: clamp(0.72rem, 0.78vw, 0.9rem);
  font-weight: 600;
  text-transform: uppercase;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 0.65rem;
}

.footer-address {
  display: grid;
  gap: 0.35rem;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-address p {
  margin: 0;
  color: rgba(251, 245, 232, 0.68);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251, 245, 232, 0.16);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(251, 245, 232, 0.72);
  font-size: clamp(0.8rem, 0.82vw, 0.95rem);
}

.footer-bottom a {
  color: var(--soft-blue);
}

.floating-actions {
  position: fixed !important;
  top: auto !important;
  right: 1.5rem !important;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px)) !important;
  left: auto !important;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: max-content;
  height: auto;
  transform: none !important;
}

.floating-action {
  width: 3.4rem;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: visible;
  border-radius: 50%;
  border: 1px solid rgba(251, 245, 232, 0.28);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.28);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  animation: none;
  transform: none !important;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.floating-action svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
  flex: 0 0 auto;
  fill: currentColor;
}

.floating-whatsapp svg {
  width: 1.95rem;
  height: 1.95rem;
}

.floating-call {
  background: var(--deep-green);
}

.floating-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(44px);
  transition: opacity 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 900ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--stagger, 0) * 80ms);
  will-change: opacity, transform, filter;
}

.reveal[data-reveal="left"] {
  transform: translateX(-44px);
}

.reveal[data-reveal="right"] {
  transform: translateX(44px);
}

.reveal[data-reveal="scale"] {
  transform: translateY(30px) scale(0.96);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .hero h1,
  .hero p,
  .hero-action,
  .site-header,
  .hero-image {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (max-width: 991px) {
  .nav-shell {
    width: min(100% - 2rem, 1320px);
    padding: 1rem 0;
    grid-template-columns: 1fr auto 1fr;
  }

  .brand-mark {
    width: 2.65rem;
  }

  .primary-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 1rem;
    flex-direction: column;
    gap: 0.9rem;
    background: rgba(13, 23, 17, 0.94);
    border: 1px solid rgba(251, 245, 232, 0.18);
    backdrop-filter: blur(14px);
  }

  .primary-menu.is-open {
    display: flex;
  }

  .menu-toggle {
    width: 2.6rem;
    height: 2.6rem;
    display: grid;
    place-items: center;
    justify-self: center;
    border: 1px solid rgba(251, 245, 232, 0.75);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span:not(.screen-reader-text) {
    width: 1.1rem;
    height: 1px;
    display: block;
    background: var(--white);
  }

  .menu-toggle span:not(.screen-reader-text) + span:not(.screen-reader-text) {
    margin-top: -0.7rem;
  }

  .header-cta {
    padding: 0.45rem 0.9rem;
  }
}

@media (max-width: 767px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    object-position: 48% center;
  }

  .hero-content {
    width: min(86vw, 420px);
    gap: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero p br {
    display: none;
  }

  .hero-action {
    bottom: 7%;
  }

  .hero-button {
    padding: 0.35rem 0.45rem 0.35rem 1.1rem;
    gap: 0.7rem;
  }
}

@media (max-width: 991px) {
  .section-padding {
    width: min(100% - 2rem, 1320px);
  }

  .floating-actions {
    top: auto !important;
    right: 1.5rem !important;
    bottom: calc(1.75rem + env(safe-area-inset-bottom, 0px)) !important;
    left: auto !important;
    transform: none !important;
    gap: 0.6rem;
    z-index: 200;
  }

  .floating-action {
    width: 3.2rem;
    height: 3.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-heading p {
    width: min(68vw, 620px);
  }

  .service-image-wrap {
    height: 52vw;
    min-height: 28rem;
    max-height: 34rem;
  }

  .service-category {
    inset: 1rem auto auto 1rem;
    padding: 0.35rem 1rem;
  }

  .service-list-wrap {
    padding: 1.5rem;
  }

  .service-list {
    gap: 1rem;
  }

  .service-item {
    min-height: 0;
    gap: 0.55rem;
  }

  .service-item p {
    min-height: 0;
    padding-bottom: 1rem;
  }

  .service-badge {
    padding: 0.35rem 1rem;
  }

  .why-shell {
    width: min(100% - 2rem, 1320px);
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-shell {
    width: min(100% - 2rem, 1320px);
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .directions-shell {
    width: min(100% - 2rem, 1320px);
    grid-template-columns: 1fr;
  }

  .footer-shell {
    width: min(100% - 2rem, 1320px);
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-nav {
    justify-content: center;
  }

  .footer-contact {
    justify-items: center;
  }
}

@media (max-width: 767px) {
  .floating-actions {
    top: auto !important;
    right: 2rem !important;
    bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px)) !important;
    left: auto !important;
    transform: none !important;
    gap: 0.55rem;
    z-index: 200;
  }

  .floating-action {
    width: 3rem;
    height: 3rem;
    box-shadow: 0 0.75rem 1.8rem rgba(0, 0, 0, 0.32);
  }

  .floating-action svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  .floating-whatsapp svg {
    width: 1.7rem;
    height: 1.7rem;
  }
}

@media (max-width: 767px) {
  .services-heading p {
    width: 100%;
    min-width: 0;
  }

  .service-image-wrap {
    height: 80vw;
    min-height: 80vw;
    max-height: 80vw;
  }

  .service-list-wrap {
    padding: 1.25rem;
  }

  .service-item-top {
    flex-direction: column;
  }

  .service-badge {
    max-width: 100%;
    text-align: left;
  }

  .why-heading {
    align-items: flex-start;
    text-align: left;
  }

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

  .why-list article {
    min-height: 0;
  }

  .faq-item button {
    min-height: 4rem;
  }

  .faq-item.is-open .faq-answer p {
    padding-right: 0;
  }

  .directions-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .directions-button {
    width: 100%;
  }

  .social-links a {
    width: 2.85rem;
    height: 2.85rem;
  }
}

