:root {
  --ink: #122a2f;
  --ink-soft: #52666a;
  --navy: #0f292d;
  --navy-2: #17393d;
  --teal: #0b786f;
  --teal-dark: #075e58;
  --mint: #dff1ec;
  --mint-light: #eff8f5;
  --cream: #f7f6f1;
  --white: #ffffff;
  --line: #dfe7e4;
  --gold: #f0a530;
  --whatsapp: #168c4c;
  --shadow: 0 18px 48px rgba(15, 41, 45, 0.1);
  --radius-sm: 10px;
  --radius-md: 18px;
  --container: 1180px;
  --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--navy); background: #bce5da; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: -60px; left: 16px; padding: 10px 16px; color: white; background: var(--navy); border-radius: 0 0 8px 8px; transition: top .2s ease; }
.skip-link:focus { top: 0; }

.topline { color: #d8eeea; background: #09272b; font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.topline-inner { display: flex; min-height: 34px; align-items: center; justify-content: space-between; gap: 18px; }
.topline span, .topline a { display: inline-flex; align-items: center; gap: 6px; }
.topline svg { width: 14px; height: 14px; fill: none; stroke: #78d3c4; stroke-width: 1.8; }
.topline a { color: white; }
.topline a:hover { color: #88dfd0; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.scroll-progress { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--teal); pointer-events: none; transform: scaleX(0); transform-origin: left center; will-change: transform; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 24px rgba(15, 41, 45, .08); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { display: grid; place-items: center; width: 39px; height: 39px; color: white; background: var(--teal); border-radius: 50%; }
.brand-mark svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.brand-text { display: flex; flex-direction: column; color: var(--navy); font-size: 18px; line-height: 1.05; letter-spacing: -.3px; }
.brand-text strong { font-size: 12px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-link { position: relative; padding: 27px 0 24px; color: #344d51; font-size: 14px; font-weight: 650; }
.nav-link::after { content: ""; position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; background: var(--teal); transform: scaleX(0); transition: transform .22s ease; }
.nav-link:hover, .nav-link.active { color: var(--teal); }
.nav-link.active::after { transform: scaleX(1); }
.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 12px 22px; border: 1px solid transparent; border-radius: 7px; cursor: pointer; font-weight: 750; line-height: 1.2; transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .menu-toggle:focus-visible, .scroll-top:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(11, 120, 111, .25); outline-offset: 3px; }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn-header { min-height: 43px; padding: 10px 17px; color: white; background: var(--navy); font-size: 14px; }
.btn-header:hover { background: var(--teal-dark); }
.menu-toggle { display: none; width: 42px; height: 42px; margin-left: auto; padding: 10px; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px 0; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.active span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:last-child { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: calc(100svh - var(--header-height)); isolation: isolate; overflow: hidden; background: #e8efeb; }
.hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(247,246,241,.99) 0%, rgba(247,246,241,.97) 34%, rgba(247,246,241,.72) 49%, rgba(247,246,241,.06) 70%); }
.hero-media { position: absolute; z-index: -2; inset: 0 0 0 36%; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 56% center; }
.hero-inner { display: flex; min-height: calc(100svh - var(--header-height)); align-items: center; padding-top: 70px; padding-bottom: 110px; }
.hero-copy { width: min(650px, 58%); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: .13em; line-height: 1.3; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow.light { color: #83d6c8; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.045em; line-height: 1.03; }
.tool-t { position: relative; display: inline-block; width: .62em; height: .79em; margin: 0 .025em; color: var(--teal); vertical-align: -.055em; }
.tool-word { white-space: nowrap; }
.tool-t::before { content: ""; position: absolute; top: .02em; left: 0; width: .62em; height: .14em; background: repeating-linear-gradient(90deg, currentColor 0 .07em, transparent .07em .09em), currentColor; border-radius: .08em .08em .025em .025em; }
.tool-t::after { content: ""; position: absolute; top: .13em; left: .27em; width: .105em; height: .65em; background: currentColor; border-radius: 0 0 .08em .08em; transform: rotate(-2deg); transform-origin: top center; }
.contact-copy .tool-t { color: #a5e5da; }
.process-list h3 .tool-t { color: var(--teal); }
h1 { max-width: 690px; margin-bottom: 26px; color: var(--navy); font-size: clamp(47px, 5.2vw, 78px); }
h1 em { color: var(--teal); font-style: normal; }
.hero-lede { max-width: 600px; margin-bottom: 33px; color: #43595c; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-primary { color: white; background: var(--teal); box-shadow: 0 10px 22px rgba(11, 120, 111, .18); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 14px 28px rgba(11, 120, 111, .22); }
.btn-secondary { color: var(--navy); background: rgba(255,255,255,.88); border-color: #cad7d3; }
.btn-secondary:hover, .btn-outline:hover { color: white; background: var(--navy); border-color: var(--navy); }
.hero-trust { display: flex; align-items: center; gap: 0; margin-top: 52px; }
.trust-item { display: flex; align-items: center; gap: 8px; padding: 0 23px; border-left: 1px solid #cbd9d5; color: #294246; font-size: 12px; }
.trust-item:first-child { padding-left: 0; border-left: 0; }
.trust-item svg { width: 19px; height: 19px; color: var(--teal); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.rating-item { display: block; }
.stars { display: block; color: var(--gold); font-size: 14px; letter-spacing: 1px; line-height: 1; }
.rating-item .stars { margin-bottom: 7px; }
.hero-note { position: absolute; right: 4vw; bottom: 30px; display: flex; align-items: center; gap: 12px; min-width: 234px; padding: 15px 18px; color: var(--navy); background: white; border-left: 4px solid var(--teal); box-shadow: var(--shadow); }
.hero-note > svg { width: 27px; height: 27px; color: var(--teal); fill: none; stroke: currentColor; stroke-width: 1.6; }
.hero-note span { display: flex; flex-direction: column; line-height: 1.3; }
.hero-note small { color: var(--ink-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.service-ribbon { color: white; background: var(--teal); border-top: 1px solid rgba(255,255,255,.13); }
.service-ribbon-track { display: flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 18px; overflow: hidden; }
.service-ribbon a { flex: 0 0 auto; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.service-ribbon a:hover { color: #c9f0e9; }
.service-ribbon span { color: #8ed8cc; }

.services { background: var(--white); }
.section-heading { margin-bottom: 54px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.section-heading h2, .why-intro h2, .area-content h2, .contact-copy h2 { margin-bottom: 0; font-size: clamp(38px, 4vw, 57px); }
.split-heading > p { max-width: 460px; margin-bottom: 4px; color: var(--ink-soft); }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.service-card { position: relative; display: flex; min-height: 276px; flex-direction: column; padding: 27px 22px 22px; overflow: hidden; background: #fbfcfa; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #b9d6d0; box-shadow: 0 16px 35px rgba(15, 41, 45, .08); }
.service-card.featured { color: white; background: var(--teal); border-color: var(--teal); }
.service-card.featured p, .service-card.featured .card-number, .service-card.featured .service-pick { color: #d9f1ed; }
.service-card.featured-dark { color: white; background: var(--navy); border-color: var(--navy); }
.service-card.featured-dark p, .service-card.featured-dark .card-number, .service-card.featured-dark .service-pick { color: #bdd0d2; }
.service-icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 32px; color: var(--teal); background: var(--mint-light); border-radius: 50%; }
.featured .service-icon, .featured-dark .service-icon { color: white; background: rgba(255,255,255,.13); }
.service-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card-number { position: absolute; top: 25px; right: 23px; color: #95a5a7; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.service-card h3 { margin-bottom: 10px; font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 600; line-height: 1.2; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: 13.5px; line-height: 1.65; }
.service-pick { display: inline-flex; width: fit-content; align-items: center; gap: 6px; margin-top: auto; padding: 19px 0 0; color: var(--teal); background: none; border: 0; cursor: pointer; font-size: 11px; font-weight: 800; }
.service-pick svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.service-card:hover .service-pick svg { transform: translateX(3px); }
.service-scroll-hint { display: none; }

.work-showcase { position: relative; color: white; background: #0c2b30; overflow: hidden; }
.work-showcase::before { content: ""; position: absolute; width: 470px; height: 470px; top: -310px; right: -120px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012); }
.showcase-heading { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; margin-bottom: 45px; }
.showcase-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 4.2vw, 62px); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.showcase-heading h2 em { color: #83d6c8; font-style: normal; }
.showcase-heading > p { max-width: 470px; margin: 0 0 5px; color: #b6cbcd; }
.photo-mosaic { position: relative; display: grid; grid-template-columns: 1.35fr .72fr .7fr; grid-template-rows: 285px 285px; gap: 14px; }
.photo-tile, .promo-tile { position: relative; margin: 0; overflow: hidden; background: #17383c; border-radius: 9px; }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.photo-tile:hover img { transform: scale(1.025); }
.photo-tile::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(5,24,28,.88)); }
.office-photo { grid-row: 1 / 3; }
.office-photo img { object-position: center; }
.sofa-photo { grid-column: 2; grid-row: 1; }
.bath-photo { grid-column: 2; grid-row: 2; }
.promo-tile { grid-column: 3; grid-row: 1 / 3; display: grid; place-items: center; padding: 18px; background: #f5f1ed; }
.promo-tile::before { content: "URBAN CLEANING SERVICES"; position: absolute; z-index: 1; top: 17px; left: 50%; width: max-content; color: var(--teal); font-size: 9px; font-weight: 900; letter-spacing: .14em; transform: translateX(-50%); }
.promo-tile::after { content: "SAVE OUR CONTACT\A 8133979184\A Open 24 hours"; position: absolute; z-index: 1; top: 64px; left: 50%; width: 100%; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 13px; font-weight: 600; line-height: 1.65; text-align: center; white-space: pre; transform: translateX(-50%); }
.promo-tile img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(15,41,45,.12)); }
.photo-tile figcaption { position: absolute; z-index: 2; right: 22px; bottom: 20px; left: 22px; display: flex; flex-direction: column; line-height: 1.3; }
.photo-tile figcaption span { margin-bottom: 5px; color: #9fe3d7; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.photo-tile figcaption strong { color: white; font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 600; }

.why-section { position: relative; color: white; background: var(--navy); overflow: hidden; }
.why-section::after { content: ""; position: absolute; width: 420px; height: 420px; right: -230px; bottom: -250px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.02), 0 0 0 140px rgba(255,255,255,.015); }
.why-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; align-items: center; }
.why-intro p:not(.eyebrow) { max-width: 485px; margin: 25px 0 30px; color: #b9cccd; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 750; }
.text-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.light-link { color: #82d6c7; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.why-item { display: flex; gap: 14px; min-height: 112px; align-items: flex-start; padding: 25px 22px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.why-item > span { display: grid; flex: 0 0 auto; width: 28px; height: 28px; place-items: center; color: #8de0d1; border: 1px solid rgba(141,224,209,.45); border-radius: 50%; }
.why-item svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.why-item p { display: flex; flex-direction: column; margin: 0; line-height: 1.35; }
.why-item strong { font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-weight: 600; }
.why-item small { margin-top: 5px; color: #9fb6b8; font-size: 12px; line-height: 1.4; }

.process-section { background: var(--cream); }
.centered { max-width: 720px; margin-right: auto; margin-left: auto; text-align: center; }
.centered-eyebrow { justify-content: center; }
.process-list { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin: 0; padding: 0; list-style: none; }
.process-list::before { content: ""; position: absolute; top: 48px; right: 16.5%; left: 16.5%; border-top: 1px dashed #a8c3bd; }
.process-list li { position: relative; z-index: 1; text-align: center; }
.step-number { position: absolute; top: -5px; left: calc(50% + 42px); color: #8ba19e; font-size: 11px; font-weight: 800; letter-spacing: .06em; }
.step-icon { display: grid; width: 96px; height: 96px; place-items: center; margin: 0 auto 24px; color: var(--teal); background: white; border: 1px solid #cbded9; border-radius: 50%; box-shadow: 0 9px 22px rgba(15,41,45,.06); }
.step-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.process-list h3 { margin-bottom: 8px; font-family: Georgia, "Times New Roman", serif; font-size: 21px; }
.process-list p { max-width: 295px; margin: 0 auto; color: var(--ink-soft); font-size: 14px; }

.reviews-section { color: white; background: #113338; }
.reviews-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: center; }
.review-score { padding-right: 50px; border-right: 1px solid rgba(255,255,255,.13); }
.review-score .score { display: block; margin-top: 16px; font-family: Georgia, "Times New Roman", serif; font-size: 84px; line-height: .9; letter-spacing: -.05em; }
.large-stars { margin: 20px 0 15px; color: var(--gold); font-size: 19px; letter-spacing: 4px; }
.review-score h2 { margin-bottom: 4px; font-family: ui-sans-serif, system-ui, sans-serif; font-size: 17px; font-weight: 700; letter-spacing: 0; }
.review-score > p:last-child { margin: 0; color: #9fb9bb; font-size: 13px; }
.review-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.review-card { position: relative; min-height: 262px; margin: 0; padding: 32px; color: var(--ink); background: white; border-radius: var(--radius-sm); }
.review-card .quote-mark { position: absolute; top: 14px; right: 27px; color: #d9ebe6; font-family: Georgia, serif; font-size: 72px; line-height: 1; }
.review-card .stars { margin-bottom: 26px; }
.review-card blockquote { margin: 0 0 35px; font-family: Georgia, "Times New Roman", serif; font-size: 23px; line-height: 1.35; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; }
.review-card figcaption > span { display: grid; width: 38px; height: 38px; place-items: center; color: var(--teal); background: var(--mint); border-radius: 50%; font-size: 12px; font-weight: 800; }
.review-card figcaption div { display: flex; flex-direction: column; line-height: 1.4; }
.review-card figcaption strong { font-size: 13px; }
.review-card figcaption small { color: #75878a; font-size: 11px; }

.area-section { background: white; }
.area-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; padding: 0; overflow: hidden; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-md); }
.area-visual { position: relative; min-height: 440px; overflow: hidden; background-color: #dcece7; background-image: linear-gradient(30deg, transparent 45%, rgba(255,255,255,.75) 46%, rgba(255,255,255,.75) 49%, transparent 50%), linear-gradient(-37deg, transparent 44%, rgba(255,255,255,.7) 45%, rgba(255,255,255,.7) 49%, transparent 50%), linear-gradient(80deg, transparent 47%, rgba(19,89,83,.08) 48%, rgba(19,89,83,.08) 50%, transparent 51%); background-size: 150px 150px, 210px 170px, 110px 140px; }
.area-visual::before, .area-visual::after { content: ""; position: absolute; border: 2px solid rgba(11,120,111,.15); border-radius: 50%; }
.area-visual::before { width: 340px; height: 340px; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.area-visual::after { width: 190px; height: 190px; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.map-pin { position: absolute; z-index: 2; top: 45%; left: 51%; display: grid; width: 66px; height: 66px; place-items: center; color: white; background: var(--teal); border: 7px solid rgba(255,255,255,.85); border-radius: 50%; box-shadow: 0 12px 28px rgba(15,41,45,.22); transform: translate(-50%, -50%); }
.map-pin svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.map-label { position: absolute; top: calc(45% + 48px); left: 51%; padding: 5px 10px; color: var(--navy); background: white; border-radius: 4px; box-shadow: 0 4px 12px rgba(15,41,45,.12); font-size: 12px; font-weight: 800; transform: translateX(-50%); }
.area-content { display: flex; flex-direction: column; justify-content: center; padding: 55px 58px; }
.area-content address { display: flex; gap: 13px; margin: 27px 0 30px; color: var(--ink-soft); font-style: normal; }
.area-content address svg { flex: 0 0 auto; width: 21px; height: 21px; margin-top: 4px; color: var(--teal); fill: none; stroke: currentColor; stroke-width: 1.8; }
.area-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.btn-outline { color: var(--navy); background: transparent; border-color: #bdccc8; }

.contact-section { position: relative; color: white; background: var(--teal); overflow: hidden; }
.contact-section::before { content: ""; position: absolute; width: 550px; height: 550px; left: -340px; top: -280px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 100px rgba(255,255,255,.025), 0 0 0 200px rgba(255,255,255,.02); }
.contact-layout { position: relative; display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: center; }
.contact-copy > p:not(.eyebrow) { max-width: 430px; margin: 24px 0 37px; color: #d5efea; }
.contact-details { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.19); }
.contact-details > a, .contact-details > div { display: flex; align-items: center; gap: 13px; margin-top: 15px; }
.contact-details > a > span, .contact-details > div > span { display: grid; width: 39px; height: 39px; place-items: center; color: white; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.contact-details svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact-details div > div, .contact-details p { display: flex; flex-direction: column; margin: 0; line-height: 1.45; }
.contact-details small { color: #b8e2db; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.contact-details strong { font-size: 15px; }
.booking-form { padding: 38px; color: var(--ink); background: white; border-radius: var(--radius-sm); box-shadow: 0 24px 60px rgba(3,47,43,.25); transition: box-shadow .25s ease; }
.booking-form.form-highlight { box-shadow: 0 0 0 5px rgba(143,232,216,.36), 0 24px 60px rgba(3,47,43,.25); }
.form-heading { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-heading h3 { margin: 3px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 27px; }
.form-heading > svg { width: 30px; height: 30px; color: var(--whatsapp); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-group { min-width: 0; }
.form-full { grid-column: 1 / -1; }
.form-group label { display: block; margin-bottom: 6px; color: #30494d; font-size: 12px; font-weight: 750; }
.form-group label span { color: #b84949; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 12px; color: var(--ink); background: #fafbf9; border: 1px solid #d8e1de; border-radius: 6px; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.form-group input, .form-group select { height: 47px; }
.form-group textarea { min-height: 90px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(11,120,111,.09); }
.form-group input.invalid, .form-group select.invalid { border-color: #b84949; }
.field-error { display: block; min-height: 16px; padding-top: 2px; color: #a53e3e; font-size: 10px; line-height: 1.3; }
.btn-whatsapp { width: 100%; margin-top: 7px; color: white; background: var(--whatsapp); border: 0; }
.btn-whatsapp:hover { background: #107840; box-shadow: 0 12px 25px rgba(22,140,76,.2); }
.btn-whatsapp svg { width: 20px; height: 20px; }
.form-note { margin: 10px 0 0; color: #75878a; font-size: 10px; text-align: center; }

.site-footer { padding: 72px 0 22px; color: #b8c8ca; background: #0b2226; }
.footer-main { display: grid; grid-template-columns: 2fr .7fr 1fr; gap: 80px; padding-bottom: 55px; }
.brand-footer .brand-text { color: white; }
.footer-brand p { margin: 22px 0 0; color: #82999c; font-size: 14px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 13px; }
.footer-column h3 { margin-bottom: 10px; color: white; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-column a:hover { color: #82d6c7; }
.footer-contact span { color: #82999c; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.09); color: #688084; font-size: 11px; }
.footer-bottom p { margin: 0; }
.desktop-whatsapp, .scroll-top { position: fixed; z-index: 80; right: 24px; display: grid; place-items: center; border: 0; border-radius: 50%; cursor: pointer; box-shadow: 0 8px 24px rgba(15,41,45,.2); transition: opacity .2s ease, transform .2s ease, background-color .2s ease; }
.desktop-whatsapp { bottom: 88px; width: 52px; height: 52px; color: white; background: var(--whatsapp); }
.desktop-whatsapp:hover { transform: translateY(-3px); }
.desktop-whatsapp svg, .scroll-top svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.scroll-top { bottom: 27px; width: 43px; height: 43px; color: var(--navy); background: white; opacity: 0; pointer-events: none; transform: translateY(10px); }
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { color: white; background: var(--navy); }
.mobile-cta { display: none; }

.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .58s ease, transform .58s cubic-bezier(.2,.7,.25,1); will-change: opacity, transform; }
.js [data-reveal].revealed { opacity: 1; transform: translateY(0); }
.js .photo-mosaic [data-reveal] { transform: translateY(26px) scale(.985); }
.js .photo-mosaic [data-reveal].revealed { transform: translateY(0) scale(1); }
.js [data-reveal].revealed { will-change: auto; }
.service-grid [data-reveal]:nth-child(2), .why-list [data-reveal]:nth-child(2), .review-cards [data-reveal]:nth-child(2) { transition-delay: .06s; }
.service-grid [data-reveal]:nth-child(3) { transition-delay: .12s; }
.service-grid [data-reveal]:nth-child(4) { transition-delay: .18s; }

@media (max-width: 1040px) {
  .primary-nav { gap: 21px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 220px; }
  .why-layout { gap: 50px; }
  .reviews-layout { gap: 45px; }
  .contact-layout { gap: 48px; }
}

@media (max-width: 860px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 82px 0; }
  .menu-toggle { display: block; }
  .header-inner > .btn-header { display: none; }
  .primary-nav { position: fixed; z-index: 99; top: var(--header-height); right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 110px; background: white; opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease; }
  .primary-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-link { padding: 17px 4px; border-bottom: 1px solid var(--line); font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 500; }
  .nav-link::after { display: none; }
  .hero { min-height: auto; }
  .hero::before { background: linear-gradient(90deg, rgba(247,246,241,.98) 0%, rgba(247,246,241,.91) 58%, rgba(247,246,241,.2) 100%); }
  .hero-media { left: 22%; }
  .hero-inner { min-height: 720px; padding-top: 80px; }
  .hero-copy { width: 75%; }
  .hero-note { display: none; }
  .split-heading { grid-template-columns: 1fr; gap: 22px; }
  .why-layout, .reviews-layout, .contact-layout { grid-template-columns: 1fr; }
  .why-layout { gap: 50px; }
  .why-intro { max-width: 650px; }
  .reviews-layout { gap: 50px; }
  .review-score { padding-right: 0; padding-bottom: 35px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); text-align: center; }
  .review-score .eyebrow { justify-content: center; }
  .contact-copy { max-width: 600px; }
  .showcase-heading { grid-template-columns: 1fr; gap: 22px; }
  .photo-mosaic { grid-template-columns: 1.1fr .9fr; grid-template-rows: 290px 290px 400px; }
  .office-photo { grid-column: 1; grid-row: 1 / 3; }
  .sofa-photo { grid-column: 2; grid-row: 1; }
  .bath-photo { grid-column: 2; grid-row: 2; }
  .promo-tile { grid-column: 1 / 3; grid-row: 3; }
  .footer-main { grid-template-columns: 1.5fr .8fr 1fr; gap: 35px; }
}

@media (max-width: 680px) {
  body { padding-bottom: 67px; }
  .topline-inner { min-height: 32px; justify-content: center; }
  .topline-inner > span { display: none; }
  .section { padding: 70px 0; }
  .hero { display: block; min-height: 790px; background: #e8efeb; }
  .hero::before { display: block; background: linear-gradient(180deg, rgba(247,246,241,.98) 0%, rgba(247,246,241,.93) 46%, rgba(247,246,241,.73) 72%, rgba(247,246,241,.22) 100%); }
  .hero-media { position: absolute; inset: 0; height: 100%; }
  .hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,246,241,.44), transparent 78%); }
  .hero-media img { object-position: 66% center; }
  .hero-inner { min-height: 790px; align-items: flex-start; padding-top: 56px; padding-bottom: 100px; }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(43px, 13vw, 60px); }
  .hero-lede { font-size: 15.5px; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 0; margin-top: 39px; }
  .trust-item { min-height: 32px; padding: 0 13px; }
  .trust-item:nth-child(odd) { padding-left: 0; border-left: 0; }
  .trust-item:last-child { grid-column: 1 / -1; }
  .service-ribbon-track { justify-content: flex-start; gap: 13px; overflow-x: auto; scrollbar-width: none; }
  .service-ribbon-track::-webkit-scrollbar { display: none; }
  .service-ribbon a { font-size: 10px; }
  .service-grid { display: flex; width: calc(100% + 14px); gap: 12px; overflow-x: auto; padding: 3px 14px 15px 2px; scroll-padding-left: 2px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .service-grid::-webkit-scrollbar { display: none; }
  .service-card { min-height: 284px; flex: 0 0 min(80vw, 305px); padding: 24px; scroll-snap-align: start; }
  .service-icon { margin-bottom: 22px; }
  .service-scroll-hint { display: flex; align-items: center; justify-content: flex-end; gap: 7px; margin: 6px 0 0; color: var(--teal); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .service-scroll-hint svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
  .work-showcase { padding-bottom: 58px; }
  .showcase-heading { margin-bottom: 34px; }
  .showcase-heading h2 { font-size: 42px; }
  .showcase-heading > p { font-size: 14px; }
  .photo-mosaic { display: flex; width: calc(100% + 14px); height: auto; gap: 12px; overflow-x: auto; padding-right: 14px; padding-bottom: 14px; scroll-padding-left: 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .photo-mosaic::-webkit-scrollbar { display: none; }
  .photo-tile, .promo-tile { height: 420px; flex: 0 0 min(82vw, 350px); scroll-snap-align: start; }
  .office-photo, .sofa-photo, .bath-photo, .promo-tile { grid-column: auto; grid-row: auto; }
  .office-photo img { object-position: 60% center; }
  .promo-tile { padding: 12px; }
  .why-list { grid-template-columns: 1fr; }
  .why-item { min-height: 94px; }
  .process-list { grid-template-columns: 1fr; gap: 32px; }
  .process-list::before { top: 50px; bottom: 50px; left: 47px; right: auto; border-top: 0; border-left: 1px dashed #a8c3bd; }
  .process-list li { display: grid; grid-template-columns: 96px 1fr; grid-template-rows: auto auto; column-gap: 19px; text-align: left; }
  .step-icon { grid-row: 1 / 3; margin: 0; }
  .step-number { top: -7px; left: 74px; }
  .process-list h3 { align-self: end; margin-bottom: 4px; }
  .process-list p { margin: 0; }
  .review-cards { grid-template-columns: 1fr; }
  .area-card { grid-template-columns: 1fr; }
  .area-visual { min-height: 270px; }
  .area-content { padding: 38px 27px 42px; }
  .area-content h2 { font-size: 38px; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-full { grid-column: auto; }
  .booking-form { padding: 25px 19px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 5px; }
  .desktop-whatsapp, .scroll-top { display: none; }
  .mobile-cta { position: fixed; z-index: 101; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 67px; padding-bottom: env(safe-area-inset-bottom); color: white; background: var(--navy); box-shadow: 0 -7px 22px rgba(15,41,45,.15); }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; min-width: 0; font-size: 13px; font-weight: 800; }
  .mobile-cta a + a { background: var(--whatsapp); }
  .mobile-cta svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
}

@media (max-width: 430px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-text { font-size: 16px; }
  .brand-text strong { font-size: 10px; }
  .brand-mark { width: 36px; height: 36px; }
  .hero-inner { padding-top: 46px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { padding-right: 12px; padding-left: 12px; font-size: 13px; }
  .hero-media { height: 100%; }
  .photo-tile, .promo-tile { height: 390px; }
  .section-heading { margin-bottom: 39px; }
  .section-heading h2, .why-intro h2, .contact-copy h2 { font-size: 38px; }
  .process-list li { grid-template-columns: 80px 1fr; column-gap: 16px; }
  .step-icon { width: 80px; height: 80px; }
  .process-list::before { left: 39px; }
  .step-number { left: 61px; }
  .process-list h3 { font-size: 19px; }
  .process-list p { font-size: 13px; }
  .review-card { min-height: 240px; padding: 27px 24px; }
  .area-actions { display: grid; grid-template-columns: 1fr; }
  .contact-layout { gap: 40px; }
  .form-heading h3 { font-size: 23px; }
  .footer-main { gap: 35px 24px; }
}

@media (max-width: 350px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand-text { max-width: 150px; font-size: 15px; }
  h1 { font-size: 41px; }
  .hero, .hero-inner { min-height: 880px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr; }
  .trust-item { padding-left: 0; border-left: 0; }
  .trust-item:last-child { grid-column: auto; }
  .area-content { padding-right: 21px; padding-left: 21px; }
  .booking-form { padding-right: 15px; padding-left: 15px; }
  .photo-tile, .promo-tile { height: 360px; flex-basis: 84vw; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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