/* ===========================
   bilden.bg — Mobile-First CSS
   Palette: Modern Sage
   =========================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --logo: #1DB5A4;
  --primary: #4A7C59;
  --accent: #6BA368;
  --dark: #2C3E2D;
  --dark-deeper: #1d2b1e;
  --light: #F4F8F5;
  --warm: #F9F6F1;
  --cta: #E76F51;
  --cta-hover: #D4553D;
  --white: #FFFFFF;
  --text: #2a2a2a;
  --text-muted: #606060;
  --border: #e2ebe4;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 2px 12px rgba(44, 62, 45, 0.08);
  --shadow-lg: 0 8px 32px rgba(44, 62, 45, 0.14);
  --shadow-colored: 0 4px 20px rgba(74, 124, 89, 0.18);
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-colored);
}

.btn--cta {
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(231, 111, 81, 0.35);
  animation: pulse-cta 3s ease-in-out infinite;
}

@keyframes pulse-cta {

  0%,
  100% {
    box-shadow: 0 4px 14px rgba(231, 111, 81, 0.35);
  }

  50% {
    box-shadow: 0 4px 24px rgba(231, 111, 81, 0.6), 0 0 0 6px rgba(231, 111, 81, 0.08);
  }
}

.btn--cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 111, 81, 0.45);
  animation: none;
}

.btn--cta:disabled {
  background: #999;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  animation: none;
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
  color: white;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.icon {
  flex-shrink: 0;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  box-shadow: 0 1px 0 var(--border), var(--shadow);
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo img {
  height: 74px;
  width: auto;
}

.header__nav {
  display: none;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  background: none;
  border: none;
  padding: 0;
  letter-spacing: 0.02em;
}

.header__cta:hover {
  color: var(--primary);
}

/* Burger */
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.header__nav.active {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  padding: 12px 0 20px;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(44, 62, 45, 0.12);
  border-bottom: 1px solid var(--border);
}

.header__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.header__nav.active .header__nav-list {
  flex-direction: column;
}

.header__nav-link {
  display: block;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  width: 100%;
  text-align: center;
  transition: color var(--transition-fast);
}

.header__nav-link:hover {
  color: var(--primary);
}

/* --- Hero --- */
.hero {
  padding: 110px 0 72px;
  background: linear-gradient(145deg, var(--dark-deeper) 0%, var(--dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(29, 181, 164, 0.35);
}

/* Background texture — low opacity image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/plumber-bathroom-sm.jpg') center 30% / cover no-repeat;
  opacity: 0.14;
  z-index: 0;
}

/* Subtle radial highlight — left side to illuminate content */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(29, 181, 164, 0.15) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero__content {
  text-align: center;
}

.hero__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--logo);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero__tagline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
  line-height: 1.5;
  font-weight: 400;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__area {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__area::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--logo);
  border-radius: 50%;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.hero__actions .btn {
  justify-content: center;
  min-width: 180px;
}

/* Hero mini stats strip */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__stat strong {
  color: var(--logo);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.hero__stat-dot {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: none;
}

/* --- Section Titles --- */
.section__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.section__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--logo);
  border-radius: 2px;
  margin: 12px auto 0;
}

.section__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

/* --- Services --- */
.services {
  padding: 72px 0;
  background: var(--light);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 42px;
  font-weight: 900;
  color: var(--logo);
  opacity: 0.08;
  line-height: 1;
  letter-spacing: -2px;
  pointer-events: none;
  user-select: none;
  transition: opacity var(--transition);
}

.service-card:hover .service-card__num {
  opacity: 0.13;
}

.service-card {
  background: var(--white);
  padding: 32px 28px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--logo);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(29, 181, 164, 0.08);
  border-radius: 16px;
  margin-bottom: 20px;
  transition: background var(--transition), transform var(--transition);
}

.service-card:hover .service-card__icon {
  background: rgba(29, 181, 164, 0.15);
  transform: scale(1.05);
}

.service-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-card__cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.service-card__cta:hover {
  color: var(--logo);
  transform: translateX(4px);
}

/* --- Why Us --- */
.why-us {
  padding: 72px 0;
  background: var(--white);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.why-us__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 24px 24px 24px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--logo);
  transition: box-shadow var(--transition), transform var(--transition), border-left-color var(--transition);
}

.why-us__item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-left-color: var(--primary);
}

.why-us__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(29, 181, 164, 0.08);
  border-radius: 12px;
}

.why-us__body {
  flex: 1;
}

.why-us__num {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--logo);
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.7;
}

.why-us__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.why-us__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- How It Works --- */
.how-it-works {
  padding: 72px 0;
  background: var(--dark);
  color: white;
  position: relative;
}

.how-it-works .section__title {
  color: white;
}

.how-it-works .section__title::after {
  background: var(--logo);
}

.how-it-works .section__subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.step {
  text-align: center;
  position: relative;
  padding: 24px 0;
  max-width: 260px;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--logo);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(29, 181, 164, 0.35);
}

.step__icon {
  margin-bottom: 14px;
}

.step__icon svg {
  stroke: rgba(255, 255, 255, 0.7);
}

.step__title {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.step__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.6;
}

.step__text a {
  color: var(--logo);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.step__connector {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* --- Recent Projects (Social Proof) --- */
/* Recent Projects — Dark Editorial */
.recent-projects {
  padding: 80px 0 72px;
  background: #192918;
  position: relative;
  overflow: hidden;
}

/* Dot grid texture */
.recent-projects::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(29, 181, 164, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Teal separator at top */
.recent-projects::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(29, 181, 164, 0.7) 30%, rgba(29, 181, 164, 0.7) 70%, transparent 100%);
  pointer-events: none;
}

.projects-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}

.projects-sidebar {
  padding-bottom: 4px;
}

.projects-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--logo);
  margin-bottom: 14px;
}

.projects-heading {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.projects-stats {
  display: flex;
  gap: 28px;
}

.projects-stat {
  display: flex;
  flex-direction: column;
}

.projects-stat__num {
  font-size: 36px;
  font-weight: 900;
  color: var(--logo);
  letter-spacing: -2px;
  line-height: 1;
}

.projects-stat__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  line-height: 1.3;
  max-width: 76px;
}

/* Project list */
.projects-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.projects-entry {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  padding: 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 3px 0 0 transparent;
  transition: box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
  border-radius: 0 6px 6px 0;
  cursor: default;
}

.projects-entry:hover {
  box-shadow: inset 4px 0 0 var(--logo);
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(5px);
}

.projects-entry__date {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2px;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-entry__day {
  font-size: 38px;
  font-weight: 900;
  color: var(--logo);
  letter-spacing: -2px;
  line-height: 1;
}

.projects-entry__month {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}

.projects-entry__body {
  grid-column: 2;
  grid-row: 1;
}

.projects-entry__title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 3px;
  transition: color 0.2s ease;
}

.projects-entry:hover .projects-entry__title {
  color: rgba(200, 242, 238, 1);
}

.projects-entry__location {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.projects-entry__tag {
  grid-column: 2;
  grid-row: 2;
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--logo);
  background: rgba(29, 181, 164, 0.12);
  border: 1px solid rgba(29, 181, 164, 0.25);
  border-radius: 4px;
  padding: 3px 8px;
  margin-top: 8px;
  align-self: start;
  width: fit-content;
}

/* Year divider */
.projects-year-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  pointer-events: none;
}

.projects-year-divider span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}

.projects-year-divider::before,
.projects-year-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

/* Category tag color variants */
.projects-entry__tag--installation {
  /* teal — inherits base styles, no override needed */
}

.projects-entry__tag--pipes {
  color: #d4a017;
  background: rgba(212, 160, 23, 0.1);
  border-color: rgba(212, 160, 23, 0.28);
}

.projects-entry__tag--heating {
  color: #e07a5f;
  background: rgba(224, 122, 95, 0.1);
  border-color: rgba(224, 122, 95, 0.28);
}

/* Hover left-border matches category color */
.projects-entry:has(.projects-entry__tag--pipes):hover {
  box-shadow: inset 4px 0 0 #d4a017;
}

.projects-entry:has(.projects-entry__tag--heating):hover {
  box-shadow: inset 4px 0 0 #e07a5f;
}

/* Latest entry — persistent teal accent + featured treatment */
.projects-entry--latest {
  box-shadow: inset 4px 0 0 var(--logo);
  background: rgba(29, 181, 164, 0.10);
}

.projects-entry--latest .projects-entry__day {
  color: var(--logo);
}

.projects-entry--latest .projects-entry__month {
  color: rgba(29, 181, 164, 0.6);
}

/* CTA entry */
.projects-entry--cta {
  border-bottom: none;
  box-shadow: inset 3px 0 0 rgba(231, 111, 81, 0.4);
}

.projects-entry--cta:hover {
  box-shadow: inset 3px 0 0 var(--cta);
  background: rgba(231, 111, 81, 0.05);
  transform: translateX(5px);
}

.projects-entry--cta .projects-entry__day {
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.18);
}

.projects-entry--cta .projects-entry__title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-bottom: 6px;
}

.projects-entry__link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--cta);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.projects-entry__link:hover {
  color: #ff8b6b;
  transform: translateX(4px);
}

/* --- Trust --- */
.trust {
  padding: 64px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29, 181, 164, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 24px;
  text-align: center;
}

.trust__item {
  color: var(--white);
}

.trust__number {
  font-size: 52px;
  font-weight: 900;
  display: inline;
  color: white;
  letter-spacing: -2px;
  line-height: 1;
}

.trust__plus {
  font-size: 32px;
  font-weight: 800;
  color: var(--logo);
  letter-spacing: -1px;
}

.trust__label {
  display: block;
  font-size: 13px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.trust__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(29, 181, 164, 0.12);
  border-radius: 50%;
  margin: 0 auto 4px;
  border: 1px solid rgba(29, 181, 164, 0.25);
}

.trust__badge svg {
  stroke: var(--logo);
}

/* --- Contact Form --- */
.contact {
  padding: 80px 0;
  background: var(--warm);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact__heading {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.contact__heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--logo);
  border-radius: 2px;
  margin: 12px 0 0;
}

.contact__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 32px;
}

.contact__reach {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  transition: color var(--transition);
}

.contact__phone svg {
  color: var(--primary);
  flex-shrink: 0;
}

.contact__phone:hover {
  color: var(--primary);
}

.contact__hours {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 4px;
}

.contact__free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  padding-left: 4px;
}

.contact__free::before {
  content: '✓';
  font-size: 14px;
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form__optional {
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.12);
}

.form__select {
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 110px;
}

.form__error {
  display: none;
  font-size: 12px;
  color: var(--cta);
  margin-top: 6px;
  font-weight: 500;
}

.form__group.error .form__error {
  display: block;
}

.form__group.error .form__input {
  border-color: var(--cta);
}

.form__success {
  display: none;
  text-align: center;
  padding: 32px 24px;
  margin-top: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--accent);
}

.form__success.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.form__success p {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

/* --- Footer --- */
.footer {
  background: #151e16;
  color: var(--white);
  padding: 56px 0 24px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer__logo img {
  height: 44px;
  width: auto;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  max-width: 280px;
  line-height: 1.5;
}

.footer__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.footer__heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  color: var(--logo);
}

.footer__block p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--logo);
}

.footer__description {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__description p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
}

.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* --- Floating Action Button (Mobile) --- */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--cta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(231, 111, 81, 0.5);
  z-index: 90;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.fab:hover {
  background: var(--cta-hover);
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(231, 111, 81, 0.55);
}

/* --- Screen Reader Only --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Team --- */
.team {
  padding: 72px 0;
  background: var(--light);
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.team__card {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.team__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--light);
  border-radius: 50%;
  margin-bottom: 14px;
}

.team__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.team__experience {
  font-size: 13px;
  color: var(--logo);
  font-weight: 600;
  margin-bottom: 4px;
}

.team__specialty {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq {
  padding: 72px 0;
  background: var(--warm);
}

.faq__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.faq__intro {
  padding-bottom: 8px;
}

.faq__heading {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.faq__heading::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--logo);
  border-radius: 2px;
  margin-top: 12px;
}

.faq__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.faq__ask-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.faq__ask-cta:hover {
  color: var(--logo);
  transform: translateX(3px);
  display: inline-block;
}

.faq__list {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 16px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.faq__question:hover {
  background: var(--light);
  color: var(--primary);
}

.faq__item.active .faq__question {
  color: var(--primary);
  background: rgba(74, 124, 89, 0.04);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item.active .faq__answer {
  max-height: 320px;
  padding-bottom: 20px;
}

.faq__answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 24px;
}

.faq__answer a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Why Us Link --- */
.why-us__link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 13px;
  font-weight: 600;
}

/* ===========================
   Tablet (768px+)
   =========================== */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .header__inner {
    height: 72px;
  }

  .hero {
    padding: 130px 0 88px;
  }

  .hero__title {
    font-size: 60px;
    letter-spacing: 8px;
  }

  .hero__tagline {
    font-size: 19px;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .hero__stat-dot {
    display: block;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .why-us__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .steps {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .step__connector {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-top: 52px;
  }

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

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .faq__question {
    font-size: 16px;
    padding: 22px 28px;
  }

  .faq__answer p {
    padding: 0 28px;
  }

  .trust__number {
    font-size: 60px;
  }

  .trust__plus {
    font-size: 36px;
  }

  .trust__grid {
    gap: 40px 40px;
  }
}

/* ===========================
   Desktop (1024px+)
   =========================== */
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }

  .header__nav {
    display: flex;
  }

  .header__nav-list {
    flex-direction: row;
    gap: 36px;
  }

  .header__nav-link {
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
  }

  .header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition-fast);
  }

  .header__nav-link:hover::after {
    transform: scaleX(1);
  }

  .header__cta {
    display: inline-flex;
    padding: 10px 22px;
    font-size: 14px;
    background: var(--light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: background var(--transition), color var(--transition);
  }

  .header__cta:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
  }

  .hero {
    padding: 140px 0 100px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__title {
    font-size: 84px;
    letter-spacing: 12px;
  }

  .hero__tagline {
    font-size: 20px;
    max-width: 600px;
  }

  .hero__actions {
    justify-content: center;
    gap: 16px;
  }

  .hero__stats {
    gap: 8px 28px;
    margin-top: 36px;
    padding-top: 32px;
  }

  .hero__stat-dot {
    display: block;
  }

  .section__title {
    font-size: 38px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-us__item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 28px 24px;
    border-left: 3px solid var(--logo);
    border-top: 1px solid var(--border);
  }

  .why-us__item:hover {
    border-left-color: var(--primary);
  }

  .why-us__body {
    text-align: left;
  }

  /* FAQ split layout */
  .faq__layout {
    grid-template-columns: 1fr 1.8fr;
    gap: 72px;
    align-items: start;
  }

  .faq__heading {
    font-size: 34px;
  }

  .faq__intro {
    position: sticky;
    top: 88px;
  }

  .step__connector {
    width: 80px;
  }

  /* Projects split layout at desktop */
  .projects-layout {
    grid-template-columns: 200px 1fr;
    gap: 64px;
    align-items: start;
  }

  .projects-sidebar {
    position: sticky;
    top: 88px;
  }

  .projects-heading {
    font-size: 52px;
    letter-spacing: -3px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(29, 181, 164, 0.2);
    margin-bottom: 0;
  }

  .projects-stats {
    flex-direction: column;
    gap: 0;
  }

  .projects-stat {
    padding: 20px 0;
    border-bottom: 1px solid rgba(29, 181, 164, 0.12);
  }

  .projects-stat:first-child {
    padding-top: 0;
  }

  .projects-stat:last-child {
    border-bottom: none;
  }

  .projects-stat__num {
    font-size: 56px;
    letter-spacing: -3px;
  }

  .projects-stat__label {
    max-width: none;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }

  /* 3-column grid on desktop: date | body | tag */
  .projects-entry {
    grid-template-columns: 72px 1fr auto;
    grid-template-rows: auto;
    column-gap: 24px;
    padding: 22px 16px;
    align-items: center;
  }

  .projects-entry__date {
    grid-row: 1;
  }

  .projects-entry__body {
    grid-row: 1;
  }

  .projects-entry__day {
    font-size: 52px;
    letter-spacing: -3px;
  }

  .projects-entry__title {
    font-size: 15px;
  }

  /* Tag moves to right column on desktop */
  .projects-entry__tag {
    grid-column: 3;
    grid-row: 1;
    margin-top: 0;
    align-self: center;
    font-size: 10px;
    padding: 4px 10px;
  }

  .projects-entry--cta .projects-entry__day {
    font-size: 28px;
  }

  /* Featured/latest entry gets hero treatment on desktop */
  .projects-entry--latest {
    padding-top: 30px;
    padding-bottom: 30px;
    grid-template-columns: 90px 1fr auto;
  }

  .projects-entry--latest .projects-entry__day {
    font-size: 72px;
    letter-spacing: -4px;
  }

  .projects-entry--latest .projects-entry__title {
    font-size: 19px;
    margin-bottom: 6px;
  }

  .projects-entry--latest .projects-entry__location {
    font-size: 13px;
  }

  .projects-entry--latest .projects-entry__tag {
    font-size: 11px;
    padding: 6px 14px;
  }

  .team__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

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

  .trust__number {
    font-size: 72px;
    letter-spacing: -3px;
  }

  .trust__plus {
    font-size: 44px;
  }

  .trust__label {
    font-size: 11px;
  }

  /* Dividers between trust items on desktop */
  .trust__item+.trust__item {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Hide FAB on desktop — phone is in header */
  .fab {
    display: none;
  }

  /* Contact split layout */
  .contact__layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
  }

  .contact__heading {
    font-size: 36px;
  }

  .contact__phone {
    font-size: 28px;
  }

  .footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    grid-template-rows: auto auto;
    gap: 0 60px;
  }

  .footer__brand {
    grid-column: 1;
    grid-row: 1;
    padding-bottom: 32px;
  }

  .footer__info {
    grid-column: 2;
    grid-row: 1;
  }

  .footer__description {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer__bottom {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ===========================
   Accessibility
   =========================== */
@media (prefers-reduced-motion: reduce) {

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

/* ===========================
   Page Hero (inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(160deg, var(--dark-deeper) 0%, var(--dark) 100%);
  padding: 110px 0 88px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(29, 181, 164, 0.2);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/plumber-bathroom-sm.jpg') center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(29, 181, 164, 0.13) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-size: clamp(32px, 5.5vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-top: 24px;
  position: relative;
  letter-spacing: -0.02em;
}

.page-hero__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--logo);
  margin-top: 12px;
  border-radius: 2px;
}

.page-hero__tagline {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  margin-top: 16px;
  max-width: 680px;
  line-height: 1.65;
}

.page-hero__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.page-hero__date {
  color: var(--logo);
  font-size: 14px;
  font-weight: 500;
}

.page-hero__reading-time {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

/* ===========================
   Breadcrumb
   =========================== */
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.breadcrumb__item+.breadcrumb__item::before {
  content: '›';
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb__link {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: var(--logo);
}

.breadcrumb__current {
  color: var(--logo);
  font-weight: 500;
}

/* ===========================
   Active nav link
   =========================== */
.header__nav-link--active {
  color: var(--logo);
}

/* ===========================
   Service Overview Section
   =========================== */
.service-overview {
  padding: 88px 0 72px;
  background: var(--white);
}

.service-overview__layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.service-overview__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(29, 181, 164, 0.08);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(29, 181, 164, 0.22);
  box-shadow: 0 0 0 6px rgba(29, 181, 164, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-overview__body>p:first-child {
  font-size: 19px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(29, 181, 164, 0.15);
}

.service-overview__body p {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}

.service-overview__body p:last-child {
  margin-bottom: 0;
}

/* ===========================
   Service Process
   =========================== */
.service-process {
  background: var(--dark);
}

/* ===========================
   Pricing Card
   =========================== */
.service-pricing {
  padding: 64px 0;
  background: var(--light);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 740px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  border-left: 4px solid var(--logo);
  position: relative;
}

.pricing-card__range {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.pricing-card__note {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.pricing-card__factors {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-card__factors li {
  background: rgba(29, 181, 164, 0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(29, 181, 164, 0.2);
}

.pricing-card__free {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ===========================
   Related Services
   =========================== */
.related-services {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* ===========================
   Related Posts / Blog List
   =========================== */
.related-posts {
  padding: 64px 0;
  background: var(--light);
}

.blog-listing {
  padding: 64px 0;
  background: var(--light);
  min-height: 40vh;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-entry {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-fast);
}

.blog-entry:last-child {
  border-bottom: none;
}

.blog-entry__date {
  color: var(--logo);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  padding-top: 3px;
  letter-spacing: -0.01em;
}

.blog-entry__title {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-entry__title:hover {
  color: var(--logo);
}

.blog-entry__excerpt {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-listing__empty {
  color: var(--text-muted);
  font-size: 16px;
  padding: 40px 0;
}

/* ===========================
   Page CTA Block
   =========================== */
.page-cta {
  padding: 72px 0;
  background: var(--dark);
  text-align: center;
}

.page-cta__heading {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.page-cta__heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--logo);
  margin: 12px auto 0;
  border-radius: 2px;
}

.page-cta__text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  margin-bottom: 32px;
}

.page-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 480px) {
  .page-cta__actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===========================
   Blog Post Body
   =========================== */
.post {
  padding: 56px 0;
  background: var(--white);
}

.post__body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
}

.post__body h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 16px;
  line-height: 1.3;
}

.post__body h2::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--logo);
  margin-top: 8px;
  border-radius: 2px;
}

.post__body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 32px 0 12px;
}

.post__body p {
  margin-bottom: 20px;
}

.post__body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post__body a:hover {
  color: var(--logo);
}

.post__body ul,
.post__body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.post__body li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.post__body strong {
  font-weight: 600;
  color: var(--dark);
}

.post__body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

.post__body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 15px;
}

.post__body th {
  background: var(--light);
  padding: 10px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 2px solid var(--border);
}

.post__body td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.post__body img {
  border-radius: var(--radius-lg);
  max-width: 100%;
  margin: 24px 0;
}

/* ===========================
   Blog entry responsive
   =========================== */
@media (max-width: 480px) {
  .blog-entry {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .blog-entry__date {
    font-size: 12px;
  }
}

@media (max-width: 599px) {
  .service-overview__layout {
    flex-direction: column;
    gap: 28px;
  }
}

@media (min-width: 768px) {
  .service-overview__icon {
    width: 96px;
    height: 96px;
  }
}
