:root {
  --bg: #f3f1ec;
  --bg-2: #e7e4dc;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: #fbfaf6;
  --surface-dark: #0b0d0d;
  --ink: #111617;
  --muted: #5f6767;
  --line: rgba(17, 22, 23, 0.1);
  --line-strong: rgba(17, 22, 23, 0.16);
  --green: #93c81f;
  --green-deep: #6fa400;
  --white: #fffef8;
  --shadow-soft: 0 18px 60px rgba(12, 18, 18, 0.08);
  --shadow-strong: 0 38px 120px rgba(5, 9, 9, 0.22);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(147, 200, 31, 0.08), transparent 20%),
    linear-gradient(180deg, #faf8f3 0%, var(--bg) 44%, var(--bg-2) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(250, 248, 243, 0.84);
  border-bottom: 1px solid rgba(17, 22, 23, 0.08);
}

.header-topbar {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1.3fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0 0.2rem;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.header-hours,
.site-notice {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}

.header-hours {
  font-weight: 700;
}

.site-notice {
  justify-self: center;
  text-align: center;
  max-width: 100%;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(147, 200, 31, 0.08);
  color: var(--ink);
}

.site-notice.is-placeholder {
  background: rgba(17, 22, 23, 0.04);
  color: var(--muted);
}

.header-languages {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.24rem;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(17, 22, 23, 0.05);
  border: 1px solid rgba(17, 22, 23, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
}

.brand-word {
  color: #090b0b;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-transform: lowercase;
}

.brand-dots {
  display: inline-flex;
  gap: 0.3rem;
  padding-top: 0.12rem;
}

.brand-dots i {
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(147, 200, 31, 0.08);
}

.brand-meta {
  display: grid;
  gap: 0.1rem;
}

.brand-meta strong,
.brand-meta small {
  display: block;
}

.brand-meta strong {
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}

.brand-meta small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.header-languages a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  gap: 0.42rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lang-flag {
  display: inline-block;
  width: 1.1rem;
  height: 0.8rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(17, 22, 23, 0.1);
  overflow: hidden;
}

.flag-fi {
  background:
    linear-gradient(90deg, transparent 0 28%, #1f5aa6 28% 44%, transparent 44% 100%),
    linear-gradient(180deg, transparent 0 38%, #1f5aa6 38% 58%, transparent 58% 100%),
    #ffffff;
}

.flag-en {
  background:
    linear-gradient(90deg, transparent 0 40%, #c73b35 40% 60%, transparent 60% 100%),
    linear-gradient(180deg, transparent 0 36%, #c73b35 36% 64%, transparent 64% 100%),
    #1d4b97;
}

.flag-sv {
  background:
    linear-gradient(90deg, transparent 0 30%, #f0c840 30% 44%, transparent 44% 100%),
    linear-gradient(180deg, transparent 0 38%, #f0c840 38% 56%, transparent 56% 100%),
    #1c5aa6;
}

.header-languages a:hover,
.header-languages a[aria-current="true"] {
  background: var(--surface-strong);
  color: var(--ink);
}

.site-nav a {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(17, 22, 23, 0.06);
}

.site-nav .nav-cta {
  background: var(--surface-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.34rem;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2.25px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero,
.page-hero {
  padding: 4.5rem 0 2.5rem;
}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1.25rem 1rem 0 1rem;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(147, 200, 31, 0.22), transparent 16%),
    linear-gradient(160deg, #050707 0%, #101414 54%, #181d1c 100%);
  z-index: -1;
  box-shadow: var(--shadow-strong);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 1.25rem 1rem 0 1rem;
  border-radius: 44px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  z-index: -1;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 92%);
}

.hero-grid,
.split,
.owner-grid,
.owner-page-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
  align-items: start;
  gap: 3.25rem;
  color: var(--white);
  padding: 2rem 0 3.5rem;
}

.hero-copy {
  padding: 2rem 0.25rem 2rem 0;
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero .eyebrow,
.dark-band .eyebrow {
  color: rgba(147, 200, 31, 0.9);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.9rem;
  line-height: 1;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.8rem, 5.4vw, 5.1rem);
  max-width: 9.5ch;
  line-height: 0.92;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.24rem;
  letter-spacing: -0.02em;
}

.lead,
.lead-small {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.page-hero .lead,
.page-hero .lead-small,
.section .lead-small {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #081006;
  box-shadow: 0 18px 40px rgba(147, 200, 31, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.page-hero .button-secondary,
.section .button-secondary {
  background: rgba(17, 22, 23, 0.04);
  border-color: rgba(17, 22, 23, 0.1);
  color: var(--ink);
}

.hero-points,
.check-list,
.owner-list ul,
.contact-card ul,
.owner-fact-card ul,
.project-card ul,
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-points {
  display: grid;
  gap: 0.65rem;
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.8rem;
  max-width: 34rem;
}

.hero-services article {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-services span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(147, 200, 31, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-services strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.hero-points li,
.check-list li,
.owner-list li,
.contact-card li,
.owner-fact-card li,
.project-card li,
.site-footer li {
  position: relative;
  padding-left: 1.2rem;
}

.hero-points li::before,
.check-list li::before,
.owner-list li::before,
.contact-card li::before,
.owner-fact-card li::before,
.project-card li::before,
.site-footer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--green);
}

.hero-panel,
.info-card,
.faq-card,
.project-card,
.team-card,
.contact-card,
.owner-fact-card,
.contact-panel,
.cta-box,
.owner-highlight,
.owner-list,
.service-row {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  display: grid;
  gap: 1.25rem;
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  align-self: start;
  margin-top: 3rem;
}

.hero-visual {
  width: 100%;
  height: auto;
  border-radius: 22px;
  opacity: 0.62;
  mix-blend-mode: screen;
}

.hero-panel-top,
.contact-card,
.owner-fact-card,
.owner-highlight,
.owner-list,
.contact-panel {
  padding: 1.7rem;
}

.hero-panel-top {
  border-radius: calc(var(--radius-xl) - 6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  position: relative;
  z-index: 1;
}

.hero-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  max-width: 13ch;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.panel-kicker,
.project-meta,
.service-index,
.card-number,
.hero-note-label {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero-diagram {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.diagram-line {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.08);
}

.diagram-line:first-child {
  top: 1.8rem;
  right: 1.6rem;
  width: 44%;
  height: 1px;
}

.diagram-line:nth-child(2) {
  top: 1.8rem;
  right: 1.6rem;
  width: 1px;
  height: 38%;
}

.diagram-node {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 10px rgba(147, 200, 31, 0.08);
}

.diagram-node:nth-child(3) {
  top: 1.45rem;
  right: 44%;
}

.diagram-node:nth-child(4) {
  top: 1.45rem;
  right: 1.2rem;
}

.diagram-node:nth-child(5) {
  top: 38%;
  right: 1.2rem;
}

.stats-grid,
.card-grid,
.faq-grid,
.team-grid,
.quote-grid,
.project-grid,
.metrics-grid {
  display: grid;
  gap: 1.25rem;
}

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

.stats-grid article {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid strong {
  display: block;
  font-size: 1.4rem;
  color: var(--white);
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.hero-note {
  padding: 1.2rem 1.25rem 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-note p:last-child {
  margin: 0;
}

.section {
  padding: 2.25rem 0 5rem;
}

.metrics-band {
  margin-top: -1.1rem;
  padding-top: 0;
}

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

.metrics-grid article {
  padding: 1.6rem 1.5rem;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
}

.metrics-grid span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
}

.metrics-grid strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading p + h2 {
  margin-bottom: 0.75rem;
}

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

.services-showcase .info-card,
.faq-card,
.team-card {
  padding: 1.7rem;
}

.services-showcase .info-card {
  min-height: 260px;
  padding: 1.35rem 1.45rem 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.16)),
    var(--surface);
  position: relative;
  overflow: hidden;
}

.services-showcase .info-card h3 {
  margin-bottom: 0.55rem;
  line-height: 1.02;
}

.services-showcase .info-card p {
  margin-bottom: 0;
}

.services-showcase .info-card::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(147, 200, 31, 0.12);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  margin-bottom: 0.95rem;
  border-radius: 16px;
  background: rgba(147, 200, 31, 0.12);
  color: var(--green-deep);
  box-shadow: inset 0 0 0 1px rgba(147, 200, 31, 0.12);
}

.feature-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.feature-icon.feature-icon-small {
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 0;
  border-radius: 14px;
}

.feature-icon.feature-icon-small svg {
  width: 1.2rem;
  height: 1.2rem;
}

.info-card,
.project-card,
.record-card,
.gallery-card,
.service-row,
.faq-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.info-card:hover,
.project-card:hover,
.record-card:hover,
.gallery-card:hover,
.service-row:hover,
.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(12, 18, 18, 0.12);
  border-color: rgba(147, 200, 31, 0.22);
}

.service-art {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 22, 23, 0.08);
}

.service-head,
.card-head,
.contact-card-head,
.footer-title {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.service-head h2,
.card-head h3,
.contact-card-head h3,
.footer-title h3,
.footer-title h4 {
  margin-bottom: 0;
}

.before-after-grid,
.team-showcase {
  display: grid;
  gap: 2rem;
}

.before-after-grid {
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
}

.before-after-copy {
  max-width: 34rem;
}

.before-after-card {
  padding: 1.2rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(17, 22, 23, 0.08);
  box-shadow: var(--shadow-soft);
}

.before-after {
  --before-after-position: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 480px;
  background: #d9ddd2;
  isolation: isolate;
}

.before-after-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-image {
  position: absolute;
  inset: 0;
}

.before-layer {
  position: absolute;
  inset: 0;
  width: var(--before-after-position);
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.before-layer .before-after-image {
  width: 100%;
}

.before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--before-after-position);
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(17, 22, 23, 0.1);
}

.before-after-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4rem;
  height: 4rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(10, 12, 12, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 40px rgba(5, 9, 9, 0.28);
}

.before-after-handle::before,
.before-after-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.before-after-handle::before {
  left: 0.95rem;
  transform: translateY(-50%) rotate(-135deg);
}

.before-after-handle::after {
  right: 0.95rem;
  transform: translateY(-50%) rotate(45deg);
}

.before-after-label {
  position: absolute;
  top: 1.15rem;
  z-index: 2;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.before-label {
  left: 1rem;
  background: rgba(10, 12, 12, 0.72);
  color: var(--white);
}

.after-label {
  right: 1rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.before-after-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
}

.before-after-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.4rem 0.1rem;
}

.before-after-caption strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.before-after-caption p {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
}

.card-number {
  margin-bottom: 1rem;
}

.section-accent {
  position: relative;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 22, 23, 0.01), rgba(17, 22, 23, 0.05)),
    linear-gradient(90deg, rgba(147, 200, 31, 0.08), transparent 50%);
  z-index: -1;
}

.statement-band {
  padding-top: 0;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: end;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line-strong);
}

.statement-text {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 18ch;
}

.statement-side {
  justify-self: end;
  max-width: 24rem;
  padding: 1.5rem 1.6rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(17, 22, 23, 0.08);
}

.statement-points {
  display: grid;
  gap: 0.8rem;
  max-width: 28rem;
}

.statement-points article {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(17, 22, 23, 0.06);
}

.statement-side span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.73rem;
  font-weight: 800;
}

.section-visual {
  display: block;
  width: min(100%, 980px);
  margin-top: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(17, 22, 23, 0.08);
  box-shadow: var(--shadow-soft);
}

.split {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.value-split {
  gap: 3rem;
}

.benefits {
  display: grid;
  gap: 1rem;
}

.benefits article {
  padding: 0 0 1.3rem;
  border-bottom: 1px solid var(--line);
}

.benefits article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline article {
  position: relative;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 36, 48, 0.08);
}

.timeline article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green), transparent);
  border-radius: 999px;
}

.timeline span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--green-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.owner-grid,
.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.owner-section {
  padding-top: 0.5rem;
}

.owner-highlight {
  background:
    linear-gradient(160deg, rgba(6, 8, 8, 0.96), rgba(20, 24, 24, 0.96));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-strong);
}

.owner-highlight p,
.owner-highlight .text-link {
  color: rgba(255, 255, 255, 0.8);
}

.owner-highlight .eyebrow {
  color: rgba(147, 200, 31, 0.9);
}

.owner-list {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.22));
}

.team-section {
  padding-top: 0.5rem;
}

.team-showcase {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
}

.team-lead-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.7rem;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(8, 10, 10, 0.98), rgba(23, 28, 27, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.team-lead-copy p:not(.card-number):not(.team-role) {
  color: rgba(255, 255, 255, 0.78);
}

.team-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.placeholder-team-card {
  min-height: 0;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.26)),
    rgba(255, 255, 255, 0.3);
}

.team-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  margin-bottom: 1.1rem;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(147, 200, 31, 0.28), transparent 18%),
    linear-gradient(180deg, rgba(147, 200, 31, 0.18), transparent 26%),
    linear-gradient(145deg, #141817, #212826 58%, #2a332f);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.team-photo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-photo-lead .team-photo-image {
  object-position: center center;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(9, 12, 12, 0.56));
}

.team-photo-lead {
  width: 100%;
  min-height: 320px;
  max-height: 420px;
  margin-bottom: 0;
  aspect-ratio: auto;
}

.team-photo-badge,
.team-photo-mark {
  position: absolute;
  z-index: 1;
}

.team-photo-badge {
  top: 1rem;
  left: 1rem;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.team-photo-mark {
  left: 1.2rem;
  bottom: 1.1rem;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.team-role {
  margin: -0.1rem 0 0.85rem;
  color: var(--green);
  font-weight: 700;
}

.team-lead-copy {
  max-width: 44rem;
}

.team-contact-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.team-contact-list strong {
  color: var(--white);
}

.team-video-slot {
  margin-top: 1rem;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-video-slot .video-label {
  display: block;
  padding: 0.8rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.team-video-slot .video-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 50%, rgba(147, 200, 31, 0.25), transparent 30%),
    linear-gradient(145deg, rgba(14, 16, 15, 0.95), rgba(27, 33, 31, 0.92));
}

.team-video-slot .video-frame::before {
  content: "";
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.team-video-slot .video-frame::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 1.2rem solid rgba(255, 255, 255, 0.92);
  margin-left: 0.35rem;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 800;
}

.team-card .team-contact-list {
  margin-top: 0.75rem;
  color: var(--muted);
}

.team-card .team-contact-list strong {
  color: var(--ink);
}

.dark-band {
  color: var(--white);
}

.dark-band .container {
  padding: 2.4rem;
  background:
    radial-gradient(circle at 88% 18%, rgba(147, 200, 31, 0.18), transparent 14%),
    linear-gradient(145deg, #090b0b, #151919 56%, #1e2522);
  border-radius: 36px;
  box-shadow: var(--shadow-strong);
}

.feature-band p {
  color: rgba(255, 255, 255, 0.78);
}

.split-tight {
  grid-template-columns: 1fr 1fr;
}

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

.faq-card {
  min-height: 220px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.35);
}

.site-footer {
  padding: 1rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr 0.9fr;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 0.6rem;
}

.footer-aaa {
  display: grid;
  align-content: start;
}

.footer-aaa h4 {
  margin-bottom: 0.8rem;
}

.aaa-badge {
  margin-top: 0.1rem;
  padding: 0.95rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(17, 22, 23, 0.08);
}

.aaa-badge img {
  display: block;
  width: 100%;
  max-width: 9.25rem;
  height: auto;
}

.service-stack {
  display: grid;
  gap: 1rem;
}

.service-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 1.8rem;
  padding: 1.8rem;
  align-items: start;
}

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

.quote-grid article {
  padding: 1.4rem;
  border-top: 1px solid var(--line-strong);
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.3);
}

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

.project-card {
  padding: 1.7rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.project-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(221, 227, 210, 0.74)),
    rgba(255, 255, 255, 0.3);
}

.project-card::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(17, 22, 23, 0.08);
  transition: transform 320ms ease;
}

.project-grid .project-card:nth-child(6n + 1)::before {
  background-image: url("assets/generated/project-cover-historic.png");
}

.project-grid .project-card:nth-child(6n + 2)::before {
  background-image: url("assets/generated/project-cover-renovation.png");
}

.project-grid .project-card:nth-child(6n + 3)::before {
  background-image: url("assets/generated/project-cover-vantaa.png");
}

.project-grid .project-card:nth-child(6n + 4)::before {
  background-image: url("assets/generated/project-cover-sauna.png");
}

.project-grid .project-card:nth-child(6n + 5)::before {
  background-image: url("assets/generated/project-cover-espoo.png");
}

.project-grid .project-card:nth-child(6n + 6)::before {
  background-image: url("assets/generated/project-cover-pool.png");
}

.owner-page-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.owner-hero {
  padding-bottom: 1rem;
}

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

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

.two-col-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-panel {
  padding: 2rem;
}

.contact-sidebar {
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 36, 48, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.contact-form input[type="file"] {
  padding: 0.85rem 1rem;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.file-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status.is-error {
  color: #9b2d2d;
}

.records-list {
  display: grid;
  gap: 1rem;
}

.timeline-records {
  position: relative;
  padding-left: 3.2rem;
}

.timeline-records::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(147, 200, 31, 0.95), rgba(147, 200, 31, 0.24));
}

.record-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.35rem 1.45rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(17, 22, 23, 0.08);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.timeline-records .record-card::before {
  content: "";
  position: absolute;
  left: -2.63rem;
  top: 1.8rem;
  transform: translateY(-50%);
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(147, 200, 31, 0.12);
}

.record-year {
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 1.05rem;
}

.record-body {
  display: grid;
  gap: 0.6rem;
}

.project-records .record-body::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 270px;
  aspect-ratio: 4 / 3.25;
  margin-bottom: 0;
  border-radius: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(17, 22, 23, 0.08);
  transition: transform 320ms ease;
}

.project-records .record-body {
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: 0.35rem;
  align-items: start;
}

.project-records .record-body h3,
.project-records .record-body p,
.project-records .record-body .record-meta {
  grid-column: 2;
}

.project-records .record-body::before {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.project-card:hover::before,
.gallery-card:hover img,
.project-records .record-card:hover .record-body::before {
  transform: scale(1.03);
}

.project-records .record-card:nth-child(6n + 1) .record-body::before {
  background-image: url("assets/generated/project-cover-historic.png");
}

.project-records .record-card:nth-child(6n + 2) .record-body::before {
  background-image: url("assets/generated/project-cover-renovation.png");
}

.project-records .record-card:nth-child(6n + 3) .record-body::before {
  background-image: url("assets/generated/project-cover-vantaa.png");
}

.project-records .record-card:nth-child(6n + 4) .record-body::before {
  background-image: url("assets/generated/project-cover-espoo.png");
}

.project-records .record-card:nth-child(6n + 5) .record-body::before {
  background-image: url("assets/generated/project-cover-sauna.png");
}

.project-records .record-card:nth-child(6n + 6) .record-body::before {
  background-image: url("assets/generated/project-cover-pool.png");
}

.record-body h3 {
  margin-bottom: 0.45rem;
}

.record-body p {
  margin: 0 0 0.5rem;
}

.record-meta {
  color: var(--muted);
  font-weight: 700;
}

.compact-records .record-card {
  grid-template-columns: 92px 1fr;
  padding: 1rem 1.15rem;
}

.cv-block + .cv-block {
  margin-top: 2rem;
}

.cv-block h3 {
  margin-bottom: 1rem;
}

.role-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.legacy-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem 1rem;
}

.legacy-list p {
  margin: 0;
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.company-profile-section {
  padding-top: 0.1rem;
  padding-bottom: 3rem;
}

.company-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1.42fr);
  gap: 0.7rem;
  align-items: start;
}

.company-profile-section .section-heading {
  margin-bottom: 0;
  padding-top: 0.1rem;
  max-width: 32rem;
}

.company-profile-section .section-heading h2 {
  max-width: 7.3ch;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.88;
}

.company-profile-section .section-heading .lead-small {
  max-width: 28ch;
  margin-top: 0.5rem;
}

.company-profile-layout .card-grid {
  gap: 1rem;
  align-content: start;
}

.company-profile-layout .info-card {
  min-height: 100%;
  padding: 1.55rem 1.6rem 1.7rem;
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.company-profile-layout .info-card h3 {
  margin-bottom: 0.4rem;
  line-height: 1.03;
}

.company-profile-layout .info-card p {
  margin-bottom: 0;
}

.feature-inline-visual {
  display: block;
  width: 100%;
  max-width: 560px;
  margin-top: 1.35rem;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.feature-band > div:last-child {
  display: grid;
  align-content: start;
}

.work-gallery-section {
  padding-top: 1rem;
}

.work-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: var(--shadow-soft);
}

.gallery-card-tall {
  grid-row: span 2;
  min-height: 540px;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 12, 12, 0.04), rgba(9, 12, 12, 0.58));
}

.gallery-copy {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.2rem;
  z-index: 1;
  color: var(--white);
}

.gallery-copy span {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-copy h3 {
  margin-bottom: 0;
}

.archive-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.archive-column {
  padding: 1.4rem 1.3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(17, 22, 23, 0.08);
}

.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.archive-list li {
  position: relative;
  padding-left: 1rem;
}

.archive-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--green);
}

.cert-grid,
.reference-grid {
  display: grid;
  gap: 1rem;
}

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

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

.cert-card,
.reference-card,
.doc-card {
  padding: 1.45rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(17, 22, 23, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.cert-card:hover,
.reference-card:hover,
.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(12, 18, 18, 0.12);
  border-color: rgba(147, 200, 31, 0.22);
}

.reference-card {
  display: grid;
  gap: 1rem;
}

.reference-card::before,
.doc-card::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(17, 22, 23, 0.08);
  transition: transform 320ms ease;
}

.reference-card:hover::before,
.doc-card:hover::before {
  transform: scale(1.03);
}

.reference-card:nth-child(6n + 1)::before,
.doc-card:nth-child(6n + 1)::before {
  background-image: url("assets/generated/project-cover-historic.png");
}

.reference-card:nth-child(6n + 2)::before,
.doc-card:nth-child(6n + 2)::before {
  background-image: url("assets/generated/project-cover-renovation.png");
}

.reference-card:nth-child(6n + 3)::before,
.doc-card:nth-child(6n + 3)::before {
  background-image: url("assets/generated/project-cover-vantaa.png");
}

.reference-card:nth-child(6n + 4)::before,
.doc-card:nth-child(6n + 4)::before {
  background-image: url("assets/generated/project-cover-espoo.png");
}

.reference-card:nth-child(6n + 5)::before,
.doc-card:nth-child(6n + 5)::before {
  background-image: url("assets/generated/project-cover-sauna.png");
}

.reference-card:nth-child(6n + 6)::before,
.doc-card:nth-child(6n + 6)::before {
  background-image: url("assets/generated/project-cover-pool.png");
}

.reference-meta,
.cert-meta,
.doc-meta {
  color: var(--muted);
  font-weight: 700;
}

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

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: inline-grid;
  place-items: center;
  width: 3.65rem;
  height: 3.65rem;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-icon {
  width: 1.9rem;
  height: 1.9rem;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 56px rgba(37, 211, 102, 0.38);
  background: #20c45a;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .owner-grid,
  .owner-page-grid,
  .contact-grid,
  .before-after-grid,
  .team-showcase,
  .service-row,
  .timeline,
  .timeline.compact,
  .team-grid,
  .three-up,
  .faq-grid,
  .quote-grid,
  .project-grid,
  .footer-grid,
  .two-col-note,
  .metrics-grid,
  .statement-grid,
  .legacy-list,
  .archive-columns,
  .company-profile-layout,
  .cert-grid,
  .reference-grid,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .hero-services {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .team-photo-lead {
    min-height: 320px;
  }

  .record-card,
  .compact-records .record-card {
    grid-template-columns: 1fr;
  }

  .timeline-records {
    padding-left: 2.55rem;
  }

  .timeline-records::before {
    left: 0.95rem;
  }

  .timeline-records .record-card::before {
    left: -1.55rem;
    top: 1.5rem;
  }

  .record-year {
    padding-top: 0;
  }

  .project-records .record-body::before {
    max-width: none;
    aspect-ratio: 16 / 8;
  }

  .project-records .record-body {
    grid-template-columns: 1fr;
  }

  .project-records .record-body h3,
  .project-records .record-body p,
  .project-records .record-body .record-meta,
  .project-records .record-body::before {
    grid-column: auto;
    grid-row: auto;
  }

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

  .gallery-card-tall {
    grid-row: auto;
    min-height: 320px;
  }

  .hero::before {
    height: auto;
    bottom: 0;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    height: 3.35rem;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(26, 36, 48, 0.1);
    background: rgba(255, 255, 255, 0.82);
    flex-shrink: 0;
  }

  .nav-toggle span {
    width: 1.3rem;
  }

  .site-nav {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border-radius: var(--radius-lg);
    background: rgba(248, 243, 235, 0.98);
    border: 1px solid rgba(26, 36, 48, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-topbar {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.55rem;
    padding-top: 0.45rem;
  }

  .header-languages {
    justify-self: start;
  }

  .site-notice {
    justify-self: stretch;
    text-align: left;
  }

  .hero,
  .page-hero {
    padding-top: 1.7rem;
  }

  .hero-grid {
    gap: 1.4rem;
    padding: 1rem 0 2.1rem;
  }

  .hero::before {
    inset: 0.75rem 0.5rem 0;
    border-radius: 28px;
  }

  .hero::after {
    inset: 0.75rem 0.5rem 0;
    border-radius: 28px;
  }

  .brand {
    min-width: 0;
    gap: 0.6rem;
  }

  .brand-word {
    font-size: 1rem;
  }

  .brand-meta strong {
    font-size: 0.78rem;
  }

  .brand-meta small {
    display: none;
  }

  .hero-copy {
    padding: 0.1rem 0 0;
  }

  .hero-panel {
    margin-top: 0;
    padding: 1rem;
  }

  .hero-panel-top,
  .owner-highlight,
  .owner-list,
  .contact-card,
  .contact-panel {
    padding: 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
    margin: 1.3rem 0 1.25rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    gap: 0.85rem;
  }

  .hero-services article {
    padding: 0.8rem 0.9rem;
  }

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

  .metrics-band {
    margin-top: 0;
  }

  .before-after {
    min-height: 280px;
  }

  .before-after-caption {
    flex-direction: column;
    padding: 0.9rem 0.15rem 0;
  }

  .statement-text {
    max-width: none;
    font-size: clamp(1.45rem, 8vw, 2.1rem);
  }

  .statement-side {
    justify-self: stretch;
    max-width: none;
  }

  .team-placeholder-grid {
    gap: 0.85rem;
  }

  .team-photo {
    aspect-ratio: 16 / 11;
  }

  .company-profile-section .section-heading {
    padding-top: 0;
    margin-bottom: 0.4rem;
  }

  .company-profile-section .section-heading h2 {
    max-width: none;
  }

  .work-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card-tall {
    min-height: 240px;
  }

  .section-visual {
    margin-top: 1.4rem;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.8rem);
    width: 3.35rem;
    height: 3.35rem;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
    max-width: 10ch;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.6rem);
    max-width: none;
  }

  .lead,
  .lead-small {
    font-size: 1rem;
  }

  .hero-panel,
  .cta-box,
  .contact-panel,
  .owner-highlight,
  .owner-list,
  .before-after-card,
  .team-lead-card,
  .service-row,
  .info-card,
  .faq-card,
  .project-card,
  .team-card {
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.1rem), var(--container));
  }

  .nav-wrap {
    gap: 0.55rem;
    padding: 0.8rem 0;
  }

  .brand-meta strong {
    font-size: 0.72rem;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-lockup,
  .brand-meta {
    min-width: 0;
  }

  .brand-meta strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-languages {
    gap: 0.18rem;
    padding: 0.2rem;
  }

  .header-languages a {
    min-height: 1.95rem;
    padding: 0.2rem 0.45rem;
    font-size: 0.72rem;
  }

  .lang-flag {
    width: 0.92rem;
    height: 0.68rem;
  }

  .project-card,
  .services-showcase .info-card,
  .faq-card,
  .contact-card,
  .owner-highlight,
  .owner-list,
  .team-card,
  .record-card {
    padding: 1.1rem;
  }

  .project-card::before,
  .project-records .record-body::before {
    border-radius: 16px;
  }

  .hero-note,
  .hero-panel-top {
    padding: 1rem;
  }

  .record-card {
    gap: 0.75rem;
  }

  .record-body h3 {
    margin-bottom: 0.15rem;
  }

  .timeline-records {
    padding-left: 1.95rem;
  }

  .timeline-records::before {
    left: 0.58rem;
  }

  .timeline-records .record-card::before {
    left: -1.25rem;
    width: 0.8rem;
    height: 0.8rem;
    box-shadow: 0 0 0 6px rgba(147, 200, 31, 0.12);
  }

  .service-head,
  .card-head,
  .contact-card-head {
    gap: 0.75rem;
  }
}
