/* ============================================
   YOLO247 HOMES — Editorial Luxury Stylesheet
   Aesthetic: Modern Asian minimalism × architectural digest
   ============================================ */

:root {
  --bg: #f4f1ea;
  --bg-alt: #ebe6dc;
  --ink: #1a1814;
  --ink-soft: #4a4640;
  --accent: #b8501f;
  --accent-deep: #8a3a14;
  --rule: #1a1814;
  --paper: #fdfbf6;
  --shadow: 0 30px 60px -20px rgba(26,24,20,0.25);

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --serif-italic: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============= NAVIGATION ============= */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  background: rgba(244, 241, 234, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,24,20,0.08);
  transition: padding 0.3s ease;
}

.nav-wrapper.scrolled { padding: 0.85rem 2.5rem; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-size: 0.7rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.logo-text em {
  font-style: italic;
  font-family: var(--serif-italic);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.cta-pill {
  padding: 0.7rem 1.5rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cta-pill:hover { background: var(--accent); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.3s;
}

/* ============= HERO ============= */
.hero {
  min-height: 100vh;
  padding: 9rem 2.5rem 5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.hero-grid { animation: fadeUp 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both; }

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-meta .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 2rem;
}

.hero-title .line {
  display: block;
  animation: lineUp 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-title .line:nth-child(2) { animation-delay: 0.15s; }
.hero-title .line:nth-child(3) { animation-delay: 0.3s; }

.hero-title .italic {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  padding-left: 2rem;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
  animation: fadeUp 1s 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp 1s 0.7s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1.5px solid var(--ink);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(184,80,31,0.4);
}

.btn-primary.light { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn-primary.light:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1.5px solid var(--ink);
}

.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-ghost.large { padding: 1.1rem 2rem; }

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26,24,20,0.15);
  animation: fadeUp 1s 0.9s both;
}

.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero-stats span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeIn 1.5s 0.3s both;
}

.hero-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-img {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(26,24,20,0) 50%, rgba(26,24,20,0.4) 100%),
    url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1200&q=80&auto=format&fit=crop') center/cover no-repeat;
  position: relative;
  transition: transform 6s ease-out;
}

.hero-img-frame:hover .hero-img { transform: scale(1.04); }

.frame-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  justify-content: space-between;
  color: var(--paper);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}

.ticker {
  margin-top: 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(26,24,20,0.15);
  border-bottom: 1px solid rgba(26,24,20,0.15);
  padding: 1rem 0;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============= TRUST ============= */
.trust {
  padding: 4rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(26,24,20,0.1);
  border-bottom: 1px solid rgba(26,24,20,0.1);
  background: var(--bg-alt);
  position: relative;
  z-index: 2;
}

.trust-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-weight: 500;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--ink);
  opacity: 0.7;
  font-weight: 500;
}

.trust-logos span { transition: opacity 0.3s; }
.trust-logos span:hover { opacity: 1; }

/* ============= MANIFESTO ============= */
.manifesto {
  padding: 8rem 2.5rem;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.manifesto-grid {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.section-tag.light { color: var(--bg); opacity: 0.8; }

.manifesto-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
}

.manifesto-title em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.manifesto-body {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.3rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.link-arrow:hover { gap: 1rem; color: var(--accent); border-color: var(--accent); }
.link-arrow.small { font-size: 0.85rem; }

/* ============= SERVICES ============= */
.services {
  padding: 6rem 2.5rem 8rem;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-head {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-head.left { text-align: left; margin-left: 0; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.section-lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26,24,20,0.15);
  border-left: 1px solid rgba(26,24,20,0.15);
}

.service-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(26,24,20,0.15);
  border-bottom: 1px solid rgba(26,24,20,0.15);
  transition: background 0.4s ease, transform 0.4s ease;
  position: relative;
  background: var(--bg);
}

.service-card:hover { background: var(--paper); }

.service-num {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.service-card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ============= PROJECTS ============= */
.projects-feature {
  padding: 6rem 2.5rem 8rem;
  max-width: 1600px;
  margin: 0 auto;
  background: var(--bg-alt);
  position: relative;
  z-index: 2;
}

.projects-list {
  border-top: 1px solid rgba(26,24,20,0.2);
  margin-bottom: 3rem;
}

.project-row {
  display: grid;
  grid-template-columns: 80px 1fr auto 60px;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(26,24,20,0.2);
  position: relative;
  transition: padding 0.4s ease;
  overflow: hidden;
}

.project-row:hover { padding-left: 2rem; }

.project-num {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 400;
}

.project-name h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.project-row:hover .project-name h3 { color: var(--accent); }

.project-name span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}

.project-meta {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.project-arrow {
  font-size: 1.5rem;
  font-family: var(--serif);
  transition: transform 0.4s ease;
}

.project-row:hover .project-arrow { transform: translateX(8px); }

.project-img {
  position: absolute;
  right: 200px;
  top: 50%;
  transform: translate(20px, -50%) scale(0.85);
  width: 220px;
  height: 140px;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
  box-shadow: var(--shadow);
}

.project-row:hover .project-img {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.project-img-1 { background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=600&q=80&auto=format&fit=crop') center/cover no-repeat; }
.project-img-2 { background: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=600&q=80&auto=format&fit=crop') center/cover no-repeat; }
.project-img-3 { background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=600&q=80&auto=format&fit=crop') center/cover no-repeat; }
.project-img-4 { background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=600&q=80&auto=format&fit=crop') center/cover no-repeat; }

.center { text-align: center; margin-top: 3rem; }

/* ============= PROCESS ============= */
.process {
  padding: 8rem 2.5rem;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.process-step {
  position: relative;
  padding-top: 2.5rem;
  border-top: 1px solid var(--ink);
}

.step-num {
  position: absolute;
  top: -1px;
  left: 0;
  font-family: var(--serif-italic);
  font-style: italic;
  background: var(--bg);
  padding: 0 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 400;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.process-step p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============= TESTIMONIAL ============= */
.testimonial {
  padding: 8rem 2.5rem;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  z-index: 2;
}

.testimonial blockquote {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial blockquote::before {
  content: '"';
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 8rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.5;
}

.testimonial p {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.testimonial footer span {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.6);
}

/* ============= REGIONS ============= */
.regions {
  padding: 8rem 2.5rem;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.regions-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.regions-list li {
  padding: 0.5rem 1.5rem;
  position: relative;
  cursor: default;
  transition: color 0.3s ease, transform 0.3s ease;
}

.regions-list li:not(:last-child)::after {
  content: '✦';
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: var(--accent);
  font-style: italic;
}

.regions-list li:hover {
  color: var(--accent);
  font-style: italic;
  font-family: var(--serif-italic);
  font-weight: 300;
}

/* ============= CTA FINAL ============= */
.cta-final {
  padding: 8rem 2.5rem;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184,80,31,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 1.5rem 0 1.5rem;
}

.cta-inner h2 em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.cta-inner p {
  font-size: 1.1rem;
  color: rgba(244,241,234,0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============= FOOTER ============= */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 5rem 2.5rem 2rem;
  border-top: 1px solid rgba(244,241,234,0.1);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem;
  max-width: 1600px;
  margin: 0 auto 4rem;
}

.footer-brand .logo-text.big {
  font-family: var(--serif);
  font-size: 2.2rem;
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.footer-brand p {
  color: rgba(244,241,234,0.65);
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.footer ul li, .footer address {
  font-size: 0.92rem;
  color: rgba(244,241,234,0.65);
  margin-bottom: 0.6rem;
  font-style: normal;
  line-height: 1.7;
}

.footer ul a, .footer address a { transition: color 0.2s; }
.footer ul a:hover, .footer address a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(244,241,234,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(244,241,234,0.5);
  letter-spacing: 0.05em;
}

/* ============= ANIMATIONS ============= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lineUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============= REVEAL ON SCROLL ============= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding-top: 7rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .project-row { grid-template-columns: 60px 1fr 60px; }
  .project-meta { display: none; }
  .project-img { display: none; }
}

@media (max-width: 768px) {
  .nav-wrapper { padding: 1rem 1.25rem; }
  .nav-links, .cta-pill { display: none; }
  .menu-toggle { display: flex; }

  .hero, .manifesto, .services, .projects-feature,
  .process, .testimonial, .regions, .cta-final {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero { padding-top: 6rem; padding-bottom: 4rem; }
  .hero-title .italic { padding-left: 0.8rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stats strong { font-size: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .trust-logos { gap: 1.5rem; font-size: 0.95rem; }

  .project-name h3 { font-size: 1.3rem; }
  .project-row { padding: 1.5rem 0; gap: 1rem; }

  .regions-list { font-size: 1.5rem; }
  .regions-list li { padding: 0.3rem 0.8rem; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(26,24,20,0.1);
  }
}
