:root {
  --navy-900: #092443;
  --navy-800: #0d2f57;
  --navy-700: #17497f;
  --teal-500: #1f7a77;
  --teal-300: #6eb6b2;
  --terracotta-500: #c56d4a;
  --terracotta-300: #e3a287;
  --sand-500: #b79b70;
  --sand-300: #d8c6ab;
  --cream-100: #f8f4ed;
  --white: #ffffff;
  --ink: #1d2d45;
  --muted: #5f7088;
  --line: #d5deea;
  --wa: #25d366;
  --wa-2: #10a94a;
  --danger: #d93025;

  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-head: 'Fraunces', Georgia, serif;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-pill: 999px;

  --shadow-1: 0 10px 22px rgba(9, 36, 67, 0.1);
  --shadow-2: 0 24px 54px rgba(9, 36, 67, 0.16);
  --shadow-3: 0 30px 70px rgba(9, 36, 67, 0.24);

  --container: 1200px;
  --pad: clamp(14px, 2vw, 28px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.62;
  background: var(--cream-100);
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 9vw, 124px);
  background: #fff;
}

main {
  display: flex;
  flex-direction: column;
}

/* Universal: hero always first, faq always second-to-last, cta always last */
.hero     { order: -1; }
.faq      { order: 12; }
.final-cta{ order: 13; }

/* Homepage-only section ordering — keeps intended visual sequence */
.is-home .hero            { order: 1;  }
.is-home .project-showcase{ order: 2;  }
.is-home .metrics         { order: 3;  }
.is-home .vuba-strip      { order: 4;  }
.is-home .signature       { order: 5;  }
.is-home .how-it-works    { order: 6;  }
.is-home .visualise       { order: 7;  }
.is-home .calc            { order: 8;  }
.is-home .reviews         { order: 9;  }
.is-home .blend-lab       { order: 10; }
.is-home .locations       { order: 11; }

/* Background for how-it-works (not ordering-specific) */
.how-it-works { background: #ffffff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 1000;
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--radius-s);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(9, 36, 67, 0.1);
  padding-top: env(safe-area-inset-top, 0px);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand img {
  width: clamp(132px, 18vw, 208px);
  height: auto;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: #fff;
  display: grid;
  place-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy-800);
  transition: 0.24s ease;
}

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

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

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

.site-nav {
  display: none;
  position: absolute;
  top: 92px;
  left: var(--pad);
  right: var(--pad);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-2);
  padding: 12px;
}

.site-nav.is-open {
  display: grid;
  gap: 4px;
}

.site-nav a {
  color: var(--navy-800);
  font-weight: 700;
  border-radius: 8px;
  padding: 11px 12px;
}

.site-nav a:hover {
  background: #f3f7fc;
}

.site-nav .btn-nav {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff;
  text-align: center;
}

.site-nav .btn-nav:hover {
  background: linear-gradient(120deg, #0d3566, #1a4a78);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero__mobile-shot {
  display: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(9, 36, 67, 0.58) 0%,
    rgba(9, 36, 67, 0.08) 32%,
    rgba(9, 36, 67, 0.08) 55%,
    rgba(9, 36, 67, 0.55) 100%
  );
}

.hero__stage {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 100px) clamp(24px, 7vw, 100px) clamp(40px, 5vw, 60px);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--teal-500);
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  line-height: 1.04;
  color: var(--navy-900);
}

h1 {
  margin-top: 10px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 10ch;
  color: #fdf6ea;
  line-height: 1.0;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--sand-300);
  margin-bottom: 14px;
}

.hero-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  margin-top: 22px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-trust strong {
  color: rgba(255, 255, 255, 0.96);
}

.nav-tel {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 800;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-size: 0.94rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn--primary {
  color: #fff;
  background: linear-gradient(120deg, var(--terracotta-500), #b55432);
  box-shadow: var(--shadow-1);
  padding: 14px 28px;
}

.btn--primary:hover {
  background: linear-gradient(120deg, #d4764f, #a04826);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.54);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn--ghost-dark {
  border-color: #aec3de;
  color: var(--navy-800);
  background: #fff;
}

.btn--ghost-dark:hover {
  background: #eef3fa;
  border-color: var(--navy-800);
}

.btn--wa {
  color: #fff;
  background: linear-gradient(120deg, var(--wa), var(--wa-2));
}

.btn--wa:hover {
  filter: brightness(1.08);
}

.btn--wa.is-disabled {
  pointer-events: none;
  opacity: 0.52;
}

.project-showcase {
  padding-block: clamp(54px, 6vw, 90px) 28px;
  background: #f8f4ed;
}

.project-showcase__head {
  margin-bottom: 18px;
}

.project-showcase__head p {
  margin-top: 8px;
  color: var(--muted);
  max-width: 64ch;
}

.project-showcase__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  min-height: 180px;
  border: 1px solid #d0dced;
  box-shadow: var(--shadow-1);
  background: #d9e4ef;
}

.shot picture {
  display: block;
  width: 100%;
  height: 100%;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.shot:hover img {
  transform: scale(1.04);
}

.shot--wide {
  grid-column: span 2;
  min-height: 220px;
}

.shot--tall {
  grid-row: span 2;
  min-height: 380px;
}

/* Gallery page — CSS masonry columns layout */
.gallery-masonry {
  columns: 2;
  column-gap: 12px;
  margin-top: 32px;
}

.gallery-masonry .shot {
  break-inside: avoid;
  display: block;
  margin: 0 0 12px;
  min-height: unset;
}

.gallery-masonry .shot picture {
  height: auto;
}

.gallery-masonry .shot img {
  height: auto;
  object-fit: initial;
}

@media (min-width: 760px) {
  .gallery-masonry {
    columns: 3;
    column-gap: 14px;
  }
  .gallery-masonry .shot {
    margin-bottom: 14px;
  }
}

@media (min-width: 1100px) {
  .gallery-masonry {
    columns: 4;
    column-gap: 16px;
  }
  .gallery-masonry .shot {
    margin-bottom: 16px;
  }
}

.calc-form label {
  font-size: 0.81rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy-700);
  font-weight: 800;
}

.calc-form input,
.calc-form select {
  border: 1px solid #bfd1e5;
  border-radius: 11px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
}

.calc-form input:focus,
.calc-form select:focus {
  outline: 2px solid rgba(23, 73, 127, 0.2);
  border-color: #88a8cb;
}

.field-invalid {
  border-color: var(--danger) !important;
  background: #fff8f8 !important;
}

.metrics {
  background: #f8f4ed;
  padding-block-start: 28px;
}

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

.sig-reason--vuba {
  align-items: center;
}

.sig-reason__badge {
  width: 70px;
  height: auto;
  flex-shrink: 0;
  margin-left: auto;
}

.metrics article {
  background: linear-gradient(155deg, #ffffff, #f8f7f4);
  border: 1px solid #d4dfec;
  border-radius: var(--radius-m);
  padding: 16px;
}

.metrics strong {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  color: var(--navy-900);
  line-height: 1;
}

.metrics p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.signature {
  background: #f8f4ed;
}

.signature__head {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.vuba-strip {
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 18px;
}

.vuba-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.vuba-strip__label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.vuba-strip__divider {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

.vuba-strip img {
  width: 64px;
  height: auto;
  flex-shrink: 0;
}

.signature__reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.sig-reason {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px 18px;
}

.sig-reason__mark {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--teal-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 2px;
}

.sig-reason h3 {
  font-size: 1rem;
  color: var(--navy-900);
  line-height: 1.2;
}

.sig-reason p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.52;
  max-width: none;
}

.signature h2,
.section-head h2,
.calc__intro h2,
.blend-lab h2,
.locations h2,
.final-cta h2,
.project-showcase__head h2 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 16ch;
}

.signature p,
.calc__intro p,
.blend-lab p,
.locations p,
.final-cta p,
.section-head p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 62ch;
}

.blend-lab {
  background: #f5fbfb;
}

.style-cards {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.style-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.style-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.style-card__img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.style-card__img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.style-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.style-card:hover .style-card__img img {
  transform: scale(1.04);
}

.style-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-800);
  border: 1px solid var(--line);
}

.style-card__body {
  padding: 16px 18px 20px;
}

.style-card__tone {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--teal-500);
}

.style-card__body h3 {
  margin-top: 4px;
  font-size: 1.15rem;
}

.style-card__body p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.style-card__body .btn {
  margin-top: 14px;
}

.calc__layout {
  position: relative;
  display: grid;
  gap: 24px;
}

.calc__intro ul {
  margin-top: 14px;
  padding-left: 18px;
}

.calc__card {
  border: 1px solid #c4d7eb;
  background: #fff;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-2);
  padding: clamp(16px, 2vw, 24px);
}

.calc-form {
  display: grid;
  gap: 11px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.calc-actions {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calc-result {
  margin-top: 24px;
  border: 1px solid #c7d9ed;
  border-radius: var(--radius-m);
  padding: 28px 24px;
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.result-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-700);
  font-weight: 800;
}

.result-range {
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy-900);
  line-height: 1.06;
}

.result-meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.calc-result .btn {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
}

.result-call {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.result-call a {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.services {
  background: #eef3fb;
}

.services .section-head,
.reviews .section-head {
  margin-bottom: 24px;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-card {
  position: relative;
  border: 1px solid #d2deeb;
  border-radius: var(--radius-m);
  background: #fff;
  padding: 20px 18px;
  overflow: hidden;
  transition: 0.24s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--terracotta-500), var(--teal-500), var(--navy-700));
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: #bacee3;
  box-shadow: var(--shadow-1);
}

.service-card h3 {
  font-size: 1.15rem;
}

.service-card a {
  color: var(--navy-900);
}

.service-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews {
  background: var(--cream-100);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.review {
  border: 1px solid #cfdeee;
  border-top: 3px solid var(--terracotta-300);
  border-radius: var(--radius-m);
  background: #fff;
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-1);
}

.review p {
  color: #293c57;
  font-size: 0.96rem;
  line-height: 1.58;
}

.review cite {
  display: block;
  margin-top: 10px;
  color: #4d6380;
  font-style: normal;
  font-weight: 700;
}

.reviews-cta {
  margin-top: 36px;
  text-align: center;
}

.review-stars {
  color: #f5a623;
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
  line-height: 1;
}

.locations {
  background: linear-gradient(180deg, #f8f4ed 0%, #f2ece0 100%);
}

.area-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px 18px 18px;
}

.area-card h3 {
  font-size: 1.05rem;
  color: var(--navy-900);
}

.area-card p {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: none;
}

.area-card a {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--teal-500);
}

.area-card a:hover {
  color: var(--navy-800);
}

.area-card--cta {
  border-color: var(--teal-300);
  background: linear-gradient(135deg, #f0faf9, #fff);
}

.process-timeline {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 44px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal-300), var(--navy-700));
  border-radius: 4px;
}

.timeline-step:first-child::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 0;
  height: calc(50% - 17px);
  width: 34px;
  background: #ffffff;
  z-index: 1;
}

.timeline-step:last-child::after {
  content: '';
  position: absolute;
  left: -44px;
  bottom: 0;
  height: calc(50% - 17px);
  width: 34px;
  background: #ffffff;
  z-index: 1;
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
}

.timeline-step__marker {
  position: absolute;
  left: -44px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.timeline-step__number {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(31, 122, 119, 0.22);
  border: 2px solid var(--cream-100);
}

.timeline-step__icon {
  width: 20px;
  height: 20px;
  color: var(--teal-500);
  display: none;
}

.timeline-step__body {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 14px 16px 12px;
  box-shadow: 0 2px 8px rgba(9, 36, 67, 0.05);
}

.timeline-step__body h3 {
  font-size: 0.95rem;
  color: var(--navy-900);
  line-height: 1.2;
}

.timeline-step__body p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.process-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.final-cta {
  position: relative;
  color: #fff;
  padding-block: clamp(64px, 8vw, 100px);
  overflow: hidden;
  background: linear-gradient(130deg, var(--teal-500), #176e6b 48%, var(--terracotta-500));
}

.final-cta .kicker,
.final-cta h2,
.final-cta p {
  position: relative;
  color: #fff;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.final-cta .btn--primary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-900);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.final-cta .btn--primary:hover {
  background: #ffffff;
}

.site-footer {
  background: #081f3a;
  color: #d6e5f8;
}

.footer-grid {
  padding-block: 38px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.brand--footer img {
  width: clamp(120px, 15vw, 170px);
  height: auto;
  filter: brightness(0) invert(1) contrast(0.9);
  opacity: 0.95;
}



.footer-grid p {
  margin-top: 10px;
  color: #b8cee8;
  max-width: 38ch;
}

.footer-grid h3 {
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-head);
  margin-bottom: 6px;
}

.footer-grid nav,
.footer-grid article {
  display: grid;
  gap: 8px;
}

.footer-grid a {
  color: #d7e5f7;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: 14px;
  font-size: 0.9rem;
}



.visualise {
  background: var(--navy-800);
  padding-block: clamp(44px, 5.5vw, 72px);
}

.visualise .kicker {
  color: var(--teal-300);
}

.visualise .section-head h2 {
  color: #fff;
}

.visualise .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.visualise__compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0 24px;
}

.visualise__shot {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

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

.visualise__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(9, 36, 67, 0.88);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visualise__label--after {
  background: var(--teal-500);
}

.visualise__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.visualise__cta {
  text-align: center;
}

.visualise__cta p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 22px;
}

.reveal,
.reveal-delay,
.reveal-delay-2 {
  opacity: 0;
  transform: translateY(16px);
  transition: 0.55s ease;
}

.reveal.in,
.reveal-delay.in,
.reveal-delay-2.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

@media (min-width: 760px) {
    .project-showcase__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .shot {
      min-height: 220px;
    }

  .visualise__compare {
    grid-template-columns: 1fr 56px 1fr;
    gap: 0;
  }

  .visualise__arrow {
    transform: none;
  }

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

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

  .process-timeline {
    flex-direction: row;
    padding-left: 0;
    gap: 20px;
    margin-top: 44px;
  }

  .process-timeline::before {
    left: calc(10% + 17px);
    right: calc(10% + 17px);
    top: 19px;
    bottom: auto;
    height: 2px;
    width: auto;
  }

  .timeline-step {
    flex: 1;
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .timeline-step__marker {
    position: static;
    align-self: center;
  }

  .timeline-step:last-child::after,
  .timeline-step:first-child::before {
    display: none;
  }

  .timeline-step__number {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
    border-color: #fff;
  }

  .timeline-step__icon {
    display: block;
  }

  .timeline-step__body {
    text-align: center;
    padding: 20px 18px 18px;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-1);
  }

  .timeline-step__body h3 {
    font-size: 1.08rem;
  }

  .timeline-step__body p {
    font-size: 0.88rem;
  }

  .style-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

  /* Regular card images — shorter crop on desktop (more-articles grid) */
  .blog-grid .blog-card__img img {
    aspect-ratio: 5 / 2;
  }

  /* ── Blog listing + more-articles: all cards horizontal, single column ── */
  .blog-listing .blog-grid,
  .more-articles .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .blog-listing .blog-grid .blog-card,
  .more-articles .blog-grid .blog-card {
    flex-direction: row-reverse;
  }
  .blog-listing .blog-grid .blog-card .blog-card__img,
  .more-articles .blog-grid .blog-card .blog-card__img {
    width: 34%;
    flex-shrink: 0;
    aspect-ratio: 3 / 2;
  }
  .blog-listing .blog-grid .blog-card .blog-card__img img,
  .more-articles .blog-grid .blog-card .blog-card__img img {
    aspect-ratio: unset;
    height: 100%;
  }
  .blog-listing .blog-grid .blog-card .blog-card__body,
  .more-articles .blog-grid .blog-card .blog-card__body {
    padding: 18px 24px 16px;
  }
  .blog-listing .blog-grid .blog-card .blog-card__excerpt,
  .more-articles .blog-grid .blog-card .blog-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr 0.8fr;
  }
}

@media (min-width: 1040px) {
  .nav-toggle {
    display: none;
  }

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

  /* Blog listing + more-articles stay single-column at wide screens too */
  .blog-listing .blog-grid,
  .more-articles .blog-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 0.86rem;
  }
}

@media (min-width: 1200px) {
  .site-nav a {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .nav-tel {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--navy-800);
    padding: 8px 12px;
  }

  .nav-tel:hover {
    color: var(--teal-500);
  }
}

@media (max-width: 759px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  /* ── Homepage mobile section ordering ── */
  .is-home .metrics          { order: 2;  }
  .is-home .project-showcase { order: 3;  }
  .is-home .vuba-strip       { order: 4;  }
  .is-home .signature        { order: 5;  }
  .is-home .how-it-works     { order: 6;  }
  .is-home .calc             { order: 7;  }
  .is-home .blend-lab        { order: 8;  }
  .is-home .services         { order: 9;  }
  .is-home .reviews          { order: 10; }

  .vuba-strip__inner {
    justify-content: center;
    gap: 32px;
    padding-inline: 0;
  }

  .vuba-strip__label {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
  }

  .vuba-strip__divider {
    display: none;
  }

  .vuba-strip img {
    width: 56px;
  }


  .sig-reason__badge {
    width: 55px;
  }

  /* ── Mobile hero: light layout, no background photo ── */
  .hero {
    min-height: auto;
    background: linear-gradient(170deg, #fdf8f1 0%, #f0ece4 100%);
  }

  .hero__photo,
  .hero__overlay {
    display: none;
  }

  .hero__stage {
    padding: clamp(90px, 20vw, 120px) 20px 20px 20px;
    justify-content: flex-start;
  }

  .hero__stage h1 {
    color: var(--navy-900);
    font-size: clamp(2.6rem, 11vw, 3.8rem);
  }

  .hero-kicker {
    color: var(--teal-500);
  }

  .hero-tags span {
    background: rgba(9, 36, 67, 0.06);
    border-color: rgba(9, 36, 67, 0.14);
    color: var(--navy-800);
  }

  .hero .btn--ghost {
    border-color: var(--navy-700);
    color: var(--navy-800);
    background: transparent;
  }

  .hero-trust {
    color: var(--muted);
  }

  .hero-trust strong {
    color: var(--navy-800);
  }

  .hero__mobile-shot {
    display: block;
    width: 100%;
    margin-top: 28px;
    border-radius: 20px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(9, 36, 67, 0.18);
  }

  .hero__mobile-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
  }
}

/* ── FAQ ── */
.faq {
  padding-block: clamp(72px, 9vw, 124px);
  background: var(--cream-100);
}

.faq__list {
  display: grid;
  gap: 0;
  max-width: 780px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-weight: 600;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform .25s ease;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  padding: 0 0 20px;
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Breadcrumb (shared by blog index + article pages) ── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--teal-500);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb__sep {
  font-size: 0.9rem;
  line-height: 1;
  color: var(--line);
}

/* ── Blog index: page header ── */
.page-header {
  background: var(--cream-100);
  padding-top: clamp(108px, 16vw, 148px);
  padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
}
.page-header__inner {
  max-width: 640px;
}
.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--navy-900);
  line-height: 1.1;
  margin-top: 8px;
}
.page-header__sub {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 50ch;
  line-height: 1.68;
}
.page-header__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 20px;
}
.page-header__trust span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-700);
  padding: 5px 12px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
}

/* ── Contact page ── */
.contact-form {
  max-width: 640px;
  margin-inline: auto;
}
.contact-direct {
  max-width: 640px;
  margin: 2rem auto 0;
  text-align: center;
}
.contact-direct p {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.contact-direct__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.contact-info p,
.contact-info a {
  font-size: .97rem;
  color: var(--navy-700);
  line-height: 1.6;
}
.contact-info a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-info a:hover { color: #0a7a63; }
.contact-info__block { margin-bottom: 1.8rem; }
.contact-form {
  background: var(--cream-100);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}
.contact-form__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy-900);
  margin-bottom: 1.2rem;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: .95rem;
  margin-bottom: 1rem;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--teal-500);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form button {
  width: 100%;
  padding: 14px;
  background: var(--teal-500);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: background .2s;
}
.contact-form button:hover { background: #0a7a63; }
.contact-form button:disabled {
  opacity: .7;
  cursor: wait;
}
.contact-form__privacy {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .75rem;
  line-height: 1.5;
}
.contact-form__privacy a {
  color: var(--teal-500);
  text-decoration: underline;
}
.contact-form__microcopy {
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
  margin-top: .75rem;
}
.form-success {
  background: #e8f5ed;
  border: 1.5px solid #10a94a;
  color: #0a7a63;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-s);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* ── Legal page (privacy etc.) ── */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--font-head);
  color: var(--navy-900);
  margin-top: 2rem;
  margin-bottom: .6rem;
  font-size: 1.35rem;
}
.legal-content p,
.legal-content li {
  color: var(--navy-700);
  line-height: 1.7;
  margin-bottom: .9rem;
}
.legal-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.legal-content a {
  color: var(--teal-500);
  text-decoration: underline;
}

/* ── Blog listing section ── */
.blog-listing {
  background: #fff;
  padding-block: clamp(48px, 6vw, 72px);
}
.blog-listing .section-head,
.more-articles .section-head {
  margin-bottom: clamp(24px, 3vw, 36px);
}
.blog-listing .section-head h2,
.more-articles .section-head h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  max-width: 30ch;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-2);
  border-color: #bacee3;
  transform: translateY(-3px);
}
.blog-card__body {
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-500);
  margin-bottom: 8px;
}
.blog-card h2 {
  font-size: clamp(1.05rem, 1rem + 0.45vw, 1.3rem);
  line-height: 1.28;
  color: var(--navy-900);
  margin: 0;
}
.blog-card h2 a {
  color: inherit;
  transition: color 0.18s;
}
.blog-card h2 a:hover {
  color: var(--teal-500);
}
.blog-card__excerpt {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.62;
  flex: 1;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}
.blog-card__footer a {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--teal-500);
  transition: color 0.18s;
}
.blog-card__footer a:hover {
  color: var(--navy-800);
}

/* ── Blog card image thumbnail ── */
.blog-card__img {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card__img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.blog-card__img img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}

/* ── Blog article: compact intro header ── */
.article-intro {
  background: var(--cream-100);
  padding-top: clamp(108px, 16vw, 148px);
  border-bottom: 1px solid var(--line);
}
.article-intro__inner {
  max-width: 740px;
  padding-bottom: clamp(32px, 4vw, 48px);
}
.article-intro__tag {
  display: inline-block;
  background: var(--teal-500);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.article-intro h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.14;
  color: var(--navy-900);
}
.article-intro__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--muted);
}
.article-intro__meta .sep {
  color: var(--line);
}

/* ── Article hero image ── */
.article-hero-wrap {
  overflow: hidden;
  border-radius: var(--radius-m);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.article-hero-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  aspect-ratio: 16 / 6;
  max-height: 440px;
}

/* ── Blog article body ── */
.article-body {
  padding-block: clamp(44px, 5vw, 72px);
  background: #fff;
}
.article-body__inner {
  max-width: 740px;
  margin-inline: auto;
}
.article-body__inner > *:first-child {
  margin-top: 0;
}
.article-body__inner h2 {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  margin-top: 2.6rem;
  margin-bottom: 0.7rem;
  color: var(--navy-900);
}
.article-body__inner h3 {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--navy-800);
}
.article-body__inner p {
  line-height: 1.82;
  margin-bottom: 1.25rem;
}
.article-body__inner ul,
.article-body__inner ol {
  padding-left: 1.6rem;
  margin-bottom: 1.25rem;
  line-height: 1.82;
}
.article-body__inner li {
  margin-bottom: 0.45rem;
}
.article-body__inner strong {
  font-weight: 700;
  color: var(--navy-800);
}
.article-body__inner a {
  color: var(--teal-500);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-body__inner a:hover {
  color: var(--navy-800);
}

/* ── More articles (end of article page) ── */
.more-articles {
  background: var(--cream-100);
  padding-block: clamp(44px, 5vw, 68px);
}

/* ── Thank-you page ── */
.thankyou-hero {
  background: var(--cream-100);
  padding-block: clamp(100px, 14vw, 148px) clamp(72px, 9vw, 112px);
}
.thankyou-hero__inner {
  max-width: 680px;
  text-align: center;
}
.thankyou-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--teal-500);
  color: #fff;
  margin-bottom: 28px;
}
.thankyou-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy-900);
  max-width: none;
  margin-bottom: 16px;
}
.thankyou-hero__sub {
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  color: var(--muted);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(32px, 4vw, 48px);
}
.thankyou-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.thankyou-step__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.thankyou-step strong {
  display: block;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.thankyou-step p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}
.thankyou-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── Blog mobile overrides ── */
@media (max-width: 759px) {
  .article-hero-wrap img {
    aspect-ratio: 16 / 7;
    max-height: 260px;
  }
  .article-body {
    padding-block: clamp(36px, 6vw, 48px);
  }
  .blog-listing,
  .more-articles {
    padding-block: clamp(36px, 6vw, 52px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
