/* ==========================================================
   CHOHAN PROPERTY INVESTMENT LLC
   Estate-Navy Light Theme
   Warm Ivory + Deep Navy + Champagne + White
   Property and Investment motif
   ========================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  background-color: #F6F3EE;
  color: #2C2A33;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: #1E3A5C;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  color: #1E3A5C;
  margin-top: 0;
  line-height: 1.25;
}

p {
  color: #3A3A44;
}

/* ----------------------------------------------------------
   Layout shell
   ---------------------------------------------------------- */
.page-shell {
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  min-width: 0;
}

/* ----------------------------------------------------------
   Sidebar navigation (desktop)
   ---------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  align-self: flex-start;
  flex: 0 0 250px;
  width: 250px;
  height: 100vh;
  background-color: #1E3A5C;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  z-index: 60;
  overflow-y: auto;
}

.site-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 36px 24px 28px;
}

.brand-block {
  margin-bottom: 42px;
}

.brand-chip {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: #D9C491;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.brand-name {
  display: block;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.brand-rule {
  display: block;
  width: 44px;
  height: 3px;
  background-color: #D9C491;
  border-radius: 2px;
  margin-top: 10px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-link::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #D9C491;
  border-radius: 2px;
  flex: 0 0 8px;
}

.nav-link:hover {
  background-color: #2A4A70;
  text-decoration: none;
}

.nav-link.is-active {
  background-color: #D9C491;
  color: #1E3A5C;
}

.nav-link.is-active::before {
  background-color: #1E3A5C;
}

.nav-spacer {
  flex: 1;
  min-height: 32px;
}

.nav-contact {
  border-top: 1px solid #3A5A80;
  padding-top: 18px;
  font-size: 14px;
  color: #C7D2E0;
  line-height: 1.7;
}

.nav-contact strong {
  display: block;
  color: #FFFFFF;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  font-weight: 700;
}

.nav-contact a {
  color: #C7D2E0;
  text-decoration: none;
}

.nav-contact a:hover {
  color: #FFFFFF;
}

/* ----------------------------------------------------------
   Mobile top bar
   ---------------------------------------------------------- */
.mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 70;
  background-color: #1E3A5C;
  padding: 14px 18px;
}

.mobile-bar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 17px;
}

.mobile-burger {
  width: 44px;
  height: 44px;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
  padding: 0;
}

.mobile-burger span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 2px;
}

/* ----------------------------------------------------------
   Motif glyphs
   ---------------------------------------------------------- */
.house-glyph {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
}

.house-glyph::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 9px solid #FFFFFF;
}

.house-glyph::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  width: 10px;
  height: 13px;
  background-color: #FFFFFF;
}

.house-glyph.is-navy::before {
  border-bottom-color: #1E3A5C;
}

.house-glyph.is-navy::after {
  background-color: #1E3A5C;
}

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: #1E3A5C;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #2A4A70;
  color: #FFFFFF;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  border-color: #1E3A5C;
  color: #1E3A5C;
}

.btn-outline:hover {
  background-color: #1E3A5C;
  color: #FFFFFF;
  text-decoration: none;
}

/* ----------------------------------------------------------
   Eyebrow chip
   ---------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  background-color: #1E3A5C;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.eyebrow.is-champagne {
  background-color: #D9C491;
  color: #1E3A5C;
}

/* ----------------------------------------------------------
   Mirror hero
   ---------------------------------------------------------- */
.mirror-hero {
  background-color: #F6F3EE;
  padding: 76px 0 70px;
}

.mirror-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 58px;
  align-items: center;
}

.mirror-graphic {
  display: flex;
  justify-content: center;
}

.graphic-card {
  width: 100%;
  max-width: 460px;
  background-color: #FFFFFF;
  border: 1px solid #E3E9F2;
  border-radius: 22px;
  padding: 34px 30px 30px;
  box-shadow: 0 14px 36px rgba(22, 43, 68, 0.08);
}

/* estate skyline */
.skyline {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 160px;
  margin-bottom: 28px;
  padding: 0 6px;
}

.house {
  position: relative;
  background-color: #1E3A5C;
  border-radius: 2px 2px 0 0;
}

.house::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 26px solid #1E3A5C;
}

.house-a {
  width: 62px;
  height: 74px;
}

.house-b {
  width: 78px;
  height: 98px;
}

.house-b::before {
  border-left-width: 49px;
  border-right-width: 49px;
}

.house-c {
  width: 50px;
  height: 60px;
}

.house-c::before {
  border-left-width: 33px;
  border-right-width: 33px;
}

.house .win {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
}

.house .door {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 16px;
  background-color: #D9C491;
  border-radius: 2px 2px 0 0;
}

/* brass key */
.key {
  position: relative;
  width: 150px;
  height: 44px;
  margin-bottom: 30px;
}

.key-bow {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 38px;
  height: 38px;
  border: 9px solid #D9C491;
  border-radius: 50%;
}

.key-shaft {
  position: absolute;
  top: 17px;
  left: 38px;
  width: 72px;
  height: 8px;
  background-color: #D9C491;
  border-radius: 0 4px 4px 0;
}

.key-bit {
  position: absolute;
  top: 25px;
  left: 88px;
  width: 14px;
  height: 9px;
  background-color: #D9C491;
  border-radius: 0 0 4px 4px;
}

.key-bit::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -12px;
  width: 10px;
  height: 10px;
  background-color: #D9C491;
}

/* growth chart */
.growth-chart {
  display: block;
  width: 100%;
  height: auto;
}

/* hero copy */
.hero-title {
  font-size: 46px;
  line-height: 1.18;
  color: #1E3A5C;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

.hero-title .accent {
  color: #8A6D2F;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: #3A3A44;
  margin: 0 0 30px;
  max-width: 56ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 38px;
}

.stat-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.stat-item {
  padding: 6px 22px;
  border-left: 2px solid #1E3A5C;
}

.stat-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.stat-value {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #1E3A5C;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6F6C76;
  font-weight: 600;
}

/* ----------------------------------------------------------
   Section heads
   ---------------------------------------------------------- */
.section-head {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 0;
}

.section-title {
  font-size: 34px;
  color: #1E3A5C;
  margin: 0 0 12px;
}

.section-sub {
  color: #6F6C76;
  font-size: 17px;
  max-width: 60ch;
  margin: 0;
}

/* ----------------------------------------------------------
   Magazine collage
   ---------------------------------------------------------- */
.magazine-collage {
  background-color: #F6F3EE;
  padding: 56px 0 40px;
}

.collage-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.tile {
  background-color: #FFFFFF;
  border: 1px solid #E3E9F2;
  border-radius: 16px;
  padding: 32px 30px;
  box-shadow: 0 8px 22px rgba(22, 43, 68, 0.06);
}

.tile-large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tile h3 {
  font-size: 22px;
  color: #1E3A5C;
  margin: 0 0 14px;
}

.tile p {
  margin: 0;
  color: #3A3A44;
  line-height: 1.7;
}

.node-marker {
  width: 14px;
  height: 14px;
  background-color: #D9C491;
  border-radius: 3px;
  margin-bottom: 18px;
}

/* ----------------------------------------------------------
   Metric band
   ---------------------------------------------------------- */
.metric-band {
  background-color: #1E3A5C;
  padding: 58px 0;
}

.metrics-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-item {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid #D9C491;
}

.metric-item:last-child {
  border-right: 0;
}

.metric-value {
  color: #FFFFFF;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
  display: block;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: #C7D2E0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 600;
}

/* ----------------------------------------------------------
   Statement band
   ---------------------------------------------------------- */
.statement-band {
  background-color: #FFFFFF;
  padding: 70px 0;
}

.statement-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 0 36px;
  border-left: 4px solid #D9C491;
}

.statement-kicker {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6F6C76;
  margin-bottom: 18px;
}

.manifesto {
  color: #1E3A5C;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}

.manifesto strong {
  color: #1E3A5C;
}

/* ----------------------------------------------------------
   CTA band
   ---------------------------------------------------------- */
.cta-band {
  background-color: #E3E9F2;
  padding: 70px 0;
}

.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.cta-title {
  font-size: 34px;
  color: #1E3A5C;
  margin: 0 0 14px;
}

.cta-sub {
  color: #3A3A44;
  font-size: 17px;
  max-width: 52ch;
  margin: 0 auto 30px;
}

/* ----------------------------------------------------------
   Secondary page hero
   ---------------------------------------------------------- */
.page-hero {
  background-color: #F6F3EE;
  padding: 64px 0 48px;
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.page-title {
  font-size: 42px;
  color: #1E3A5C;
  margin: 0 0 16px;
  line-height: 1.2;
  max-width: 22ch;
}

.page-intro {
  color: #3A3A44;
  font-size: 18px;
  line-height: 1.7;
  max-width: 62ch;
  margin: 0;
}

/* ----------------------------------------------------------
   Page sections (secondary pages)
   ---------------------------------------------------------- */
.page-section {
  padding: 48px 0;
}

.page-section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.page-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.page-section-head h2 {
  font-size: 30px;
  color: #1E3A5C;
  margin: 0;
}

.page-section-head::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #D9C491;
  border-radius: 3px;
  flex: 0 0 12px;
}

/* service blocks */
.service-block {
  background-color: #FFFFFF;
  border: 1px solid #E3E9F2;
  border-radius: 16px;
  padding: 34px 34px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  box-shadow: 0 8px 22px rgba(22, 43, 68, 0.05);
}

.service-index {
  font-size: 34px;
  font-weight: 800;
  color: #D9C491;
  line-height: 1;
  padding-top: 2px;
}

.service-block h3 {
  font-size: 23px;
  color: #1E3A5C;
  margin: 0 0 12px;
}

.service-block p {
  color: #3A3A44;
  margin: 0 0 12px;
  line-height: 1.7;
}

.service-block p:last-child {
  margin-bottom: 0;
}

/* process overview */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.process-step {
  background-color: #FFFFFF;
  border: 1px solid #E3E9F2;
  border-radius: 14px;
  padding: 26px 24px;
  position: relative;
}

.process-number {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #8A6D2F;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 18px;
  color: #1E3A5C;
  margin: 0 0 10px;
}

.process-step p {
  font-size: 15px;
  color: #3A3A44;
  margin: 0;
}

/* ----------------------------------------------------------
   Contact page
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-panel {
  background-color: #FFFFFF;
  border: 1px solid #E3E9F2;
  border-radius: 16px;
  padding: 34px 32px;
  box-shadow: 0 8px 22px rgba(22, 43, 68, 0.05);
}

.contact-form label {
  display: block;
  font-weight: 700;
  color: #1E3A5C;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-field {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  border: 1px solid #C7D2E0;
  background-color: #F6F3EE;
  color: #2C2A33;
  font-size: 16px;
  border-radius: 10px;
  padding: 13px 14px;
  font-family: inherit;
}

.form-control:focus {
  outline: 2px solid #1E3A5C;
  outline-offset: 0;
  border-color: #1E3A5C;
}

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

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  color: #FFFFFF;
}

.form-status.is-success {
  display: block;
  background-color: #1E3A5C;
}

.form-status.is-info {
  display: block;
  background-color: #6F6C76;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #E3E9F2;
}

.contact-detail:first-of-type {
  padding-top: 4px;
}

.contact-detail:last-of-type {
  border-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background-color: #E3E9F2;
  color: #1E3A5C;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail h3 {
  font-size: 16px;
  color: #1E3A5C;
  margin: 0 0 4px;
}

.contact-detail p {
  margin: 0;
  color: #3A3A44;
  line-height: 1.6;
}

.contact-detail a {
  color: #1E3A5C;
  font-weight: 600;
}

.business-hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid #E3E9F2;
  color: #3A3A44;
}

.business-hours li:last-child {
  border-bottom: 0;
}

.business-hours strong {
  color: #1E3A5C;
  font-weight: 700;
}

/* FAQ */
.faq {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E3E9F2;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 700;
  color: #1E3A5C;
  font-family: inherit;
}

.faq-indicator {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  border: 2px solid #D9C491;
  color: #1E3A5C;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.faq-answer {
  display: none;
  padding: 0 26px 24px;
  color: #3A3A44;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ----------------------------------------------------------
   Duo-band footer
   ---------------------------------------------------------- */
.duo-band-footer {
  background-color: #1E3A5C;
  color: #FFFFFF;
  margin-top: 56px;
}

.footer-top {
  padding: 50px 0 42px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 44px;
}

.footer-brand-chip {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background-color: #D9C491;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-wordmark {
  display: block;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-blurb {
  color: #C7D2E0;
  line-height: 1.7;
  margin: 0;
  max-width: 40ch;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin: 0 0 16px;
}

.footer-links a {
  display: block;
  color: #FFFFFF;
  padding: 5px 0;
}

.footer-links a:hover {
  color: #D9C491;
  text-decoration: none;
}

.footer-contact p {
  color: #C7D2E0;
  margin: 0 0 8px;
  line-height: 1.7;
}

.footer-contact a {
  color: #FFFFFF;
  font-weight: 600;
}

.footer-contact a:hover {
  color: #D9C491;
}

.footer-bottom {
  background-color: #162B44;
  padding: 20px 0;
}

.footer-bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  color: #C7D2E0;
  font-size: 14px;
}

.footer-bottom-inner a {
  color: #D9C491;
}

.footer-bottom-inner a:hover {
  color: #FFFFFF;
}

/* ----------------------------------------------------------
   Scroll reveal
   ---------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: none;
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 1120px) {
  .site-nav {
    flex-basis: 220px;
    width: 220px;
  }

  .mirror-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .mirror-graphic {
    order: 1;
  }

  .mirror-copy {
    order: 2;
  }

  .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  .page-shell {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 0 40px rgba(22, 43, 68, 0.35);
  }

  body.nav-open .site-nav {
    transform: none;
  }

  .mobile-bar {
    display: flex;
  }

  .metrics-row {
    grid-template-columns: 1fr 1fr;
    gap: 26px 0;
  }

  .metric-item:nth-child(2) {
    border-right: 0;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .mirror-hero {
    padding: 52px 0 48px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

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

  .tile-large {
    grid-row: auto;
  }

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

  .metric-item {
    border-right: 0;
  }

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

  .stat-line {
    flex-direction: column;
  }

  .stat-item {
    border-left: 0;
    border-top: 2px solid #1E3A5C;
    padding: 10px 0;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-title {
    font-size: 32px;
  }

  .section-title,
  .cta-title {
    font-size: 28px;
  }

  .manifesto {
    font-size: 21px;
  }
}
