/* Lotus Holiday Homes — white & gold */
:root {
  --gold: #a0821c;
  --gold-dark: #856c15;
  --champagne: #d8c9a8;
  --champagne-light: #efe8d8;
  --ink: #2b2b2b;
  --muted: #6f6757;
  --bg: #f4f4f4; /* matches the logo's off-white background */
  --bg-alt: #edeae0;
  --line: #e8e2d2;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
  /* Confident Dark homepage accents (additive — used only by .home-main) */
  --gold-bright: #c9ad55;
  --ink-deep: #26221c;
  --muted-warm: #6e6353;
  --cream: #faf6ee;
  --cream-deep: #f6f2ea;
  --cream-card: #fffdf9;
  --hairline: rgba(38, 34, 28, 0.1);
  --body: "Manrope", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.45rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 14px;
}
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-left: 14px;
  opacity: 0.6;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 640px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.25s ease;
  cursor: pointer;
  background: transparent;
  color: var(--gold-dark);
}
.btn:hover { background: var(--gold); color: #fff; }
.btn-solid { background: var(--gold); color: #fff; }
.btn-solid:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-light { border-color: #fff; color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(244, 244, 244, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.logo img { height: 64px; width: auto; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-size: 0.83rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.nav a:hover, .nav a.active { color: var(--gold-dark); border-bottom-color: var(--gold); }
.nav .btn { padding: 10px 22px; border-bottom: 1px solid var(--gold); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero picture, .hero > img.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero img.hero-bg { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, rgba(20, 16, 5, 0.62) 0%, rgba(20, 16, 5, 0.25) 60%, rgba(20, 16, 5, 0.15) 100%);
}
.hero-content { max-width: 680px; padding: 120px 0; }
.hero .eyebrow { color: var(--champagne); }
.hero .eyebrow::after { background: var(--champagne); }
.hero p { font-size: 1.18rem; margin: 22px 0 36px; max-width: 540px; color: rgba(255, 255, 255, 0.92); }
.hero .hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--champagne);
  margin: 14px 0 6px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 110px 0 90px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.page-hero img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(24, 19, 6, 0.55);
}
.page-hero.plain { color: var(--ink); padding: 80px 0 30px; }
.page-hero.plain::after { display: none; }

/* Sections */
.section { padding: 96px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lead { margin: 14px auto 0; }
.section-head.center .eyebrow::after { display: none; }

/* Feature grid (services) */
.grid { display: grid; gap: 34px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.feature {
  background: #fff;
  border: 1px solid var(--line);
  padding: 38px 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.feature:hover { box-shadow: 0 18px 40px rgba(80, 62, 10, 0.09); transform: translateY(-3px); }
.feature .icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--gold);
}
.feature .icon svg { width: 100%; height: 100%; }
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 0.98rem; }

/* Stats bar */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .num {
  font-family: var(--serif);
  font-size: 2.9rem;
  color: var(--gold-dark);
  line-height: 1.1;
}
.stat .label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Property cards */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.prop-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.prop-card .img-wrap { overflow: hidden; aspect-ratio: 4 / 3; }
.prop-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.prop-card:hover img { transform: scale(1.05); }
.prop-card .card-body { padding: 24px 26px 28px; }
.prop-card .loc {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.prop-card h3 { font-size: 1.5rem; }
.prop-card .meta { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }
.prop-card .view {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

/* How it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step .n {
  font-family: var(--serif);
  font-size: 3.4rem;
  color: var(--champagne);
  line-height: 1;
}
.step h3 { margin: 10px 0 8px; font-size: 1.25rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* CTA band */
.cta-band {
  position: relative;
  padding: 120px 0;
  color: #fff;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.cta-band img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(15, 12, 4, 0.6); z-index: -1; }
.cta-band h2 { max-width: 640px; margin: 0 auto 18px; }
.cta-band p { max-width: 520px; margin: 0 auto 34px; color: rgba(255, 255, 255, 0.9); }

/* Unit page */
.unit-hero { position: relative; height: 66vh; min-height: 420px; overflow: hidden; }
.unit-hero img { width: 100%; height: 100%; object-fit: cover; }
.unit-intro { display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px; align-items: start; }
.unit-facts {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 30px 32px;
}
.unit-facts h3 { margin-bottom: 16px; }
.unit-facts ul { list-style: none; }
.unit-facts li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.unit-facts li:last-child { border-bottom: none; }
.unit-facts li span:first-child { color: var(--muted); }
.unit-facts li span:last-child { text-align: right; font-weight: 400; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery a { display: block; overflow: hidden; aspect-ratio: 4 / 3; cursor: zoom-in; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery a:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(12, 10, 4, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox button {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
  font-family: var(--sans);
  font-weight: 200;
  line-height: 1;
  padding: 18px;
}
.lightbox button:hover { opacity: 1; }
.lb-close { top: 14px; right: 20px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h3 { margin-bottom: 8px; }
.contact-info .item { margin-bottom: 28px; }
.contact-info a.big {
  font-size: 1.15rem;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--champagne);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--muted);
}
input, select, textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; min-height: 130px; }

.wa-inline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: filter 0.2s;
}
.wa-inline:hover { filter: brightness(1.08); }
.wa-inline svg { width: 22px; height: 22px; }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* FAQ */
.faq { max-width: 820px; }
.faq details {
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 12px;
  padding: 0 26px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
  padding-right: 40px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 0 22px; color: var(--muted); }

/* Trust bar */
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 54px;
  align-items: center;
  text-align: center;
}
.trust .t-item {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust .t-item::before { content: "✦"; color: var(--gold); font-size: 0.9rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 64px 0 34px;
  font-size: 0.95rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.site-footer .logo img { height: 56px; margin-bottom: 16px; }
.site-footer h4 {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-weight: 400;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a:hover { color: var(--gold-dark); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive */
@media (max-width: 960px) {
  .grid-3, .grid-4, .prop-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .unit-intro, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: 96px;
    right: 0;
    bottom: 0;
    width: min(320px, 84vw);
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 36px 30px;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav.open { transform: none; box-shadow: -20px 0 50px rgba(0, 0, 0, 0.12); }
  .nav a { font-size: 0.95rem; padding: 10px 0; width: 100%; }
  .nav .btn { margin-top: 12px; text-align: center; width: 100%; }
  body.nav-locked { overflow: hidden; }
}
@media (max-width: 680px) {
  .grid-3, .grid-4, .prop-grid, .steps { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero-content { padding: 90px 0; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Homepage — "Confident Dark" concept (scoped to .home-main)
   Jost display (light, uppercase) + Manrope body, warm cream.
   ============================================================ */
.home-main { font-family: var(--body); color: var(--ink-deep); background: var(--cream); }
.home-main h1, .home-main h2, .home-main h3 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.12;
}
.home-main h1, .home-main h2 { font-weight: 300; }
.home-main h3 { font-weight: 400; }
.home-main p { font-family: var(--body); }
.home-wrap { max-width: 1180px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.home-label {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Home buttons */
.home-main .btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  padding: 18px 36px;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.home-main .btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: #1e1a15; }

/* Hero */
.home-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.home-hero .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.home-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(23, 19, 14, 0.55); }
.home-hero .inner { padding: 120px 24px; max-width: 940px; }
.home-hero .eyebrow-h {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 26px;
}
.home-hero h1 { color: #fff; font-size: clamp(2.7rem, 6.4vw, 5.4rem); margin: 0 0 22px; }
.home-hero .sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d8d1c4;
  margin: 0 0 40px;
}
.home-hero .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 10% band + value grid */
.ten-section { padding: 96px 0 40px; }
.ten-band { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 48px; }
.ten-band .big {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(7rem, 15vw, 14rem);
  line-height: 0.82;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
}
.ten-band .big span { font-size: 0.5em; vertical-align: top; }
.ten-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 20px; }
.ten-band p { font-size: 1.05rem; line-height: 1.7; color: var(--muted-warm); max-width: 520px; margin: 0; }

.value-section { padding: 48px 0 40px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.value-cell { background: var(--cream-card); padding: 42px 34px; }
.value-cell .n { font-family: var(--sans); font-weight: 400; font-size: 0.95rem; letter-spacing: 0.2em; color: var(--gold-bright); margin-bottom: 18px; }
.value-cell h3 { font-size: 1.35rem; margin: 0 0 12px; }
.value-cell p { font-size: 0.98rem; line-height: 1.65; color: var(--muted-warm); margin: 0; }
.value-note { margin-top: 24px; font-size: 0.82rem; color: var(--muted-warm); }

/* Portfolio */
.home-portfolio { background: var(--cream-deep); padding: 96px 0; }
.home-portfolio .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; }
.home-portfolio h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); margin: 0; }
.home-portfolio .home-label { color: var(--gold); }
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pf-card { display: block; color: var(--ink-deep); }
.pf-card .imgw { overflow: hidden; border-radius: 3px; aspect-ratio: 4 / 3.4; }
.pf-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pf-card:hover img { transform: scale(1.05); }
.pf-card .loc { font-family: var(--body); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 18px 0 8px; }
.pf-card h3 { font-size: 1.5rem; margin: 0; }
.view-all {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  white-space: nowrap;
  transition: color 0.2s;
}
.view-all:hover { color: var(--gold); }

/* How it works */
.home-how { padding: 96px 0; }
.home-how h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin: 0 0 52px; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.how-step .n { font-family: var(--sans); font-weight: 300; font-size: 3.6rem; color: var(--gold-bright); line-height: 1; margin-bottom: 16px; }
.how-step h3 { font-family: var(--body); font-weight: 700; text-transform: none; letter-spacing: 0; font-size: 1.05rem; margin: 0 0 10px; }
.how-step p { font-size: 0.95rem; line-height: 1.6; color: var(--muted-warm); margin: 0; }

/* Home FAQ — restyle to match (Jost summaries) */
.home-faq { padding: 40px 0 96px; }
.home-faq h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin: 0 0 40px; }
.home-main .faq details { background: var(--cream-card); border-color: var(--hairline); }
.home-main .faq summary {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  color: var(--ink-deep);
}
.home-main .faq details p { color: var(--muted-warm); }

/* Home CTA band tweaks */
.home-main .cta-band p { color: rgba(255, 255, 255, 0.9); }

/* Homepage responsive */
@media (max-width: 960px) {
  .ten-band { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-grid, .how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .home-hero { min-height: 78vh; }
  .home-hero .inner { padding: 96px 22px; }
  .ten-section { padding: 64px 0 24px; }
  .home-portfolio, .home-how { padding: 64px 0; }
  .value-grid { grid-template-columns: 1fr; }
  .pf-grid, .how-grid { grid-template-columns: 1fr; }
  .home-portfolio .head { flex-direction: column; align-items: flex-start; }
}
