:root {
  --bg: #F6FBF8;
  --bg-soft: #EAF7F1;
  --card: #FFFFFF;
  --text: #102033;
  --muted: #607080;
  --sky: #A7D8F0;
  --blue: #3BA7D8;
  --green: #8BCF9B;
  --deep-green: #2F7D59;
  --sun: #FFD76A;
  --warm-sun: #F4B63F;
  --border: #D9E8E1;
  --footer: #102033;
  --shadow: 0 20px 60px rgba(16, 32, 51, 0.10);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding-top: 72px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(167, 216, 240, 0.34), transparent 28%),
    radial-gradient(circle at 90% 26%, rgba(255, 215, 106, 0.25), transparent 24%),
    var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.section {
  padding: 86px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(47, 125, 89, 0.18);
  border-radius: 999px;
  background: rgba(255, 215, 106, 0.42);
  color: var(--deep-green);
  font-size: 0.84rem;
  font-weight: 700;
}

.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

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

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.13;
  letter-spacing: 0;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.15;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--deep-green);
  color: #FFFFFF;
  box-shadow: 0 12px 28px rgba(47, 125, 89, 0.24);
}

.btn-whatsapp {
  background: #24B85A;
  color: #FFFFFF;
  box-shadow: 0 12px 28px rgba(36, 184, 90, 0.22);
}

.btn-soft {
  background: #FFFFFF;
  color: var(--text);
  border-color: var(--border);
}

.site-header,
.header,
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.site-header {
  background: #f6fbf8;
  border-bottom: 1px solid rgba(217, 232, 225, 0.8);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease;
}

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

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  display: block;
  width: auto;
  height: 58px;
  max-height: 58px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 6px;
}

.desktop-nav a {
  padding: 10px 11px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.desktop-nav a:hover {
  background: var(--bg-soft);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.location-pill {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #FFFFFF;
  color: var(--deep-green);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.icon-link,
.floating-actions a,
.floating-actions button {
  display: inline-grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.icon-link {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: #24B85A;
  color: #FFFFFF;
}

svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.menu-toggle,
.menu-close {
  display: none;
}

.menu-backdrop,
.mobile-menu {
  display: none;
}

.hero {
  padding-top: 62px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 56px;
}

.hero-copy p {
  max-width: 690px;
  font-size: 1.1rem;
}

.hero-buttons,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

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

.hero-badges span {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-visual {
  width: 100%;
  max-width: 680px;
  min-height: 580px;
  margin-left: auto;
}

.hero-main-image {
  width: 100%;
  min-height: 580px;
  border-radius: 24px;
  background-color: #FFFFFF;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(167, 216, 240, 0.52), rgba(234, 247, 241, 0.95) 48%, rgba(255, 215, 106, 0.32)),
    #FFFFFF;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.image-panel.has-image .placeholder-mark,
.image-panel.has-image span {
  opacity: 0;
}

.placeholder-mark {
  position: absolute;
  inset: auto 24px 24px 24px;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.placeholder-mark span {
  width: 74px;
  height: 74px;
  border: 2px solid rgba(47, 125, 89, 0.35);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, rgba(47, 125, 89, 0.35) 47% 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(47, 125, 89, 0.35) 47% 53%, transparent 54%),
    rgba(255, 255, 255, 0.42);
}

.quick-contact {
  padding: 0 0 38px;
}

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

.quick-grid a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.06);
}

.quick-grid svg {
  flex: 0 0 auto;
  color: var(--deep-green);
}

.quick-grid span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.quick-grid strong,
.quick-grid small {
  overflow-wrap: anywhere;
}

.quick-grid small {
  color: var(--muted);
  font-weight: 700;
}

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

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.5fr);
  align-items: end;
  gap: 32px;
}

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

.services {
  background: linear-gradient(180deg, rgba(234, 247, 241, 0.78), rgba(246, 251, 248, 0));
}

.service-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: stretch;
}

.service-photo {
  min-height: 620px;
  box-shadow: none;
}

.service-photo::after,
.care-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 32, 51, 0.02), rgba(16, 32, 51, 0.46));
}

.service-photo-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.service-photo-label span,
.request-tag,
.service-status {
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-photo-label strong {
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1.18;
}

.service-sheet {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(167, 216, 240, 0.13), rgba(255, 255, 255, 0) 36%),
    #FFFFFF;
}

.service-sheet h2 {
  margin-bottom: 12px;
}

.service-sheet > p {
  margin-bottom: 20px;
}

.service-rows {
  display: grid;
  gap: 8px;
}

.service-rows article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(217, 232, 225, 0.92);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(246, 251, 248, 0.72);
}

.service-rows article:nth-child(even) {
  border-left-color: var(--green);
  background: rgba(234, 247, 241, 0.7);
}

.service-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(167, 216, 240, 0.34);
  color: var(--text);
  white-space: nowrap;
}

.service-status.warm {
  background: rgba(255, 215, 106, 0.5);
}

.service-rows h3 {
  margin-bottom: 3px;
}

.service-rows p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.why {
  padding: 80px 0;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: stretch;
}

.why-intro {
  display: flex;
  flex-direction: column;
  padding: 42px;
  border-radius: 28px;
  background: #102033;
  color: #FFFFFF;
}

.why-intro .section-kicker {
  background: rgba(255, 215, 106, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.why-intro h2 {
  margin-bottom: 16px;
}

.why-intro p {
  color: rgba(255, 255, 255, 0.78);
}

.why-notes {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.why-notes span {
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-weight: 800;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  position: relative;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #FFFFFF;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(167, 216, 240, 0.28);
}

.why-card:nth-child(2n)::after {
  background: rgba(139, 207, 155, 0.26);
}

.why-card:nth-child(3n)::after {
  background: rgba(255, 215, 106, 0.34);
}

.why-card span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 215, 106, 0.45);
  color: var(--deep-green);
  font-weight: 900;
}

.why-card h3 {
  margin-bottom: 8px;
}

.why-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.process {
  background: rgba(255, 255, 255, 0.42);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.service-request {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 215, 106, 0.22), rgba(255, 255, 255, 0) 42%),
    #FFFFFF;
}

.request-tag {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 215, 106, 0.46);
}

.request-card {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.request-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px dashed rgba(96, 112, 128, 0.32);
}

.request-card div:last-child {
  border-bottom: 0;
}

.request-card span {
  color: var(--muted);
  font-weight: 800;
}

.request-card strong {
  text-align: right;
}

.process-flow {
  display: grid;
  gap: 10px;
}

.process-flow article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #FFFFFF;
}

.process-flow article:nth-child(2),
.process-flow article:nth-child(4) {
  margin-left: 28px;
  background: rgba(234, 247, 241, 0.84);
}

.process-flow span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--deep-green);
  color: #FFFFFF;
  font-weight: 900;
}

.process-flow h3 {
  margin-bottom: 6px;
}

.process-flow p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.care {
  background: var(--bg-soft);
}

.care-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 28px;
}

.care-copy {
  padding: 10px 0;
}

.care-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.care-checklist li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(47, 125, 89, 0.16);
  border-radius: var(--radius);
  background: #FFFFFF;
  color: var(--text);
  font-weight: 800;
}

.care-checklist li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px #FFFFFF;
  transform: translateY(-50%);
}

.care-photo {
  min-height: 430px;
  box-shadow: var(--shadow);
}

.care-plan {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.care-plan span {
  color: var(--deep-green);
  font-weight: 900;
}

.care-plan small {
  color: var(--muted);
  font-weight: 700;
}

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

.gallery-item {
  display: flex;
  align-items: end;
  min-height: 245px;
  box-shadow: none;
}

.gallery-item span {
  margin: 16px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-weight: 800;
}

.faq {
  background: linear-gradient(180deg, rgba(234, 247, 241, 0.66), rgba(246, 251, 248, 1));
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.78fr);
  gap: 36px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #FFFFFF;
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 60px;
  padding: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  margin-left: 18px;
  color: var(--deep-green);
  font-size: 1.45rem;
}

.faq-item.is-open button::after {
  content: "−";
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-content p {
  margin: 0;
  padding: 0 18px 18px;
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.8fr);
  gap: 18px;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #FFFFFF;
}

.contact-card h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.contact-card p {
  margin-bottom: 2px;
}

.contact-card > a:not(.btn),
.contact-card span {
  color: var(--deep-green);
  font-weight: 800;
}

.contact-card .btn {
  margin-top: 8px;
}

.map-frame {
  min-height: 430px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}

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

.contact-cta {
  padding: 62px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(47, 125, 89, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(139, 207, 155, 0.30), rgba(167, 216, 240, 0.28), rgba(255, 215, 106, 0.30)),
    #FFFFFF;
}

.cta-inner h2 {
  margin-bottom: 10px;
}

.cta-inner p,
.cta-actions {
  margin-bottom: 0;
}

.site-footer {
  background: var(--footer);
  color: #FFFFFF;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(150px, 0.55fr));
  gap: 30px;
  padding: 54px 0 34px;
}

.footer-brand {
  max-width: 380px;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand-head img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-brand-head strong {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #FFFFFF;
}

.site-footer h3 + a,
.site-footer h3 + span {
  margin-top: 0;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 10px;
}

.site-footer a:hover {
  color: var(--green);
}

.footer-bottom {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.floating-actions a,
.floating-actions button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #FFFFFF;
  box-shadow: 0 12px 26px rgba(16, 32, 51, 0.18);
}

.float-whatsapp {
  background: #24B85A;
}

.float-phone {
  background: var(--blue);
}

.float-top {
  background: var(--text);
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #FFFFFF;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: block;
    pointer-events: none;
    background: rgba(16, 32, 51, 0);
    transition: background 0.2s ease;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10001;
    display: grid;
    align-content: start;
    gap: 10px;
    width: min(360px, calc(100% - 34px));
    height: 100vh;
    padding: 22px;
    background: #FFFFFF;
    box-shadow: -20px 0 54px rgba(16, 32, 51, 0.18);
    transform: translateX(105%);
    transition: transform 0.24s ease;
  }

  body.menu-open .menu-backdrop {
    pointer-events: auto;
    background: rgba(16, 32, 51, 0.36);
  }

  body.menu-open .mobile-menu {
    transform: translateX(0);
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
  }

  .menu-close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    font-size: 1.7rem;
    cursor: pointer;
  }

  .mobile-menu > a:not(.btn),
  .mobile-location {
    padding: 14px 12px;
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    font-weight: 900;
  }

  .mobile-location {
    color: var(--deep-green);
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 64px;
  }

  .header-inner {
    min-height: 64px;
    max-height: 64px;
  }

  .brand img {
    height: 48px;
    max-height: 48px;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 68px 0;
  }

  .hero-grid,
  .why-layout,
  .service-board,
  .process-grid,
  .care-grid,
  .faq-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 100%;
    min-height: auto;
    margin-left: 0;
    transform: none;
  }

  .hero-main-image {
    min-height: 420px;
  }

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

  .split-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-photo {
    min-height: 420px;
  }

  .service-sheet {
    padding: 24px;
  }

  .why-intro {
    grid-template-columns: 1fr;
    padding: 28px;
  }

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

  .process-flow article:nth-child(2),
  .process-flow article:nth-child(4) {
    margin-left: 0;
  }

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

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

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

@media (max-width: 620px) {
  body {
    padding-top: 64px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 64px;
    max-height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    height: 48px;
    max-height: 48px;
  }

  .hero {
    padding-top: 42px;
  }

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

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

  .hero-main-image {
    min-height: 220px;
  }

  .gallery-grid,
  .service-rows article,
  .why-cards,
  .care-checklist,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-photo {
    min-height: 300px;
  }

  .service-photo-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .service-sheet,
  .service-request {
    padding: 20px;
  }

  .service-rows article {
    align-items: start;
    gap: 9px;
  }

  .service-status {
    width: fit-content;
  }

  .why {
    padding: 64px 0;
  }

  .why-card {
    min-height: auto;
    padding: 20px;
  }

  .process-flow article {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px;
  }

  .process-flow span {
    width: 38px;
    height: 38px;
    font-size: 0.86rem;
  }

  .request-card div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .request-card strong {
    text-align: left;
  }

  .care-photo {
    min-height: 310px;
  }

  .footer-brand-head img {
    width: 52px;
    height: 52px;
  }

  .gallery-item {
    min-height: 210px;
  }

  .cta-inner {
    padding: 24px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 330px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .floating-actions a,
  .floating-actions button {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 360px) {
  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    width: calc(100% - 22px);
    padding: 18px;
  }

  .hero-main-image {
    min-height: 210px;
  }
}
