:root {
  --bg-page: #fff4e6;
  --bg-panel: #f0f3f9;
  --bg-card: #ffffff;
  --bg-hero-gradient-start: #eef4ff;
  --bg-hero-gradient-end: #f8fbff;
  --color-primary: #2b6bff;
  --color-primary-dark: #204fba;
  --color-text: #1f2933;
  --color-text-muted: #616e7c;
  --color-border: #e1e5ec;
  --radius-card: 12px;
  --radius-button: 999px;
  --bg-card-gradient: linear-gradient(135deg, var(--bg-hero-gradient-start), var(--bg-hero-gradient-end));
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.06);
  --transition-fast: 0.18s ease-out;
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

/* Do NOT touch body / header / footer here; global CSS handles them */

.about-page {
  padding: 40px 0 60px;
  background-color: var(--bg-page);
}

/* container reused across sections */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero {
  background: linear-gradient(
    135deg,
    var(--bg-hero-gradient-start),
    var(--bg-hero-gradient-end)
  );
  padding: 32px 0 72px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero__content h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #000000;
  margin: 0 0 10px;
}

.gravos-umlaut {
  color: #E00024;
}

.hero__text {
  margin: 0 0 24px;
  color: #000000;
  max-width: 34rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero__image {
  display: flex;
  justify-content: flex-end;
}

.hero__image-placeholder {
  width: 100%;
  max-width: 420px;
  height: 260px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #ffffff, #dbe2f4);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 16px;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section--panel {
  background-color: var(--bg-panel);
}

.section__header {
  text-align: center;
  margin-bottom: 32px;
}

.section__header--left {
  text-align: left;
}

.section__header h2 {
  margin: 0;
  font-size: 1.6rem;
}

.section--panel .section__header h2 {
  margin-left: 60px;
  color: #000000;
}

/* Grids */
.section__grid {
  display: grid;
  gap: 24px;
}

.section__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
  border-color: rgba(43, 107, 255, 0.25);
}

.card h2,
.card h3 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: var(--color-text-muted);
}

.card__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: rgba(43, 107, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.card--feature h3 {
  font-size: 1.05rem;
}

.card--service {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* ✅ Fixed thumb block */
.card__thumb {
  width: 100%;
  height: 140px;              /* ensures visibility */
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card__thumb--homes {
  background-image: url("images/Houses.png");
}
.card__thumb--hotels {
  background-image: url("images/Hotels-Building.jpg");
}
.card__thumb--retrofit {
  background-image: url("images/Retro-Building.png");
}
.card__thumb--newbuilds {
  background-image: url("images/New-Building.jpg");
}

.card__body h3 {
  margin: 0 0 4px;
}
.card__body p {
  margin: 0 0 8px;
}
.card__body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Optional buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-button);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.btn--primary {
  background-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.btn--primary:hover {
  background-color: #1e40af;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.3);
}

.btn--light {
  background-color: #ffffff;
  color: var(--color-primary);
}

.btn--light:hover {
  background-color: #e5edff;
}

/* Responsive */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__image {
    justify-content: flex-start;
  }

  .section__grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card--service {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .section__grid--two,
  .section__grid--three {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding: 32px 0 48px;
  }
}
