:root {
  --charcoal: #0d2036;
  --deep: #071321;
  --soft: #142b45;
  --paper: #f7f3ed;
  --stone: #e8e4dd;
  --ink: #0b1b2f;
  --cream: #fffdf8;
  --brand-blue: #35b9ea;
  --brand-blue-dark: #147fa8;
  --brand-red: #ef3f45;
  --brand-red-dark: #bb2832;
  --brass: var(--brand-blue-dark);
  --brass-light: var(--brand-blue);
  --muted-light: #c9c3b9;
  --muted-dark: #626b73;
  --line-light: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(11, 27, 47, 0.16);
  --shadow: 0 28px 70px rgba(7, 19, 33, 0.16);
  --shadow-dark: 0 32px 80px rgba(0, 0, 0, 0.32);
  --radius: 24px;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: min(1200px, calc(100% - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
.wrap { width: var(--wrap); margin-inline: auto; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--brass-light); outline-offset: 4px; }

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--deep);
  color: #aaa49a;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}
.utility-inner {
  display: flex;
  width: var(--wrap);
  min-height: 38px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility-inner span:last-child { display: flex; align-items: center; gap: 13px; }
.utility-inner i { width: 2px; height: 2px; border-radius: 50%; background: var(--brass-light); }
.utility-inner a { color: #e8e2d8; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-light);
  background: rgba(7, 19, 33, 0.93);
  backdrop-filter: blur(18px);
}
.nav-shell {
  display: flex;
  width: var(--wrap);
  min-height: 76px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand { display: inline-flex; min-width: 0; align-items: center; gap: 13px; color: var(--cream); text-decoration: none; }
.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 1px solid rgba(53, 185, 234, 0.55);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}
.brand strong, .brand small { display: block; }
.brand strong {
  overflow: hidden;
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand small {
  margin-top: 2px;
  color: #99938a;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.primary-nav { display: flex; align-items: center; gap: 24px; }
.primary-nav a { position: relative; color: #c8c2b8; font-size: 0.87rem; font-weight: 760; text-decoration: none; }
.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--brass-light);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.primary-nav > a:hover, .primary-nav > a:focus-visible, .primary-nav > a[aria-current="page"] { color: var(--cream); }
.primary-nav > a:hover::after, .primary-nav > a:focus-visible::after, .primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta {
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--brand-red);
  border-radius: 999px;
  color: var(--cream) !important;
  background: var(--brand-red);
}
.nav-cta:hover, .nav-cta:focus-visible { border-color: var(--brand-red-dark); background: var(--brand-red-dark); }
.nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
}
.nav-toggle-label { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.nav-toggle-icon, .nav-toggle-icon::before, .nav-toggle-icon::after {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease;
}
.nav-toggle-icon { position: relative; }
.nav-toggle-icon::before { position: absolute; top: -5px; }
.nav-toggle-icon::after { position: absolute; top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: 830px;
  max-height: 980px;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--deep);
}
.hero.page-hero { min-height: 600px; max-height: 740px; }
.hero-media, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -2; object-fit: cover; filter: saturate(0.82) contrast(1.03); }
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 19, 33, 0.96) 0%, rgba(7, 19, 33, 0.8) 42%, rgba(7, 19, 33, 0.24) 76%, rgba(7, 19, 33, 0.42) 100%),
    linear-gradient(0deg, rgba(7, 19, 33, 0.92) 0%, transparent 50%);
}
.hero-content { padding-top: 150px; padding-bottom: 88px; }
.page-hero .hero-content { padding-top: 120px; padding-bottom: 74px; }
.eyebrow {
  display: flex;
  margin: 0 0 21px;
  align-items: center;
  gap: 12px;
  color: var(--brass-light);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { width: 32px; height: 1px; flex: 0 0 32px; background: currentColor; content: ""; }
.hero h1, .not-found h1 {
  max-width: 930px;
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(4rem, 7.7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.91;
  text-wrap: balance;
}
.page-hero h1 { max-width: 880px; font-size: clamp(3.5rem, 6.5vw, 6.4rem); }
.hero-lead { max-width: 760px; margin: 29px 0 0; color: #d3cec5; font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.button-row, .section-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.button-row { margin-top: 32px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
button.button { cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--brand-red); color: var(--cream); background: var(--brand-red); }
.button-primary:hover { border-color: var(--brand-red-dark); background: var(--brand-red-dark); }
.button-ghost { border-color: rgba(255, 255, 255, 0.52); color: var(--cream); background: rgba(255, 255, 255, 0.04); }
.button-ghost:hover { border-color: var(--cream); background: rgba(255, 255, 255, 0.1); }
.button-dark { border-color: var(--charcoal); color: var(--cream); background: var(--charcoal); }
.button-dark:hover { border-color: #38352f; background: #38352f; }
.text-call, .cta-phone { color: var(--cream); font-size: 0.9rem; font-weight: 780; text-underline-offset: 5px; }

.trust-band { position: relative; z-index: 2; border-block: 1px solid var(--line-light); background: var(--deep); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { position: relative; min-height: 130px; padding: 27px 26px; border-left: 1px solid var(--line-light); }
.trust-grid > div:last-child { border-right: 1px solid var(--line-light); }
.trust-grid span { position: absolute; top: 14px; right: 16px; color: #6f6a62; font-family: var(--display); font-size: 1.1rem; }
.trust-grid strong, .trust-grid small { display: block; }
.trust-grid strong { margin-bottom: 7px; font-family: var(--display); font-size: 1.18rem; font-weight: 500; }
.trust-grid small { color: #969087; font-size: 0.75rem; line-height: 1.5; }

.section { padding: 108px 0; }
.section-paper { color: var(--ink); background: var(--paper); }
.section-stone { color: var(--ink); background: var(--stone); }
.section-charcoal { color: var(--cream); background: var(--charcoal); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 60px;
  margin-bottom: 48px;
  align-items: end;
}
.section-heading h2, .editorial-copy h2, .area-layout h2, .faq-layout h2, .contact-intro h2, .person-card h2, .cta-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-wrap: balance;
}
.section-heading > p { margin: 0 0 2px; color: var(--muted-dark); font-size: 1rem; }
.section-charcoal .section-heading > p, .section-charcoal .editorial-copy > p { color: var(--muted-light); }
.section-paper .eyebrow, .section-stone .eyebrow { color: var(--brand-blue-dark); }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-grid-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 621px) {
  .service-grid-compact > .service-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
.service-card {
  position: relative;
  display: block;
  min-height: 470px;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--cream);
  background: var(--soft);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.service-card.compact { min-height: 390px; }
.service-card img, .service-card-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.service-card img { z-index: -2; object-fit: cover; filter: saturate(0.82); transition: filter 0.45s ease, transform 0.55s ease; }
.service-card-shade { z-index: -1; background: linear-gradient(0deg, rgba(7, 19, 33, 0.97), rgba(7, 19, 33, 0.5) 48%, rgba(7, 19, 33, 0.08) 82%); }
.service-card-body { position: absolute; inset: auto 0 0; padding: 30px; }
.service-card-body small, .service-card-body strong, .service-card-body > span, .service-card-body b { display: block; }
.service-card-body small { margin-bottom: 8px; color: var(--brass-light); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.service-card-body strong { font-family: var(--display); font-size: 2rem; font-weight: 400; letter-spacing: -0.035em; line-height: 1.05; }
.service-card-body > span {
  display: -webkit-box;
  max-width: 95%;
  margin-top: 11px;
  overflow: hidden;
  color: #c8c2b8;
  font-size: 0.82rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.service-card-body b { margin-top: 18px; color: var(--brass-light); font-size: 0.78rem; font-weight: 820; }
.service-card:hover img { filter: saturate(0.98); transform: scale(1.035); }
.section-actions { margin-top: 38px; justify-content: center; }

.editorial-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr); gap: 72px; align-items: center; }
.editorial-grid.reverse .editorial-media { order: 2; }
.editorial-media { position: relative; }
.editorial-media::before { position: absolute; inset: 22px -22px -22px 22px; border: 1px solid rgba(53, 185, 234, 0.28); content: ""; }
.editorial-media img { position: relative; z-index: 1; width: 100%; min-height: 620px; border-radius: 14px; object-fit: cover; box-shadow: var(--shadow-dark); }
.editorial-media > span { position: absolute; right: 22px; bottom: 22px; z-index: 2; padding: 9px 13px; background: rgba(7, 19, 33, 0.82); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(9px); }
.editorial-copy > p { margin: 25px 0 0; color: var(--muted-dark); font-size: 1.03rem; }
.line-list { padding: 0; margin: 36px 0; list-style: none; }
.line-list li { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line-light); }
.line-list li:last-child { border-bottom: 1px solid var(--line-light); }
.line-list strong { font-family: var(--display); font-size: 1.05rem; font-weight: 500; }
.line-list span { color: #a9a39a; font-size: 0.83rem; }
.text-link { color: var(--brass-light); font-size: 0.86rem; font-weight: 820; text-underline-offset: 6px; }
.dark-link { color: var(--brand-blue-dark); }

.project-preview { display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr; grid-template-rows: 310px 310px; gap: 14px; }
.project-tile { position: relative; overflow: hidden; border-radius: 18px; color: var(--cream); background: var(--charcoal); text-decoration: none; }
.project-tile.project-tall { grid-row: 1 / 3; }
.project-tile.project-wide { grid-column: 2 / 4; }
.project-tile img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.86); transition: filter 0.4s ease, transform 0.5s ease; }
.project-tile::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 19, 33, 0.82), transparent 62%); content: ""; }
.project-tile > span { position: absolute; right: 22px; bottom: 20px; left: 22px; z-index: 1; font-family: var(--display); font-size: 1.35rem; line-height: 1.1; }
.project-tile small { display: block; margin-bottom: 7px; color: var(--brass-light); font-family: var(--sans); font-size: 0.65rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.project-tile:hover img { filter: saturate(1); transform: scale(1.025); }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 0; margin: 8px 0 0; list-style: none; }
.process-grid li { min-height: 270px; padding: 26px; border-top: 1px solid var(--line-light); border-right: 1px solid var(--line-light); }
.process-grid li:first-child { border-left: 1px solid var(--line-light); }
.process-grid span, .proof-card > span, .values-grid article > span { display: block; color: var(--brass-light); font-family: var(--display); font-size: 2rem; line-height: 1; }
.process-grid h3 { margin: 82px 0 12px; font-family: var(--display); font-size: 1.45rem; font-weight: 500; }
.process-grid p { margin: 0; color: #a9a39a; font-size: 0.85rem; }
.compact-process { grid-template-columns: repeat(3, 1fr); }

.area-layout { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr); gap: 72px; align-items: center; }
.area-layout > div > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted-dark); }
.area-layout .button { margin-top: 28px; }
.area-pills { display: flex; margin-top: 30px; gap: 8px; flex-wrap: wrap; }
.area-pills span { padding: 9px 13px; border: 1px solid var(--line-dark); border-radius: 999px; color: #5f5a53; background: rgba(255, 255, 255, 0.36); font-size: 0.73rem; font-weight: 760; }
.photo-stack { position: relative; padding: 0 0 34px 34px; }
.photo-stack::before { position: absolute; inset: 34px 34px 0 0; border: 1px solid rgba(53, 185, 234, 0.38); content: ""; }
.photo-stack img { position: relative; width: 100%; min-height: 450px; border-radius: 16px; object-fit: cover; box-shadow: var(--shadow); }
.photo-note { position: absolute; right: 0; bottom: 0; width: min(330px, 82%); padding: 20px 22px; color: var(--cream); background: var(--charcoal); }
.photo-note strong, .photo-note span { display: block; }
.photo-note strong { font-family: var(--display); font-size: 1.15rem; font-weight: 500; }
.photo-note span { margin-top: 5px; color: #a9a39a; font-size: 0.75rem; }

.cta-section { padding: 34px 0; color: var(--cream); background: var(--deep); }
.cta-panel { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 50px; min-height: 360px; padding: 64px 68px; align-items: center; overflow: hidden; border: 1px solid rgba(239, 63, 69, 0.38); border-radius: 36px; background: var(--soft); }
.cta-panel::after { position: absolute; top: -210px; right: -170px; width: 450px; height: 450px; border: 1px solid rgba(53, 185, 234, 0.18); border-radius: 50%; box-shadow: 0 0 0 52px rgba(53, 185, 234, 0.025), 0 0 0 104px rgba(53, 185, 234, 0.018); content: ""; }
.cta-panel h2 { max-width: 750px; }
.cta-panel p:not(.eyebrow) { max-width: 620px; margin: 22px 0 0; color: #b8b2a9; }
.cta-panel > div:last-child { position: relative; z-index: 1; display: grid; gap: 15px; justify-items: center; }

.service-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr); gap: 80px; align-items: start; }
.service-intro h2 { margin: 0; font-family: var(--display); font-size: clamp(2.65rem, 5vw, 4.8rem); font-weight: 400; letter-spacing: -0.05em; line-height: 0.98; }
.service-intro > div > p:not(.eyebrow) { max-width: 700px; margin: 24px 0; color: var(--muted-dark); }
.scope-list { padding: 0; margin: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.scope-list li { position: relative; padding: 15px 10px 15px 31px; border-bottom: 1px solid var(--line-dark); font-size: 0.88rem; font-weight: 750; }
.scope-list li::before { position: absolute; top: 21px; left: 8px; width: 7px; height: 7px; border-top: 1px solid var(--brand-blue-dark); border-right: 1px solid var(--brand-blue-dark); content: ""; transform: rotate(45deg); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.proof-card { min-height: 320px; padding: 34px 30px; border: 1px solid var(--line-light); border-radius: var(--radius); background: rgba(255, 255, 255, 0.025); }
.proof-card h3 { margin: 94px 0 12px; font-family: var(--display); font-size: 1.5rem; font-weight: 500; line-height: 1.15; }
.proof-card p { margin: 0; color: #a9a39a; font-size: 0.85rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.gallery-grid figure { margin: 0; }
.gallery-grid img { width: 100%; height: 350px; border-radius: 18px; object-fit: cover; box-shadow: var(--shadow); }
.gallery-grid figcaption { padding: 12px 3px 0; color: #645f58; font-size: 0.76rem; font-weight: 750; }
.faq-layout { display: grid; grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr); gap: 80px; align-items: start; }
.faq-layout > div:first-child > p:not(.eyebrow) { color: var(--muted-dark); }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { padding: 22px 4px; border-bottom: 1px solid var(--line-dark); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--display); font-size: 1.2rem; font-weight: 500; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; content: "+"; font-family: var(--sans); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 690px; margin: 14px 0 0; color: var(--muted-dark); font-size: 0.9rem; }
.related-grid { grid-template-columns: repeat(3, 1fr); }
.related-grid .service-card { min-height: 360px; }

.case-study {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: 14px;
  padding: 14px;
  margin-top: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
}
.case-study + .case-study { margin-top: 30px; }
.case-study-copy { padding: 34px 28px; }
.case-study-copy h3 { margin: 4px 0 17px; font-family: var(--display); font-size: clamp(2rem, 3.2vw, 3.35rem); font-weight: 500; line-height: 1.04; letter-spacing: -0.04em; }
.case-study-copy > p:not(.eyebrow) { color: var(--muted-dark); }
.case-study-copy ul { padding-left: 19px; color: var(--muted-dark); font-size: 0.84rem; }
.case-study-copy li + li { margin-top: 7px; }
.case-note { padding-top: 16px; border-top: 1px solid var(--line-dark); font-size: 0.78rem; }
.case-study-media { display: grid; gap: 8px; }
.case-study-media figure { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 15px; background: var(--stone); }
.case-study-media img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; transition: transform 0.4s ease; }
.case-study-media figure:hover img { transform: scale(1.02); }
.case-study-media figcaption { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 7px 9px; border-radius: 8px; color: var(--cream); background: rgba(7, 19, 33, 0.8); font-size: 0.63rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; backdrop-filter: blur(8px); }
.case-study-media-five { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.case-study-media-five figure { grid-column: span 2; }
.case-study-media-five figure:nth-child(1), .case-study-media-five figure:nth-child(2) { grid-column: span 3; }
.case-study-media-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.case-study-media-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.case-study-compact { grid-template-columns: minmax(270px, 0.6fr) minmax(0, 1.4fr); }

.story-card-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); grid-auto-rows: 330px; gap: 14px; }
.story-card { position: relative; min-height: 0; overflow: hidden; border-radius: var(--radius); color: var(--cream); background: var(--deep); box-shadow: var(--shadow); isolation: isolate; text-decoration: none; }
.story-card-large { grid-row: span 2; }
.story-card-wide { grid-column: 1 / -1; }
.story-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); transition: filter 0.4s ease, transform 0.55s ease; }
.story-card::after { position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(7, 19, 33, 0.96), rgba(7, 19, 33, 0.08) 76%); content: ""; }
.story-card > span { position: absolute; right: 0; bottom: 0; left: 0; display: grid; padding: 28px; }
.story-card small { color: var(--brand-blue); font-size: 0.65rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.story-card strong { margin-top: 6px; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 3rem); font-weight: 500; line-height: 1; letter-spacing: -0.035em; }
.story-card b { margin-top: 11px; color: #c5cbd1; font-size: 0.72rem; font-weight: 700; }
.story-card:hover img, .story-card:focus-visible img { filter: saturate(1.04); transform: scale(1.025); }

.story-summary .signature-line, .signature-line { margin-top: 30px; color: var(--brand-red) !important; font-family: var(--display); font-size: 1.55rem; font-style: italic; }
.story-mosaic { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; gap: 14px; }
.story-mosaic figure { position: relative; grid-column: span 4; min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--line-light); border-radius: 18px; background: var(--soft); }
.story-mosaic figure.story-feature { grid-column: span 8; }
.story-mosaic figure.story-wide { grid-column: span 6; }
.story-mosaic img { width: 100%; height: 355px; object-fit: cover; transition: transform 0.45s ease; }
.story-mosaic .story-feature img { height: 520px; }
.story-mosaic figure:hover img { transform: scale(1.02); }
.story-mosaic figcaption { position: absolute; right: 11px; bottom: 11px; left: 11px; padding: 8px 10px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 9px; color: var(--cream); background: rgba(7, 19, 33, 0.82); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; backdrop-filter: blur(8px); }
.story-step-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.video-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.video-grid-single { grid-template-columns: minmax(0, 720px); justify-content: center; }
.work-video { margin: 0; padding: 12px; border: 1px solid var(--line-dark); border-radius: 22px; background: rgba(255, 255, 255, 0.48); box-shadow: var(--shadow); }
.work-video video { width: 100%; max-height: 620px; border-radius: 14px; background: var(--deep); object-fit: contain; }
.work-video figcaption { display: grid; padding: 17px 8px 7px; }
.work-video strong { font-family: var(--display); font-size: 1.35rem; font-weight: 500; }
.work-video span { margin-top: 3px; color: var(--muted-dark); font-size: 0.76rem; }

.comparison-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.comparison-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.comparison-card { padding: 12px 12px 26px; border: 1px solid var(--line-dark); border-radius: 22px; background: rgba(255, 255, 255, 0.4); }
.comparison-images { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.comparison-images figure { position: relative; margin: 0; overflow: hidden; }
.comparison-images figure:first-child { border-radius: 13px 0 0 13px; }
.comparison-images figure:last-child { border-radius: 0 13px 13px 0; }
.comparison-images img { width: 100%; height: 270px; object-fit: cover; }
.comparison-images figcaption { position: absolute; bottom: 9px; left: 9px; padding: 5px 8px; color: var(--cream); background: rgba(13, 13, 11, 0.78); font-size: 0.62rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.comparison-card h3 { margin: 22px 12px 7px; font-family: var(--display); font-size: 1.35rem; font-weight: 500; }
.comparison-card > p { margin: 0 12px; color: var(--muted-dark); font-size: 0.83rem; }
.hilltop-bathroom-details { margin-top: 16px; }
.filter-bar { display: flex; margin-bottom: 34px; gap: 8px; flex-wrap: wrap; }
.filter-button { min-height: 44px; padding: 9px 15px; border: 1px solid var(--line-light); border-radius: 999px; color: #c4beb5; background: transparent; font-size: 0.75rem; font-weight: 800; cursor: pointer; }
.filter-button:hover, .filter-button.active { border-color: var(--brass-light); color: var(--deep); background: var(--brass-light); }
.projects-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.project-card { margin: 0; overflow: hidden; border: 1px solid var(--line-light); border-radius: 18px; background: var(--soft); }
.project-card.is-hidden { display: none; }
.project-image { display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: var(--deep); cursor: zoom-in; }
.project-image img { width: 100%; height: 300px; object-fit: cover; filter: saturate(0.86); transition: filter 0.35s ease, transform 0.4s ease; }
.project-image:hover img { filter: saturate(1); transform: scale(1.025); }
.project-card figcaption { display: flex; min-height: 73px; padding: 15px 16px; align-items: center; justify-content: space-between; gap: 12px; }
.project-card figcaption span { font-family: var(--display); font-size: 1rem; line-height: 1.15; }
.project-card figcaption small { color: var(--brass-light); font-size: 0.6rem; font-weight: 850; letter-spacing: 0.08em; text-align: right; text-transform: uppercase; }
.filter-status { margin: 25px 0 0; color: #928c84; font-size: 0.75rem; }
.lightbox { width: min(1100px, calc(100% - 36px)); max-width: none; max-height: calc(100vh - 36px); padding: 14px; overflow: visible; border: 1px solid var(--line-light); border-radius: 18px; color: var(--cream); background: var(--deep); box-shadow: var(--shadow-dark); }
.lightbox::backdrop { background: rgba(5, 5, 4, 0.86); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: calc(100vh - 120px); border-radius: 10px; object-fit: contain; }
.lightbox p { margin: 10px 2px 0; color: #bcb6ad; font-size: 0.8rem; }
.lightbox-close { position: absolute; top: -16px; right: -16px; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; color: var(--deep); background: var(--brass-light); font-size: 1.5rem; cursor: pointer; }

.about-story .editorial-media img { min-height: 520px; }
.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.values-grid article { min-height: 290px; padding: 26px; border-top: 1px solid var(--line-light); border-right: 1px solid var(--line-light); }
.values-grid article:first-child { border-left: 1px solid var(--line-light); }
.values-grid h3 { margin: 78px 0 10px; font-family: var(--display); font-size: 1.35rem; font-weight: 500; }
.values-grid p { margin: 0; color: #a9a39a; font-size: 0.83rem; }
.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.person-card { overflow: hidden; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255, 255, 255, 0.42); }
.person-card img { width: 100%; height: 480px; object-fit: cover; object-position: 50% 35%; }
.person-card > div { padding: 32px; }
.person-card h2 { font-size: clamp(2.4rem, 4vw, 3.8rem); }
.person-card > div > p:last-child { color: var(--muted-dark); }
.assurance-panel { display: grid; padding: 30px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255, 255, 255, 0.4); }
.assurance-panel strong { padding-top: 16px; border-top: 1px solid var(--line-dark); font-family: var(--display); font-size: 1.25rem; font-weight: 500; }
.assurance-panel strong:first-child { padding-top: 0; border-top: 0; }
.assurance-panel span { margin: 4px 0 16px; color: var(--muted-dark); font-size: 0.82rem; }

.contact-layout { display: grid; grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr); gap: 72px; align-items: start; }
.contact-intro > p:not(.eyebrow) { color: var(--muted-dark); }
.contact-direct { padding: 25px; margin-top: 32px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255, 255, 255, 0.4); }
.contact-direct h3 { margin: 0 0 18px; font-family: var(--display); font-size: 1.3rem; font-weight: 500; }
.contact-direct > a, .contact-direct > div { display: block; padding: 15px 0; border-top: 1px solid var(--line-dark); text-decoration: none; }
.contact-direct small, .contact-direct strong { display: block; }
.contact-direct small { color: var(--muted-dark); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-direct strong { margin-top: 4px; overflow-wrap: anywhere; font-size: 0.9rem; }
.quote-form { padding: 34px; border-radius: var(--radius); color: var(--cream); background: var(--charcoal); box-shadow: var(--shadow); }
.form-heading { display: flex; margin-bottom: 28px; padding-bottom: 18px; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line-light); }
.form-heading span { font-family: var(--display); font-size: 1.5rem; }
.form-heading small { color: #9e988f; font-size: 0.68rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label, .quote-form legend { display: block; color: #cec8bf; font-size: 0.76rem; font-weight: 800; }
.quote-form fieldset { padding: 0; margin: 0; border: 0; }
.quote-form fieldset > p { margin: 4px 0 10px; color: #8f8981; font-size: 0.7rem; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; min-height: 49px; padding: 13px 14px; margin: 7px 0 15px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 10px; color: var(--ink); background: var(--cream); }
.quote-form textarea { min-height: 165px; resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--brand-blue); outline: 2px solid rgba(53, 185, 234, 0.35); }
.form-error { min-height: 1.5em; margin: 0 0 10px; color: #f4c6b9; font-size: 0.78rem; font-weight: 750; }
.form-note { margin: 14px 0 0; color: #918b82; font-size: 0.72rem; }

.not-found { position: relative; display: grid; min-height: calc(100svh - 115px); place-items: center; isolation: isolate; overflow: hidden; }
.not-found > img, .not-found-shade { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.not-found-shade { z-index: -1; background: rgba(7, 19, 33, 0.86); }
.not-found-content { width: min(850px, calc(100% - 48px)); padding: 90px 0; text-align: center; }
.not-found-content .eyebrow { justify-content: center; }
.not-found h1 { font-size: clamp(3.4rem, 8vw, 6.8rem); }
.not-found-content > p:not(.eyebrow) { color: #c4beb5; }
.not-found .button-row { justify-content: center; }

.site-footer { padding: 76px 0 28px; border-top: 1px solid var(--line-light); color: #aaa49b; background: var(--deep); }
.footer-grid { display: grid; grid-template-columns: 1.45fr 0.65fr 0.85fr 1fr; gap: 48px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand > p { max-width: 360px; margin: 10px 0 0; font-size: 0.82rem; }
.footer-brand a { color: #ddd7ce; text-underline-offset: 4px; }
.social-links { display: flex; gap: 16px; }
.footer-grid h2 { margin: 0 0 16px; color: var(--cream); font-family: var(--sans); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-grid ul { padding: 0; margin: 0; list-style: none; }
.footer-grid li { margin: 8px 0; }
.footer-grid li a { color: #aaa49b; font-size: 0.8rem; text-decoration: none; }
.footer-grid li a:hover { color: var(--cream); }
.footer-grid > div:last-child p { margin: 0; font-size: 0.8rem; }
.footer-fine { display: flex; margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line-light); align-items: center; justify-content: space-between; gap: 20px; color: #77726b; font-size: 0.7rem; }
.footer-fine a { color: #aaa49b; text-underline-offset: 4px; }
.mobile-actions { display: none; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --wrap: min(100% - 40px, 960px); }
  .primary-nav { gap: 18px; }
  .service-grid, .service-grid-compact { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid, .area-layout, .contact-layout { gap: 44px; }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 420px; }
  .footer-grid { grid-template-columns: 1.3fr 0.7fr 0.9fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .utility-bar { display: none; }
  .nav-shell { min-height: 70px; }
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    padding: 24px max(24px, calc((100% - 720px) / 2));
    border-block: 1px solid var(--line-light);
    background: rgba(7, 19, 33, 0.98);
    box-shadow: var(--shadow-dark);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .primary-nav a { min-height: 44px; padding: 10px 4px; font-size: 1rem; }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 4px; text-align: center; }
  .hero { min-height: 720px; }
  .hero.page-hero { min-height: 560px; }
  .hero-content { padding-bottom: 65px; }
  .hero h1 { font-size: clamp(3.6rem, 11vw, 6rem); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 1px solid var(--line-light); }
  .trust-grid > div:nth-child(n + 3) { border-top: 1px solid var(--line-light); }
  .section { padding: 86px 0; }
  .section-heading, .service-intro, .faq-layout, .editorial-grid, .area-layout, .contact-layout { grid-template-columns: 1fr; }
  .section-heading { gap: 22px; }
  .editorial-grid.reverse .editorial-media { order: 0; }
  .editorial-media img { min-height: 520px; }
  .project-preview { grid-template-columns: 1fr 1fr; grid-template-rows: 380px 280px 280px; }
  .project-tile.project-tall { grid-row: auto; }
  .project-tile.project-wide { grid-column: 1 / 3; }
  .process-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .process-grid li:nth-child(3), .values-grid article:nth-child(3) { border-left: 1px solid var(--line-light); }
  .compact-process { grid-template-columns: repeat(3, 1fr); }
  .compact-process li:nth-child(3) { border-left: 0; }
  .proof-grid, .related-grid, .comparison-grid { grid-template-columns: 1fr; }
  .case-study, .case-study-compact { grid-template-columns: 1fr; }
  .story-step-grid { grid-template-columns: 1fr 1fr; }
  .proof-card { min-height: 250px; }
  .proof-card h3 { margin-top: 58px; }
  .comparison-card { max-width: 680px; }
  .comparison-images img { height: 340px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .people-grid { grid-template-columns: 1fr; }
  .person-card img { height: 570px; }
  .cta-panel { grid-template-columns: 1fr; padding: 50px; }
  .cta-panel > div:last-child { justify-items: start; }
  .footer-grid { grid-template-columns: 1.25fr 0.75fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --wrap: calc(100% - 28px); }
  html { scroll-padding-top: 78px; }
  body { padding-bottom: 70px; }
  .nav-shell { min-height: 66px; }
  .brand { gap: 10px; }
  .brand-logo { width: 42px; height: 42px; flex-basis: 42px; }
  .brand strong { max-width: 220px; font-size: 0.87rem; }
  .brand small, .nav-toggle-label { display: none; }
  .nav-toggle { min-width: 44px; padding: 0 12px; }
  .primary-nav { top: 66px; padding: 20px 18px; }
  .hero, .hero.page-hero { min-height: 650px; max-height: none; }
  .hero.page-hero { min-height: 560px; }
  .hero-shade { background: linear-gradient(0deg, rgba(7, 19, 33, 0.96), rgba(7, 19, 33, 0.66) 52%, rgba(7, 19, 33, 0.24)); }
  .hero-content, .page-hero .hero-content { padding-top: 100px; padding-bottom: 48px; }
  .hero h1, .page-hero h1 { font-size: clamp(3.25rem, 16vw, 5.1rem); letter-spacing: -0.055em; }
  .hero-lead { margin-top: 22px; font-size: 1rem; }
  .button-row { align-items: stretch; }
  .button-row .button { flex: 1 1 100%; }
  .text-call { width: 100%; padding: 6px 0; text-align: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 105px; padding: 23px 21px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .editorial-copy h2, .area-layout h2, .faq-layout h2, .contact-intro h2, .cta-panel h2, .service-intro h2 { font-size: clamp(2.55rem, 12vw, 3.75rem); }
  .service-grid, .service-grid-compact { grid-template-columns: 1fr; }
  .service-card, .service-card.compact { min-height: 410px; }
  .service-card-body { padding: 24px; }
  .editorial-grid, .area-layout, .contact-layout, .service-intro, .faq-layout { gap: 42px; }
  .editorial-media::before { inset: 8px -8px -8px 8px; }
  .editorial-media img, .about-story .editorial-media img { min-height: 420px; }
  .line-list li { grid-template-columns: 1fr; gap: 5px; }
  .project-preview { display: block; }
  .project-tile { display: block; height: 330px; margin-bottom: 12px; }
  .process-grid, .compact-process, .values-grid { grid-template-columns: 1fr; }
  .process-grid li, .values-grid article, .process-grid li:nth-child(3), .values-grid article:nth-child(3) { min-height: 225px; border: 0; border-top: 1px solid var(--line-light); border-inline: 1px solid var(--line-light); }
  .process-grid li:last-child, .values-grid article:last-child { border-bottom: 1px solid var(--line-light); }
  .process-grid h3, .values-grid h3 { margin-top: 48px; }
  .photo-stack { padding: 0 0 22px 18px; }
  .photo-stack img { min-height: 370px; }
  .area-pills span { font-size: 0.68rem; }
  .cta-section { padding: 16px 0; }
  .cta-panel { min-height: 420px; padding: 40px 25px; border-radius: 25px; }
  .cta-panel > div:last-child { align-items: stretch; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .gallery-grid img { height: 250px; border-radius: 12px; }
  .gallery-grid figcaption { font-size: 0.68rem; }
  .comparison-images img { height: 240px; }
  .case-study { padding: 8px; }
  .case-study-copy { padding: 26px 18px; }
  .case-study-media-five, .case-study-media-four, .case-study-media-three { grid-template-columns: 1fr 1fr; }
  .case-study-media-five figure, .case-study-media-five figure:nth-child(1), .case-study-media-five figure:nth-child(2) { grid-column: span 1; }
  .case-study-media-five figure:last-child, .case-study-media-three figure:last-child { grid-column: 1 / -1; }
  .case-study-media img { min-height: 240px; }
  .story-card-grid { grid-template-columns: 1fr; grid-auto-rows: 380px; }
  .story-card-large { grid-row: auto; }
  .story-card-wide { grid-column: auto; }
  .story-card > span { padding: 23px; }
  .story-mosaic figure, .story-mosaic figure.story-feature, .story-mosaic figure.story-wide { grid-column: 1 / -1; }
  .story-mosaic img, .story-mosaic .story-feature img { height: 390px; }
  .story-step-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .filter-bar { margin: 0 -2px 26px; flex-wrap: nowrap; overflow-x: auto; padding: 2px 2px 9px; scrollbar-width: thin; }
  .filter-button { flex: 0 0 auto; }
  .projects-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .project-image img { height: 230px; }
  .project-card figcaption { display: block; min-height: 87px; padding: 12px; }
  .project-card figcaption small { display: block; margin-top: 6px; text-align: left; }
  .person-card img { height: 430px; }
  .person-card > div { padding: 25px; }
  .contact-direct { padding: 21px; }
  .quote-form { padding: 24px 19px; }
  .form-heading { display: block; }
  .form-heading small { display: block; margin-top: 4px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-fine { display: block; }
  .footer-fine a { display: inline-block; margin-top: 8px; }
  .mobile-actions {
    position: fixed;
    right: 9px;
    bottom: 9px;
    left: 9px;
    z-index: 150;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 7px;
    padding: 6px;
    border: 1px solid var(--line-light);
    border-radius: 17px;
    background: rgba(7, 19, 33, 0.95);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
  }
  .mobile-actions a { display: flex; min-height: 48px; align-items: center; justify-content: center; gap: 7px; border-radius: 12px; color: var(--cream); font-size: 0.78rem; font-weight: 850; text-decoration: none; }
  .mobile-actions a:last-child { color: var(--cream); background: var(--brand-red); }
  .lightbox { width: calc(100% - 20px); padding: 8px; }
  .lightbox-close { top: 5px; right: 5px; }
}

@media (max-width: 390px) {
  .brand strong { max-width: 192px; font-size: 0.81rem; }
  .hero h1, .page-hero h1 { font-size: 3.15rem; }
  .gallery-grid, .projects-grid { grid-template-columns: 1fr; }
  .gallery-grid img, .project-image img { height: 300px; }
}

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