/* ============================================================
   DC Building Services — styles.css
   ============================================================ */

/* ── Custom properties ──────────────────────────────────── */
:root {
  --dark:       #120e1f;
  --accent:     #25468d;
  --neutral:    #f7f7f7;
  --card-bg:    #f0f2f8;
  --dark-card:  #2b354d;
  --white:      #ffffff;

  --font-heading: 'Rubik', sans-serif;
  --font-body:    'Public Sans', sans-serif;

  /* 1440px outer — 2×118px padding = 1204px content */
  --max-w:   1440px;
  --pad-x:   118px;

  --transition: 200ms ease;

  --site-max-w:      1204px;
  --site-max-w-alt:  1220px;
  --pad-x-desktop:   50px;
  --pad-x-tablet:    40px;
  --pad-x-mobile:    20px;

  --navbar-h:        82px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.1;
  color: var(--dark);
  background: var(--neutral);
  overflow-x: hidden;
}

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

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

/* ── Typography helpers ─────────────────────────────────── */
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(36px, 3.3vw, 48px);
  line-height: 1;
  color: var(--dark);
  text-transform: capitalize;
}

.section-title--light { color: var(--neutral); }

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 1.67vw, 24px);
  line-height: 1.2;
  color: #000;
}

.section-subtitle--light { color: var(--neutral); }

.text-accent { color: var(--accent); }

/* ── Layout helpers ─────────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  /* No horizontal padding here — each section's children manage their own
     so that overflow carousels (portfolio, testimonials) can bleed correctly */
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.btn:hover  { opacity: .85; transform: translateY(-1px); }
.btn:active { opacity: 1;   transform: none; }

.btn--accent { background: var(--accent); color: var(--neutral); }
.btn--dark   { background: var(--dark);   color: var(--neutral); }
.btn--white  { background: var(--neutral); color: var(--dark); }
.btn--full   { width: 100%; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 742px;
  height: 100vh;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

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

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 800ms ease;
}

.hero__bg-img.active { opacity: 1; }

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(89deg, rgba(18,14,31,.5) 1.5%, rgba(18,14,31,0) 93.4%),
    linear-gradient(90deg, rgba(3,0,8,.25) 0%, rgba(3,0,8,.25) 100%);
}

.hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.hero__text {
  max-width: 667px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  filter: drop-shadow(0 0 6px rgba(0,0,0,.25));
}

.hero__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(48px, 5.56vw, 80px);
  line-height: 1;
  color: var(--neutral);
  text-transform: capitalize;
}

.hero__subheading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 1.67vw, 24px);
  line-height: 1;
  color: var(--neutral);
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.hero__ctas {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* ── Hero scroll indicator ──────────────────────────────── */
.hero__scroll-indicator {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  min-width: min(400px, 50%);
}

.scroll-btn {
  border-radius: 999px;
  opacity: 0.3;
  background: var(--neutral);
  display: flex;
  padding: 4px;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: opacity 200ms ease;
  flex-shrink: 0;
}

.scroll-btn img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  display: block;
}

.scroll-btn:hover,
.scroll-btn:focus-visible,
.scroll-btn:active {
  opacity: 1;
  outline: none;
}

.scroll-track {
  flex: 1;
  min-width: 0;
  height: 2px;
  background: rgba(247, 247, 247, 0.3);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-track__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% / 3);
  background: var(--neutral);
  border-radius: 2px;
  transition: width 400ms ease;
}


/* Mobile-only dot pagination */
.hero__mobile-dots {
  display: none;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  gap: 4px;
  align-items: center;
  z-index: 10;
}

.hero__mobile-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #c4cce4;
  flex-shrink: 0;
  transition: width 300ms ease, background 300ms ease;
}

.hero__mobile-dot.active {
  width: 46px;
  background: #fff;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--neutral);
  padding: 100px 0 80px;
}

.services__header {
  margin-bottom: 40px;
  padding: 0 var(--pad-x);
}

.services__header-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--pad-x);
}

.service-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(37.95% 43.83% at 50.08% 52.88%, rgba(18,14,31,.20) 0%, rgba(18,14,31,0) 100%),
    linear-gradient(0deg, rgba(18,14,31,.30) 0%, rgba(18,14,31,.30) 100%);
}

/* Dark hover layer — fades in on hover (desktop) or scroll centre (mobile via animation) */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(37.95% 43.83% at 50.08% 52.88%, rgba(18,14,31,.20) 0%, rgba(18,14,31,0) 100%),
    linear-gradient(0deg, rgba(18,14,31,.80) 0%, rgba(18,14,31,.80) 100%),
    linear-gradient(0deg, rgba(18,14,31,.74) 0.53%, rgba(18,14,31,0) 52.99%);
  opacity: 0;
  transition: opacity 350ms ease;
}

.service-card:hover::after,
.service-card.in-view::after {
  opacity: 1;
}

/* Content — fills the whole card, title centered by default */
.service-card__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 28px;
  gap: 12px;
}

.service-card__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 350ms ease, transform 350ms ease;
  pointer-events: none;
}

.service-card:hover .service-card__icon,
.service-card.in-view .service-card__icon {
  opacity: 1;
  transform: none;
}

.service-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(28px, 2.78vw, 40px);
  line-height: 1;
  color: var(--neutral);
  text-align: center;
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
}

.service-card__desc {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--neutral);
  text-align: center;
  max-width: 315px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 350ms ease, transform 350ms ease;
}

.service-card:hover .service-card__desc,
.service-card.in-view .service-card__desc {
  opacity: 1;
  transform: none;
}

.services__footer {
  display: flex;
  justify-content: center;
  padding: 0 var(--pad-x);
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative;
  background: #fff;
  padding-top: 200px;
  overflow: hidden;
}

.about__split {
  display: flex;
  align-items: stretch;
  min-height: 540px;
}

.about__image-pane {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.about__image-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about__content-pane {
  flex: 0 0 50%;
  position: relative;
  padding: 80px 80px 80px 80px;
  display: flex;
  align-items: center;
  background: var(--dark);
}

/* Decorative DC shape — sits in the white zone above the split */
.about__shape {
  position: absolute;
  width: 681px;
  height: 815px;
  right: -60px;
  top: -160px;
  opacity: .18;
  pointer-events: none;
  object-fit: contain;
}

.about__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 527px;
}

.about__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(40px, 4.17vw, 60px);
  line-height: 1;
  color: var(--neutral);
  text-transform: capitalize;
}

.about__body {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--neutral);
}


/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
  background: var(--neutral);
  padding: 100px 0 80px;
  overflow: hidden;
}

.portfolio__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.portfolio__desc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 1.67vw, 24px);
  line-height: 1.4;
  color: #000;
  max-width: 712px;
}

.portfolio__gallery {
  overflow: hidden;
  width: 100%;
}

.portfolio__track {
  display: flex;
  gap: 20px;
  transition: transform 400ms ease;
  padding: 0 var(--pad-x);
}

.portfolio__slide {
  flex: 0 0 500px;
  height: 500px;
  overflow: hidden;
}

.portfolio__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.portfolio__slide:hover img { transform: scale(1.03); }

.portfolio__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 200px;
  padding: 32px var(--pad-x) 0;
  max-width: var(--max-w);
  margin: 0 auto;
}

.portfolio-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}

.portfolio-btn:hover { opacity: .6; }

.portfolio-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

/* arrow-right.png is already right-pointing — no rotation needed */


/* ============================================================
   BEFORE & AFTER TRANSFORMATIONS
   ============================================================ */
.transformations {
  background: var(--card-bg);
  padding: 100px 0;
}

.transformations__header {
  text-align: center;
  margin-bottom: 56px;
}

.transformations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.transformations__footer {
  text-align: center;
  margin-top: 56px;
}

.ba-comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ba-slider {
  position: relative;
  height: 420px;
  overflow: hidden;
  user-select: none;
  cursor: col-resize;
  border-radius: 4px;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* AFTER is bottom layer — always full width */
/* BEFORE is top layer — clips to left of handle */
.ba-before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 48px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: col-resize;
}

.ba-handle__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: white;
  box-shadow: 0 0 8px rgba(0,0,0,.4);
}

.ba-handle__circle {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  flex-shrink: 0;
}

.ba-label {
  position: absolute;
  top: 16px;
  z-index: 5;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  background: rgba(18,14,31,.55);
  padding: 4px 10px;
  border-radius: 2px;
  pointer-events: none;
}

.ba-label--before { left: 16px; }
.ba-label--after  { right: 16px; }

.ba-comparison__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ba-comparison__tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.ba-comparison__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--dark);
  padding: 100px 0 80px;
}

.process .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  padding: 0 var(--pad-x);
}

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

.process__steps {
  display: flex;
  gap: 94px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1182px;
}

.process__step {
  flex: 1 1 0;
  max-width: 335px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process__number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(56px, 5.56vw, 80px);
  line-height: 1;
  color: var(--accent);
}

.process__step-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--neutral);
  text-transform: uppercase;
}

.process__step-body {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--neutral);
}

.process__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.process__cta-note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: var(--neutral);
  text-align: center;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--neutral);
  padding: 100px 0 80px;
  /* No overflow-x hidden — track overflows to viewport edge */
}

/* Top row: heading + rating */
.testimonials__top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 54px;
  gap: 24px;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.testimonials__main-heading {
  font-size: clamp(32px, 3.33vw, 48px);
}

.testimonials__score {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.testimonials__score-num {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  white-space: nowrap;
}

.testimonials__score-num strong {
  font-size: 24px;
  font-weight: 700;
}

.testimonials__stars-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonials__star-single {
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}

.testimonials__google-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}

/* Body: sidebar + slider — allow overflow to viewport edge */
.testimonials__body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  /* No padding-right — track overflows to page edge */
}

.testimonials__sidebar {
  flex: 0 0 228px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.testimonials__quote-mark {
  width: 167px;
  height: auto;
}

.testimonials__sub {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 2.45vw, 35px);
  line-height: 1.1;
  color: var(--dark);
  text-transform: capitalize;
}

.testimonials__divider {
  height: 1px;
  background: var(--dark);
  width: 100%;
}

/* Slider — clips at right, extends to viewport edge */
.testimonials__slider-wrap {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 400ms ease;
}

.testimonial-card {
  flex: 0 0 421px;
  background: var(--card-bg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 306px;
  position: relative;
}

.testimonial-card--wide {
  flex: 0 0 526px;
}

/* Speech bubble tail */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 57px;
  height: 57px;
  background: var(--card-bg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.testimonial-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-card__body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: var(--dark);
}

.testimonial-card__author {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  color: var(--dark);
  display: block;
}

.testimonial-card__project {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--accent);
  display: block;
  margin-top: 4px;
}

.testimonial-card__quote {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: var(--dark);
  display: block;
  margin-bottom: 8px;
  opacity: .85;
}

.testimonial-card__stars {
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 2px;
  line-height: 1;
}

/* Testimonials progress bar */
.testimonials__progress {
  width: 100%;
  height: 2px;
  background: rgba(18,14,31,.15);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.testimonials__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--dark);
  border-radius: 2px;
  transition: width linear;
}

/* Testimonials arrows */
.testimonials__arrows {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-bottom: 16px;
}

.t-arrow {
  background: var(--dark);
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral);
  transition: background var(--transition), opacity var(--transition);
  flex-shrink: 0;
}

.t-arrow:hover { background: var(--accent); }


/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote {
  background: var(--card-bg);
  overflow: hidden;
  position: relative;
}

/* Decorative shape hangs off the left */
.quote__shape {
  position: absolute;
  width: 681px;
  height: 815px;
  left: -240px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .12;
  pointer-events: none;
  object-fit: contain;
}

.quote__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 105px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 62px;
  min-height: 742px;
  position: relative;
  z-index: 1;
}

/* Left: form card — 650px matching Figma */
.quote__form-side {
  flex: 0 0 650px;
}

.quote__form-card {
  background: var(--dark-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  position: relative;
}

/* Speech bubble tail */
.quote__form-card::after {
  content: '';
  position: absolute;
  bottom: -48px;
  left: 0;
  width: 68px;
  height: 68px;
  background: var(--dark-card);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.quote__form-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(32px, 3.33vw, 48px);
  line-height: 1;
  color: var(--neutral);
  text-transform: capitalize;
}

.quote__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--neutral);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-field__optional {
  font-size: 14px;
  font-weight: 400;
  opacity: .6;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.4);
  color: var(--neutral);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 10px 0;
  outline: none;
  appearance: none;
  transition: border-color var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,.35);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--neutral);
}

.form-field textarea { resize: none; }

.select-wrap { position: relative; }

.select-wrap::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(255,255,255,.6);
  pointer-events: none;
}

.select-wrap select option {
  background: var(--dark-card);
  color: var(--neutral);
}

/* Right: text — 492px matching Figma */
.quote__text-side {
  flex: 0 0 492px;
}

.quote__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.quote__text-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(36px, 4.17vw, 60px);
  line-height: 1;
  color: var(--dark);
  text-transform: capitalize;
}

.quote__text-body {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--dark);
}

.quote__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote__contact-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--dark);
}

.quote__contact-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: var(--dark);
}

.quote__contact-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.quote__contact-or {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--dark);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 80px 0 40px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer__logo {
  flex-shrink: 0;
  width: 240px;
}

.footer__logo img {
  width: 100%;
  height: 129px;
  object-fit: contain;
  object-position: left center;
}

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

.footer__contact-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__contact-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--neutral);
  text-transform: uppercase;
}

.footer__contact-value {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 1.94vw, 28px);
  line-height: 1;
  color: var(--neutral);
  transition: opacity var(--transition);
}

.footer__contact-value:hover { opacity: .7; }

.footer__address {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--neutral);
  font-style: normal;
}

.footer__social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer__social-link {
  display: flex;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--accent);
  transition: opacity var(--transition);
}

.footer__social-link:hover { opacity: .7; }

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


.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer__copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--neutral);
  letter-spacing: -0.02em;
}

.footer__nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer__nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.1;
  color: var(--neutral);
  text-transform: uppercase;
  transition: opacity var(--transition);
}

.footer__nav a:hover { opacity: .7; }

.footer__legal {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer__legal a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--neutral);
  letter-spacing: -0.02em;
  transition: opacity var(--transition);
}

.footer__legal a:hover { opacity: .7; }


/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  :root { --pad-x: 60px; }

  .process__steps { gap: 48px; }
  .about__content-pane { padding: 80px 60px; }

  .quote__form-side { flex: 0 0 520px; }
  .quote__text-side { flex: 1 1 0; min-width: 320px; }

  .transformations__grid { gap: 24px; }
  .ba-slider { height: 360px; }
}


/* ============================================================
   RESPONSIVE — 1024px (tablet)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad-x: 40px; }


  /* Hero */
  .hero { height: 80vh; align-items: center; }
  .hero__content { margin-top: 80px; align-items: center; gap: 48px; }
  .hero__scroll-indicator { display: none; }
  .hero__mobile-dots { display: flex; }
  .hero__bottom { flex-direction: column; align-items: center; gap: 32px; }
  .hero__text { text-align: center; }
  .hero__heading { text-align: center; }
  .hero__subheading { text-align: center; }
  .hero__ctas { width: 100%; flex-wrap: wrap; gap: 12px; }
  .hero__ctas .btn--accent { flex: 1 1 auto; min-width: 120px; }
  .hero__ctas .btn--dark   { flex: 2 1 auto; min-width: 120px; }

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

  /* About */
  .about { padding-top: 140px; }
  .about__split { flex-direction: column; }
  .about__image-pane { flex: 0 0 auto; height: 400px; }
  .about__content-pane { flex: 0 0 auto; padding: 80px var(--pad-x); }
  .about__shape { opacity: .1; right: -80px; }

  /* Portfolio */
  .portfolio__slide { flex: 0 0 380px; height: 380px; }
  .portfolio__nav { gap: 80px; }

  /* Process */
  .process__steps { flex-direction: column; gap: 40px; align-items: flex-start; }
  .process__step { max-width: 100%; }

  /* Testimonials */
  .testimonials__top-row { flex-direction: column; align-items: flex-start; }
  .testimonials__body { flex-direction: column; padding-right: var(--pad-x); }
  .testimonials__sidebar {
    flex: 0 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  .testimonials__quote-mark { width: 80px; }
  .testimonials__divider { display: none; }
  .testimonials__slider-wrap { width: 100%; }
  .testimonial-card { flex: 0 0 320px; min-height: auto; }
  .testimonial-card--wide { flex: 0 0 380px; }

  /* Quote */
  .quote__inner { flex-direction: column; gap: 48px; padding: 80px var(--pad-x); }
  .quote__form-side { flex: 0 0 auto; width: 100%; }
  .quote__text-side { flex: 0 0 auto; width: 100%; }
  .quote__shape { left: -300px; opacity: .08; }

  /* Footer */
  .footer__top { flex-direction: column; gap: 24px; align-items: center; }
  .footer__logo { width: 160px; text-align: center; }
  .footer__logo img { height: 80px; }
  .footer__contact { flex-direction: column; align-items: center; text-align: center; }
  .footer__contact-col { align-items: center; }
  .footer__address { text-align: center; }
  .footer__bottom { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .footer__nav { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .footer__legal { justify-content: center; }

  .transformations__grid { grid-template-columns: 1fr; }
  .ba-slider { height: 300px; }
  .services-cta-strip__inner { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   RESPONSIVE — 767px (mobile)
   ============================================================ */
@media (max-width: 767px) {
  :root { --pad-x: 16px; }

  /* Hero */
  .hero { min-height: 600px; }
  .hero__heading { font-size: 40px; }
  .hero__subheading { font-size: 16px; }
  .hero__ctas .btn--accent,
  .hero__ctas .btn--dark { flex: 1 1 100%; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .service-card { height: 300px; }

  /* About */
  .about { padding-top: 100px; }
  .about__image-pane { height: 280px; }

  /* Portfolio */
  .portfolio__slide { flex: 0 0 280px; height: 280px; }

  /* Testimonials */
  .testimonials__body { padding-right: var(--pad-x); }
  .testimonial-card { flex: 0 0 calc(100vw - 48px); }
  .testimonial-card--wide { flex: 0 0 calc(100vw - 48px); }

  /* Quote */
  .quote__inner { padding: 60px var(--pad-x); }
  .quote__form-card { padding: 24px; }
  .quote__form-title { font-size: 28px; }

  /* Footer */
  .footer__contact-value { font-size: 18px; }
  .footer__bottom { gap: 16px; }
  .footer__copy { text-align: center; }
}


/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.inner-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.inner-hero__bg {
  position: absolute;
  inset: 0;
}

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

.inner-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(89deg, rgba(18,14,31,.65) 0%, rgba(18,14,31,.1) 80%),
    rgba(3,0,8,.25);
}

.inner-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inner-hero__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(247,247,247,.7);
}

.inner-hero__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(40px, 4.86vw, 70px);
  line-height: 1;
  color: var(--neutral);
  text-transform: capitalize;
  max-width: 700px;
}

.inner-hero__subheading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.3;
  color: rgba(247,247,247,.85);
  max-width: 560px;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro {
  background: var(--neutral);
  padding: 100px 0 80px;
}

.intro__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.intro__body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 1.53vw, 22px);
  line-height: 1.5;
  color: var(--dark);
  max-width: 900px;
}

.intro__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.intro__feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 2px solid var(--accent);
}

.intro__feature-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.intro__feature-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--dark);
}

/* ============================================================
   PROJECT EXAMPLES
   ============================================================ */
.project-examples {
  background: var(--neutral);
  padding: 80px 0;
}

.project-examples__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-examples__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.project-examples__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 2.78vw, 40px);
  line-height: 1;
  color: var(--dark);
}

.project-examples__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  text-decoration: underline;
  white-space: nowrap;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.project-examples__link:hover { opacity: .7; }

.project-examples__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition);
}

.project-card:hover { transform: translateY(-4px); }

.project-card__image {
  height: 280px;
  overflow: hidden;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.project-card:hover .project-card__image img { transform: scale(1.04); }

.project-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.project-card__tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.project-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 1.67vw, 24px);
  line-height: 1;
  color: var(--dark);
}

.project-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(18,14,31,.7);
  flex: 1;
}

.project-card__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  text-decoration: underline;
  transition: opacity var(--transition);
  align-self: flex-start;
}

.project-card__link:hover { opacity: .7; }

/* ============================================================
   INCLUDED
   ============================================================ */
.included {
  background: var(--card-bg);
  padding: 100px 0 80px;
}

.included__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.included__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.included__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 2.78vw, 40px);
  line-height: 1;
  color: var(--dark);
}

.included__intro {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(18,14,31,.8);
}

.included__items {
  display: flex;
  flex-direction: column;
}

.included__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(18,14,31,.12);
}

.included__item:first-child { border-top: 1px solid rgba(18,14,31,.12); }

.included__item-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: var(--dark);
}

.included__item-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(18,14,31,.7);
}

/* ============================================================
   QUALITY
   ============================================================ */
.quality {
  background: var(--dark);
  padding: 100px 0 80px;
}

.quality__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.quality__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.quality__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 2.78vw, 40px);
  line-height: 1;
  color: var(--neutral);
}

.quality__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(247,247,247,.75);
}

.quality__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.quality__point-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--neutral);
  margin-bottom: 8px;
}

.quality__point-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(247,247,247,.6);
}

.quality__image {
  height: 560px;
  overflow: hidden;
}

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

/* ============================================================
   CROSS-SELL
   ============================================================ */
.crosssell {
  background: var(--neutral);
  padding: 80px 0;
}

.crosssell__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.crosssell__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crosssell__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 2.22vw, 32px);
  line-height: 1;
  color: var(--dark);
}

.crosssell__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(18,14,31,.7);
  max-width: 560px;
}

.crosssell__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.crosssell__grid .service-card { height: 320px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--neutral);
  padding: 80px 0;
}

.faq__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.faq__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 2.22vw, 32px);
  line-height: 1;
  color: var(--dark);
}

.faq__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: rgba(18,14,31,.6);
  max-width: 360px;
}

.faq__ask {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
  text-decoration: underline;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.faq__ask:hover { opacity: .7; }

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid rgba(18,14,31,.12);
}

.faq__item:first-child { border-top: 1px solid rgba(18,14,31,.12); }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.faq__question-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: var(--dark);
}

.faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms ease;
}

.faq__item--open .faq__chevron { transform: rotate(180deg); }

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

.faq__item--open .faq__answer { max-height: 300px; padding-bottom: 20px; }

.faq__answer p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(18,14,31,.75);
}

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-help {
  background: var(--card-bg);
  padding: 60px 0;
}

.services-help__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.services-help__text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 1.39vw, 20px);
  line-height: 1.4;
  color: var(--dark);
  max-width: 640px;
}

.services-cta-strip {
  background: var(--accent);
  padding: 60px 0;
}

.services-cta-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.services-cta-strip__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 2vw, 32px);
  color: var(--neutral);
  margin-bottom: 12px;
}

.services-cta-strip__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  line-height: 1.55;
}

.services-cta-strip .btn--white {
  flex-shrink: 0;
}

.process-steps-section__cta {
  margin-top: -20px;
}

.process-steps-section {
  background: var(--dark);
  padding: 100px 0 80px;
}

.process-steps-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.process-steps-section__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 2.22vw, 32px);
  line-height: 1;
  color: var(--neutral);
  text-align: center;
}

.process-steps-section__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: rgba(247,247,247,.7);
  text-align: center;
  margin-top: -40px;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
}

.process-step-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: rgba(255,255,255,.05);
}

.process-step-card__number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.process-step-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: var(--neutral);
  text-transform: uppercase;
}

.process-step-card__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(247,247,247,.65);
}

.recent-projects {
  background: var(--neutral);
  padding: 80px 0;
}

.recent-projects__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recent-projects__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.recent-projects__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 2.78vw, 40px);
  line-height: 1;
  color: var(--dark);
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.filter-tabs {
  background: var(--neutral);
  padding: 40px 0 0;
}

.filter-tabs__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-tab {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background: var(--card-bg);
  color: var(--dark);
  transition: background var(--transition), color var(--transition);
}

.filter-tab--active,
.filter-tab:hover {
  background: var(--accent);
  color: var(--neutral);
}

.portfolio-grid-section {
  background: var(--neutral);
  padding: 40px 0 80px;
}

.portfolio-grid-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-grid__card {
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition);
}

.portfolio-grid__card:hover { transform: translateY(-4px); }

.portfolio-grid__card[hidden] { display: none; }

.portfolio-grid__img {
  height: 240px;
  overflow: hidden;
}

.portfolio-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.portfolio-grid__card:hover .portfolio-grid__img img { transform: scale(1.04); }

.portfolio-grid__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.portfolio-grid__tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.portfolio-grid__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--dark);
}

.portfolio-grid__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(18,14,31,.65);
  flex: 1;
}

.portfolio-grid__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  text-decoration: underline;
  transition: opacity var(--transition);
  align-self: flex-start;
  margin-top: 4px;
}

.portfolio-grid__link:hover { opacity: .7; }

.featured-project {
  background: var(--dark);
  padding: 100px 0;
}

.featured-project__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.featured-project__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.featured-project__tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

.featured-project__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.33vw, 48px);
  line-height: 1;
  color: var(--neutral);
}

.featured-project__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(247,247,247,.7);
}

.featured-project__meta {
  display: flex;
  gap: 40px;
}

.featured-project__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.featured-project__meta-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(247,247,247,.45);
}

.featured-project__meta-value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--neutral);
}

.featured-project__image {
  height: 480px;
  overflow: hidden;
}

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

.reassurance {
  background: var(--card-bg);
  padding: 80px 0;
}

.reassurance__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reassurance__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 2.78vw, 40px);
  line-height: 1;
  color: var(--dark);
}

.reassurance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.reassurance__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: var(--neutral);
}

.reassurance__card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: var(--dark);
}

.reassurance__card-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(18,14,31,.7);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  background: var(--neutral);
  padding: 100px 0 80px;
}

.about-story__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-story__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.about-story__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 2.78vw, 40px);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 24px;
}

.about-story__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(18,14,31,.8);
  margin-bottom: 40px;
}

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

.about-story__feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 2px solid var(--accent);
}

.about-story__feature-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-story__feature-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(18,14,31,.7);
}

.about-story__image {
  height: 560px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

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

.stats {
  background: var(--dark);
  padding: 80px 0;
}

.stats__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 2px solid rgba(247,247,247,.2);
}

.stat__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(40px, 4.17vw, 60px);
  line-height: 1;
  color: var(--neutral);
}

.stat__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: rgba(247,247,247,.6);
}

.team {
  background: var(--neutral);
  padding: 100px 0 80px;
}

.team__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.team__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.team__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 2.78vw, 40px);
  line-height: 1;
  color: var(--dark);
}

.team__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(18,14,31,.7);
}

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

.team-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-card__photo {
  height: 280px;
  overflow: hidden;
  background: var(--card-bg);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--dark);
}

.team-card__role {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: -8px;
}

.team-card__bio {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(18,14,31,.7);
}

.where-we-work {
  background: var(--card-bg);
  padding: 80px 0;
}

.where-we-work__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.where-we-work__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.where-we-work__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 2.22vw, 32px);
  line-height: 1;
  color: var(--dark);
}

.where-we-work__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(18,14,31,.75);
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  background: var(--dark);
  color: var(--neutral);
}

.where-we-work__map {
  height: 360px;
  background: var(--dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,247,247,.3);
  font-family: var(--font-body);
  font-size: 14px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--dark);
  padding: 80px 0;
}

.cta-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.cta-band__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.33vw, 48px);
  line-height: 1;
  color: var(--neutral);
}

.cta-band__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.4;
  color: rgba(247,247,247,.7);
  max-width: 560px;
}

.cta-band__call {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: rgba(247,247,247,.6);
}

.cta-band__call a {
  color: var(--neutral);
  text-decoration: underline;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: var(--dark);
  padding: 120px 0 80px;
}

.contact-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-card {
  background: var(--dark-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1;
  color: var(--neutral);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 40px;
}

.contact-details__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 2.22vw, 32px);
  line-height: 1;
  color: var(--neutral);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-detail__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(247,247,247,.45);
}

.contact-detail__value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.2;
  color: var(--neutral);
}

.contact-detail__value a {
  color: inherit;
  transition: opacity var(--transition);
}

.contact-detail__value a:hover { opacity: .7; }

.what-to-include {
  background: var(--card-bg);
  padding: 80px 0;
}

.what-to-include__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.what-to-include__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.what-to-include__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 2.78vw, 40px);
  line-height: 1;
  color: var(--dark);
}

.what-to-include__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(18,14,31,.7);
}

.what-to-include__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.include-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 2px solid var(--accent);
}

.include-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  color: var(--dark);
}

.include-card__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(18,14,31,.7);
}

/* ============================================================
   PROJECT PAGE
   ============================================================ */

/* Back bar */
.project-back {
  background: var(--neutral);
  border-bottom: 1px solid rgba(18,14,31,.08);
}

.project-back__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 46px;
  display: flex;
  align-items: center;
}

.project-back__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  transition: opacity var(--transition);
}

.project-back__link:hover { opacity: .7; }

/* Intro / hero */
.project-intro {
  background: var(--neutral);
  padding: 40px 0 96px;
}

.project-intro__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-intro__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.project-intro__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(40px, 4.17vw, 60px);
  line-height: 1;
  color: var(--dark);
  flex: 0 0 auto;
  max-width: 486px;
}

.project-intro__text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-intro__subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 1.67vw, 24px);
  line-height: 1.2;
  color: var(--dark);
}

.project-intro__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--dark);
}

.project-intro__image {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

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

/* Stats row */
.project-stats {
  display: flex;
  gap: 48px;
}

.project-stat {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 2px solid var(--accent);
}

.project-stat__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 1.67vw, 24px);
  line-height: 1;
  color: var(--dark);
  text-transform: uppercase;
}

.project-stat__value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--dark);
}

/* Static before / after */
.project-ba {
  background: var(--card-bg);
  padding: 80px 0;
}

.project-ba__header {
  max-width: var(--max-w);
  margin: 0 auto 40px;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-ba__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

.project-ba__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.33vw, 48px);
  line-height: 1;
  color: var(--dark);
}

.project-ba__images {
  display: flex;
  gap: 20px;
  padding: 0 80px;
}

.project-ba__image {
  flex: 1 1 0;
  height: 480px;
  position: relative;
  overflow: hidden;
}

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

.project-ba__label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 6px 12px;
  z-index: 1;
  pointer-events: none;
}

.project-ba__label--before { background: #fff; color: var(--dark); }
.project-ba__label--after  { background: var(--accent); color: var(--neutral); }

/* The Brief */
.project-brief {
  background: var(--neutral);
  padding: 96px 0 40px;
}

.project-brief__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.project-brief__heading-col {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-brief__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

.project-brief__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.33vw, 48px);
  line-height: 1;
  color: var(--dark);
}

.project-brief__body-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-brief__body-col p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark);
}

/* Photo grid */
.project-photos {
  background: var(--neutral);
  padding: 0 80px 80px;
}

.project-photos__main {
  width: 100%;
  height: 640px;
  overflow: hidden;
  margin-bottom: 24px;
}

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

.project-photos__row {
  display: flex;
  gap: 24px;
}

.project-photos__thumb {
  flex: 1 1 0;
  height: 480px;
  overflow: hidden;
}

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

/* Specifications */
.project-specs {
  background: var(--dark);
  padding: 80px 0;
}

.project-specs__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-specs__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.33vw, 48px);
  line-height: 1;
  color: var(--neutral);
}

.project-specs__grid {
  display: flex;
  gap: 48px;
}

.project-specs__col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

.project-specs__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(37,70,141,.6);
}

.project-specs__row:first-child { border-top: none; }

.project-specs__key {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--neutral);
  white-space: nowrap;
}

.project-specs__val {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(247,247,247,.7);
  text-align: right;
}

/* Client quote */
.project-quote {
  background: var(--neutral);
  padding: 96px 0;
}

.project-quote__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.project-quote__mark {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: var(--dark);
  opacity: .85;
}

.project-quote__text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(20px, 2.22vw, 32px);
  line-height: 1.1;
  color: var(--dark);
}

.project-quote__attribution {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.project-quote__author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--dark);
}

.project-quote__location {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

/* More projects */
.project-more {
  background: var(--card-bg);
  padding: 80px 0;
}

.project-more__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-more__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.project-more__title-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-more__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

.project-more__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.33vw, 48px);
  line-height: 1.08;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.project-more__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.project-card-sm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-card-sm__image {
  height: 320px;
  overflow: hidden;
}

.project-card-sm__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.project-card-sm:hover .project-card-sm__image img { transform: scale(1.03); }

.project-card-sm__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-card-sm__tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

.project-card-sm__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(22px, 2.22vw, 32px);
  line-height: 1;
  color: var(--dark);
}

.project-card-sm__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--dark);
}

.project-card-sm__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 6px;
  align-self: flex-start;
  transition: opacity var(--transition);
}

.project-card-sm__link:hover { opacity: .7; }

/* Final CTA */
.project-cta {
  background: #2a4f9c;
  padding: 80px 0;
}

.project-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.project-cta__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(40px, 5.56vw, 80px);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.025em;
  max-width: 1100px;
}

.project-cta__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255,255,255,.85);
  max-width: 720px;
  margin-top: -16px;
}

.project-cta__call {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--neutral);
}


/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1200px) {
  .intro__features { grid-template-columns: repeat(2, 1fr); }
  .quality__inner { gap: 48px; }
  .included__inner { gap: 48px; }
  .featured-project__inner { gap: 48px; }
  .about-story__inner { gap: 48px; }
  .contact-hero__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .what-to-include__grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .reassurance__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .project-intro__header { flex-direction: column; gap: 32px; }
  .project-intro__title { max-width: 100%; }
  .project-intro__image { height: 400px; }
  .project-stats { flex-wrap: wrap; }
  .project-stat { flex: 0 0 calc(50% - 24px); }
  .project-ba__images { padding: 0 var(--pad-x); flex-direction: column; }
  .project-ba__image { height: 320px; }
  .project-brief__inner { flex-direction: column; gap: 32px; }
  .project-brief__heading-col { flex: 0 0 auto; }
  .project-photos { padding: 0 var(--pad-x) 80px; }
  .project-photos__main { height: 400px; }
  .project-photos__thumb { height: 320px; }
  .project-specs__grid { flex-direction: column; gap: 0; }
  .project-quote__inner { padding: 0 var(--pad-x); }
  .project-more__grid { grid-template-columns: 1fr 1fr; }

  .inner-hero { min-height: 420px; }
  .intro__features { grid-template-columns: repeat(2, 1fr); }
  .quality__inner { grid-template-columns: 1fr; }
  .quality__image { height: 360px; }
  .included__inner { grid-template-columns: 1fr; }
  .included__left { position: static; }
  .crosssell__grid { grid-template-columns: 1fr 1fr; }
  .featured-project__inner { grid-template-columns: 1fr; }
  .featured-project__image { height: 320px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .about-story__inner { grid-template-columns: 1fr; }
  .about-story__image { position: static; height: 360px; }
  .where-we-work__inner { grid-template-columns: 1fr; }
  .contact-hero__inner { grid-template-columns: 1fr; }
  .services-help__inner { flex-direction: column; align-items: flex-start; }
  .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .reassurance__grid { grid-template-columns: repeat(2, 1fr); }
  .project-examples__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .project-stat { flex: 0 0 calc(50% - 24px); }
  .project-photos__row { flex-direction: column; }
  .project-photos__thumb { height: 260px; }
  .project-more__grid { grid-template-columns: 1fr; }
  .project-more__header { flex-direction: column; align-items: flex-start; }

  .inner-hero { min-height: 360px; }
  .inner-hero__heading { font-size: 32px; }
  .intro__features { grid-template-columns: 1fr; }
  .crosssell__grid { grid-template-columns: 1fr; }
  .crosssell__grid .service-card { height: 280px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .stats__inner { grid-template-columns: 1fr 1fr; }
  .what-to-include__grid { grid-template-columns: 1fr; }
  .process-steps-grid { grid-template-columns: 1fr; }
  .reassurance__grid { grid-template-columns: 1fr; }
  .about-story__features { grid-template-columns: 1fr; }
  .quality__points { grid-template-columns: 1fr; }
  .faq__header { flex-direction: column; align-items: flex-start; gap: 16px; }
}


/* =============================================================
   PORTFOLIO PAGE
   ============================================================= */

/* ── Hero ──────────────────────────────────────────────────── */

.port-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 100px var(--pad-x-desktop);
}

.port-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(89deg, rgba(18,14,31,.5) 7.6%, rgba(18,14,31,0) 103%),
              linear-gradient(90deg, rgba(18,14,31,.4) 0%, rgba(18,14,31,.4) 100%);
  pointer-events: none;
}

.port-hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--site-max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.port-hero__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.port-hero__phone-wrap {
  display: flex;
  align-items: center;
}

.port-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6.1vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.port-hero__subheading {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,.85);
  max-width: 700px;
  margin: 0;
}

.port-hero__ctas {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.port-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  padding: 20px 40px;
  text-decoration: none;
  line-height: 1;
}

.port-hero__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--neutral);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.port-hero__phone-icon {
  width: 21px;
  height: 21px;
}

/* ── Filter & Grid header ──────────────────────────────────── */

.port-filter-grid {
  background: var(--neutral);
  padding: 60px var(--pad-x-desktop) 80px;
}

.port-filter-grid__inner {
  max-width: var(--site-max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.port-filter-grid__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.port-filter-grid__eyebrow {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0;
}

.port-filter-grid__heading {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
  margin: 0;
}

/* ── Filter pills ──────────────────────────────────────────── */

.port-filter-grid__pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.port-filter-grid__pills::-webkit-scrollbar {
  display: none;
}

.port-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 99px;
  border: 0.5px solid var(--secondary-2, #c4cce4);
  background: var(--secondary-colour-1, #f0f2f8);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.port-filter-pill--active {
  background: var(--dark);
  color: var(--neutral);
  border-color: var(--dark);
}

.port-filter-pill__count {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent);
}

.port-filter-pill--active .port-filter-pill__count {
  color: var(--secondary-2, #c4cce4);
}

/* ── Portfolio Grid ────────────────────────────────────────── */

/* ── Portfolio Grid: upper / lower structure ─────────────── */

.port-grid-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: opacity 200ms ease;
}

.port-grid-wrap--loading {
  opacity: 0.4;
  pointer-events: none;
}

.port-grid-upper {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.port-grid-upper__left {
  flex: 0 0 calc(50% - 12px);
  display: flex;
}

.port-grid-upper__left .dcbs-card {
  flex: 1;
}

.port-grid-upper__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.port-grid-lower {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.port-load-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.port-load-more {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--accent);
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 4px;
  padding: 14px 40px;
  cursor: pointer;
  transition: background 250ms ease, color 250ms ease;
}

.port-load-more:hover {
  background: var(--accent);
  color: #fff;
}

.port-load-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Portfolio title overrides */
.port-grid-upper__left .dcbs-card__title { font-size: 32px; }

/* ── Shared Project Card ───────────────────────────────────── */

.dcbs-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
}

.dcbs-card--large {
  /* image height set below; flex sizing handled by container */
}

.dcbs-card--large .dcbs-card__img {
  height: 461px;
}

.dcbs-card__img {
  position: relative;
  overflow: hidden;
  height: 320px;
  flex-shrink: 0;
}

.dcbs-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 350ms ease;
}

.dcbs-card:hover .dcbs-card__img img {
  transform: scale(1.03);
}

.dcbs-card__eyebrow {
  position: absolute;
  top: 16px;
  left: 10px;
  background: rgba(18,14,31,.8);
  border-radius: 99px;
  padding: 6px 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--neutral);
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
}

.dcbs-card__body {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.dcbs-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  color: var(--dark);
  margin: 0;
}

.dcbs-card__excerpt {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(18,14,31,.7);
  flex: 1;
  margin: 0;
}

.dcbs-card__link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color 250ms ease;
}

.dcbs-card__link-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--accent);
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  transition: max-width 350ms ease, opacity 300ms ease;
}

.dcbs-card__link-arrow svg {
  width: 12px;
  height: 12px;
  display: block;
}

.dcbs-card__link-arrow svg path { fill: var(--accent); }

.dcbs-card:hover .dcbs-card__link-text {
  max-width: 200px;
  opacity: 1;
}

.dcbs-card:hover .dcbs-card__link {
  border-bottom-color: var(--accent);
}

/* Horizontal variant: image left, text right */
.dcbs-card--horizontal {
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}

.dcbs-card--horizontal .dcbs-card__img {
  width: 235px;
  height: 176px;
  flex-shrink: 0;
}

.dcbs-card--horizontal .dcbs-card__body {
  padding: 0;
  flex: 1;
  min-width: 0;
  justify-content: space-between;
  align-self: stretch;
}

/* ── Featured Project ──────────────────────────────────────── */

.port-featured {
  background: var(--secondary-colour-1, #f0f2f8);
  padding: 80px var(--pad-x-desktop);
}

.port-featured__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: var(--site-max-w);
  margin: 0 auto;
}

.port-featured__image {
  flex: 1 1 0;
  min-width: 0;
  height: 540px;
  overflow: hidden;
}

.port-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.port-featured__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.port-featured__eyebrow {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0;
}

.port-featured__heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
  text-transform: capitalize;
  margin: 0;
}

.port-featured__titles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.port-featured__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
  margin: 0;
}

.port-featured__meta {
  display: flex;
  gap: 48px;
}

.port-featured__meta-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--accent);
}

.port-featured__meta-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

.port-featured__meta-value {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}

.port-featured__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--neutral);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  padding: 20px 40px;
  text-decoration: none;
  line-height: 1;
  align-self: flex-start;
}

/* ── Process ───────────────────────────────────────────────── */

.port-process {
  background: var(--dark);
  padding: 80px var(--pad-x-desktop);
  position: relative;
  overflow: hidden;
}

.port-process__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: var(--site-max-w);
  margin: 0 auto;
}

.port-process__header {
  display: flex;
  gap: 96px;
  align-items: center;
}

.port-process__heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  flex: 1 1 0;
}

.port-process__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--neutral);
  margin: 0;
  flex: 0 0 453px;
}

.port-process__steps {
  display: flex;
  gap: 48px;
}

.port-process__step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid #5589ee;
}

.port-process__step-icon {
  height: 44px;
  display: flex;
  align-items: center;
}

.port-process__step-icon img {
  height: 44px;
  width: auto;
}

.port-process__step-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin: 0;
}

.port-process__step-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--secondary-colour-1, #f0f2f8);
  margin: 0;
}

/* ── CTA ───────────────────────────────────────────────────── */

.port-cta {
  background: linear-gradient(-90deg, var(--accent) 0%, #223f7f 20%, #22307a 25%, var(--dark) 100%);
  padding: 80px var(--pad-x-desktop);
}

.port-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: var(--site-max-w);
  margin: 0 auto;
}

.port-cta__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 797px;
}

.port-cta__eyebrow {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-2, #c4cce4);
  text-transform: uppercase;
  margin: 0;
}

.port-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-transform: capitalize;
  margin: 0;
}

.port-cta__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-2, #c4cce4);
  margin: 0;
}

.port-cta__card {
  background: var(--dark);
  padding: 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
  width: 371px;
}

.port-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--neutral);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  padding: 20px 48px;
  text-decoration: none;
  line-height: 1;
  width: 100%;
}

.port-cta__btn img {
  width: 24px;
  height: 24px;
}

.port-cta__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--neutral);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.port-cta__phone img,
.port-cta__phone svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .port-hero {
    padding: 80px var(--pad-x-tablet);
    min-height: 460px;
  }

  .port-filter-grid {
    padding: 48px var(--pad-x-tablet) 64px;
  }

  .port-filter-grid__heading { font-size: 36px; }

  /* Tablet grid: card 1 full-width, right cards stack below */
  .port-grid-upper {
    flex-direction: column;
  }
  .port-grid-upper__left {
    flex: none;
    width: 100%;
  }
  .port-grid-upper__left .dcbs-card--large .dcbs-card__img { height: 360px; }
  .port-grid-upper__left .dcbs-card__title { font-size: 28px; }
  .port-grid-upper__right { gap: 16px; }
  .port-grid-upper__right .dcbs-card--horizontal .dcbs-card__img {
    width: 200px;
    height: 150px;
  }
  .port-grid-lower { grid-template-columns: repeat(2, 1fr); }

  .port-featured { padding: 64px var(--pad-x-tablet); }
  .port-featured__inner { flex-direction: column; gap: 32px; }
  .port-featured__image { width: 100%; height: 360px; flex: none; }
  .port-featured__heading { font-size: 40px; }

  .port-process { padding: 64px var(--pad-x-tablet); }
  .port-process__header { flex-direction: column; gap: 24px; }
  .port-process__body { flex: none; }
  .port-process__steps { flex-wrap: wrap; gap: 32px; }
  .port-process__step { flex: 1 1 calc(50% - 16px); }

  .port-cta { padding: 64px var(--pad-x-tablet); }
  .port-cta__inner { flex-direction: column; align-items: flex-start; }
  .port-cta__card { width: 100%; }
}

@media (max-width: 767px) {
  .port-hero {
    padding: 32px var(--pad-x-mobile);
    min-height: 380px;
    align-items: center;
    justify-content: center;
  }

  .port-hero__inner { gap: 32px; align-items: center; text-align: center; }
  .port-hero__text { align-items: center; }
  .port-hero__subheading { font-size: 16px; font-weight: 600; }
  .port-hero__ctas { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .port-hero__btn { width: 100%; justify-content: center; }
  .port-hero__phone-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .port-hero__phone-wrap::before,
  .port-hero__phone-wrap::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(247, 247, 247, 0.4);
  }
  .port-hero__phone { justify-content: center; }

  .port-filter-grid {
    padding: 40px var(--pad-x-mobile) 48px;
  }

  .port-filter-grid__inner { gap: 28px; }
  .port-filter-grid__heading { font-size: 28px; }

  /* Mobile grid: card 1 smaller image, all others horizontal */
  .port-grid-upper__left .dcbs-card--large .dcbs-card__img { height: 265px; }
  .port-grid-upper__left .dcbs-card__title { font-size: 24px; }

  .port-grid-upper__right .dcbs-card--horizontal .dcbs-card__img {
    width: 150px;
    height: 130px;
  }

  /* Lower cards go single-column horizontal on mobile */
  .port-grid-lower {
    grid-template-columns: 1fr;
  }
  .port-grid-lower .dcbs-card {
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
  }
  .port-grid-lower .dcbs-card .dcbs-card__img {
    width: 150px;
    height: 130px;
    flex-shrink: 0;
  }
  .port-grid-lower .dcbs-card .dcbs-card__body {
    padding: 0;
    flex: 1;
    min-width: 0;
  }

  .port-featured { padding: 48px var(--pad-x-mobile); }
  .port-featured__image { height: 260px; }
  .port-featured__meta { flex-direction: column; gap: 16px; }
  .port-featured__heading { font-size: 32px; }
  .port-featured__cta { width: 100%; text-align: center; justify-content: center; }

  .port-process { padding: 48px var(--pad-x-mobile); }
  .port-process__step { flex: 1 1 100%; }

  .port-cta { padding: 48px var(--pad-x-mobile); }
  .port-cta__heading { font-size: 32px; }
  .port-cta__card { padding: 20px; }
}