/* ============================================
   BJÄRKA BYGG AB — Webbsida
   Industrial Editorial Design System
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --color-black: #0D0D0D;
  --color-red: #E31E24;
  --color-red-dark: #B8181D;
  --color-red-light: #FF3B41;
  --color-white: #FFFFFF;
  --color-offwhite: #F7F5F2;
  --color-warm-gray: #E8E4DF;
  --color-mid-gray: #9A9590;
  --color-text: #2A2522;
  --color-text-light: #6B6560;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --header-height: 80px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.8s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-black);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
}

p {
  font-size: 1.05rem;
  max-width: 65ch;
}

.text-large {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-dark {
  background-color: var(--color-black);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-gray {
  background-color: var(--color-offwhite);
}

.text-center {
  text-align: center;
}

.accent-line {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-red);
  margin-bottom: var(--space-md);
}

.accent-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Section Label (uppercase small text above headings) --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-red);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-dark .section-label {
  color: var(--color-red-light);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn-outline-dark:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-arrow::after {
  content: '\2192';
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--duration-normal) var(--ease-out);
}

.header--scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__nav-links {
  display: flex;
  gap: var(--space-md);
}

.header__nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--duration-fast);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width var(--duration-normal) var(--ease-out);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  width: 100%;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.header__phone svg {
  width: 18px;
  height: 18px;
  fill: var(--color-red);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-white);
  font-weight: 600;
  transition: color var(--duration-fast);
}

.mobile-nav a:hover {
  color: var(--color-red);
}

.mobile-nav__phone {
  margin-top: var(--space-lg);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-red);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-3xl);
  overflow: hidden;
}

.hero--small {
  min-height: 55vh;
  padding-bottom: var(--space-2xl);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.92) 0%,
    rgba(13, 13, 13, 0.6) 40%,
    rgba(13, 13, 13, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__content h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.hero__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  max-width: 50ch;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Decorative hero accent */
.hero__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 120px;
  background: var(--color-red);
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.service-card {
  position: relative;
  background: var(--color-white);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--color-warm-gray);
  transition: all var(--duration-normal) var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--color-red);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.service-card h3 {
  margin-bottom: var(--space-xs);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  flex: 1;
}

.service-card__link {
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--duration-fast) var(--ease-out);
}

.service-card:hover .service-card__link {
  gap: 0.8rem;
}

/* --- Project Showcase --- */
.project-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.project-showcase__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.project-showcase__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.project-showcase__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.project-showcase__img:hover img {
  transform: scale(1.05);
}

.project-showcase__img--label {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  background: var(--color-black);
  color: var(--color-white);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-showcase__text h2 {
  margin-bottom: var(--space-sm);
}

.project-showcase__text p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

/* --- CTA Band --- */
.cta-band {
  background: var(--color-red);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-band .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

.cta-band .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-red);
}

/* --- Image Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.gallery-grid__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-grid__item:hover img {
  transform: scale(1.08);
}

.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0);
  transition: background var(--duration-normal);
}

.gallery-grid__item:hover::after {
  background: rgba(13, 13, 13, 0.2);
}

/* Span variations for grid interest */
.gallery-grid__item--wide {
  grid-column: span 2;
}

.gallery-grid__item--tall {
  grid-row: span 2;
}

/* --- Service Detail Page --- */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.service-intro__text h2 {
  margin-bottom: var(--space-md);
}

.service-intro__text p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-warm-gray);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.service-features li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-red);
  flex-shrink: 0;
}

/* --- Team / About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--color-red);
  z-index: -1;
}

.about-text h2 {
  margin-bottom: var(--space-md);
}

.about-text p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.about-value {
  padding: var(--space-md);
  background: var(--color-offwhite);
}

.about-value h4 {
  color: var(--color-black);
  margin-bottom: var(--space-xs);
}

.about-value p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info__item {
  display: flex;
  gap: var(--space-sm);
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-offwhite);
  color: var(--color-red);
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.contact-info__text h4 {
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.contact-info__text a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-black);
  transition: color var(--duration-fast);
}

.contact-info__text a:hover {
  color: var(--color-red);
}

.contact-info__text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.contact-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.contact-social a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  color: var(--color-white);
  transition: all var(--duration-fast);
}

.contact-social a:hover {
  background: var(--color-red);
}

.contact-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-warm-gray);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--duration-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-red);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-message {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-message--success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 3px solid #2e7d32;
}

.form-message--error {
  background: #fce4ec;
  color: #c62828;
  border-left: 3px solid #c62828;
}

/* --- Map --- */
.map-container {
  width: 100%;
  height: 350px;
  margin-top: var(--space-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) contrast(1.1);
  transition: filter var(--duration-normal);
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(1);
}

/* --- Footer --- */
.footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand p {
  margin-top: var(--space-sm);
  font-size: 0.95rem;
  max-width: 35ch;
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer__links a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.95rem;
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--color-red);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--duration-fast);
}

.footer__social a:hover {
  border-color: var(--color-red);
  background: var(--color-red);
  color: var(--color-white);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- 404 Page --- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
}

.error-page h1 {
  color: var(--color-red);
  font-size: 8rem;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.error-page p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-lg);
  margin-left: auto;
  margin-right: auto;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .service-intro {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-image {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }

  .header__nav-links,
  .header__phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    min-height: 85vh;
    padding-bottom: var(--space-2xl);
  }

  .hero--small {
    min-height: 45vh;
  }

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

  .project-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .gallery-grid__item--wide {
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-image::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

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

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

/* ============================================
   V1-tillägg (Bjärka Bygg) — typografisk logga + 3-kolumns tjänstegrid
   ============================================ */

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  width: 12px;
  height: 26px;
  background: var(--color-red);
  display: inline-block;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
}

.logo-text strong {
  color: var(--color-red-light);
  font-weight: 800;
}

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

@media (max-width: 1024px) {
  .services-grid--three { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-grid--three { grid-template-columns: 1fr; }
}
