﻿@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,400;8..144,600&display=swap');

/* Colour tokens — Kadence-style globals + accent gold */
:root {
  --palette-blue: #2b6cb0;
  --palette-blue-dark: #215387;
  --palette-charcoal: #1a202c;
  --palette-slate: #2d3748;
  --palette-steel: #4a5568;
  --palette-gray: #718096;
  --palette-cloud: #edf2f7;
  --palette-snow: #f7fafc;
  --palette-white: #ffffff;
  --accent-orange: #f3b41b;
  --accent-orange-rgb: 243, 180, 27;
  --accent-orange-hover: #e0a912;
  --accent-orange-active: #be9210;
  /* Legacy aliases consumed across this sheet */
  --bg: var(--palette-white);
  --bg-elevated: var(--palette-white);
  --bg-card: var(--palette-white);
  --bg-muted: var(--palette-white);
  --text-muted: var(--palette-steel);
  --text-body: var(--palette-slate);
  --text-heading: var(--palette-charcoal);
  --gold: var(--accent-orange);
  --gold-bright: var(--accent-orange);
  --gold-deep: var(--accent-orange-hover);
  --border: #e2e8f0;
  --shadow: rgba(15, 23, 42, 0.08);
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg);
  accent-color: var(--accent-orange);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-orange); text-decoration: none; }
a:hover { color: var(--accent-orange-hover); text-decoration: underline; text-underline-offset: 4px; }

.gold-gradient-text {
  background: linear-gradient(105deg, var(--palette-blue) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 1rem 1.25rem;
  background: var(--palette-blue-dark);
  color: #fff;
  font-weight: 600;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header — white strip like Kadence masthead */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--palette-white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 92vw);
  margin-inline: auto;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-logo {
  height: clamp(44px, 8vw, 52px);
  width: auto;
  object-fit: contain;
  background: var(--palette-charcoal);
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
}
.brand-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  line-height: 1.25;
  color: var(--text-heading);
}
.brand-text span {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-heading);
}
.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--palette-charcoal);
  border-radius: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
}
.nav-link {
  display: block;
  padding: 0.55rem 0.85rem;
  font-family: "Roboto Flex", "DM Sans", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-link:hover {
  color: var(--accent-orange);
  text-decoration: none;
  background: rgba(var(--accent-orange-rgb), 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.35rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  color: var(--palette-white);
  background: var(--accent-orange);
  border-radius: 5px;
  box-shadow: 0 4px 14px rgba(var(--accent-orange-rgb), 0.35);
}
.btn-primary:hover {
  background: var(--accent-orange-hover);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1), 0 4px 14px rgba(var(--accent-orange-rgb), 0.3);
}
.btn-outline {
  color: var(--text-heading);
  background: transparent;
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: rgba(var(--accent-orange-rgb), 0.45);
  color: var(--accent-orange-active);
  filter: none;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--palette-charcoal);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.25rem 2rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    border-bottom: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-link {
    padding: 0.9rem 0.5rem;
    font-size: 0.95rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(247, 250, 252, 0.1);
    color: var(--palette-snow);
  }
  .nav-link:hover {
    color: var(--palette-white);
    background: rgba(var(--accent-orange-rgb), 0.15);
  }
  .nav .btn {
    margin-top: 1rem;
    width: 100%;
  }
  .nav-cta-desktop { display: none; }
}
@media (min-width: 901px) {
  .nav-cta-desktop { margin-left: 0.65rem; }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.5rem, 10vw, 7rem) 0 clamp(4rem, 12vw, 8rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 92% -8%, rgba(var(--accent-orange-rgb), 0.12), transparent 55%),
    radial-gradient(ellipse 55% 45% at 6% 100%, rgba(43, 108, 176, 0.08), transparent 55%),
    linear-gradient(180deg, var(--palette-white) 0%, var(--bg) 75%);
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 1.55rem + 2.6vw, 3.125rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin: 0 0 1rem;
}
.hero-lead {
  font-size: clamp(1.02rem, 0.96rem + 0.35vw, 1.125rem);
  color: var(--text-muted);
  max-width: 40ch;
  margin: 0 0 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.hero-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 48px var(--shadow), 0 0 0 1px var(--border);
  border: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-orange-rgb), 0.06) 0%, transparent 45%, rgba(43, 108, 176, 0.06) 100%);
  pointer-events: none;
}

/* Section common */
section { scroll-margin-top: calc(var(--header-h) + 1rem); }
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 6vw, 3.75rem);
}
.section-kicker {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-orange-active);
  margin: 0 0 0.65rem;
}
.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.35vw, 2.125rem);
  font-weight: 800;
  color: var(--text-heading);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.section-intro {
  margin: 0;
  color: var(--text-muted);
}

/* Stats — white cards on airy band */
.stats {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--bg-muted);
  border-block: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 4vw, 2rem);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  text-align: center;
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--palette-white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.stat-value {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.75rem, 1.35rem + 1.35vw, 2.75rem);
  font-weight: 800;
  color: var(--text-heading);
  margin: 0 0 0.25rem;
}
.stat-value .accent { color: var(--palette-blue); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin: 0; letter-spacing: 0.03em; }

/* About page metrics strip — solid black figures & labels */
.stats:not(.stats--bismark) .stat-value,
.stats:not(.stats--bismark) .stat-value .accent,
.stats:not(.stats--bismark) .stat-label {
  color: #000000;
}

/* About */
.about {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}
.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (min-width: 880px) {
  .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.about h2.section-title { text-align: left; margin-bottom: 1rem; }
.about .section-kicker { text-align: left; }
.about-copy p { margin: 0 0 1rem; color: var(--text-body); }
.about-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.about-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  color: var(--text-body);
  font-weight: 500;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--accent-orange), var(--palette-blue));
  box-shadow: 0 0 12px rgba(var(--accent-orange-rgb),0.35);
}
.about-panel {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px var(--shadow);
  aspect-ratio: 4/3;
}
.about-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services */
.services {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(var(--accent-orange-rgb),0.08), transparent 70%),
    var(--palette-white);
  border-block: 1px solid var(--border);
}
.services-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 14px;
  background: var(--palette-white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.service-card:hover {
  border-color: rgba(var(--accent-orange-rgb),0.35);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: rgba(43, 108, 176, 0.1);
  border: 1px solid rgba(43, 108, 176, 0.2);
  color: var(--palette-blue);
  font-size: 1.25rem;
}
.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 0.65rem;
}
.service-card p {
  margin: 0;
  font-size: 0.938rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Showcase strip */
.showcase-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 2rem;
  max-height: 180px;
}
@media (max-width: 560px) { .showcase-strip { grid-template-columns: 1fr; max-height: none; } }
.showcase-strip img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

/* Projects */
.projects {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}
.project-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}
@media (min-width: 640px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
}
.project-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--palette-white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}
.project-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.project-card:hover .project-media img { transform: scale(1.04); }
.project-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-body h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 0.65rem;
  line-height: 1.35;
}
.project-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.55;
}

/* Why + Warranty */
.split-section {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: var(--bg-muted);
  border-block: 1px solid var(--border);
}
.split-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) { .split-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.split-panel {
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 14px;
  background: var(--palette-white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.split-panel h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--text-heading);
}
.split-panel p { margin: 0 0 0.85rem; color: var(--text-muted); font-size: 0.94rem; }
.split-panel p:last-child { margin-bottom: 0; }

/* Testimonials */
.testimonials {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}
.quotes-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) { .quotes-grid { grid-template-columns: repeat(2, 1fr); } }
blockquote.quote {
  margin: 0;
  padding: 1.5rem 1.5rem 1.35rem;
  border-radius: 14px;
  background: var(--palette-cloud);
  border: 1px solid var(--border);
  border-left: 4px solid var(--palette-blue);
  position: relative;
}
.quote::before {
  content: "\201c";
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(43, 108, 176, 0.35);
  pointer-events: none;
}
.quote p {
  margin: 0 0 1rem;
  padding-top: 0.5rem;
  font-style: italic;
  color: var(--text-body);
  font-size: 0.95rem;
}
.quote footer {
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-heading);
}
.quote footer cite {
  font-style: normal;
  display: block;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 0.2rem;
}

/* Contact */
.contact {
  padding: clamp(4rem, 12vw, 7rem) 0;
  background:
    radial-gradient(ellipse 55% 50% at 20% 100%, rgba(43, 108, 176, 0.06), transparent),
    radial-gradient(ellipse 50% 40% at 90% 0%, rgba(var(--accent-orange-rgb), 0.06), transparent),
    var(--palette-white);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 840px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.contact-intro h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  margin: 0 0 0.85rem;
  color: var(--text-heading);
}
.contact-intro p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  max-width: 44ch;
}
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-body);
}
.contact-details li span.icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(var(--accent-orange-rgb),0.1);
  border: 1px solid var(--border);
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}
.form-row.two {
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font: inherit;
  color: var(--text-heading);
  background: var(--palette-white);
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(var(--accent-orange-rgb),0.65);
  box-shadow: 0 0 0 3px rgba(var(--accent-orange-rgb),0.15);
}
.field textarea { min-height: 140px; resize: vertical; }

/* Divider line like logo underline */
.gold-line {
  height: 2px;
  max-width: 120px;
  margin: 1.25rem 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-bright) 35%, var(--gold) 50%, transparent);
}
.gold-line.center { margin-inline: auto; }

/* Footer — Kadence-style dark band */
footer.site-footer {
  padding: 2.75rem 0 2rem;
  background: var(--palette-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
  color: #cbd5e0;
}
footer.site-footer .brand-logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.footer-brand p {
  margin: 0.75rem 0 0;
  color: #a0aec0;
  max-width: 40ch;
  line-height: 1.6;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(247, 250, 252, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--palette-snow);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: rgba(var(--accent-orange-rgb),0.2);
  color: var(--palette-white);
  text-decoration: none;
}
.footer-links h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  color: #edf2f7;
}
.footer-links a {
  display: inline-block;
  padding: 0.25rem 0;
  color: #cbd5e1;
  font-size: 0.865rem;
}
.footer-links a:hover { color: var(--accent-orange); }
.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: #a0aec0;
  font-size: 0.8rem;
}

/* Nav submenu (Projects) */
.nav-item-sub { position: relative; align-items: center; list-style: none; }
@media (min-width: 901px) {
  .nav-list > li.nav-item-sub { display: flex; flex-wrap: wrap; align-items: stretch; }
}
.nav-sub-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  min-height: 2.75rem;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--accent-orange-active);
  cursor: pointer;
  font-size: 0.65rem;
  letter-spacing: 0;
  transition: background 0.2s var(--ease);
}
.nav-sub-toggle:hover { background: rgba(var(--accent-orange-rgb),0.1); }
.nav-sub-toggle svg { pointer-events: none; }
@media (max-width: 900px) {
  .nav-item-sub-wrap {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-item-sub-wrap .nav-link {
    flex: 1;
    border-bottom: none;
  }
  .nav-sub-toggle {
    display: inline-flex;
    flex-shrink: 0;
    border-left: 1px solid rgba(255,255,255,0.12);
    border-radius: 0;
    color: var(--palette-snow);
  }
  .nav-sub-toggle:hover {
    background: rgba(var(--accent-orange-rgb),0.25);
  }
}
@media (min-width: 901px) {
  .nav-item-sub-inner { position: relative; align-self: center; }
  .nav-item-sub-inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 0.75rem;
    z-index: 109;
  }
  .nav-item-sub-inner:hover > .nav-flyout,
  .nav-item-sub-inner:focus-within > .nav-flyout {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .nav-item-sub-inner.is-open > .nav-flyout {
    display: block;
    max-height: none;
  }
}
.nav-item-sub-inner {
  flex: 1;
  min-width: 0;
}
@media (min-width: 901px) {
  .nav-item-sub-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: center;
  }
}
.nav-flyout {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--accent-orange);
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
}
@media (min-width: 901px) {
  .nav-flyout {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 14rem;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s var(--ease), visibility 0.2s, transform 0.2s var(--ease);
    z-index: 110;
  }
}
@media (max-width: 900px) {
  .nav-item-sub-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-flyout {
    display: none;
    width: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(247, 250, 252, 0.12);
    background: var(--accent-orange);
    box-shadow: none;
  }
}
.nav-flyout a {
  display: block;
  padding: 0.72rem 1rem;
  font-family: "Roboto Flex", "DM Sans", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--palette-snow);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-flyout a:hover {
  background: var(--accent-orange-hover);
  color: var(--palette-white);
  text-decoration: none;
}
@media (max-width: 900px) {
  .nav-flyout li + li { border-top: 1px solid rgba(255,255,255,0.15); }
}
.nav-link.is-active,
.nav-link[aria-current="page"] {
  color: var(--accent-orange-active);
  background: rgba(var(--accent-orange-rgb), 0.12);
}
.nav-flyout a[aria-current="page"] {
  color: var(--palette-white);
  background: var(--accent-orange-hover);
}
.nav-sub-toggle.is-open svg { transform: rotate(180deg); }
.nav-sub-toggle svg {
  transition: transform 0.25s var(--ease);
}

/* Inner page masthead */
.page-masthead {
  padding: clamp(2.25rem, 6vw, 3.75rem) 0;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 65% 80% at 85% -20%, rgba(43, 108, 176, 0.08), transparent),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(var(--accent-orange-rgb),0.08), transparent),
    linear-gradient(180deg, var(--palette-white), var(--bg));
}
.page-masthead .section-kicker {
  text-align: left;
}
.page-masthead-title {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 1.35rem + 1.65vw, 2.625rem);
  letter-spacing: -0.025em;
  color: var(--text-heading);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.page-masthead-intro {
  margin: 0;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Prose blocks on inner pages */
.prose-stack {
  max-width: 48rem;
}
.prose-stack p {
  margin: 0 0 1rem;
  color: var(--text-body);
}
.prose-stack h2 {
  font-family: Montserrat, sans-serif;
  font-size: 1.35rem;
  color: var(--text-heading);
  margin: 2rem 0 0.75rem;
}
.prose-stack h2:first-child { margin-top: 0; }
.prose-stack ul {
  margin: 0 0 1rem 1rem;
  color: var(--text-muted);
}

.page-section {
  padding: clamp(2.5rem, 7vw, 4.5rem) 0;
}
.page-section.alt {
  background: var(--bg-muted);
  border-block: 1px solid var(--border);
}

/* Quick links strip (homepage) */
.quick-links-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 600px) { .quick-links-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .quick-links-grid { grid-template-columns: repeat(3, 1fr); } }
.quick-link-card {
  display: block;
  padding: 1.35rem 1.25rem;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.quick-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-orange-rgb),0.35);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  text-decoration: none;
}
.quick-link-card h3 {
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 0.4rem;
}
.quick-link-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.quick-link-card .cta-hint {
  margin-top: 0.85rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--palette-blue);
}

/* Timeline / chips */
.phase-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.85rem;
}
.phase-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.phase-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  background: rgba(43, 108, 176, 0.12);
  color: var(--palette-blue);
  border: 1px solid rgba(43, 108, 176, 0.2);
}

.badge-status {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.badge-ongoing {
  background: rgba(var(--accent-orange-rgb),0.15);
  color: var(--accent-orange-active);
  border: 1px solid rgba(var(--accent-orange-rgb),0.35);
}
.badge-done {
  background: rgba(100,140,110,0.2);
  color: #b8dcb8;
  border: 1px solid rgba(120,180,130,0.25);
}

/* Breadcrumbs */
.breadcrumb {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--accent-orange); font-weight: 500; }
.breadcrumb a:hover { color: var(--accent-orange-hover); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.5; }

.cta-strip {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 100% at 50% -20%, rgba(43, 108, 176, 0.1), transparent 55%),
    var(--bg-muted);
}
.cta-strip-inner {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}
.cta-strip-inner h2 {
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.35rem, 1.1rem + 0.85vw, 1.85rem);
  font-weight: 800;
  color: var(--text-heading);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}
.cta-strip-inner p {
  margin: 0 0 1.35rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Bismark homepage parity — hero slideshow + extras */
.brand-logo.brand-logo--bismark-header {
  background: transparent;
  padding: 0;
  border-radius: 0;
  height: auto;
  width: auto;
  max-width: 175px;
  object-fit: contain;
}

.hero-bismark {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: center;
  color: var(--palette-white);
  overflow: hidden;
}
.hero-bismark__slides span {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroSlideFade 15s ease-in-out infinite;
}
.hero-bismark__slides span:nth-child(1) { animation-delay: 0s; }
.hero-bismark__slides span:nth-child(2) { animation-delay: -5s; }
.hero-bismark__slides span:nth-child(3) { animation-delay: -10s; }
@keyframes heroSlideFade {
  0% { opacity: 0; transform: scale(1.04); }
  6%, 28% { opacity: 1; transform: scale(1); }
  39%, 100% { opacity: 0; transform: scale(1.03); }
}
.hero-bismark__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 32, 44, 0.82) 0%, rgba(26, 32, 44, 0.35) 55%, rgba(26, 32, 44, 0.65) 100%);
  z-index: 1;
}
.hero-bismark__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: clamp(4rem, 12vw, 7rem);
  justify-self: center;
}
.hero-bismark__title {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 1.45rem + 2.8vw, 3.25rem);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  color: var(--palette-white);
}
.hero-bismark__lead {
  margin: 0 auto 1.75rem;
  max-width: 52ch;
  font-size: clamp(1.02rem, 0.96rem + 0.35vw, 1.14rem);
  color: rgba(247, 250, 252, 0.92);
  line-height: 1.65;
}
.hero-bismark .btn-primary {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.about--home .section-kicker,
.about--home .section-title { text-align: left; }
.title-accent {
  color: var(--accent-orange);
}
.title-accent-inline {
  color: var(--accent-orange-active);
}

.stats--bismark {
  padding-block: clamp(2rem, 5vw, 3rem);
}
.stats.stats--bismark .bismark-counter__title,
.stats.stats--bismark .bismark-counter__wrap,
.stats.stats--bismark .bismark-counter__suffix {
  color: #000000;
}
.bismark-counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  text-align: center;
}
@media (min-width: 880px) {
  .bismark-counter-grid { grid-template-columns: repeat(4, 1fr); }
}
.bismark-counter {
  padding: 1.35rem 0.75rem;
}
.bismark-counter__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}
.bismark-counter__wrap {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 1.35rem + 1.35vw, 2.85rem);
  color: var(--palette-blue);
  line-height: 1;
}
.bismark-counter__suffix {
  font-size: 0.65em;
  vertical-align: super;
  margin-left: 0.08em;
  color: var(--accent-orange-active);
}

.services-grid--images {
  margin-top: 0.5rem;
}
.service-image-card {
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--palette-white);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}
.service-image-card__media {
  border-bottom: 1px solid var(--border);
  aspect-ratio: 1280 / 900;
  overflow: hidden;
}
.service-image-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-image-card h3 {
  font-family: Montserrat, sans-serif;
  font-size: 1.15rem;
  margin: 1.25rem 1.35rem 0.65rem;
  color: var(--text-heading);
}
.service-image-card p {
  margin: 0 1.35rem 1.35rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.testimonials--bismark .section-intro {
  max-width: 720px;
  margin-inline: auto;
}
.testimonials.testimonials--bismark {
  background: var(--palette-white);
}
.testimonial-bismark-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .testimonial-bismark-grid { grid-template-columns: repeat(2, 1fr); }
}
.testimonial-bismark-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--palette-white);
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}
.testimonial-bismark-stars {
  color: var(--accent-orange);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.65rem;
}
.testimonial-bismark-card blockquote {
  margin: 0;
  padding: 0;
}
.testimonial-bismark-card blockquote > p {
  margin: 0 0 1.1rem;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.58;
}
.testimonial-bismark-card blockquote footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-bismark-card blockquote footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--palette-white);
}
.testimonial-bismark-card blockquote footer div strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 0.88rem;
  color: var(--text-heading);
}
.testimonial-bismark-card blockquote footer div span {
  font-size: 0.78rem;
  color: var(--accent-orange-active);
}

.contact-strip-bismark__inner {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}
.contact-strip-bismark__inner h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(1.55rem, 1.25rem + 1.1vw, 2rem);
  color: var(--text-heading);
  margin: 0 0 0.85rem;
}
.contact-strip-bismark__inner p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.contact-strip-bismark__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.footer-brand-logo {
  max-width: 175px;
  height: auto;
}
.footer-grid--bismark {
  align-items: start;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  margin-bottom: 0.55rem;
  font-size: 0.865rem;
  color: #cbd5e1;
}
.footer-contact-list a {
  color: #cbd5e1;
}
.footer-contact-list a:hover {
  color: var(--accent-orange);
}

/* Floating WhatsApp (see wa-me digits in js/site.js) */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 180;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(15, 23, 42, 0.2);
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.06);
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(15, 23, 42, 0.22);
  text-decoration: none;
}
.whatsapp-float:focus-visible {
  outline: 3px solid var(--accent-orange);
  outline-offset: 3px;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float:hover {
    transition: none;
    transform: none;
  }
}
