/* ============================================================
   ПРОБУДОВА — Homepage Styles
   Theme: Editorial / Refined Industrial — Light
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

/* ─ Custom Properties ─ */
:root {
  /* Palette — derived from photo palettes */
  --bg:          #F6F4EF;   /* warm white */
  --bg-alt:      #EDEBE4;   /* slightly darker warm white */
  --bg-dark:     #3B3D2A;   /* dark olive — from hero image */
  --text:        #1C1A17;   /* near-black warm */
  --text-mid:    #4A4640;   /* paragraph body */
  --muted:       #7B8167;   /* muted olive */
  --border:      #D4CFC6;   /* warm light rule */
  --border-dark: rgba(255, 255, 255, 0.14);
  --white:       #FDFCFA;

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Layout */
  --max-w:       1160px;
  --pad-x:       32px;
  --section-gap: 100px;
}

/* ============================================================
   THEME SYSTEM — menu switches color + font schemes
   ============================================================ */
:root[data-theme="classic"],
:root:not([data-theme]) {
  --bg:          #F6F4EF;
  --bg-alt:      #EDEBE4;
  --bg-dark:     #3B3D2A;
  --text:        #1C1A17;
  --text-mid:    #4A4640;
  --muted:       #7B8167;
  --border:      #D4CFC6;
  --border-dark: rgba(255, 255, 255, 0.14);
  --white:       #FDFCFA;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

:root[data-theme="graphite"] {
  --bg:          #F3F1EC;
  --bg-alt:      #E5E0D7;
  --bg-dark:     #17181B;
  --text:        #151515;
  --text-mid:    #3E3B36;
  --muted:       #6E6258;
  --border:      #C8C1B7;
  --border-dark: rgba(255,255,255,0.16);
  --white:       #FAF8F3;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
}

:root[data-theme="blueprint"] {
  --bg:          #F2F6F8;
  --bg-alt:      #E1EBF0;
  --bg-dark:     #243B4A;
  --text:        #182630;
  --text-mid:    #435965;
  --muted:       #527184;
  --border:      #B8CBD3;
  --border-dark: rgba(255,255,255,0.18);
  --white:       #FFFFFF;
  --font-display: 'Source Serif 4', Georgia, serif;
  --font-body:    'Manrope', 'Helvetica Neue', Arial, sans-serif;
}

:root[data-theme="premium"] {
  --bg:          #F8F1E4;
  --bg-alt:      #ECDDC6;
  --bg-dark:     #2C241D;
  --text:        #211913;
  --text-mid:    #574839;
  --muted:       #A57545;
  --border:      #D9C5A8;
  --border-dark: rgba(255,255,255,0.18);
  --white:       #FFFDF7;
  --font-display: 'Oswald', Impact, sans-serif;
  --font-body:    'Manrope', 'Helvetica Neue', Arial, sans-serif;
}

/* ─ Reset ─ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
button {
  font: inherit;
}
body, .site-header, .hero-overlay, .service-item, .contact-card {
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* ─ Container ─ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================================
   HEADER
============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(246, 244, 239, 0.95);
  border-bottom-color: var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--white);
  transition: color 0.3s;
}
.site-header.scrolled .logo {
  color: var(--text);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}
.main-nav a:hover {
  color: var(--white);
}
.site-header.scrolled .main-nav a {
  color: var(--muted);
}
.site-header.scrolled .main-nav a:hover {
  color: var(--text);
}
.nav-cta {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.theme-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(0,0,0,0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.theme-switcher__label {
  color: rgba(255,255,255,0.72);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 4px 0 8px;
}
.theme-btn {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px 6px;
  cursor: pointer;
  color: rgba(255,255,255,0.76);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.theme-btn:hover,
.theme-btn.is-active {
  color: var(--bg-dark);
  background: var(--white);
}
.site-header.scrolled .theme-switcher {
  border-color: var(--border);
  background: rgba(255,255,255,0.62);
}
.site-header.scrolled .theme-switcher__label {
  color: var(--muted);
}
.site-header.scrolled .theme-btn {
  color: var(--muted);
}
.site-header.scrolled .theme-btn:hover,
.site-header.scrolled .theme-btn.is-active {
  color: var(--white);
  background: var(--bg-dark);
}

/* ============================================================
   HERO
============================================================ */

.hero {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-image-wrap {
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.65);
  transform: scale(1.02);
  transition: transform 8s ease-out;
}
body.loaded .hero-img {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 26, 23, 0.0) 40%,
    rgba(28, 26, 23, 0.55) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-w);
  padding: 0 var(--pad-x);
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  max-width: 520px;
  line-height: 1.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  right: var(--pad-x);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.35);
  animation: nudge 2.4s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
   SECTION — Common
============================================================ */

.section {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 56px;
}

.section-number {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.section-number--light {
  color: rgba(255, 255, 255, 0.35);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.section-heading--light {
  color: var(--white);
}

/* ============================================================
   INTRO
============================================================ */

.intro-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 72px;
  align-items: start;
}

.intro-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.intro-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 28px;
}

.intro-body {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 680px;
}
.intro-body + .intro-body {
  margin-top: 16px;
}

/* ============================================================
   SERVICES
============================================================ */

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}
/* Odd items: right column separator + padding */
.service-item:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid var(--border);
}
/* Even items: left padding */
.service-item:nth-child(even) {
  padding-left: 48px;
}

.service-num {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
  width: 22px;
  flex-shrink: 0;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  flex: 1;
  transition: letter-spacing 0.25s ease;
}
.service-arrow {
  font-size: 0.875rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}
.service-item:hover .service-arrow {
  transform: translateX(8px);
  color: var(--text);
}
.service-item:hover .service-name {
  letter-spacing: 0.01em;
}

/* Photo strip */
.services-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 64px;
  overflow: hidden;
  height: 440px;
}
.strip-photo {
  overflow: hidden;
  margin: 0;
}
.strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}
.strip-photo:hover img {
  transform: scale(1.03);
}

/* ============================================================
   PROCESS
============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.process-photo-col {
  position: sticky;
  top: 100px;
}
.process-photo {
  margin: 0;
  overflow: hidden;
}
.process-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.process-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:first-child {
  border-top: 1px solid var(--border);
}

.step-num {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
  flex-shrink: 0;
  width: 26px;
  padding-top: 4px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ============================================================
   TURNKEY
============================================================ */

.turnkey {
  background: var(--bg-dark);
  border-top-color: transparent;
}

.turnkey-lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 740px;
  margin-bottom: 60px;
}

.turnkey-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-dark);
}

.turnkey-stage {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--border-dark);
}
.turnkey-stage:last-child {
  border-right: none;
  padding-right: 0;
}
.turnkey-stage:not(:first-child) {
  padding-left: 32px;
}

.stage-num {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 14px;
  font-weight: 300;
}

.stage-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.stage-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   AREA
============================================================ */

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.area-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.area-note {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

.area-list {
  border-top: 1px solid var(--border);
}
.area-item {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.area-city {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ============================================================
   PHOTO BREAK
============================================================ */

.photo-break {
  padding-top: 0;
}

.photo-break-figure {
  margin: 0;
  overflow: hidden;
}

.photo-break-figure img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   TRUST
============================================================ */

.trust {
  background: var(--bg-alt);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}

.trust-item {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--border);
}
.trust-item:last-child {
  border-right: none;
  padding-right: 0;
}
.trust-item:not(:first-child) {
  padding-left: 32px;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.trust-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ============================================================
   FAQ
============================================================ */

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  color: var(--text);
}
.faq-question:hover {
  color: var(--muted);
}

.faq-icon {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer[hidden] {
  display: block; /* override browser hidden so transition works */
  visibility: hidden;
}
.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-mid);
  padding-bottom: 28px;
  max-width: 640px;
}

/* ============================================================
   CONTACT
============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 44px;
  max-width: 420px;
}

.contact-details {
  display: flex;
  flex-direction: column;
}
.contact-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:first-child {
  border-top: 1px solid var(--border);
}
.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  width: 130px;
  flex-shrink: 0;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
}
a.contact-value:hover {
  border-bottom: 1px solid currentColor;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.form-field:first-child {
  border-top: 1px solid var(--border);
}

.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field textarea {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  width: 100%;
  resize: none;
  padding: 0;
  line-height: 1.6;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #B0AA9E;
}

.form-submit-row {
  padding-top: 32px;
}
.form-submit {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 1px solid var(--text);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.form-submit:hover {
  color: var(--muted);
  border-color: var(--muted);
}

/* ============================================================
   FOOTER
============================================================ */

.site-footer {
  background: var(--text);
  padding: 64px 0 48px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.025em;
}
.footer-tagline {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.38);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  padding-top: 4px;
}
.footer-nav a {
  font-size: 0.8375rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.22);
}

/* ============================================================
   SCROLL ANIMATION — subtle fade-up
============================================================ */

.section,
.service-item,
.process-step {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
/* Hero visible by default */
.hero {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE — 900px
============================================================ */

@media (max-width: 960px) {
  :root {
    --section-gap: 72px;
    --pad-x: 24px;
  }

  /* Intro */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .intro-label {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  /* Services */
  .services-list {
    grid-template-columns: 1fr;
  }
  .service-item:nth-child(odd),
  .service-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: none;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .process-photo-col {
    position: relative;
    top: auto;
  }

  /* Turnkey */
  .turnkey-stages {
    grid-template-columns: 1fr 1fr;
  }
  .turnkey-stage {
    padding-right: 0;
    border-right: none;
  }
  .turnkey-stage:nth-child(odd) {
    padding-right: 24px;
    border-right: 1px solid var(--border-dark);
  }
  .turnkey-stage:nth-child(even) {
    padding-left: 24px;
  }

  /* Area */
  .area-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    padding-right: 0;
    border-right: none;
  }
  .trust-item:nth-child(odd) {
    padding-right: 24px;
    border-right: 1px solid var(--border);
  }
  .trust-item:nth-child(even) {
    padding-left: 24px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — 600px
============================================================ */

@media (max-width: 600px) {
  :root {
    --section-gap: 56px;
    --pad-x: 20px;
  }

  .main-nav {
    display: none;
  }
  .header-inner {
    height: 68px;
    gap: 14px;
  }
  .theme-switcher {
    gap: 3px;
    padding: 4px;
  }
  .theme-switcher__label {
    display: none;
  }
  .theme-btn {
    padding: 6px 7px 5px;
    font-size: 0.55rem;
    letter-spacing: 0.04em;
  }

  .hero-heading {
    font-size: 2.1rem;
  }
  .hero-sub {
    display: none;
  }

  .services-photo-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .strip-photo {
    height: 280px;
  }
  .strip-photo img {
    height: 100%;
  }

  .turnkey-stages {
    grid-template-columns: 1fr;
  }
  .turnkey-stage,
  .turnkey-stage:nth-child(odd),
  .turnkey-stage:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }
  .turnkey-stage:last-child {
    border-bottom: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item,
  .trust-item:nth-child(odd),
  .trust-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: none;
  }

  .contact-label {
    width: 100px;
  }

  .faq-question {
    font-size: 1rem;
  }
}
