:root {
  --navy: #2a2c47;
  --navy-deep: #171a30;
  --coral: #e34c59;
  --coral-dark: #c63f4a;
  --mist: #dfe8ef;
  --mist-deep: #cfd9e2;
  --paper: #fcf8f3;
  --paper-2: #f4ede4;
  --sand: #ece3d6;
  --cream: #fffdf9;
  --ink: #252940;
  --muted: #6c7285;
  --line: rgba(42, 44, 71, 0.12);
  --white-line: rgba(255, 255, 255, 0.22);
  --shadow: 0 20px 60px rgba(23, 26, 48, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: #f8f6f1;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar p { margin: 0; }
.topbar-meta { display: flex; align-items: center; gap: 26px; }
.topbar-meta a { border-bottom: 1px solid rgba(255,255,255,.5); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(252, 248, 243, 0.95);
  border-bottom: 1px solid rgba(42,44,71,.10);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo {
  width: 86px;
  height: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23,26,48,.07);
}
.brand-copy {
  display: grid;
  line-height: 1;
}
.brand-copy strong {
  font-family: Manrope, sans-serif;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--navy);
}
.brand-copy small {
  margin-top: 7px;
  font-size: 11px;
  letter-spacing: .10em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
  margin-right: 22px;
  font-size: 14px;
  font-weight: 600;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--coral);
  left: 0;
  right: 100%;
  bottom: -8px;
  transition: right .25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; }
.mobile-nav-cta { display: none; }
.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  margin-left: auto;
  border-radius: 10px;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 20px;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 46px; padding: 0 20px; }
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-deep); }
.btn-coral {
  background: var(--coral);
  color: #fff;
}
.btn-coral:hover { background: var(--coral-dark); }
.btn-outline-light {
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid rgba(42,44,71,.24);
  padding-bottom: 4px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 800;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow.light { color: #f7d6d9; }
h1,h2,h3 {
  font-family: Manrope, sans-serif;
  margin: 0;
  line-height: 1.04;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(52px, 7vw, 88px); font-weight: 700; }

.hero {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/4567376/pexels-photo-4567376.jpeg?auto=compress&dpr=1&w=1800');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.03);
  animation: heroIn 1.5s ease both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23,26,48,.84) 0%, rgba(23,26,48,.65) 46%, rgba(23,26,48,.28) 72%),
    linear-gradient(0deg, rgba(23,26,48,.62), transparent 46%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 92px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 330px;
  align-items: end;
  gap: 52px;
  color: white;
}
.hero-copy { max-width: 760px; }
.hero-copy > p {
  max-width: 640px;
  font-size: 18px;
  color: rgba(255,255,255,.86);
  margin: 25px 0 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-badges div,
.hero-card {
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
}
.hero-badges div {
  padding: 14px 16px;
  min-width: 210px;
}
.hero-badges strong,
.hero-card strong {
  display: block;
  font-size: 14px;
  font-family: Manrope, sans-serif;
}
.hero-badges span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: rgba(255,255,255,.74);
}
.hero-card {
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card-top {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.hero-card-top img {
  width: 84px;
  border-radius: 10px;
  background: #fff;
}
.hero-card p {
  margin: 5px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.74);
}
.hero-card ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.hero-card li {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}
.hero-card li:last-child { border-bottom: 0; }

.trust-strip { background: linear-gradient(180deg, var(--mist) 0%, #edf3f7 100%); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div {
  min-height: 134px;
  padding: 28px 24px;
  display: flex;
  gap: 14px;
  border-right: 1px solid rgba(42,44,71,.10);
}
.trust-grid > div:first-child { border-left: 1px solid rgba(42,44,71,.10); }
.trust-grid span { font-size: 10px; color: var(--coral); font-weight: 800; }
.trust-grid p { margin: 0; font-size: 13px; color: var(--muted); }
.trust-grid strong { color: var(--navy); font-family: Manrope; font-size: 14px; }

.section { padding: 112px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}
.section-head h2,
.process h2,
.contact h2,
.feature-copy h2,
.quote-banner h2 { font-size: clamp(38px, 5vw, 66px); font-weight: 700; }
.section-head > p { color: var(--muted); max-width: 430px; font-size: 15px; margin: 0 0 8px; }

.service-list { border-top: 1px solid var(--line); }
.service-row {
  width: 100%;
  display: grid;
  grid-template-columns: 72px 1.08fr 1fr 48px;
  align-items: center;
  gap: 20px;
  min-height: 102px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
  transition: background .25s ease, padding .25s ease, border-color .25s ease;
}
.service-row:hover {
  background: rgba(223,232,239,.35);
  padding-left: 14px;
  padding-right: 14px;
  border-color: rgba(42,44,71,.18);
}
.service-no { font-size: 11px; color: var(--coral); font-weight: 800; }
.service-title { font-family: Manrope; font-size: 25px; font-weight: 700; letter-spacing: -.025em; }
.service-desc { color: var(--muted); font-size: 14px; }
.service-arrow {
  justify-self: end;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
}

.feature-band {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: var(--navy);
  color: white;
}
.feature-image { min-height: 620px; background-size: cover; background-position: center; }
.image-refurb { background-image: url('https://images.pexels.com/photos/4756489/pexels-photo-4756489.jpeg?auto=compress&dpr=1&w=1400'); }
.feature-copy {
  padding: 92px clamp(38px, 6vw, 95px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-copy > p {
  max-width: 570px;
  margin: 27px 0 32px;
  color: rgba(255,255,255,.74);
}
.mini-points { border-top: 1px solid var(--white-line); }
.mini-points > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border-bottom: 1px solid var(--white-line);
}
.mini-points span { color: #ffb4bc; }
.mini-points p { margin: 0; font-size: 13px; }

.projects { background: #f8f5ef; }
.projects-head { margin-bottom: 44px; }
.project-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 320px 320px;
  gap: 20px;
}
.project-card {
  overflow: hidden;
  position: relative;
  background: #ddd;
  border-radius: 22px;
}
.project-large { grid-row: 1 / 3; }
.project-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}
.project-card:hover .project-img { transform: scale(1.035); }
.image-extension { background-image: url('https://images.pexels.com/photos/4567376/pexels-photo-4567376.jpeg?auto=compress&dpr=1&w=1400'); }
.image-interior { background-image: url('https://images.pexels.com/photos/5691530/pexels-photo-5691530.jpeg?auto=compress&dpr=1&w=1200'); }
.image-site { background-image: url('https://images.pexels.com/photos/3990359/pexels-photo-3990359.jpeg?auto=compress&dpr=1&w=1200'); }
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23,26,48,.78), transparent 52%);
}
.project-meta {
  position: absolute;
  z-index: 2;
  left: 25px;
  right: 25px;
  bottom: 23px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
}
.project-meta span {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .15em;
  color: #ffcad0;
  font-weight: 700;
}
.project-meta h3 { font-size: 22px; font-weight: 700; margin-top: 5px; }
.project-meta p { margin: 0; font-size: 11px; text-align: right; color: rgba(255,255,255,.68); }

.process { background: var(--paper-2); }
.process-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.process-intro { position: sticky; top: 130px; align-self: start; }
.process-intro p { max-width: 455px; color: var(--muted); margin: 27px 0 33px; }
.steps { border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.step > span {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(42,44,71,.20);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  color: var(--navy);
}
.step.active > span {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
}
.step h3 { font-size: 20px; font-weight: 700; }
.step p { margin: 8px 0 0; color: var(--muted); font-size: 14px; max-width: 470px; }

.quote-banner { background: linear-gradient(135deg, var(--navy) 0%, #30355d 100%); color: white; padding: 80px 0; }
.quote-banner-inner { display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.quote-banner h2 { max-width: 820px; }
.circle-arrow {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255,255,255,.45);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 28px;
  transition: .25s ease;
}
.circle-arrow:hover { background: white; color: var(--navy); transform: translateY(-3px); }

.contact { background: linear-gradient(180deg, #faf6f0 0%, #f7f1e7 100%); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; }
.contact-copy > p { max-width: 480px; color: var(--muted); margin: 27px 0 38px; }
.contact-details { display: grid; gap: 19px; border-top: 1px solid var(--line); padding-top: 24px; }
.contact-details div { display: grid; gap: 3px; }
.contact-details span { font-size: 10px; text-transform: uppercase; letter-spacing: .13em; color: var(--muted); }
.contact-details strong { font-size: 14px; font-weight: 700; }
.placeholder-note { display: block; max-width: 440px; margin-top: 24px; color: #9a5760; font-size: 11px; }
.quote-form {
  background: var(--cream);
  padding: 38px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.quote-form label { display: grid; gap: 9px; margin-bottom: 19px; font-size: 12px; font-weight: 700; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid rgba(42,44,71,.16);
  background: #fbf9f5;
  border-radius: 14px;
  padding: 14px 14px;
  outline: none;
  color: var(--ink);
  transition: border .2s ease, box-shadow .2s ease;
}
.quote-form input,
.quote-form select { height: 52px; }
.quote-form textarea { resize: vertical; min-height: 125px; }
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(227,76,89,.10);
}
.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
  font-weight: 500 !important;
  color: var(--muted);
}
.consent input { width: 16px; height: 16px; }
.submit-btn { width: 100%; margin-top: 4px; }
.form-note { color: var(--muted); font-size: 10px; margin: 12px 0 0; }
.form-success {
  display: none;
  margin-top: 15px;
  padding: 12px 14px;
  background: #eef3f7;
  color: var(--navy);
  font-size: 13px;
  border-radius: 14px;
}
.form-success.show { display: block; }

footer {
  background: var(--navy-deep);
  color: #eeeef2;
  padding: 66px 0 28px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  padding-bottom: 55px;
}
.footer-brand .brand-copy strong { color: white; }
.footer-brand .brand-copy small { color: #abb1c2; }
.footer-links { display: grid; grid-template-columns: repeat(2, 170px); gap: 35px; }
.footer-links > div { display: grid; gap: 8px; align-content: start; }
.footer-links span {
  color: #abb1c2;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 5px;
}
.footer-links a { font-size: 13px; color: #e7eaf1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #b7bcc9;
  font-size: 11px;
}
.footer-bottom p { margin: 0; }
.mobile-quote-bar { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
@keyframes heroIn { from { opacity: .5; transform: scale(1.08); } to { opacity: 1; transform: scale(1.03); } }

@media (max-width: 1080px) {
  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
  }
  .hero-card { max-width: 420px; }
  .process-layout,
  .contact-grid { gap: 64px; }
}

@media (max-width: 980px) {
  .main-nav,
  .header-cta { display: none; }
  .menu-btn { display: block; }
  .main-nav.open {
    display: flex;
    position: fixed;
    top: 124px;
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 140px);
    background: rgba(252,248,243,.98);
    border: 1px solid rgba(42,44,71,.10);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(23,26,48,.18);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 8px;
    z-index: 99;
    overflow-y: auto;
  }
  .main-nav.open a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(42,44,71,.08);
    font-family: Manrope, sans-serif;
    font-size: 24px;
  }
  .main-nav.open a:last-child { border-bottom: 0; }
  .main-nav.open a::after { display: none; }
  .mobile-nav-cta {
    display: inline-flex;
    margin-top: 12px;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    border-radius: 999px;
    padding: 16px 18px !important;
    font-size: 16px !important;
    border-bottom: 0 !important;
  }
  .hero { min-height: 740px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(3) { border-left: 1px solid var(--line); }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .feature-band { grid-template-columns: 1fr; }
  .feature-image { min-height: 480px; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 500px 330px; }
  .project-large { grid-column: 1 / 3; grid-row: auto; }
  .process-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .process-intro { position: static; }
}

@media (max-width: 680px) {
  body { padding-bottom: 84px; }
  .container { width: min(100% - 28px, 1180px); }
  .topbar { font-size: 10px; }
  .topbar-inner {
    min-height: 42px;
    justify-content: center;
    text-align: center;
  }
  .topbar p { max-width: 220px; }
  .topbar-meta span { display: none; }
  .topbar-meta { gap: 0; }
  .nav-wrap {
    min-height: 78px;
    gap: 12px;
  }
  .brand {
    gap: 10px;
    max-width: calc(100% - 54px);
  }
  .brand-logo { width: 68px; }
  .brand-copy strong { font-size: 14px; letter-spacing: .07em; }
  .brand-copy small { font-size: 9px; letter-spacing: .08em; }
  .main-nav.open {
    top: 108px;
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 120px);
    padding: 18px;
  }
  .main-nav.open a { font-size: 21px; }
  .hero {
    min-height: auto;
    padding-top: 0;
  }
  .hero-content {
    padding-top: 70px;
    padding-bottom: 42px;
    gap: 24px;
  }
  h1 { font-size: clamp(38px, 11vw, 56px); }
  .hero-copy > p { font-size: 16px; margin: 18px 0 24px; }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }
  .hero-actions .btn { width: 100%; }
  .hero-badges { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-badges div { min-width: 0; }
  .hero-card {
    max-width: none;
    padding: 16px;
    border-radius: 18px;
  }
  .hero-card-top {
    grid-template-columns: 72px 1fr;
    gap: 12px;
  }
  .hero-card-top img { width: 72px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div {
    min-height: 110px;
    border-left: 1px solid var(--line);
    padding: 22px 18px;
  }
  .section { padding: 82px 0; }
  .section-head h2,
  .process h2,
  .contact h2,
  .feature-copy h2,
  .quote-banner h2 { font-size: 36px; }
  .service-row {
    grid-template-columns: 34px 1fr 36px;
    gap: 10px;
    min-height: 90px;
    padding: 0 2px;
  }
  .service-row:hover { padding-left: 8px; padding-right: 8px; }
  .service-desc { display: none; }
  .service-title { font-size: 19px; }
  .feature-image { min-height: 330px; }
  .feature-copy { padding: 62px 22px; }
  .project-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .project-large { grid-column: auto; }
  .project-card { min-height: 340px; border-radius: 18px; }
  .project-meta {
    display: block;
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .project-meta p { text-align: left; margin-top: 8px; }
  .step {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 22px 0;
  }
  .step > span { width: 34px; height: 34px; }
  .step h3 { font-size: 18px; }
  .quote-banner { padding: 62px 0; }
  .quote-banner-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .circle-arrow { width: 62px; height: 62px; font-size: 22px; }
  .contact-grid { gap: 40px; }
  .form-row.two { grid-template-columns: 1fr; gap: 0; }
  .quote-form {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .footer-main { flex-direction: column; gap: 38px; }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 24px;
  }
  .footer-bottom { flex-direction: column; }
  .mobile-quote-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(252,248,243,.94);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(42,44,71,.08);
  }
  .mobile-quote-bar .btn {
    width: 100%;
    min-height: 50px;
  }
}

/* --- Extended layout & motion pass --- */
.hero { min-height: 840px; }
.hero-content { padding-top: 118px; padding-bottom: 92px; }
.section { padding-top: 132px; padding-bottom: 132px; }
.section-head h2,
.process h2,
.contact h2,
.feature-copy h2,
.quote-banner h2,
.promise-intro h2,
.faq-intro h2 { font-size: clamp(42px, 5.2vw, 72px); }

.hero-geometry { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.hero-geometry span { position: absolute; display: block; border-radius: 6px; opacity: .28; filter: blur(.2px); }
.hero-geometry span:nth-child(1) { width: 180px; height: 180px; right: 7%; top: 11%; background: var(--coral); clip-path: polygon(0 0,100% 0,100% 100%); animation: floatOne 9s ease-in-out infinite; }
.hero-geometry span:nth-child(2) { width: 230px; height: 230px; right: 18%; bottom: 8%; background: var(--mist); clip-path: polygon(0 0,100% 100%,0 100%); animation: floatTwo 11s ease-in-out infinite; }
.hero-geometry span:nth-child(3) { width: 260px; height: 80px; left: 6%; top: 18%; border: 1px solid rgba(255,255,255,.28); background: transparent; transform: rotate(-18deg); animation: driftLine 12s ease-in-out infinite; }

.service-marquee { overflow: hidden; background: var(--coral); color: #fff; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(42,44,71,.08); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 26px; min-height: 58px; padding-right: 26px; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; animation: marqueeMove 26s linear infinite; }
.marquee-track i { font-style: normal; font-size: 8px; opacity: .72; }
.service-marquee:hover .marquee-track { animation-play-state: paused; }

.promise-section { background: linear-gradient(180deg, #fbf7f1 0%, #f0f4f7 100%); overflow: hidden; }
.promise-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 86px; align-items: center; }
.promise-intro p { color: var(--muted); max-width: 520px; margin: 28px 0 0; }
.promise-board { position: relative; min-height: 600px; border-radius: 32px; background: var(--navy); padding: 34px; overflow: hidden; box-shadow: 0 28px 80px rgba(23,26,48,.14); }
.promise-board::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 84% 12%, rgba(227,76,89,.24), transparent 32%), radial-gradient(circle at 15% 85%, rgba(223,232,239,.15), transparent 35%); }
.board-lines { position: absolute; inset: 0; pointer-events: none; }
.board-lines span { position: absolute; background: rgba(255,255,255,.09); transform-origin: left center; animation: linePulse 6s ease-in-out infinite; }
.board-lines span:nth-child(1) { width: 65%; height: 1px; left: 16%; top: 29%; transform: rotate(9deg); }
.board-lines span:nth-child(2) { width: 56%; height: 1px; left: 20%; top: 64%; transform: rotate(-8deg); animation-delay: 1s; }
.board-lines span:nth-child(3) { width: 1px; height: 65%; left: 50%; top: 17%; animation-delay: 2s; }
.board-lines span:nth-child(4) { width: 1px; height: 72%; left: 72%; top: 13%; animation-delay: 3s; }
.promise-card { position: absolute; width: min(260px, 36%); padding: 22px; border-radius: 20px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(12px); color: #fff; box-shadow: 0 18px 35px rgba(0,0,0,.12); transition: transform .35s ease, background .35s ease; }
.promise-card:hover { transform: translateY(-8px) scale(1.02); background: rgba(255,255,255,.13); }
.promise-card span { color: #ffb3bb; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.promise-card h3 { margin-top: 11px; font-size: 21px; }
.promise-card p { margin: 10px 0 0; color: rgba(255,255,255,.72); font-size: 13px; }
.promise-card-a { left: 7%; top: 10%; animation: cardFloatA 7s ease-in-out infinite; }
.promise-card-b { right: 7%; top: 19%; animation: cardFloatB 8s ease-in-out infinite; }
.promise-card-c { left: 14%; bottom: 11%; animation: cardFloatB 8.5s ease-in-out infinite; }
.promise-card-d { right: 9%; bottom: 8%; animation: cardFloatA 7.5s ease-in-out infinite; }

.faq-section { background: #fffdf9; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro p { max-width: 460px; color: var(--muted); margin: 26px 0 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; min-height: 88px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; font-family: Manrope, sans-serif; font-size: 20px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--mist); color: var(--navy); transition: transform .25s ease, background .25s ease, color .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--coral); color: #fff; }
.faq-list details p { margin: -6px 54px 26px 0; color: var(--muted); max-width: 670px; animation: faqIn .3s ease both; }

.btn-coral { position: relative; overflow: hidden; }
.btn-coral::after { content: ""; position: absolute; inset: -2px auto -2px -45%; width: 28%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent); transform: skewX(-18deg); animation: buttonSheen 4.8s ease-in-out infinite; }
.project-card.reveal.visible .project-img { animation: projectReveal 1.05s cubic-bezier(.2,.7,.2,1) both; }

@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floatOne { 0%,100% { transform: translate3d(0,0,0) rotate(0deg); } 50% { transform: translate3d(-20px,18px,0) rotate(5deg); } }
@keyframes floatTwo { 0%,100% { transform: translate3d(0,0,0) rotate(0deg); } 50% { transform: translate3d(22px,-14px,0) rotate(-4deg); } }
@keyframes driftLine { 0%,100% { transform: rotate(-18deg) translateX(0); opacity: .24; } 50% { transform: rotate(-18deg) translateX(24px); opacity: .42; } }
@keyframes linePulse { 0%,100% { opacity: .05; } 50% { opacity: .16; } }
@keyframes cardFloatA { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@keyframes cardFloatB { 0%,100% { translate: 0 0; } 50% { translate: 0 10px; } }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes buttonSheen { 0%,65% { left: -45%; } 85%,100% { left: 125%; } }
@keyframes projectReveal { from { transform: scale(1.08); filter: saturate(.85); } to { transform: scale(1); filter: saturate(1); } }

.reveal { opacity: 0; transform: translateY(28px) scale(.995); filter: blur(3px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1), filter .8s ease; }
.reveal.visible { opacity: 1; transform: none; filter: none; }

@media (max-width: 980px) {
  .hero { min-height: 790px; }
  .promise-layout, .faq-layout { grid-template-columns: 1fr; gap: 54px; }
  .faq-intro { position: static; }
  .promise-board { min-height: 560px; }
}

@media (max-width: 680px) {
  .section { padding-top: 94px; padding-bottom: 94px; }
  .hero { min-height: auto; }
  .hero-content { padding-top: 82px; padding-bottom: 54px; }
  .hero-geometry span:nth-child(1) { width: 110px; height: 110px; right: -4%; top: 8%; }
  .hero-geometry span:nth-child(2) { width: 140px; height: 140px; right: 5%; bottom: 19%; }
  .hero-geometry span:nth-child(3) { display: none; }
  .marquee-track { min-height: 52px; gap: 18px; font-size: 10px; animation-duration: 22s; }
  .promise-board { min-height: 690px; padding: 20px; border-radius: 24px; }
  .promise-card { width: calc(100% - 40px); left: 20px !important; right: auto !important; }
  .promise-card-a { top: 28px; }
  .promise-card-b { top: 192px; }
  .promise-card-c { bottom: auto; top: 356px; }
  .promise-card-d { bottom: 26px; }
  .board-lines { display: none; }
  .faq-list summary { min-height: 78px; font-size: 17px; }
  .faq-list details p { margin-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
}


/* clearer logo presentation */
.brand-logo {
  width: 132px;
  height: auto;
  border-radius: 14px;
  background: #ffffff;
  padding: 10px;
  border: 1px solid rgba(42,44,71,.10);
  box-shadow: 0 10px 28px rgba(23,26,48,.08);
  object-fit: contain;
}
.hero-logo {
  width: 128px;
  height: auto;
  border-radius: 14px;
  background: #ffffff;
  padding: 10px;
  border: 1px solid rgba(42,44,71,.10);
  box-shadow: 0 10px 28px rgba(23,26,48,.10);
  object-fit: contain;
}
.hero-card-top {
  grid-template-columns: 128px 1fr;
}
.footer-brand .brand-logo {
  background: #ffffff;
}
@media (max-width: 680px) {
  .brand-logo {
    width: 96px;
    padding: 7px;
    border-radius: 12px;
  }
  .hero-logo {
    width: 94px;
    padding: 7px;
    border-radius: 12px;
  }
  .hero-card-top {
    grid-template-columns: 94px 1fr;
  }
}


/* --- Cleaner first-screen refinement --- */
.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(42,44,71,.08);
}
.nav-wrap {
  min-height: 92px;
}
.brand {
  flex: 0 0 auto;
  align-items: center;
}
.brand-logo {
  width: 136px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
}
.brand-copy { display: none; }
.main-nav { margin-left: auto; }

.hero {
  min-height: 780px;
}
.hero-media {
  background-position: center 42%;
  animation: cleanHeroIn 1.7s cubic-bezier(.2,.7,.2,1) both;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(20,23,44,.84) 0%, rgba(20,23,44,.66) 44%, rgba(20,23,44,.18) 78%),
    linear-gradient(0deg, rgba(20,23,44,.48), transparent 48%);
}
.hero-content-clean {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 54px;
  padding-top: 118px;
  padding-bottom: 72px;
}
.hero-content-clean .hero-copy {
  max-width: 900px;
}
.hero-content-clean h1 {
  max-width: 900px;
  font-size: clamp(56px, 7.4vw, 96px);
  letter-spacing: -.047em;
}
.hero-content-clean .hero-copy > p {
  max-width: 650px;
  margin: 26px 0 30px;
}
.hero-content-clean .hero-actions { margin-bottom: 0; }
.hero-signature {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 16px;
  row-gap: 2px;
  align-items: center;
  color: #fff;
}
.hero-signature-line {
  grid-row: 1 / 3;
  width: 72px;
  height: 1px;
  background: rgba(255,255,255,.56);
  transform-origin: left center;
  animation: signatureLine 1s .65s cubic-bezier(.2,.7,.2,1) both;
}
.hero-signature p {
  margin: 0;
  font-size: 13px;
  letter-spacing: .03em;
}
.hero-signature p strong { font-weight: 700; }
.hero-signature small {
  color: rgba(255,255,255,.62);
  font-size: 11px;
}
.hero-card,
.hero-badges,
.hero-geometry { display: none !important; }

.footer-brand .brand-logo {
  width: 150px;
  background: #fff;
  padding: 8px 10px;
  border-radius: 10px;
}

@keyframes cleanHeroIn {
  from { opacity: .58; transform: scale(1.075); }
  to { opacity: 1; transform: scale(1.03); }
}
@keyframes signatureLine {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 980px) {
  .nav-wrap { min-height: 84px; }
  .brand-logo { width: 124px; }
  .main-nav.open { top: 96px; }
  .hero { min-height: 720px; }
  .hero-content-clean { padding-top: 86px; padding-bottom: 58px; gap: 42px; }
}

@media (max-width: 680px) {
  .nav-wrap { min-height: 76px; }
  .brand-logo { width: 108px; padding: 0; border: 0; }
  .main-nav.open { top: 88px; }
  .hero { min-height: 650px; }
  .hero-content-clean {
    padding-top: 68px;
    padding-bottom: 44px;
    gap: 34px;
  }
  .hero-content-clean h1 {
    font-size: clamp(42px, 12vw, 58px);
    max-width: 560px;
  }
  .hero-content-clean .hero-copy > p {
    font-size: 16px;
    margin: 20px 0 24px;
  }
  .hero-signature {
    grid-template-columns: 44px 1fr;
    gap: 10px 12px;
  }
  .hero-signature-line { width: 44px; }
  .hero-signature p { font-size: 12px; }
  .hero-signature small { font-size: 10px; }
  .footer-brand .brand-logo { width: 132px; }
}

/* Editable content + inner pages */
.section-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}
.service-row { text-decoration: none; }
.service-row:focus-visible,
.portfolio-card:focus-visible,
.project-card:focus-visible {
  outline: 3px solid rgba(227,76,89,.32);
  outline-offset: 4px;
}
.main-nav a[aria-current="page"]::after { right: 0; }

.inner-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 120px 0 105px;
}
.inner-hero::before,
.inner-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.inner-hero::before {
  width: 440px;
  height: 440px;
  right: -130px;
  top: -230px;
  background: radial-gradient(circle, rgba(227,76,89,.22), rgba(227,76,89,0) 68%);
}
.inner-hero::after {
  width: 520px;
  height: 520px;
  left: 38%;
  bottom: -430px;
  background: radial-gradient(circle, rgba(223,232,239,.16), rgba(223,232,239,0) 67%);
}
.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 80px;
}
.inner-hero h1 {
  max-width: 900px;
  font-size: clamp(52px, 6.8vw, 90px);
}
.inner-hero-grid > p {
  max-width: 460px;
  margin: 0 0 10px;
  color: rgba(255,255,255,.74);
  font-size: 17px;
}

.service-detail-section { background: #fbf8f3; }
.service-detail {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 74px;
  align-items: center;
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.service-detail:first-child { padding-top: 0; }
.service-detail:last-child { border-bottom: 0; padding-bottom: 0; }
.service-detail:nth-child(even) .service-detail-media { order: 2; }
.service-detail-media {
  position: relative;
  min-height: 500px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(23,26,48,.10);
  background: var(--mist);
}
.service-detail-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.service-detail:hover .service-detail-media img { transform: scale(1.025); }
.service-detail-media > span {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.93);
  color: var(--coral);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}
.service-detail-copy h2 {
  max-width: 650px;
  font-size: clamp(38px, 4.4vw, 62px);
}
.service-detail-copy > p {
  max-width: 620px;
  color: var(--muted);
  margin: 24px 0 28px;
  font-size: 16px;
}
.service-detail-copy ul {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  border-top: 1px solid var(--line);
}
.service-detail-copy li {
  position: relative;
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}
.service-detail-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 800;
}

.portfolio-section { background: #f8f5ef; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.portfolio-card {
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(23,26,48,.07);
  transition: transform .28s ease, box-shadow .28s ease;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(23,26,48,.12);
}
.portfolio-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist);
}
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}
.portfolio-card:hover .portfolio-image img { transform: scale(1.035); }
.portfolio-copy { padding: 26px 26px 28px; }
.portfolio-topline,
.portfolio-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.portfolio-topline span:first-child { color: var(--coral); font-weight: 800; }
.portfolio-copy h2 {
  font-size: clamp(28px, 3vw, 39px);
  margin-top: 12px;
}
.portfolio-copy > p {
  color: var(--muted);
  margin: 16px 0 24px;
  max-width: 580px;
}
.portfolio-meta {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}
.portfolio-meta span { color: var(--navy); font-weight: 700; }

.project-detail-hero {
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.project-detail-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.project-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,23,44,.82) 0%, rgba(20,23,44,.28) 68%, rgba(20,23,44,.14) 100%);
}
.project-detail-heading {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}
.project-detail-heading h1 {
  max-width: 900px;
  font-size: clamp(52px, 7vw, 92px);
}
.project-detail-heading > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
}
.project-detail-section { background: #fbf8f3; }
.project-story {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 90px;
  align-items: start;
}
.project-facts {
  border-top: 1px solid var(--line);
}
.project-facts > div {
  display: grid;
  gap: 3px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.project-facts span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--muted);
}
.project-facts strong { font-size: 14px; }
.project-description h2 {
  font-size: clamp(38px, 4.6vw, 62px);
  max-width: 750px;
}
.project-description > p {
  max-width: 730px;
  margin: 25px 0 28px;
  color: var(--muted);
  font-size: 16px;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; }
.tag-list span {
  padding: 9px 13px;
  background: #eef2f5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 80px;
}
.project-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  min-height: 440px;
  background: var(--mist);
}
.project-gallery figure:nth-child(3n + 1) { grid-column: 1 / -1; min-height: 620px; }
.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .inner-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .inner-hero { padding: 95px 0 80px; }
  .service-detail { grid-template-columns: 1fr; gap: 36px; }
  .service-detail:nth-child(even) .service-detail-media { order: 0; }
  .service-detail-media { min-height: 440px; }
  .project-story { grid-template-columns: 1fr; gap: 45px; }
  .project-gallery figure:nth-child(3n + 1) { min-height: 520px; }
}

@media (max-width: 680px) {
  .section-more { justify-content: flex-start; margin-top: 22px; }
  .inner-hero { padding: 72px 0 62px; }
  .inner-hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .inner-hero-grid > p { font-size: 15px; }
  .service-detail { padding: 55px 0; }
  .service-detail-media { min-height: 320px; border-radius: 18px; }
  .service-detail-copy h2 { font-size: 34px; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 18px; }
  .portfolio-card { border-radius: 18px; }
  .portfolio-copy { padding: 21px 18px 23px; }
  .project-detail-hero { min-height: 570px; }
  .project-detail-heading { padding-bottom: 42px; }
  .project-detail-heading h1 { font-size: clamp(42px, 12vw, 60px); }
  .project-gallery { grid-template-columns: 1fr; gap: 14px; margin-top: 55px; }
  .project-gallery figure,
  .project-gallery figure:nth-child(3n + 1) { grid-column: auto; min-height: 320px; border-radius: 16px; }
}

/* === Mobile first-screen simplification === */
@media (max-width: 680px) {
  /* Use the first viewport as one calm introduction instead of stacking UI. */
  .site-header {
    background: rgba(255,255,255,.98);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand-logo {
    width: 92px;
  }

  .hero {
    min-height: calc(100svh - 70px);
    max-height: 760px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(20,23,44,.82) 0%, rgba(20,23,44,.58) 62%, rgba(20,23,44,.28) 100%),
      linear-gradient(0deg, rgba(20,23,44,.44), transparent 55%);
  }

  .hero-content-clean {
    min-height: calc(100svh - 70px);
    padding-top: 80px;
    padding-bottom: 52px;
    justify-content: flex-end;
    gap: 0;
  }

  .hero-content-clean .eyebrow,
  .hero-signature,
  .hero-actions .btn-outline-light {
    display: none !important;
  }

  .hero-content-clean h1 {
    font-size: clamp(39px, 11.2vw, 52px);
    line-height: 1.01;
    letter-spacing: -.045em;
    max-width: 520px;
  }

  .hero-content-clean .hero-copy > p {
    font-size: 15px;
    line-height: 1.55;
    max-width: 36ch;
    margin: 18px 0 24px;
    color: rgba(255,255,255,.82);
  }

  .hero-actions {
    display: block;
    margin: 0;
  }

  .hero-actions .btn-coral {
    width: auto;
    min-width: 190px;
    min-height: 52px;
    padding-inline: 22px;
  }

  /* Keep the sticky CTA out of the initial view. It appears after the hero. */
  .mobile-quote-bar {
    display: block;
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .32s ease, opacity .32s ease;
  }

  .mobile-quote-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Make the section immediately after the hero visually quieter. */
  .trust-grid > div {
    min-height: 94px;
    padding: 18px 16px;
  }

  .trust-grid p {
    font-size: 12px;
    line-height: 1.45;
  }

  .service-marquee {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero-content-clean h1 {
    font-size: 38px;
  }

  .hero-content-clean .hero-copy > p {
    font-size: 14px;
  }
}

/* === Quote modal === */
body.quote-modal-open { overflow: hidden; }
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.quote-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 21, 40, .72);
  backdrop-filter: blur(7px);
}
.quote-modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(880px, calc(100svh - 48px));
  overflow: auto;
  overscroll-behavior: contain;
  background: #fffdf9;
  border: 1px solid rgba(42,44,71,.10);
  border-radius: 28px;
  box-shadow: 0 32px 100px rgba(10, 13, 32, .30);
  transform: translateY(18px) scale(.985);
  transition: transform .28s cubic-bezier(.2,.72,.2,1);
}
.quote-modal.is-open .quote-modal-panel { transform: translateY(0) scale(1); }
.quote-modal-head { padding: 34px 38px 0; }
.quote-modal-head .eyebrow { margin-bottom: 13px; }
.quote-modal-head h2 {
  font-size: clamp(34px, 5vw, 52px);
  max-width: 620px;
}
.quote-modal-head > p {
  margin: 16px 0 0;
  max-width: 590px;
  color: var(--muted);
  font-size: 14px;
}
.quote-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(42,44,71,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: transform .18s ease, background .18s ease;
}
.quote-modal-close:hover { transform: rotate(6deg); background: var(--mist); }
.quote-modal-form {
  box-shadow: none;
  background: transparent;
  padding: 28px 38px 38px;
}
.quote-modal-form .form-note { text-align: center; }

@media (max-width: 680px) {
  .quote-modal {
    align-items: end;
    padding: 0;
  }
  .quote-modal-panel {
    width: 100%;
    max-height: 92svh;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
  }
  .quote-modal.is-open .quote-modal-panel { transform: translateY(0); }
  .quote-modal-head { padding: 28px 20px 0; }
  .quote-modal-head h2 { font-size: 32px; padding-right: 38px; }
  .quote-modal-head > p { font-size: 13px; margin-top: 12px; }
  .quote-modal-close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .quote-modal-form { padding: 22px 18px calc(24px + env(safe-area-inset-bottom)); }
  .quote-modal-form textarea { min-height: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  .quote-modal, .quote-modal-panel { transition: none; }
}

/* =========================================================
   Bertoni UI contrast + responsive hardening pass
   Visual-only patch: does not change SEO metadata or content.
   ========================================================= */

/* Give neighbouring homepage sections a deliberate colour rhythm. */
main > section.services {
  position: relative;
  background:
    radial-gradient(circle at 88% 14%, rgba(255,255,255,.78), transparent 28%),
    linear-gradient(180deg, #eef4f7 0%, #e7eff4 100%);
  border-top: 1px solid rgba(42,44,71,.06);
  border-bottom: 1px solid rgba(42,44,71,.08);
}

main > section.services .service-list {
  border-top-color: rgba(42,44,71,.15);
}

main > section.services .service-row {
  border-bottom-color: rgba(42,44,71,.13);
}

main > section.services .service-row:hover {
  background: rgba(255,255,255,.58);
}

main > section.promise-section {
  background:
    radial-gradient(circle at 9% 12%, rgba(227,76,89,.045), transparent 23%),
    linear-gradient(180deg, #fffaf4 0%, #fbf5ee 100%);
}

main > section.promise-section::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,76,89,.23), transparent);
}

/* Global layout safety for real-world screen widths. */
html, body { max-width: 100%; overflow-x: clip; }
img, video, svg, canvas { max-width: 100%; }
input, select, textarea, button { max-width: 100%; }

/* Large desktop / ultrawide: stop content from feeling lost. */
@media (min-width: 1440px) {
  .container { width: min(1280px, calc(100% - 96px)); }
  .section { padding-top: 144px; padding-bottom: 144px; }
  .hero-copy { max-width: 850px; }
}

/* Typical laptops and tablets in landscape. */
@media (max-width: 1180px) {
  .container { width: min(1120px, calc(100% - 40px)); }
  .section-head { gap: clamp(28px, 5vw, 60px); }
  .promise-layout { gap: clamp(42px, 6vw, 74px); }
  .contact-grid, .process-layout { gap: clamp(44px, 7vw, 76px); }
}

@media (max-width: 900px) {
  .section { padding-top: 96px; padding-bottom: 96px; }
  .section-head { margin-bottom: 44px; }
  .service-row { grid-template-columns: 52px minmax(0,1fr) minmax(190px,.75fr) 44px; }
  .service-title { font-size: clamp(20px, 3vw, 24px); }
  .promise-board { min-height: 540px; }
}

/* Phones and narrow tablets. */
@media (max-width: 680px) {
  :root { --mobile-gutter: 16px; }
  .container { width: calc(100% - (var(--mobile-gutter) * 2)); }
  .section { padding-top: 74px; padding-bottom: 74px; }

  main > section.services,
  main > section.promise-section {
    border-radius: 0;
  }

  .section-head { margin-bottom: 34px; }
  .section-head h2,
  .process h2,
  .contact h2,
  .feature-copy h2,
  .quote-banner h2,
  .promise-intro h2,
  .faq-intro h2 {
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 1.02;
    text-wrap: balance;
  }

  .section-head > p,
  .promise-intro p,
  .faq-intro p {
    font-size: 14px;
    line-height: 1.6;
  }

  .service-row {
    grid-template-columns: 30px minmax(0,1fr) 38px;
    min-height: 82px;
    gap: 10px;
  }
  .service-title { font-size: clamp(17px, 5vw, 20px); line-height: 1.15; }
  .service-no { font-size: 9px; }
  .service-arrow { width: 36px; height: 36px; }

  .promise-layout { gap: 34px; }
  .promise-board { min-height: 650px; }

  .quote-modal { padding: 0; align-items: end; }
  .quote-modal-panel {
    width: 100%;
    max-height: min(92svh, 860px);
    border-radius: 24px 24px 0 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
}

/* Very small iPhones / compact Androids. */
@media (max-width: 390px) {
  :root { --mobile-gutter: 14px; }
  .section { padding-top: 66px; padding-bottom: 66px; }
  .section-head h2,
  .promise-intro h2,
  .faq-intro h2 { font-size: 34px; }
  .service-row { grid-template-columns: 26px minmax(0,1fr) 34px; }
  .service-arrow { width: 32px; height: 32px; }
  .promise-card { padding: 18px; }
}

/* Landscape phones: avoid giant vertical hero / modal layouts. */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: 560px; }
  .quote-modal { align-items: center; padding: 12px; }
  .quote-modal-panel { max-height: calc(100svh - 24px); border-radius: 20px; }
}

/* =========================================================
   PROCESS TIMELINE ANIMATION
   Adds motion to “A clear route from idea to handover.”
   ========================================================= */
.process {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.process::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  top: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223,232,239,.72) 0%, rgba(223,232,239,.20) 44%, transparent 72%);
  pointer-events: none;
  z-index: -1;
}

.process-intro {
  position: sticky;
}

.process-intro::after {
  content: "";
  display: block;
  width: min(220px, 58%);
  height: 3px;
  margin-top: 36px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--coral) 0 30%, rgba(42,44,71,.16) 30% 100%);
  transform-origin: left center;
  animation: processGuide 3.6s ease-in-out infinite alternate;
}

.steps {
  --process-progress: 0;
  position: relative;
  border-top: 0;
  padding-top: 2px;
}

.steps::before,
.steps::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  border-radius: 99px;
  pointer-events: none;
}

.steps::before {
  background: rgba(42,44,71,.12);
}

.steps::after {
  background: linear-gradient(180deg, var(--coral), #e97d87 70%, var(--navy));
  transform: scaleY(var(--process-progress));
  transform-origin: top center;
  transition: transform .16s linear;
}

.step {
  position: relative;
  z-index: 1;
  border-bottom-color: rgba(42,44,71,.11);
  transition:
    opacity .5s ease,
    transform .5s cubic-bezier(.2,.7,.2,1),
    background-color .35s ease,
    box-shadow .35s ease,
    padding-left .35s ease,
    padding-right .35s ease;
}

.process.motion-ready .step {
  opacity: .42;
  transform: translateX(12px);
}

.process.motion-ready .step.is-reached {
  opacity: 1;
  transform: translateX(0);
}

.step > span {
  position: relative;
  z-index: 2;
  background: var(--paper-2);
  transition:
    background-color .35s ease,
    border-color .35s ease,
    color .35s ease,
    transform .35s cubic-bezier(.2,.7,.2,1),
    box-shadow .35s ease;
}

.step.is-reached > span {
  border-color: rgba(227,76,89,.52);
  color: var(--coral);
  background: #fffaf7;
}

.step.is-current {
  background: rgba(255,255,255,.58);
  box-shadow: 0 18px 44px rgba(42,44,71,.06);
  border-radius: 18px;
  padding-left: 16px;
  padding-right: 16px;
}

.step.is-current > span {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  transform: scale(1.09);
  box-shadow: 0 0 0 7px rgba(227,76,89,.10), 0 8px 18px rgba(227,76,89,.22);
}

.step.is-current > span::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(227,76,89,.34);
  border-radius: 50%;
  animation: processPulse 1.9s ease-out infinite;
}

.step h3 {
  transition: color .3s ease, transform .3s ease;
}

.step.is-current h3 {
  color: var(--navy-deep);
  transform: translateX(3px);
}

@keyframes processPulse {
  0% { opacity: .75; transform: scale(.88); }
  75%, 100% { opacity: 0; transform: scale(1.38); }
}

@keyframes processGuide {
  from { transform: scaleX(.58); opacity: .65; }
  to { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 680px) {
  .process::before {
    width: 360px;
    height: 360px;
    right: -210px;
    top: 120px;
  }
  .process-intro::after {
    width: 150px;
    margin-top: 24px;
  }
  .steps::before,
  .steps::after {
    left: 16px;
  }
  .step.is-current {
    padding-left: 10px;
    padding-right: 8px;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-intro::after,
  .step.is-current > span::after { animation: none; }
  .steps::after,
  .step,
  .step > span,
  .step h3 { transition: none; }
  .process.motion-ready .step { opacity: 1; transform: none; }
}


/* =========================================================
   CALM CROSS-PAGE MOTION
   Visual-only. No SEO content, metadata or page structure changed.
   ========================================================= */

/* Logo: clean, visible and stable across every page/header/footer. */
.brand-logo {
  display: block !important;
  width: 136px;
  height: auto !important;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}
.footer-brand .brand-logo {
  width: 146px;
  max-height: 82px;
  background: #fff;
  border-radius: 10px;
  padding: 5px 7px;
}

/* A gentle page arrival instead of every page snapping into view. */
.bertoni-motion main {
  opacity: .985;
  transition: opacity .45s ease;
}
.bertoni-motion.bertoni-page-loaded main { opacity: 1; }

/* Generic scroll reveal used on services, projects and project-detail pages. */
.soft-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  filter: blur(2px);
  transition:
    opacity .72s ease var(--soft-delay, 0ms),
    transform .78s cubic-bezier(.2,.72,.2,1) var(--soft-delay, 0ms),
    filter .7s ease var(--soft-delay, 0ms);
}
.soft-reveal.soft-visible {
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: none;
}

/* SERVICES PAGE — soft geometry + alternating image/copy entrance. */
.bertoni-page-services .inner-hero::before {
  animation: innerOrbOne 9s ease-in-out infinite alternate;
}
.bertoni-page-services .inner-hero::after {
  animation: innerOrbTwo 11s ease-in-out infinite alternate;
}
.bertoni-page-services .inner-hero .eyebrow,
.bertoni-page-services .inner-hero h1,
.bertoni-page-services .inner-hero p {
  opacity: 0;
  transform: translateY(18px);
}
.bertoni-page-loaded.bertoni-page-services .inner-hero .eyebrow { animation: heroTextIn .65s .08s both; }
.bertoni-page-loaded.bertoni-page-services .inner-hero h1 { animation: heroTextIn .8s .16s both; }
.bertoni-page-loaded.bertoni-page-services .inner-hero p { animation: heroTextIn .8s .27s both; }
.bertoni-page-services .service-detail-media img {
  transform: scale(1.035) translate3d(var(--mx,0), var(--my,0), 0);
  transition: transform .75s cubic-bezier(.2,.7,.2,1);
}
.bertoni-page-services .service-detail:hover .service-detail-media img {
  transform: scale(1.055) translate3d(var(--mx,0), var(--my,0), 0);
}

/* PROJECTS PAGE — cards rise gently and images breathe on hover. */
.bertoni-page-projects .inner-hero::before { animation: innerOrbOne 10s ease-in-out infinite alternate; }
.bertoni-page-projects .inner-hero::after { animation: innerOrbTwo 13s ease-in-out infinite alternate; }
.bertoni-page-projects .portfolio-card {
  transform: translate3d(var(--mx,0), var(--my,0), 0);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
.bertoni-page-projects .portfolio-card.soft-reveal { transform: translate3d(0,30px,0); }
.bertoni-page-projects .portfolio-card.soft-visible { transform: translate3d(var(--mx,0), var(--my,0), 0); }
.bertoni-page-projects .portfolio-card:hover { box-shadow: 0 26px 70px rgba(23,26,48,.11); }
.bertoni-page-projects .portfolio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 36%, rgba(255,255,255,.16) 49%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .9s ease;
  pointer-events: none;
}
.bertoni-page-projects .portfolio-card:hover .portfolio-image::after { transform: translateX(120%); }

/* PROJECT DETAIL — one slow hero breath and staggered story/gallery reveals. */
.bertoni-page-project .project-detail-cover {
  animation: projectHeroBreath 14s ease-in-out infinite alternate;
  will-change: transform;
}
.bertoni-page-project .project-detail-heading .eyebrow,
.bertoni-page-project .project-detail-heading h1,
.bertoni-page-project .project-detail-heading p {
  opacity: 0;
  transform: translateY(22px);
}
.bertoni-page-loaded.bertoni-page-project .project-detail-heading .eyebrow { animation: heroTextIn .65s .12s both; }
.bertoni-page-loaded.bertoni-page-project .project-detail-heading h1 { animation: heroTextIn .85s .21s both; }
.bertoni-page-loaded.bertoni-page-project .project-detail-heading p { animation: heroTextIn .8s .34s both; }
.bertoni-page-project .project-gallery figure {
  overflow: hidden;
}
.bertoni-page-project .project-gallery img {
  transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .55s ease;
}
.bertoni-page-project .project-gallery figure:hover img {
  transform: scale(1.025);
  filter: saturate(1.035);
}

/* Quote banner gets a slow colour shift rather than another moving object. */
.quote-banner {
  background-size: 160% 160%;
  animation: quoteGradientDrift 12s ease-in-out infinite alternate;
}

/* Modal: a cleaner pop-up for Get a quote / Discuss this service everywhere. */
.quote-modal-backdrop {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.quote-modal-panel {
  box-shadow: 0 30px 100px rgba(10,13,32,.28);
}
.quote-modal.is-open .quote-modal-panel {
  animation: quotePanelSettle .44s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(22px); filter: blur(3px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes innerOrbOne {
  from { transform: translate3d(0,0,0) rotate(0deg); }
  to { transform: translate3d(-18px,15px,0) rotate(5deg); }
}
@keyframes innerOrbTwo {
  from { transform: translate3d(0,0,0) rotate(0deg); }
  to { transform: translate3d(14px,-18px,0) rotate(-6deg); }
}
@keyframes projectHeroBreath {
  from { transform: scale(1.015); }
  to { transform: scale(1.055); }
}
@keyframes quoteGradientDrift {
  from { background-position: 0% 45%; }
  to { background-position: 100% 55%; }
}
@keyframes quotePanelSettle {
  0% { opacity: .7; transform: translateY(24px) scale(.985); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 680px) {
  .brand-logo { width: 102px; max-height: 58px; }
  .footer-brand .brand-logo { width: 126px; max-height: 70px; }
  .soft-reveal { transform: translate3d(0,16px,0); filter: none; }
  .bertoni-page-projects .portfolio-card.soft-reveal { transform: translate3d(0,18px,0); }
  .bertoni-page-project .project-detail-cover { animation-duration: 18s; }
}

@media (prefers-reduced-motion: reduce) {
  .soft-reveal,
  .soft-reveal.soft-visible,
  .bertoni-page-services .inner-hero .eyebrow,
  .bertoni-page-services .inner-hero h1,
  .bertoni-page-services .inner-hero p,
  .bertoni-page-project .project-detail-heading .eyebrow,
  .bertoni-page-project .project-detail-heading h1,
  .bertoni-page-project .project-detail-heading p {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
  .quote-banner,
  .project-detail-cover,
  .inner-hero::before,
  .inner-hero::after { animation: none !important; }
}
