/* Klinow landing page — hand-written CSS, no framework. Tokens documented in DESIGN.md. */

:root {
  --navy-900: #0e3a52;
  --navy-700: #2c5670;
  --ink-600: #54707c;
  --teal-500: #0c7a70;
  --teal-600: #095f58;
  --mint-50: #eaf7f5;
  --line: #dcedea;
  --white: #ffffff;
  --cta-gradient: linear-gradient(135deg, #0c7a70 0%, #0a6690 100%);
  --wa-green: #0b6e3c;
  --star-gold: #c08a00;

  --font-heading: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-hand: "Caveat", cursive;

  --radius-card: 16px;
  --radius-pill: 999px;
  --shadow-hover: 0 12px 24px -12px rgba(14, 58, 82, 0.22);

  --container: 1180px;
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-600);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 200;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn svg {
  flex: none;
}

.btn-primary {
  background: var(--cta-gradient);
  color: #fff;
  box-shadow: 0 10px 20px -10px rgba(14, 127, 176, 0.55);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(14, 127, 176, 0.6);
}

.btn-outline {
  background: #fff;
  color: var(--navy-900);
  border: 1.5px solid var(--line);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--teal-500);
  color: var(--teal-600);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

/* Badges & chips */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--mint-50);
  color: var(--teal-600);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid var(--line);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy-700);
  font-weight: 600;
  font-size: 0.92rem;
}

.chip svg {
  color: var(--teal-500);
}

/* Section rhythm */

.section {
  padding-block: 88px;
}

.section--mint {
  background: var(--mint-50);
}

.section-head {
  max-width: 620px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-head p {
  font-size: 1.05rem;
}

/* Base state: fully visible. Only .js (set by an inline script in <head>)
   opts into the hide-then-reveal animation, so content never depends on
   JavaScript running to be seen (no-JS / slow script / blocked script all
   still show the full page). */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Navbar ---------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--navy-900);
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--ink-600);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  color: var(--navy-700);
  font-size: 0.95rem;
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal-600);
  border-color: var(--teal-500);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  border-radius: 10px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: #fff;
  z-index: 99;
  padding: 28px 24px;
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  padding: 16px 4px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
}

.mobile-menu .btn {
  margin-top: 24px;
}

/* ---------- Hero ---------- */

.hero {
  padding-block: 56px 80px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  margin-block: 18px 16px;
}

.hero-copy h1 .accent {
  background: var(--cta-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hero-visual {
  position: relative;
}

.hero-visual .photo-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(14, 58, 82, 0.35);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hand-accent {
  position: absolute;
  top: -18px;
  right: 6%;
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--teal-600);
  transform: rotate(-4deg);
  max-width: 190px;
  line-height: 1.15;
}

/* ---------- Property strip ---------- */

.property-strip .container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
}

.property-strip h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.property-strip .lede {
  font-size: 0.95rem;
}

.property-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.property-item {
  flex: 0 0 auto;
  width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  text-align: center;
}

.property-item .icon-circle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--teal-500);
}

.property-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-700);
}

/* ---------- Services ---------- */

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover,
.service-card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.service-card .photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-body h3 {
  font-size: 1.12rem;
}

.service-body p {
  font-size: 0.92rem;
  flex: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.price {
  font-size: 0.82rem;
  color: var(--ink-600);
}

.price strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.02rem;
  font-family: var(--font-heading);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-600);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  border: 1px solid var(--line);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.card-cta:hover,
.card-cta:focus-visible {
  background: var(--mint-50);
  border-color: var(--teal-500);
}

/* ---------- Why Klinow ---------- */

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.why-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 10px;
}

.why-intro .tagline {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--teal-600);
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-card .icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-500);
  color: #fff;
  display: grid;
  place-items: center;
}

.why-card h3 {
  font-size: 1.02rem;
}

.why-card p {
  font-size: 0.9rem;
}

/* ---------- Area ---------- */

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.area-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.area-copy > p {
  margin-bottom: 22px;
}

.area-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 0;
  background: #fff;
  text-align: center;
  box-shadow: none;
}

.area-map img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 5%, rgba(0,0,0,.68) 15%, #000 30%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 5%, rgba(0,0,0,.68) 15%, #000 30%);
}

.area-map-label {
  display: inline-block;
  margin: 18px 0;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: var(--mint-50);
  border: 1px solid var(--line);
  color: var(--navy-900);
  font-weight: 800;
  font-size: 0.95rem;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 26px;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy-700);
  font-size: 0.95rem;
}

.area-list svg {
  color: var(--teal-500);
  flex: none;
}

/* ---------- Testimonials ---------- */

.testi-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--star-gold);
}

.testi-quote {
  font-size: 0.98rem;
  color: var(--navy-700);
  flex: 1;
}

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

.avatar-initial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mint-50);
  color: var(--teal-600);
  font-family: var(--font-heading);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex: none;
}

.testi-person .name {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.testi-person .role {
  font-size: 0.82rem;
  color: var(--ink-600);
}

/* ---------- Final CTA ---------- */

.final-cta {
  background: var(--cta-gradient);
  border-radius: 28px;
  padding: 56px 40px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta .support {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  opacity: 0.9;
  display: block;
  margin-bottom: 6px;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  margin-bottom: 10px;
}

.final-cta p.sub {
  opacity: 0.92;
  margin-bottom: 28px;
}

.final-cta .btn-primary {
  background: #fff;
  color: var(--teal-600);
  box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.35);
}

.final-cta .btn-primary:hover,
.final-cta .btn-primary:focus-visible {
  color: var(--teal-600);
}

/* ---------- Footer ---------- */

.site-footer {
  padding-block: 56px 120px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--navy-700);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--teal-600);
}

/* ---------- Floating WhatsApp ---------- */

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 14px 28px -10px rgba(37, 211, 102, 0.6);
  transition: transform 0.18s ease;
}

.wa-float:hover,
.wa-float:focus-visible {
  transform: translateY(-2px);
}

.wa-sticky {
  display: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-intro {
    grid-column: 1 / -1;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: inline-flex;
  }
  .nav-cta .btn-primary span {
    display: none;
  }
  .nav-cta .btn-primary {
    padding: 12px;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .hand-accent {
    display: none;
  }

  .property-strip .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

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

  .area-grid {
    grid-template-columns: 1fr;
  }
  .area-map img {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.7) 12%, #000 28%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.7) 12%, #000 28%);
  }
  .area-list {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 40px 24px;
  }

  .site-footer {
    padding-bottom: 132px;
  }

  .footer-top {
    flex-direction: column;
  }

  .section {
    padding-block: 64px;
  }

  .wa-float {
    display: none;
  }

  .wa-sticky {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    min-height: calc(58px + env(safe-area-inset-bottom));
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    border-radius: 0;
    background: var(--cta-gradient);
    color: #fff;
    box-shadow: 0 -8px 20px -12px rgba(14, 58, 82, 0.4);
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 18px;
  }
  .brand-tag {
    display: none;
  }
  .service-card .service-body {
    padding: 18px;
  }
}

/* ---------- Mockup-matched hero and service composition ---------- */

.hero {
  position: relative;
  min-height: 540px;
  padding: 62px 0 108px;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.98) 35%, rgba(255,255,255,.26) 62%, rgba(255,255,255,0) 78%),
    linear-gradient(180deg, #fff 0%, #f7fcfc 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -7%;
  bottom: 22px;
  width: 47%;
  height: 84px;
  border-radius: 100% 0 0 0;
  background: linear-gradient(135deg, rgba(28,190,195,.84), rgba(21,170,210,.95));
  transform: skewX(-22deg);
  transform-origin: right bottom;
  pointer-events: none;
  z-index: 2;
}

.hero .container {
  grid-template-columns: minmax(390px, .82fr) minmax(540px, 1.18fr);
  gap: 0;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 420px;
  padding: 16px 0 0 8px;
}

.hero-copy h1 {
  margin: 12px 0 14px;
  letter-spacing: -.045em;
}

.hero-wordmark {
  display: block;
  width: max-content;
  font-size: clamp(4.25rem, 7vw, 6.15rem);
  line-height: .9;
  color: #078ac2;
  background: linear-gradient(105deg, #078ac2 8%, #0878aa 48%, #0c7a70 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy h1 .accent {
  display: block;
  margin-top: 11px;
  font-size: clamp(2rem, 3.25vw, 3.12rem);
  line-height: 1.04;
  letter-spacing: -.035em;
  color: #076b9a;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hero-copy p {
  max-width: 49ch;
  color: #17638b;
  font-size: .98rem;
  line-height: 1.5;
  margin-bottom: 22px;
}

.hero .badge {
  padding: 5px 11px;
  border: 0;
  color: #0878aa;
  background: #e3f8fa;
}

.hero-actions { gap: 18px; }
.hero-actions .btn { padding: 13px 22px; }
.hero-actions .chip { border: 0; background: transparent; padding: 4px 0; }

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 61%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.16) 4%, rgba(0,0,0,.62) 12%, #000 25%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.16) 4%, rgba(0,0,0,.62) 12%, #000 25%);
}

.hero-visual .photo-frame {
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 51% 42%;
}

.hand-accent {
  z-index: 3;
  top: 62px;
  right: 7.5%;
  max-width: 160px;
  font-size: 1.9rem;
  line-height: .92;
  color: #00a79d;
  transform: rotate(-4deg);
  text-shadow: 0 1px #fff;
}

.property-strip {
  position: relative;
  z-index: 5;
  margin-top: -74px;
  padding-bottom: 24px;
}

.property-strip .container {
  min-height: 150px;
  grid-template-columns: 335px 1fr;
  gap: 26px;
  padding: 22px 24px;
  border: 1px solid #d5eff0;
  border-radius: 18px;
  background: rgba(236,250,250,.96);
  box-shadow: 0 14px 32px -28px rgba(10, 105, 145, .45);
}

.property-strip h2 { color: #086891; font-size: 1.26rem; line-height: 1.25; }
.property-strip .lede { color: #23688c; line-height: 1.45; }
.property-grid { gap: 10px; padding: 0; scrollbar-width: none; }
.property-grid::-webkit-scrollbar { display: none; }
.property-item {
  width: 96px;
  min-height: 96px;
  justify-content: center;
  padding: 10px 8px;
  border: 0;
  border-radius: 13px;
}
.property-item .icon-circle { height: 35px; color: var(--teal-500); }
.property-item span { color: #076b9a; font-weight: 700; }

#layanan.section--mint { background: #fff; padding-top: 16px; }
#layanan .section-head { margin-bottom: 18px; }
#layanan .section-head h2 { color: #076b9a; font-size: clamp(1.65rem, 2.7vw, 2.25rem); }
#layanan .section-head p { color: #267193; font-size: .9rem; }
#layanan .eyebrow { margin-bottom: 3px; padding: 4px 13px; border: 0; background: #c9f3ee; }

.service-grid { gap: 18px; }
.service-card {
  position: relative;
  display: block;
  height: 218px;
  border-color: #aee5e6;
  border-radius: 13px;
  isolation: isolate;
}
.service-card .photo { position: absolute; inset: 0; aspect-ratio: auto; z-index: -2; }
.service-card .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 34%, rgba(255,255,255,.5) 60%, rgba(255,255,255,.04) 100%);
}
.service-card .photo img { object-position: 64% center; }
.service-body {
  width: 64%;
  height: 100%;
  padding: 18px 0 15px 18px;
  gap: 5px;
}
.service-icon { width: 30px; height: 30px; color: var(--teal-500); display: block; }
.service-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.service-body h3 { color: #006994; font-size: 1rem; line-height: 1.25; }
.service-body p { color: #267193; font-size: .76rem; line-height: 1.35; }
.service-footer { justify-content: flex-start; gap: 5px; margin-top: auto; }
.price {
  min-width: 145px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--cta-gradient);
  font-size: .66rem;
  line-height: 1.1;
}
.price strong { color: #fff; font-size: .88rem; margin-top: 2px; white-space: nowrap; }
.card-cta {
  min-width: 52px;
  min-height: 44px;
  padding: 0 10px;
  justify-content: center;
  border: 0;
  color: var(--teal-600);
  font-size: .72rem;
}

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: minmax(340px, .9fr) 1.1fr; }
  .hero-visual { width: 59%; }
  .hand-accent { right: 3%; }
  .property-strip .container { grid-template-columns: 260px 1fr; }
  .service-card { height: 230px; }
}

@media (max-width: 860px) {
  .hero { min-height: 0; padding: 0 0 48px; background: #fff; }
  .hero::after { display: none; }
  .hero .container { display: flex; flex-direction: column; padding: 0; }
  .hero-visual { position: relative; order: 0; width: 100%; height: min(66vw, 430px); }
  .hero-visual { -webkit-mask-image: none; mask-image: none; }
  .hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 64%, #fff 100%); }
  .hero-copy { order: 1; margin-top: -24px; padding: 0 24px; }
  .hero-wordmark { font-size: clamp(3.65rem, 17vw, 5.2rem); }
  .hero-copy h1 .accent { font-size: clamp(1.85rem, 7.7vw, 2.55rem); }
  .hero-copy p { font-size: .96rem; }
  .property-strip { margin-top: 0; padding: 0 18px 22px; }
  .property-strip .container { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .property-grid { margin-inline: -4px; padding-inline: 4px; }
  #layanan.section--mint { padding-top: 36px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { height: 230px; }
  .service-body { width: min(68%, 310px); padding: 18px 0 16px 18px; }
}

@media (max-width: 480px) {
  .hero-visual { height: 72vw; min-height: 270px; }
  .hero-visual img { object-position: 58% 40%; }
  .hero-copy { padding-inline: 18px; }
  .hero-actions { gap: 12px; }
  .hero-actions .chip { width: 100%; }
  .service-card { height: 245px; }
  .service-card .photo::after { background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 45%, rgba(255,255,255,.3) 82%, rgba(255,255,255,.05) 100%); }
  .service-body { width: 74%; padding-left: 15px; }
  .price { min-width: 137px; padding-inline: 12px; }
}

/* Area image is the section canvas: white grading protects the copy while the
   source image stays anchored right so its coverage map remains fully visible. */
#area {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background-color: #fff;
  overflow: hidden;
}

#area::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: 72%;
  background: url("../img/area-jabodetabek.webp") right center / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.05) 12%, rgba(0,0,0,.16) 26%, rgba(0,0,0,.38) 39%, rgba(0,0,0,.72) 50%, rgba(0,0,0,.94) 59%, #000 66%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.05) 12%, rgba(0,0,0,.16) 26%, rgba(0,0,0,.38) 39%, rgba(0,0,0,.72) 50%, rgba(0,0,0,.94) 59%, #000 66%);
  pointer-events: none;
}

#area .container { position: relative; z-index: 1; }
#area .area-grid { display: block; }
#area .area-copy { width: min(43%, 470px); }
#area .area-map { display: none; }

@media (max-width: 860px) {
  #area {
    min-height: 620px;
    align-items: flex-start;
  }
  #area::before {
    inset: 0;
    width: 100%;
    background-position: center bottom;
    background-size: auto 62%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.08) 36%, rgba(0,0,0,.48) 50%, rgba(0,0,0,.86) 60%, #000 70%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.08) 36%, rgba(0,0,0,.48) 50%, rgba(0,0,0,.86) 60%, #000 70%);
  }
  #area .area-copy { width: 100%; }
  #area .area-copy {
    position: relative;
    z-index: 2;
    padding: 22px 18px;
    border-radius: var(--radius-card);
    background: #fff;
  }
  #area .area-copy h2,
  #area .area-copy p,
  #area .area-list li { text-shadow: none; }
  #area .area-copy .btn-outline { border-color: #5d8e89; }

  .site-footer {
    padding: 38px 0 116px;
  }

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

  .site-footer .brand {
    width: fit-content;
  }

  .footer-contact {
    gap: 2px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--mint-50);
  }

  .footer-contact a {
    min-height: 44px;
    display: flex;
    align-items: center;
    overflow-wrap: anywhere;
    color: var(--navy-700);
    font-weight: 600;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 18px;
    padding-top: 24px;
  }

  .socials { gap: 10px; }
  .socials a { width: 44px; height: 44px; }
}

@media (min-width: 861px) {
  .footer-top { align-items: center; }
}
