@charset "utf-8";
:root {
  --navy:#082f63;
  --navy-dark:#052044;
  --yellow:#f8bd2f;
  --orange:#d97835;
  --pink:#ce9298;
  --white:#fff;
  --ink:#0c2340;
  --muted:#677487;
  --line:#d9dde3;
  --max:1620px;
  --shadow:0 20px 60px rgba(5,32,68,.16)
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth
}

body {
  margin:0;
  font-family:Inter,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6
}

img {
  max-width:100%;
  display:block
}

a {
  color:inherit;
  text-decoration:none
}

.container {
  width:min(var(--max),calc(100% - 48px));
  margin:auto
}

.section {
  padding:88px 0
}

.eyebrow {
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--yellow);
  margin:0 0 16px
}

.eyebrow.orange {
  color:var(--orange)
}

.eyebrow.light {
  color:var(--yellow)
}

h1,h2,h3 {
  font-family:"Barlow Condensed",sans-serif;
  text-transform:uppercase;
  line-height:.96;
  margin:0
}

h1 {
  font-size:clamp(4.5rem,8vw,8.6rem);
  letter-spacing:-.035em
}

h2 {
  font-size:clamp(2.6rem,4vw,4.8rem);
  letter-spacing:-.02em
}

h3 {
  font-size:1.35rem
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  border:0;
  cursor:pointer;
  transition:.25s
}

.button-yellow {
  background:var(--yellow);
  color:var(--navy-dark)
}

.button-yellow:hover {
  transform:translateY(-2px);
  filter:brightness(1.04)
}

.button-navy {
  background:var(--navy);
  color:#fff
}

.button-outline {
  border:1px solid rgba(255,255,255,.75);
  color:#fff
}

.text-link {
  font-weight:800;
  text-transform:uppercase;
  font-size:.78rem;
  letter-spacing:.04em
}

.text-link:after {
  content:" →"
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(8,47,99,.08);
  overflow: visible;
  transition:
    background .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,.985);
  box-shadow: 0 8px 28px rgba(5,32,68,.10);
  border-bottom-color: rgba(8,47,99,.05);
}

.nav-wrap {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: visible;
}

.brand {
  position: absolute;
  left: 0;
  top: 5px;
  z-index: 50;
  display: block;
  transform: scale(1);
  transform-origin: top left;
  transition: transform .48s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.brand img {
  display: block;
  width: auto;
  height: 140px;
  max-width: none;
  max-height: none;
}

.site-header.scrolled .brand {
  transform: scale(.90);
}

.main-nav {
  margin-left: auto;
  display: flex;
  gap: 25px;
  align-items: center;
}

.main-nav a {
  font-size: .77rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  display:block;
  width:25px;
  height:2px;
  background:var(--navy);
  margin:5px
}

.hero {
  min-height:980px;
  position:relative;
  display:grid;
  align-items:center;
  overflow:hidden
}

.hero-media {
  position: absolute;
  inset: 0;

  background-image:
    url('/assets/images/hero-default.webp');

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.9) 33%,rgba(255,255,255,.15) 63%,rgba(5,32,68,.08) 100%)
}

.hero-inner {
  position:relative;
  z-index:2
}

.hero-copy {
  width:min(630px,100%)
}

.hero-copy h1 {
  color:var(--navy);
  max-width:620px
}

.hero-copy h1:after {
  content:"";
  display:block;
  width:55px;
  height:4px;
  background:var(--yellow);
  margin:24px 0
}

.hero-lead {
  font-size:1.05rem;
  max-width:560px
}

.hero-actions {
  display:flex;
  gap:16px;
  margin-top:30px
}

.hero .button-outline {
  color:var(--navy);
  border-color:var(--navy)
}

.value-grid {
  display:grid;
  grid-template-columns:1.35fr repeat(4,1fr);
  gap:0
}

.value-intro {
  padding-right:34px
}

.value-intro p {
  color:var(--muted)
}

.value-card {
  padding:10px 28px;
  border-left:1px solid var(--line)
}

.value-card .icon {
  display:block;
  font-size:2.1rem;
  color:var(--navy);
  margin-bottom:20px
}

.value-card p {
  font-size:.89rem;
  color:var(--muted)
}

.stats {
  background:linear-gradient(90deg,var(--navy-dark),var(--navy));
  color:#fff;
  padding:35px 0
}

.stats-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr)
}

.stats-grid div {
  text-align:center;
  padding:8px 24px;
  border-right:1px solid rgba(255,255,255,.25)
}

.stats-grid div:last-child {
  border:0
}

.stats strong {
  display:block;
  font-family:"Barlow Condensed";
  font-size:3rem;
  color:var(--yellow);
  line-height:1
}

.stats span {
  display:block;
  text-transform:uppercase;
  font-size:.68rem;
  margin-top:10px
}

.standard {
  background:#f7f5f1
}

.standard-grid {
  display:grid;
  grid-template-columns:1.12fr repeat(4,1fr);
  gap:5px
}

.standard-intro {
  padding:12px 30px 0 0
}

.standard-intro p {
  color:var(--muted)
}

.standard-card {
  min-height:420px;
  display:flex;
  flex-direction:column
}

.standard-card img {
  height:225px;
  object-fit:cover
}

.standard-card div {
  flex:1;
  padding:22px
}

.standard-card p {
  font-size:.85rem;
  margin-bottom:0
}

.yellow {
  background:var(--yellow)
}

.orange-card {
  background:var(--orange);
  color:#fff
}

.pink {
  background:var(--pink)
}

.navy {
  background:var(--navy);
  color:#fff
}

.process-grid {
  display:grid;
  grid-template-columns:1.3fr repeat(4,1fr);
  gap:34px
}

.process-intro p {
  color:var(--muted)
}

.step {
  position:relative;
  padding-top:4px
}

.step span {
  font-family:"Barlow Condensed";
  font-weight:700;
  font-size:3.3rem;
  color:var(--yellow)
}

.step:nth-of-type(3) span {
  color:var(--orange)
}

.step:nth-of-type(4) span {
  color:var(--pink)
}

.step:nth-of-type(5) span {
  color:#91a4c1
}

.step p {
  font-size:.84rem;
  color:var(--muted)
}

.projects {
  background:var(--navy-dark);
  color:#fff;
  padding:70px 0 0
}

.projects-head {
  display:flex;
  align-items:end;
  justify-content:space-between;
  padding-bottom:30px
}

.project-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr)
}

.project-card {
  position:relative;
  min-height:380px;
  overflow:hidden
}

.project-card img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s
}

.project-card:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(5,32,68,.9),transparent 60%)
}

.project-card div {
  position:absolute;
  z-index:2;
  left:24px;
  bottom:22px
}

.project-card p {
  margin:6px 0 0;
  font-size:.84rem
}

.project-card:hover img {
  transform:scale(1.04)
}

.journal-grid {
  display:grid;
  grid-template-columns:1.2fr repeat(3,1fr);
  gap:22px
}

.journal-intro p {
  color:var(--muted)
}

.journal-card {
  border:1px solid var(--line);
  background:#fff;
  padding-bottom:22px
}

.journal-card img {
  height:230px;
  width:100%;
  object-fit:cover
}

.journal-card span,.journal-card h3,.journal-card a {
  display:block;
  margin-left:18px;
  margin-right:18px
}

.journal-card span {
  margin-top:16px;
  font-size:.72rem;
  color:var(--muted);
  text-transform:uppercase
}

.journal-card h3 {
  margin-top:8px
}

.journal-card a {
  margin-top:12px;
  font-weight:700;
  font-size:.75rem;
  text-transform:uppercase
}

.testimonial {
  background:linear-gradient(90deg,var(--navy-dark),var(--navy));
  color:#fff;
  padding:75px 0
}

.testimonial-inner {
  max-width:960px;
  text-align:center
}

.quote {
  font-size:5rem;
  color:var(--yellow);
  line-height:.4
}

.testimonial blockquote {
  font-family:"Barlow Condensed";
  font-size:clamp(2rem,3vw,3.4rem);
  line-height:1.05;
  margin:22px 0
}

.testimonial p {
  text-transform:uppercase;
  font-size:.75rem;
  color:var(--yellow)
}

.trust {
  padding:45px 0
}

.trust-grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px
}

.trust-grid div {
  padding-left:18px;
  border-left:3px solid var(--yellow)
}


.trust strong,.trust span {
  display:block
}

.trust strong {
  text-transform:uppercase;
  font-size:.75rem
}

.trust span {
  font-size:.78rem;
  color:var(--muted);
  margin-top:7px
}

.contact {
  background:var(--navy);
  color:#fff
}

.contact-grid {
  display:grid;
  grid-template-columns:.9fr 1.5fr;
  gap:80px
}

.contact-copy p {
  color:#dce5f1
}

.contact-form {
  background:#fff;
  color:var(--ink);
  padding:34px;
  box-shadow:var(--shadow)
}

.field-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px
}

.contact-form label {
  display:block;
  font-size:.75rem;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:18px
}

.contact-form input,.contact-form select,.contact-form textarea {
  width:100%;
  margin-top:8px;
  padding:14px;
  border:1px solid var(--line);
  font:inherit;
  background:#fff
}

.site-footer {
  background:#041a37;
  color:#fff;
  padding:62px 0 18px
}

.footer-grid {
  display:grid;
  grid-template-columns:1.5fr repeat(3,1fr);
  gap:55px
}

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

.footer-grid p,.footer-grid a {
  display:block;
  color:#b8c3d2;
  font-size:.82rem;
  margin:8px 0
}

.footer-grid h3 {
  font-size:1rem;
  color:var(--yellow)
}

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.13);
  margin-top:38px;
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  color:#91a1b5;
  font-size:.72rem
}

.whatsapp,.back-to-top {
  position:fixed;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  display:grid;
  place-items:center;
  z-index:50;
  font-weight:800
}

.whatsapp {
  bottom:22px;
  background:#25d366;
  color:#fff
}

.back-to-top {
  bottom:82px;
  border:0;
  background:var(--yellow);
  color:var(--navy);
  opacity:0;
  pointer-events:none;
  transition:.25s
}

.back-to-top.show {
  opacity:1;
  pointer-events:auto
}

.reveal {
  opacity:0;
  transform:translateY(25px);
  transition:.7s ease
}

.reveal.visible {
  opacity:1;
  transform:none
}

@media(max-width:1100px) {
  .nav-cta {
    display:none
  }
  .value-grid,.standard-grid,.process-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .value-intro,.standard-intro,.process-intro {
    grid-column:1/-1;
    margin-bottom:25px
  }
  .project-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .journal-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .journal-intro {
    grid-column:1/-1
  }
  .trust-grid {
    grid-template-columns:repeat(3,1fr)
  }
}

@media(max-width:820px) {
  .container {
    width:min(100% - 30px,var(--max))
  }
  .site-header {
    position:fixed;
    width:100%
  }
  .nav-wrap {
    height:76px
  }
  .brand img {
    height:150px;
    width:auto
  }
  .site-header.scrolled .brand {
    transform:scale(.85)
  }
  .menu-toggle {
    display:block;
    margin-left:auto
  }
  .main-nav {
    position:absolute;
    top:76px;
    left:0;
    right:0;
    background:#fff;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:22px 30px;
    border-top:1px solid var(--line)
  }
  .main-nav.open {
    display:flex
  }
  .hero {
    min-height:760px;
    padding-top:76px
  }
  .hero-overlay {
    background:linear-gradient(90deg,rgba(255,255,255,.95),rgba(255,255,255,.68))
  }
  .hero-copy {
    padding-top:70px
  }
  .hero-actions {
    flex-direction:column;
    align-items:flex-start
  }
  .stats-grid {
    grid-template-columns:repeat(2,1fr);
    gap:25px
  }
  .stats-grid div {
    border:0
  }
  .value-grid,.standard-grid,.process-grid,.journal-grid,.contact-grid,.footer-grid {
    grid-template-columns:1fr
  }
  .value-card {
    border-left:0;
    border-top:1px solid var(--line);
    padding:26px 0
  }
  .standard-intro,.process-intro,.journal-intro {
    grid-column:auto
  }
  .standard-card {
    min-height:auto
  }
  .project-grid {
    grid-template-columns:1fr
  }
  .projects-head {
    align-items:flex-start;
    gap:24px;
    flex-direction:column
  }
  .trust-grid {
    grid-template-columns:1fr 1fr
  }
  .field-row {
    grid-template-columns:1fr
  }
  .footer-bottom {
    flex-direction:column;
    gap:10px
  }
  .section {
    padding:68px 0
  }
}

@media(max-width:520px) {
  h1 {
    font-size:4.1rem
  }
  .value-grid,.standard-grid,.process-grid {
    grid-template-columns:1fr
  }
  .stats-grid,.trust-grid {
    grid-template-columns:1fr
  }
  .hero-lead {
    font-size:.95rem
  }
  .contact-form {
    padding:24px
  }
  .project-card {
    min-height:320px
  }
}

/* Refined image-led values layout */
.value-grid {
  display:grid;
  grid-template-columns:minmax(260px,.92fr) minmax(0,3.08fr);
  gap:0;
  align-items:stretch
}

.value-intro {
  padding:4px 42px 0 0;
  position:relative;
  z-index:2
}

.value-intro h2 {
  font-size:clamp(3.4rem,5.2vw,6.1rem);
  max-width:330px
}

.value-intro p {
  max-width:320px
}

.value-cards-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border-left:1px solid var(--line);
  border-top:1px solid transparent
}

.value-card {
  padding:0;
  border:0;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  min-height:330px;
  display:grid;
  grid-template-rows:minmax(150px,1fr) 180px;
  background:#fff;
  overflow:hidden
}

.value-card:nth-child(-n+2) {
  border-top:0
}

.value-copy {
  padding:28px 34px 24px
}

.value-card .icon {
  display:block;
  font-size:2.2rem;
  color:var(--navy);
  margin-bottom:18px;
  line-height:1
}

.value-card h3 {
  font-size:1.45rem
}

.value-card p {
  font-size:.9rem;
  color:var(--muted);
  max-width:330px;
  margin-bottom:0
}

.value-card img {
  width:100%;
  height:180px;
  object-fit:cover;
  transition:transform .45s ease,filter .45s ease
}

.value-card:hover img {
  transform:scale(1.025);
  filter:saturate(1.05)
}

@media(max-width:1100px) {
  .value-grid {
    grid-template-columns:1fr
  }
  .value-intro {
    padding:0 0 34px;
    max-width:700px
  }
  .value-intro h2 {
    max-width:none
  }
  .value-cards-grid {
    border-left:0;
    border-top:1px solid var(--line)
  }
}

@media(max-width:820px) {
  .nav-wrap {
    height:74px
  }
  .main-nav {
    top:74px
  }
  .value-cards-grid {
    grid-template-columns:1fr
  }
  .value-card {
    grid-template-rows:auto 210px;
    border-left:0
  }
  .value-card img {
    height:210px
  }
}


/* =========================================================
   Horizontal scroll story: Samui Modern Standard
   ========================================================= */
.horizontal-standard {
  position: relative;
  background: #f7f5f1;
}

.horizontal-sticky {
  position: sticky;
  top: 86px;
  height: calc(100vh - 86px);
  min-height: 640px;
  overflow: hidden;
}

.horizontal-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.horizontal-panel {
  position: relative;
  flex: 0 0 min(82vw, 1120px);
  height: 100%;
  overflow: hidden;
}

.horizontal-intro {
  flex-basis: min(72vw, 920px);
  display: grid;
  align-items: center;
  padding: 8vw;
  background: #f7f5f1;
}

.horizontal-intro .horizontal-panel-copy {
  max-width: 680px;
}

.horizontal-intro h2 {
  font-size: clamp(4rem, 6vw, 7rem);
  max-width: 760px;
}

.horizontal-intro p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.05rem;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
}

.scroll-cue span {
  font-size: 1.35rem;
  animation: horizontalCue 1.5s ease-in-out infinite;
}

@keyframes horizontalCue {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.horizontal-feature {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
}

.horizontal-image-wrap {
  height: 100%;
  overflow: hidden;
}

.horizontal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.horizontal-feature:hover .horizontal-image-wrap img {
  transform: scale(1.025);
}

.horizontal-feature .horizontal-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 76px);
}

.horizontal-feature h3 {
  max-width: 420px;
  font-size: clamp(2.6rem, 4vw, 5.2rem);
  margin-top: 18px;
}

.horizontal-feature p {
  max-width: 400px;
  margin: 22px 0 0;
}

.horizontal-feature .button {
  align-self: flex-start;
  margin-top: 30px;
}

.panel-number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.horizontal-progress {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(8, 47, 99, .12);
}

.horizontal-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

@media (max-width: 820px), (prefers-reduced-motion: reduce) {
  .horizontal-standard {
    height: auto !important;
  }

  .horizontal-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .horizontal-track {
    display: block;
    width: auto;
    height: auto;
    transform: none !important;
  }

  .horizontal-panel,
  .horizontal-intro {
    width: auto;
    height: auto;
    min-height: 0;
  }

  .horizontal-intro {
    padding: 76px 15px 54px;
  }

  .horizontal-intro h2 {
    font-size: clamp(3.3rem, 15vw, 5.2rem);
  }

  .scroll-cue,
  .horizontal-progress {
    display: none;
  }

  .horizontal-feature {
    display: grid;
    grid-template-columns: 1fr;
  }

  .horizontal-image-wrap {
    height: 58vw;
    min-height: 300px;
    max-height: 520px;
  }

  .horizontal-feature .horizontal-panel-copy {
    min-height: 320px;
    padding: 38px 15px 46px;
    justify-content: center;
  }
}
.whatsapp,
.back-to-top {
  cursor: pointer;
}
.whatsapp svg,
.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
  
}

.breadcrumb {
  background: #f7f5f1;
  border-bottom: 1px solid var(--line);
}

.breadcrumb-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.breadcrumb a {
  color: var(--muted);
  transition: color .2s ease;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: var(--navy);
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
  color: var(--muted);
}

.legal-modal-content h3 {
  margin: 34px 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--navy);
  text-transform: uppercase;
}

.legal-modal-content h3:first-of-type {
  margin-top: 28px;
}

.legal-modal-content a {
  color: var(--navy);
  font-weight: 700;
}

.legal-modal-content a:hover {
  color: var(--orange);
}

.legal-updated {
  margin-top: -12px !important;
  margin-bottom: 30px !important;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
/* =========================================================
   Legal Modal
   ========================================================= */

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .25s ease,
    visibility .25s ease;
}

.legal-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* Backdrop */

.legal-modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(5,32,68,.78);
  backdrop-filter: blur(6px);
}


/* Dialog */

.legal-modal-dialog {
  position: relative;
  z-index: 2;

  width: min(820px, 100%);
  max-height: 85vh;

  overflow-y: auto;

  background: #fff;
  box-shadow: var(--shadow);

  transform: translateY(18px) scale(.98);

  transition:
    transform .25s ease;
}

.legal-modal.open .legal-modal-dialog {
  transform: translateY(0) scale(1);
}


/* Content */

.legal-modal-content {
  padding: 50px;
}

.legal-modal-content h2 {
  color: var(--navy);
  margin-bottom: 26px;
}

.legal-modal-content h3 {
  margin: 34px 0 12px;

  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;

  color: var(--navy);
  text-transform: uppercase;
}

.legal-modal-content h3:first-of-type {
  margin-top: 28px;
}

.legal-modal-content p {
  color: var(--muted);
  margin: 0 0 18px;
}

.legal-modal-content strong {
  color: var(--ink);
}

.legal-modal-content a {
  color: var(--navy);
  font-weight: 700;

  transition: color .2s ease;
}

.legal-modal-content a:hover {
  color: var(--orange);
}


/* Last updated */

.legal-updated {
  margin-top: -12px !important;
  margin-bottom: 30px !important;

  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}


/* Close button */

.legal-modal-close {
  position: sticky;
  top: 16px;
  float: right;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  margin: 16px 16px -58px 0;

  border: 0;
  background: var(--navy);
  color: #fff;

  cursor: pointer;
  z-index: 5;

  transition:
    background .2s ease,
    transform .2s ease;
}

.legal-modal-close:hover {
  background: var(--orange);
  transform: scale(1.04);
}

.legal-modal-close svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}


/* Prevent page scroll while open */

body.modal-open {
  overflow: hidden;
}


/* Scrollbar */

.legal-modal-dialog {
  scrollbar-width: thin;
  scrollbar-color: var(--navy) #eef1f4;
}

.legal-modal-dialog::-webkit-scrollbar {
  width: 8px;
}

.legal-modal-dialog::-webkit-scrollbar-track {
  background: #eef1f4;
}

.legal-modal-dialog::-webkit-scrollbar-thumb {
  background: var(--navy);
}


/* Mobile */

@media(max-width: 620px) {

  .legal-modal {
    padding: 14px;
  }

  .legal-modal-dialog {
    max-height: 90vh;
  }

  .legal-modal-content {
    padding: 44px 24px 30px;
  }

  .legal-modal-content h2 {
    font-size: 2.5rem;
  }

  .legal-modal-content h3 {
    font-size: 1.3rem;
  }

  .legal-modal-close {
    width: 38px;
    height: 38px;

    margin:
      12px
      12px
      -50px
      0;
  }

  .legal-modal-close svg {
    width: 18px;
    height: 18px;
  }
}


/* ==========================================================
   GTRANSLATE WIDGET
========================================================== */

.language-widget {
    --translate-accent: #eee;
    --translate-dark: #111111;
    --translate-light: #ffffff;
    --translate-muted: #f3f3f3;

    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 9998;

    font-family: inherit;

    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

.language-widget.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: none;
}

.language-widget-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 0 18px;

    border: 0;
    border-radius: 999px;

    background: var(--translate-dark);
    color: var(--translate-light);

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);

    font: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.language-widget-toggle:hover {
    transform: translateY(-2px);
    background: var(--translate-accent);
    color: var(--translate-dark);

    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}

.language-widget-icon,
.language-widget-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}

.language-widget-icon {
    font-size: 19px;
}

.language-widget-arrow {
    min-width: 15px;
    font-size: 13px;
}

.language-widget-panel {
    position: absolute;
    left: 0;
    bottom: calc(100% + 12px);

    width: 260px;
    padding: 16px;

    background: var(--translate-light);

    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;

    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.language-widget.is-open .language-widget-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    pointer-events: auto;
}

.language-widget-heading {
    margin-bottom: 10px;

    color: var(--translate-dark);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.language-widget .gtranslate_wrapper {
    width: 100%;
}

.language-widget .gt_selector,
.language-widget select {
    width: 100%;
    min-height: 46px;

    padding: 0 38px 0 13px;

    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 10px;

    background-color: var(--translate-muted);
    color: var(--translate-dark);

    font: inherit;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    outline: none;
}

.language-widget .gt_selector:focus,
.language-widget select:focus {
    border-color: var(--translate-accent);

    box-shadow: 0 0 0 3px #222;
}

/* Prevent Google translation banner layout shifts */

body {
    top: 0 !important;
}
 
.goog-te-banner-frame,
.skiptranslate iframe {
    display: none !important;
}

/* Mobile */

@media (max-width: 575px) {
    .language-widget {
        left: 14px;
        bottom: 14px;
    }

    .language-widget-toggle {
        width: 52px;
        height: 52px;
        min-height: 52px;
        padding: 0;
    }

    .language-widget-label,
    .language-widget-arrow {
        display: none;
    }

    .language-widget-panel {
        width: min(260px, calc(100vw - 28px));
    }
}

/* =========================================================
   404
   ========================================================= */

.error-page {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  background: #f7f5f1;
}

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

.error-copy {
  max-width: 650px;
}

.error-copy h1 {
  color: var(--navy);
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.error-copy h1:after {
  content: "";
  display: block;
  width: 55px;
  height: 4px;
  background: var(--yellow);
  margin: 28px 0;
}

.error-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.05rem;
}

.error-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}


/* 404 visual */

.error-visual {
  position: relative;
  text-align: right;
  padding-right: 30px;
}

.error-number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(10rem, 20vw, 22rem);
  font-weight: 700;
  line-height: .72;
  letter-spacing: -.06em;
  color: var(--navy);
  opacity: .08;
  user-select: none;
}

.error-visual p {
  margin: -10px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--navy);
}


/* Mobile */

@media(max-width: 820px) {

  .error-page {
    min-height: 100vh;
    padding-top: 120px;
  }

  .error-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .error-visual {
    text-align: left;
    padding-right: 0;
  }

  .error-number {
    font-size: clamp(9rem, 45vw, 15rem);
  }

  .error-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}


/* =========================================================
   About Page
   ========================================================= */

.about-intro {
  padding: 110px 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.about-intro-copy {
  max-width: 620px;
}

.about-intro-copy h2 {
  color: var(--navy);
  font-size: clamp(3.8rem, 5.8vw, 6.6rem);
}

.about-intro-copy p {
  color: var(--muted);
}

.about-intro-copy .about-lead {
  margin-top: 30px;
  font-size: 1.15rem;
  color: var(--ink);
}

.about-intro-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.about-intro-image:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 8px;
  height: 120px;
  background: var(--yellow);
}

.about-intro-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}


/* Stats */

.about-stats {
  background: linear-gradient(
    90deg,
    var(--navy-dark),
    var(--navy)
  );
  color: #fff;
  padding: 38px 0;
}


/* Principles */

.about-principles {
  background: #f7f5f1;
}

.about-section-heading {
  max-width: 800px;
  margin-bottom: 70px;
}

.about-section-heading h2 {
  color: var(--navy);
}

.about-principle {
  display: grid;
  grid-template-columns: 100px 80px 1fr;
  gap: 30px;
  align-items: start;

  padding: 40px 0;

  border-top: 1px solid var(--line);
}

.about-principle:last-child {
  border-bottom: 1px solid var(--line);
}

.about-principle-number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
}

.about-principle-icon {
  color: var(--navy);
}

.about-principle-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.7;
}

.about-principle-copy {
  display: grid;
  grid-template-columns: 300px minmax(0, 620px);
  gap: 50px;
}

.about-principle-copy h3 {
  font-size: 2rem;
  color: var(--navy);
}

.about-principle-copy p {
  margin: 0;
  color: var(--muted);
}


/* Island */

.about-island {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 680px;

  background: var(--navy);
  color: #fff;
}

.about-island-image {
  overflow: hidden;
}

.about-island-image img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.about-island-copy {
  display: flex;
  align-items: center;
  padding: clamp(60px, 7vw, 120px);
}

.about-island-copy > div {
  max-width: 580px;
}

.about-island-copy h2 {
  font-size: clamp(3.5rem, 5vw, 6rem);
}

.about-island-copy p:not(.eyebrow) {
  color: #dce5f1;
}


/* Process */

.about-process {
  padding: 110px 0;
}

.about-process-head {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 100px;
  align-items: end;

  margin-bottom: 70px;
}

.about-process-head h2 {
  color: var(--navy);
}

.about-process-head > div:last-child {
  max-width: 460px;
}

.about-process-head p {
  color: var(--muted);
}


/* Final CTA */

.about-final-cta {
  background: var(--navy-dark);
  color: #fff;
  padding: 85px 0;
}

.about-final-cta-inner {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 100px;
  align-items: center;
}

.about-final-cta h2 {
  font-size: clamp(3.3rem, 5vw, 5.8rem);
}

.about-final-cta-inner > div:last-child {
  max-width: 480px;
}

.about-final-cta p:not(.eyebrow) {
  color: #c7d2e0;
  margin-bottom: 28px;
}


/* =========================================================
   About Responsive
   ========================================================= */

@media(max-width: 1000px) {

  .about-intro-grid,
  .about-island,
  .about-process-head,
  .about-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .about-intro-grid,
  .about-process-head,
  .about-final-cta-inner {
    gap: 50px;
  }

  .about-intro-image,
  .about-intro-image img {
    min-height: 480px;
    height: 480px;
  }

  .about-island-image img {
    min-height: 500px;
  }

  .about-principle-copy {
    grid-template-columns: 1fr;
    gap: 10px;
  }

}


@media(max-width: 700px) {

  .about-intro {
    padding: 75px 0;
  }

  .about-principle {
    grid-template-columns: 45px 50px 1fr;
    gap: 12px;
  }

  .about-principle-copy h3 {
    font-size: 1.6rem;
  }

  .about-island-copy {
    padding: 65px 24px;
  }

  .about-process {
    padding: 75px 0;
  }

  .about-final-cta {
    padding: 65px 0;
  }

}

/* =========================================================
   Services Page
   ========================================================= */

.services-intro {
  padding: 110px 0;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.services-intro-copy h2 {
  color: var(--navy);
  font-size: clamp(4rem, 6vw, 7rem);
}

.services-intro-text {
  max-width: 700px;
  padding-top: 8px;
}

.services-intro-text p {
  color: var(--muted);
}

.services-intro-text .services-lead {
  margin-top: 0;
  font-size: 1.25rem;
  color: var(--ink);
}


/* =========================================================
   Main service blocks
   ========================================================= */

.service-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 720px;
  background: #f7f5f1;
}

.service-feature-reverse {
  grid-template-columns: .85fr 1.15fr;
}

.service-feature-reverse .service-feature-image {
  order: 2;
}

.service-feature-reverse .service-feature-copy {
  order: 1;
  background: #fff;
}

.service-feature-image {
  overflow: hidden;
}

.service-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  transition: transform .8s ease;
}

.service-feature:hover .service-feature-image img {
  transform: scale(1.02);
}

.service-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: clamp(60px, 7vw, 120px);
}

.service-number {
  display: block;
  margin-bottom: 25px;

  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;

  color: var(--orange);
}

.service-feature-copy h2 {
  color: var(--navy);
  font-size: clamp(3.7rem, 5vw, 6rem);
  margin-bottom: 30px;
}

.service-feature-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
}

.service-points {
  list-style: none;
  margin: 28px 0 35px;
  padding: 0;
}

.service-points li {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 10px 0;

  border-bottom: 1px solid var(--line);

  font-size: .9rem;
  font-weight: 600;
}

.service-points svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;

  color: var(--orange);
}


/* =========================================================
   Capabilities
   ========================================================= */

.service-capabilities {
  background: linear-gradient(
    90deg,
    var(--navy-dark),
    var(--navy)
  );

  color: #fff;
  padding: 110px 0;
}

.service-capabilities-head {
  display: grid;
  grid-template-columns: .8fr 1fr .8fr;
  gap: 60px;
  align-items: end;

  margin-bottom: 70px;
}

.service-capabilities-head h2 {
  font-size: clamp(3.5rem, 5vw, 6rem);
}

.service-capabilities-head p:last-child {
  color: #cbd6e4;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);

  border-top: 1px solid rgba(255,255,255,.18);
  border-left: 1px solid rgba(255,255,255,.18);
}

.capability {
  min-height: 260px;

  padding: 42px;

  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.capability svg {
  width: 30px;
  height: 30px;

  margin-bottom: 30px;

  color: var(--yellow);
  stroke-width: 1.7;
}

.capability h3 {
  font-size: 1.6rem;
  color: #fff;
}

.capability p {
  color: #bfcddd;
  max-width: 340px;
}


/* =========================================================
   Standard
   ========================================================= */

.service-standard {
  padding: 120px 0;
}

.service-standard-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 120px;
}

.service-standard h2 {
  color: var(--navy);
  font-size: clamp(4rem, 6vw, 7rem);
}

.service-standard-grid > div:last-child {
  max-width: 620px;
}

.service-standard-grid p {
  color: var(--muted);
}

.service-standard-grid .service-standard-lead {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--ink);
}


/* =========================================================
   CTA
   ========================================================= */

.services-cta {
  padding: 90px 0;
  background: var(--navy-dark);
  color: #fff;
}

.services-cta-inner {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 100px;
  align-items: center;
}

.services-cta h2 {
  font-size: clamp(3.6rem, 5vw, 6rem);
}

.services-cta-inner > div:last-child {
  max-width: 500px;
}

.services-cta p:not(.eyebrow) {
  color: #c7d2e0;
  margin-bottom: 30px;
}


/* =========================================================
   Responsive
   ========================================================= */

@media(max-width: 1000px) {

  .services-intro-grid,
  .service-standard-grid,
  .services-cta-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-feature,
  .service-feature-reverse {
    grid-template-columns: 1fr;
  }

  .service-feature-reverse .service-feature-image,
  .service-feature-reverse .service-feature-copy {
    order: initial;
  }

  .service-feature-image img {
    min-height: 500px;
    height: 500px;
  }

  .service-capabilities-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2,1fr);
  }

}


@media(max-width: 700px) {

  .services-intro {
    padding: 75px 0;
  }

  .service-feature-image img {
    min-height: 360px;
    height: 360px;
  }

  .service-feature-copy {
    padding: 65px 24px;
  }

  .service-capabilities {
    padding: 75px 0;
  }

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

  .capability {
    min-height: auto;
    padding: 34px 26px;
  }

  .service-standard {
    padding: 75px 0;
  }

  .services-cta {
    padding: 70px 0;
  }

}

/* =========================================================
   Projects Page
   ========================================================= */

.projects-intro {
  padding: 110px 0;
}

.projects-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.projects-intro-copy h2 {
  color: var(--navy);
  font-size: clamp(4rem, 6vw, 7rem);
}

.projects-intro-text {
  max-width: 700px;
}

.projects-intro-text p {
  color: var(--muted);
}

.projects-intro-text .projects-lead {
  margin-top: 0;
  font-size: 1.25rem;
  color: var(--ink);
}


/* =========================================================
   Featured Projects
   ========================================================= */

.projects-showcase {
  background: #f7f5f1;
}

.project-feature {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 700px;
}

.project-feature-reverse {
  grid-template-columns: .8fr 1.2fr;
}

.project-feature-reverse .project-feature-image {
  order: 2;
}

.project-feature-reverse .project-feature-copy {
  order: 1;
  background: #fff;
}

.project-feature-image {
  display: block;
  overflow: hidden;
}

.project-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  transition: transform .8s ease;
}

.project-feature:hover .project-feature-image img {
  transform: scale(1.025);
}

.project-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: clamp(60px, 7vw, 120px);
}

.project-number {
  display: block;
  margin-bottom: 25px;

  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;

  color: var(--orange);
}

.project-feature-copy h2 {
  color: var(--navy);
  font-size: clamp(4rem, 6vw, 7rem);
  margin-bottom: 30px;
}

.project-feature-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin: 28px 0;
}

.project-meta span {
  padding: 7px 12px;

  border: 1px solid var(--line);

  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;

  color: var(--navy);
}


/* =========================================================
   Project Grid
   ========================================================= */

.projects-grid-section {
  padding: 110px 0;
}

.projects-grid-head {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 100px;
  align-items: end;

  margin-bottom: 60px;
}

.projects-grid-head h2 {
  color: var(--navy);
}

.projects-grid-head > p {
  max-width: 500px;
  color: var(--muted);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
}

.projects-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.projects-card a {
  display: block;
  width: 100%;
  height: 100%;
}

.projects-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;

  transition: transform .6s ease;
}

.projects-card:hover img {
  transform: scale(1.035);
}

.projects-card:after {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      0deg,
      rgba(5,32,68,.92),
      rgba(5,32,68,.05) 65%
    );
}

.projects-card-overlay {
  position: absolute;
  z-index: 3;
  left: 38px;
  right: 38px;
  bottom: 34px;

  color: #fff;
}

.projects-card-overlay span {
  display: block;

  margin-bottom: 8px;

  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;

  color: var(--yellow);
}

.projects-card-overlay h3 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}


/* =========================================================
   Standard
   ========================================================= */

.projects-standard {
  padding: 100px 0;

  background:
    linear-gradient(
      90deg,
      var(--navy-dark),
      var(--navy)
    );

  color: #fff;
}

.projects-standard-inner {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 120px;
  align-items: center;
}

.projects-standard h2 {
  font-size: clamp(3.7rem, 5vw, 6rem);
}

.projects-standard-inner > div:last-child {
  max-width: 540px;
}

.projects-standard p:not(.eyebrow) {
  color: #c9d5e4;
}


/* =========================================================
   CTA
   ========================================================= */

.projects-cta {
  padding: 90px 0;
  background: #f7f5f1;
}

.projects-cta-inner {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 100px;
  align-items: center;
}

.projects-cta h2 {
  color: var(--navy);
  font-size: clamp(3.7rem, 5vw, 6rem);
}

.projects-cta-inner > div:last-child {
  max-width: 500px;
}

.projects-cta p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 30px;
}


/* =========================================================
   Responsive
   ========================================================= */

@media(max-width: 1000px) {

  .projects-intro-grid,
  .projects-grid-head,
  .projects-standard-inner,
  .projects-cta-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .project-feature,
  .project-feature-reverse {
    grid-template-columns: 1fr;
  }

  .project-feature-reverse .project-feature-image,
  .project-feature-reverse .project-feature-copy {
    order: initial;
  }

  .project-feature-image img {
    min-height: 500px;
    height: 500px;
  }

}


@media(max-width: 700px) {

  .projects-intro,
  .projects-grid-section {
    padding: 75px 0;
  }

  .project-feature-image img {
    min-height: 360px;
    height: 360px;
  }

  .project-feature-copy {
    padding: 65px 24px;
  }

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

  .projects-card,
  .projects-card img {
    min-height: 400px;
    height: 400px;
  }

  .projects-card-overlay {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .projects-standard,
  .projects-cta {
    padding: 70px 0;
  }

}

/* =========================================================
   Process Page
   ========================================================= */

.process-intro {
  padding: 110px 0;
}

.process-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.process-intro-copy h2 {
  color: var(--navy);
  font-size: clamp(4rem, 6vw, 7rem);
}

.process-intro-text {
  max-width: 700px;
}

.process-intro-text p {
  color: var(--muted);
}

.process-intro-text .process-lead {
  margin-top: 0;
  font-size: 1.25rem;
  color: var(--ink);
}


/* =========================================================
   Process stages
   ========================================================= */

.process-steps {
  background: #f7f5f1;
}

.process-stage {
  display: grid;
  grid-template-columns: 120px 1fr 160px;
  gap: 50px;
  align-items: center;

  min-height: 430px;
  padding: 70px max(24px, calc((100vw - var(--max)) / 2));

  border-top: 1px solid var(--line);
}

.process-stage:last-child {
  border-bottom: 1px solid var(--line);
}

.process-stage:nth-child(even) {
  background: #fff;
}

.process-stage-number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;

  color: var(--yellow);
}

.process-stage-copy {
  max-width: 850px;
}

.process-stage-copy h2 {
  color: var(--navy);
  font-size: clamp(3rem, 4.5vw, 5.3rem);
  margin-bottom: 24px;
}

.process-stage-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.process-stage-icon {
  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--navy);
}

.process-stage-icon svg {
  width: 70px;
  height: 70px;
  stroke-width: 1.2;
}


/* =========================================================
   Controls
   ========================================================= */

.process-controls {
  background:
    linear-gradient(
      90deg,
      var(--navy-dark),
      var(--navy)
    );

  color: #fff;
  padding: 110px 0;
}

.process-controls-head {
  display: grid;
  grid-template-columns: .7fr 1fr .8fr;
  gap: 60px;
  align-items: end;

  margin-bottom: 70px;
}

.process-controls-head h2 {
  font-size: clamp(3.5rem, 5vw, 6rem);
}

.process-controls-head > p:last-child {
  color: #c8d4e2;
}

.process-controls-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);

  border-top: 1px solid rgba(255,255,255,.18);
  border-left: 1px solid rgba(255,255,255,.18);
}

.process-control {
  min-height: 280px;
  padding: 40px;

  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.process-control svg {
  width: 32px;
  height: 32px;

  margin-bottom: 32px;

  color: var(--yellow);
  stroke-width: 1.6;
}

.process-control h3 {
  color: #fff;
  font-size: 1.6rem;
}

.process-control p {
  color: #bdcad9;
}


/* =========================================================
   Why process matters
   ========================================================= */

.process-standard {
  padding: 120px 0;
}

.process-standard-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 120px;
}

.process-standard h2 {
  color: var(--navy);
  font-size: clamp(4rem, 6vw, 7rem);
}

.process-standard-grid > div:last-child {
  max-width: 620px;
}

.process-standard-grid p {
  color: var(--muted);
}

.process-standard-grid .process-standard-lead {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--ink);
}


/* =========================================================
   CTA
   ========================================================= */

.process-cta {
  padding: 90px 0;
  background: var(--navy-dark);
  color: #fff;
}

.process-cta-inner {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 100px;
  align-items: center;
}

.process-cta h2 {
  font-size: clamp(3.6rem, 5vw, 6rem);
}

.process-cta-inner > div:last-child {
  max-width: 500px;
}

.process-cta p:not(.eyebrow) {
  color: #c7d2e0;
  margin-bottom: 30px;
}


/* =========================================================
   Responsive
   ========================================================= */

@media(max-width: 1000px) {

  .process-intro-grid,
  .process-standard-grid,
  .process-cta-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .process-stage {
    grid-template-columns: 90px 1fr;
  }

  .process-stage-icon {
    display: none;
  }

  .process-controls-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-controls-grid {
    grid-template-columns: repeat(2,1fr);
  }

}


@media(max-width: 700px) {

  .process-intro {
    padding: 75px 0;
  }

  .process-stage {
    grid-template-columns: 1fr;
    gap: 20px;

    min-height: auto;

    padding:
      60px
      24px;
  }

  .process-stage-number {
    font-size: 2.5rem;
  }

  .process-controls {
    padding: 75px 0;
  }

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

  .process-control {
    min-height: auto;
    padding: 34px 26px;
  }

  .process-standard {
    padding: 75px 0;
  }

  .process-cta {
    padding: 70px 0;
  }

}


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

.faq-intro {
  padding: 110px 0;
}

.faq-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.faq-intro-copy h2 {
  color: var(--navy);
  font-size: clamp(4rem, 6vw, 7rem);
}

.faq-intro-text {
  max-width: 700px;
}

.faq-intro-text p {
  color: var(--muted);
}

.faq-intro-text .faq-lead {
  margin-top: 0;
  font-size: 1.25rem;
  color: var(--ink);
}


/* FAQ List */

.faq-section {
  padding-top: 0;
}

.faq-list {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

.faq-question {
  width: 100%;
  min-height: 100px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 28px 0;

  border: 0;
  background: transparent;

  color: var(--navy);
  cursor: pointer;

  text-align: left;
}

.faq-question span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.faq-question svg {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  stroke-width: 1.7;

  transition: transform .3s ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}


/* Answers */

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;

  opacity: 0;

  transition:
    grid-template-rows .35s ease,
    opacity .3s ease;
}

.faq-answer > div {
  overflow: hidden;
  max-width: 780px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer p {
  color: var(--muted);
}

.faq-answer p:first-child {
  margin-top: 0;
}

.faq-answer > div {
  padding-bottom: 34px;
}

.faq-answer .button {
  margin-top: 10px;
}


/* Hover */

.faq-question:hover {
  color: var(--orange);
}


/* CTA */

.faq-cta {
  padding: 90px 0;
  background: var(--navy-dark);
  color: #fff;
}

.faq-cta-inner {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 100px;
  align-items: center;
}

.faq-cta h2 {
  font-size: clamp(3.6rem, 5vw, 6rem);
}

.faq-cta-inner > div:last-child {
  max-width: 500px;
}

.faq-cta p:not(.eyebrow) {
  color: #c7d2e0;
  margin-bottom: 30px;
}


/* Responsive */

@media(max-width: 1000px) {

  .faq-intro-grid,
  .faq-cta-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

}


@media(max-width: 700px) {

  .faq-intro {
    padding: 75px 0;
  }

  .faq-question {
    min-height: 82px;
    gap: 18px;
  }

  .faq-question span {
    font-size: 1.45rem;
  }

  .faq-question svg {
    width: 22px;
    height: 22px;
  }

  .faq-cta {
    padding: 70px 0;
  }

}

/* =========================================================
   Contact Page
   ========================================================= */

.contact-page {
  padding: 110px 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.contact-page-copy {
  max-width: 620px;
}

.contact-page-copy h2 {
  color: var(--navy);
  font-size: clamp(4rem, 6vw, 7rem);
}

.contact-page-copy > p {
  color: var(--muted);
}

.contact-page-copy .contact-page-lead {
  margin-top: 30px;
  font-size: 1.2rem;
  color: var(--ink);
}


/* Contact details */

.contact-details {
  margin-top: 45px;

  border-top: 1px solid var(--line);
}

.contact-detail {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;

  padding: 22px 0;

  border-bottom: 1px solid var(--line);
}

.contact-detail svg {
  width: 23px;
  height: 23px;
  margin-top: 4px;

  color: var(--orange);
  stroke-width: 1.8;
}

.contact-detail span {
  display: block;

  margin-bottom: 3px;

  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;

  color: var(--muted);
}

.contact-detail strong {
  display: block;
  color: var(--navy);
}

.contact-detail p {
  margin: 2px 0 0;
  color: var(--muted);
}


/* =========================================================
   Form
   ========================================================= */

.contact-page-form-wrap {
  background: var(--navy);
  padding: 14px;
}

.contact-page .contact-form {
  padding: 45px;

  background: #fff;
  box-shadow: none;
}

.contact-form-heading {
  margin-bottom: 30px;
}

.contact-form-heading h3 {
  color: var(--navy);
  font-size: 2.2rem;
}

.contact-page .contact-form label {
  color: var(--navy);
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
  outline: none;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form select:focus,
.contact-page .contact-form textarea:focus {
  border-color: var(--orange);

  box-shadow:
    0 0 0 3px rgba(217,120,53,.10);
}


/* =========================================================
   Preparation
   ========================================================= */

.contact-preparation {
  background: #f7f5f1;
  padding: 110px 0;
}

.contact-preparation-head {
  max-width: 850px;
  margin-bottom: 65px;
}

.contact-preparation-head h2 {
  color: var(--navy);
}

.contact-preparation-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-preparation-item {
  min-height: 320px;

  padding: 38px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-preparation-item > span {
  display: block;

  margin-bottom: 32px;

  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;

  color: var(--orange);
}

.contact-preparation-item svg {
  width: 30px;
  height: 30px;

  margin-bottom: 24px;

  color: var(--navy);
  stroke-width: 1.7;
}

.contact-preparation-item h3 {
  color: var(--navy);
  font-size: 1.55rem;
}

.contact-preparation-item p {
  color: var(--muted);
}


/* =========================================================
   Next Step
   ========================================================= */

.contact-next-step {
  padding: 100px 0;

  background:
    linear-gradient(
      90deg,
      var(--navy-dark),
      var(--navy)
    );

  color: #fff;
}

.contact-next-step-inner {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 100px;
  align-items: center;
}

.contact-next-step h2 {
  font-size: clamp(3.8rem, 5vw, 6rem);
}

.contact-next-step-inner > div:last-child {
  max-width: 520px;
}

.contact-next-step p:not(.eyebrow) {
  color: #c8d4e2;
  margin-bottom: 30px;
}


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

.contact-faq-teaser {
  padding: 100px 0;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 100px;
  align-items: center;
}

.contact-faq-grid h2 {
  color: var(--navy);
}

.contact-faq-grid > div:last-child {
  max-width: 520px;
}

.contact-faq-grid p {
  color: var(--muted);
}


/* =========================================================
   Responsive
   ========================================================= */

@media(max-width: 1000px) {

  .contact-page-grid,
  .contact-next-step-inner,
  .contact-faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-preparation-grid {
    grid-template-columns: repeat(2,1fr);
  }

}


@media(max-width: 700px) {

  .contact-page,
  .contact-preparation,
  .contact-faq-teaser {
    padding: 75px 0;
  }

  .contact-page .contact-form {
    padding: 30px 22px;
  }

  .contact-page-form-wrap {
    padding: 8px;
  }

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

  .contact-preparation-item {
    min-height: auto;
    padding: 32px 24px;
  }

  .contact-next-step {
    padding: 70px 0;
  }

}

.project-card > a {
  display: block;
  width: 100%;
  height: 100%;
}

/* =========================================================
   PROJECT DETAIL PAGE
========================================================= */


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

body.project .hero,
.project-page .hero {
    min-height: 620px;
}

body.project .hero-media,
.project-page .hero-media {
    background-position: center center;
    background-size: cover;
}

body.project .hero-overlay,
.project-page .hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5, 25, 55, 0.78) 0%,
            rgba(5, 25, 55, 0.42) 48%,
            rgba(5, 25, 55, 0.08) 100%
        );
}

body.project .hero-copy,
.project-page .hero-copy {
    max-width: 760px;
}

body.project .hero-copy h1,
.project-page .hero-copy h1 {
    max-width: 900px;
}

body.project .hero-lead,
.project-page .hero-lead {
    max-width: 650px;
}


/* ---------------------------------------------------------
   PROJECT OVERVIEW
--------------------------------------------------------- */

.project-detail-overview {
    padding-top: 110px;
    padding-bottom: 110px;
}

.project-detail-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 100px;
    align-items: start;
}

.project-detail-heading {
    position: sticky;
    top: 130px;
}

.project-detail-heading h2 {
    margin: 12px 0 0;
    max-width: 600px;
}

.project-detail-copy {
    max-width: 720px;
}

.project-detail-copy > p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.85;
    color: #454545;
}

.project-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.project-detail-meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.project-detail-meta-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #777;
}

.project-detail-meta-item strong {
    font-size: 1rem;
    color: #0b2d5b;
}




/* ---------------------------------------------------------
   CONSTRUCTION STANDARD
--------------------------------------------------------- */

.project-detail-standard {
    background: #082e60;
    color: #fff;
    padding: 110px 0;
}

.project-detail-standard-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 100px;
    align-items: start;
}

.project-detail-standard h2 {
    color: #fff;
    margin: 10px 0 0;
    max-width: 700px;
}

.project-detail-standard p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.project-detail-standard .button {
    margin-top: 20px;
}


/* ---------------------------------------------------------
   MORE PROJECTS
--------------------------------------------------------- */

.project-detail-next {
    padding-top: 100px;
    padding-bottom: 110px;
    text-align: center;
}

.project-detail-next h2 {
    margin: 8px 0 30px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .project-detail-overview-grid {
        gap: 55px;
    }

    .project-detail-heading {
        position: static;
    }

    .project-gallery-head {
        gap: 40px;
    }

    .project-detail-standard-inner {
        gap: 60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    body.project .hero,
    .project-page .hero {
        min-height: 520px;
    }

    body.project .hero-overlay,
    .project-page .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 25, 55, 0.22) 0%,
                rgba(5, 25, 55, 0.78) 100%
            );
    }


    /* Overview */

    .project-detail-overview {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .project-detail-overview-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .project-detail-copy > p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .project-detail-meta {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }


    /* Gallery */

    .project-gallery-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .project-gallery-head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }

    .project-gallery {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .project-gallery-item,
    .project-gallery-item:nth-child(7n + 1),
    .project-gallery-item:nth-child(7n + 2),
    .project-gallery-item:nth-child(7n + 3),
    .project-gallery-item:nth-child(7n + 4),
    .project-gallery-item:nth-child(7n + 5),
    .project-gallery-item:nth-child(7n + 6),
    .project-gallery-item:nth-child(7n + 7) {
        grid-column: 1;
        aspect-ratio: 4 / 3;
        min-height: 0;
    }


    /* Standard */

    .project-detail-standard {
        padding: 70px 0;
    }

    .project-detail-standard-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    /* More projects */

    .project-detail-next {
        padding-top: 70px;
        padding-bottom: 75px;
    }

}

/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.breadcrumb {
    min-height: 54px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.breadcrumb a {
    color: #6a6a6a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #ee8b22;
}

.breadcrumb-separator {
    color: #b5b5b5;
}

.breadcrumb-current {
    color: #0b2d5b;
    font-weight: 700;
}


@media (max-width: 767px) {

    .breadcrumb {
        min-height: 48px;
        font-size: 0.72rem;
        gap: 7px;
    }

}

/* =========================================================
   PROJECT DETAIL PAGE
========================================================= */


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

body.project .hero,
.project-page .hero {
    min-height: 620px;
}

body.project .hero-media,
.project-page .hero-media {
    background-position: center center;
    background-size: cover;
}

body.project .hero-overlay,
.project-page .hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5, 25, 55, 0.78) 0%,
            rgba(5, 25, 55, 0.42) 48%,
            rgba(5, 25, 55, 0.08) 100%
        );
}

body.project .hero-copy,
.project-page .hero-copy {
    max-width: 760px;
}

body.project .hero-copy h1,
.project-page .hero-copy h1 {
    max-width: 900px;
}

body.project .hero-lead,
.project-page .hero-lead {
    max-width: 650px;
}


/* ---------------------------------------------------------
   BREADCRUMB
--------------------------------------------------------- */

.breadcrumb {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.breadcrumb-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.breadcrumb-inner a {
    color: #6a6a6a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-inner a:hover {
    color: #ee8b22;
}

.breadcrumb-inner span {
    color: #0b2d5b;
    font-weight: 700;
}

.breadcrumb-inner svg {
    width: 14px;
    height: 14px;
    color: #aaa;
    flex: 0 0 auto;
}


/* ---------------------------------------------------------
   PROJECT OVERVIEW
--------------------------------------------------------- */

.project-detail-overview {
    padding-top: 110px;
    padding-bottom: 110px;
}

.project-detail-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 100px;
    align-items: start;
}

.project-detail-heading {
    position: sticky;
    top: 130px;
}

.project-detail-heading h2 {
    margin: 12px 0 0;
    max-width: 600px;
}

.project-detail-copy {
    max-width: 720px;
}

.project-detail-copy > p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.85;
    color: #454545;
}

.project-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.project-detail-meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.project-detail-meta-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #777;
}

.project-detail-meta-item strong {
    font-size: 1rem;
    color: #0b2d5b;
}


/* ---------------------------------------------------------
   PROJECT GALLERY SECTION
--------------------------------------------------------- */

.project-gallery-section {
    padding-top: 100px;
    padding-bottom: 110px;
    background: #f3f3f1;
}

.project-gallery-section .container {
    width: min(1600px, calc(100% - 48px));
    max-width: 1600px;
}

.project-gallery-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 70px;
    align-items: end;
    margin-bottom: 45px;
}

.project-gallery-head h2 {
    margin: 10px 0 0;
}

.project-gallery-head > p {
    margin: 0 0 6px;
    line-height: 1.7;
    color: #555;
}


/* ---------------------------------------------------------
   MASONRY GALLERY
--------------------------------------------------------- */

.project-gallery {
    column-count: 5;
    column-gap: 8px;
    width: 100%;
}

.project-gallery-item {
    display: block;
    width: 100%;
    margin: 0 0 8px;
    padding: 0;
    break-inside: avoid;
    overflow: hidden;
    background: #111;
}

.project-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: contain;

    transition:
        transform 0.45s ease,
        filter 0.3s ease;
}

.project-gallery-item:hover img {
    transform: scale(1.02);
}


/* ---------------------------------------------------------
   CONSTRUCTION STANDARD
--------------------------------------------------------- */

.project-detail-standard {
    background: #082e60;
    color: #fff;
    padding: 110px 0;
}

.project-detail-standard-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 100px;
    align-items: start;
}

.project-detail-standard h2 {
    color: #fff;
    margin: 10px 0 0;
    max-width: 700px;
}

.project-detail-standard p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.project-detail-standard .button {
    margin-top: 20px;
}


/* ---------------------------------------------------------
   MORE PROJECTS
--------------------------------------------------------- */

.project-detail-next {
    padding-top: 100px;
    padding-bottom: 110px;
    text-align: center;
}

.project-detail-next h2 {
    margin: 8px 0 30px;
}


/* =========================================================
   LARGE TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1300px) {

    .project-gallery {
        column-count: 4;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .project-detail-overview-grid {
        gap: 55px;
    }

    .project-detail-heading {
        position: static;
    }

    .project-gallery-head {
        gap: 40px;
    }

    .project-detail-standard-inner {
        gap: 60px;
    }

}


@media (max-width: 950px) {

    .project-gallery-head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }

    .project-gallery {
        column-count: 3;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    body.project .hero,
    .project-page .hero {
        min-height: 520px;
    }

    body.project .hero-overlay,
    .project-page .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 25, 55, 0.22) 0%,
                rgba(5, 25, 55, 0.78) 100%
            );
    }


    /* Breadcrumb */

    .breadcrumb-inner {
        min-height: 48px;
        font-size: 0.72rem;
        gap: 7px;
    }


    /* Overview */

    .project-detail-overview {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .project-detail-overview-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .project-detail-copy > p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .project-detail-meta {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }


    /* Gallery */

    .project-gallery-section {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .project-gallery-section .container {
        width: calc(100% - 24px);
    }

    .project-gallery-head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .project-gallery {
        column-count: 2;
    }


    /* Standard */

    .project-detail-standard {
        padding: 70px 0;
    }

    .project-detail-standard-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    /* More projects */

    .project-detail-next {
        padding-top: 70px;
        padding-bottom: 75px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .project-gallery {
        column-count: 1;
    }

}

/* =========================================================
   RELATED PROJECTS
========================================================= */

.project-related {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #fff;
}

.project-related-head {
    margin-bottom: 45px;
}

.project-related-head h2 {
    margin: 10px 0 0;
}

.project-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.project-related-card {
    background: #f5f5f3;
}

.project-related-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.project-related-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.project-related-card:hover .project-related-image img {
    transform: scale(1.03);
}

.project-related-content {
    padding: 26px 26px 30px;
}

.project-related-content h3 {
    margin: 8px 0 12px;
}

.project-related-content h3 a {
    color: #0b2d5b;
    text-decoration: none;
}

.project-related-content > p:not(.eyebrow) {
    margin: 0 0 18px;
    line-height: 1.65;
    color: #555;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .project-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 650px) {

    .project-related {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .project-related-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}
/* =========================================================
   BUILD JOURNAL
========================================================= */


/* =========================================================
   JOURNAL LISTING PAGE
========================================================= */


/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.journal-intro {
    padding: 110px 0;
}

.journal-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.journal-intro-copy h2 {
    color: var(--navy);
    font-size: clamp(4rem, 6vw, 7rem);
}

.journal-intro-text {
    max-width: 700px;
}

.journal-intro-text p {
    color: var(--muted);
}

.journal-intro-text .journal-lead {
    margin-top: 0;

    font-size: 1.25rem;

    color: var(--ink);
}


/* ---------------------------------------------------------
   FEATURED JOURNAL POST
--------------------------------------------------------- */

.journal-featured {
    padding-bottom: 110px;
}

.journal-featured-card {
    display: grid;
    grid-template-columns: 1.25fr .75fr;

    min-height: 620px;

    background: #f7f5f1;
}

.journal-featured-image {
    display: block;

    overflow: hidden;
}

.journal-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 620px;

    object-fit: cover;

    transition: transform .7s ease;
}

.journal-featured-card:hover .journal-featured-image img {
    transform: scale(1.025);
}

.journal-featured-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: clamp(50px, 6vw, 90px);
}

.journal-featured-copy h2 {
    margin-bottom: 24px;

    font-size: clamp(3.5rem, 5vw, 5.8rem);

    color: var(--navy);
}

.journal-featured-copy > p:not(.eyebrow) {
    max-width: 520px;

    color: var(--muted);
}


/* ---------------------------------------------------------
   JOURNAL META
--------------------------------------------------------- */

.journal-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 24px;
}

.journal-meta span {
    font-size: .68rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .06em;

    color: var(--muted);
}

.journal-meta span + span:before {
    content: "•";

    margin-right: 14px;

    color: var(--orange);
}


/* ---------------------------------------------------------
   JOURNAL LIST
--------------------------------------------------------- */

.journal-list {
    padding: 110px 0;

    background: #f7f5f1;
}

.journal-list-head {
    display: grid;
    grid-template-columns: 1fr .7fr;

    gap: 100px;

    align-items: end;

    margin-bottom: 60px;
}

.journal-list-head h2 {
    color: var(--navy);
}

.journal-list-head > p {
    max-width: 500px;

    color: var(--muted);
}

.journal-cards {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* ---------------------------------------------------------
   JOURNAL LIST CARD
--------------------------------------------------------- */

.journal-entry {
    display: flex;
    flex-direction: column;

    min-width: 0;

    background: #fff;

    border: 1px solid var(--line);
}

.journal-entry-image {
    display: block;

    overflow: hidden;
}

.journal-entry-image img {
    display: block;

    width: 100%;
    height: 280px;

    object-fit: cover;

    transition: transform .5s ease;
}

.journal-entry:hover .journal-entry-image img {
    transform: scale(1.03);
}

.journal-entry-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 28px;
}

.journal-entry-content h3 {
    margin: 0 0 14px;

    font-size: 1.8rem;

    color: var(--navy);
}

.journal-entry-content h3 a {
    color: inherit;

    text-decoration: none;

    transition: color .2s ease;
}

.journal-entry-content h3 a:hover {
    color: var(--orange);
}

.journal-entry-content p {
    margin: 0 0 22px;

    color: var(--muted);
}

.journal-entry-content .text-link {
    margin-top: auto;
}


/* ---------------------------------------------------------
   PURPOSE
--------------------------------------------------------- */

.journal-purpose {
    padding: 110px 0;

    background:
        linear-gradient(
            90deg,
            var(--navy-dark),
            var(--navy)
        );

    color: #fff;
}

.journal-purpose-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;

    gap: 120px;
}

.journal-purpose h2 {
    font-size: clamp(3.8rem, 5vw, 6rem);
}

.journal-purpose-grid > div:last-child {
    max-width: 620px;
}

.journal-purpose-grid p {
    color: #c7d3e1;
}

.journal-purpose-grid .journal-purpose-lead {
    margin-top: 0;

    font-size: 1.2rem;

    color: #fff;
}


/* ---------------------------------------------------------
   TOPICS
--------------------------------------------------------- */

.journal-topics {
    padding: 110px 0;
}

.journal-topics-head {
    max-width: 760px;

    margin-bottom: 60px;
}

.journal-topics-head h2 {
    color: var(--navy);
}

.journal-topics-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.journal-topic {
    min-height: 260px;

    padding: 40px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.journal-topic svg {
    width: 32px;
    height: 32px;

    margin-bottom: 28px;

    color: var(--orange);

    stroke-width: 1.7;
}

.journal-topic h3 {
    font-size: 1.55rem;

    color: var(--navy);
}

.journal-topic p {
    color: var(--muted);
}


/* ---------------------------------------------------------
   JOURNAL PAGE CTA
--------------------------------------------------------- */

.journal-cta {
    padding: 90px 0;

    background: var(--navy-dark);

    color: #fff;
}

.journal-cta-inner {
    display: grid;
    grid-template-columns: 1fr .7fr;

    gap: 100px;

    align-items: center;
}

.journal-cta h2 {
    font-size: clamp(3.6rem, 5vw, 6rem);
}

.journal-cta-inner > div:last-child {
    max-width: 500px;
}

.journal-cta p:not(.eyebrow) {
    margin-bottom: 30px;

    color: #c7d2e0;
}


/* =========================================================
   HOMEPAGE JOURNAL
========================================================= */

.journal-grid {
    display: grid;

    grid-template-columns:
        1.2fr
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    align-items: stretch;
}


/* ---------------------------------------------------------
   HOMEPAGE INTRO
--------------------------------------------------------- */

.journal-grid > .journal-intro {
    padding: 0 22px 0 0;
}

.journal-grid > .journal-intro p:not(.eyebrow) {
    max-width: 420px;

    color: var(--muted);
}

.journal-grid > .journal-intro .text-link {
    display: inline-block;

    margin-top: 10px;
}


/* ---------------------------------------------------------
   HOMEPAGE JOURNAL CARD
--------------------------------------------------------- */

.journal-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    height: 100%;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--line);
}

.journal-card-image {
    display: block;

    width: 100%;

    aspect-ratio: 4 / 2.65;

    overflow: hidden;
}

.journal-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.journal-card:hover .journal-card-image img {
    transform: scale(1.025);
}

.journal-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 22px 20px 24px;
}

.journal-card-date {
    display: block;

    margin: 0 0 12px;

    font-family: Inter, sans-serif;
    font-size: .7rem;
    font-weight: 500;
    line-height: 1;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--muted);
}

.journal-card h3 {
    margin: 0 0 14px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.08;

    letter-spacing: -.01em;
    text-transform: uppercase;

    color: var(--navy);
}

.journal-card h3 a {
    display: inline;

    margin: 0;

    font: inherit;

    color: inherit;

    text-decoration: none;
    text-transform: inherit;

    transition: color .2s ease;
}

.journal-card h3 a:hover {
    color: var(--orange);
}

.journal-card-content > p {
    margin: 0 0 22px;

    font-family: Inter, sans-serif;
    font-size: .92rem;
    line-height: 1.65;

    color: var(--muted);
}

.journal-card .text-link {
    display: inline-block;

    align-self: flex-start;

    margin: auto 0 0;

    font-size: .74rem;
    font-weight: 800;

    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--ink);
}

.journal-card .text-link:hover {
    color: var(--orange);
}


/* =========================================================
   JOURNAL DETAIL PAGE
========================================================= */


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.journal-post-hero {
    position: relative;

    min-height: 540px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: var(--navy);
}

.journal-post-hero-image {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.journal-post-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5, 25, 55, .84) 0%,
            rgba(5, 25, 55, .62) 38%,
            rgba(5, 25, 55, .25) 68%,
            rgba(5, 25, 55, .06) 100%
        );
}

.journal-post-hero-inner {
    position: relative;

    z-index: 2;

    padding-top: 170px;
    padding-bottom: 65px;
}

.journal-post-hero-copy {
    max-width: 760px;
}

.journal-post-hero-copy .eyebrow {
    margin: 0 0 14px;
}

.journal-post-hero-copy h1 {
    max-width: 760px;

    margin: 0;

    font-size: clamp(3rem, 4.7vw, 5rem);
    line-height: .98;

    letter-spacing: -.02em;

    color: #fff;
}

.journal-post-lead {
    max-width: 620px;

    margin: 24px 0 0;

    font-size: 1rem;
    line-height: 1.7;

    color: rgba(255,255,255,.86);
}

.journal-post-date {
    margin-top: 18px;

    font-size: .72rem;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;

    color: rgba(255,255,255,.65);
}


/* ---------------------------------------------------------
   JOURNAL DETAIL BREADCRUMB
--------------------------------------------------------- */

.breadcrumb--journal {
    background: #fff;

    border-bottom: 1px solid rgba(0,0,0,.07);
}

.breadcrumb--journal .breadcrumb-inner {
    min-height: 56px;

    gap: 7px;
}

.breadcrumb--journal .breadcrumb-inner a {
    color: var(--muted);

    text-decoration: none;

    transition: color .2s ease;
}

.breadcrumb--journal .breadcrumb-inner a:hover {
    color: var(--orange);
}

.breadcrumb--journal .breadcrumb-inner span {
    color: var(--navy);
}

.breadcrumb--journal .breadcrumb-inner svg {
    width: 13px;
    height: 13px;

    flex: 0 0 auto;

    color: #aaa;
}


/* ---------------------------------------------------------
   ARTICLE
--------------------------------------------------------- */

.journal-post-content {
    padding-top: 95px;
    padding-bottom: 105px;

    background: #fff;
}

.journal-post-body {
    max-width: 780px;

    margin: 0 auto;
}


/* ---------------------------------------------------------
   ARTICLE TYPOGRAPHY
--------------------------------------------------------- */

.journal-post-body p {
    margin: 0 0 26px;

    font-size: 1.06rem;
    line-height: 1.85;

    color: #444;
}

.journal-post-body p:first-child {
    font-size: 1.15rem;
    line-height: 1.8;

    color: #26384d;
}

.journal-post-body h2 {
    margin: 58px 0 20px;

    color: var(--navy);
}

.journal-post-body h3 {
    margin: 42px 0 18px;

    color: var(--navy);
}

.journal-post-body h4 {
    margin: 34px 0 15px;

    color: var(--navy);
}

.journal-post-body ul,
.journal-post-body ol {
    margin: 0 0 28px;

    padding-left: 24px;
}

.journal-post-body li {
    margin-bottom: 10px;

    font-size: 1.04rem;
    line-height: 1.75;

    color: #444;
}

.journal-post-body strong {
    color: #1b2e45;
}

.journal-post-body a {
    color: var(--orange);

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.journal-post-body a:hover {
    color: var(--navy);
}


/* ---------------------------------------------------------
   ARTICLE IMAGES
--------------------------------------------------------- */

.journal-post-body img {
    display: block;

    width: calc(100% + 120px);
    max-width: none;
    height: auto;

    margin: 45px -60px;
}


/* ---------------------------------------------------------
   BLOCKQUOTES
--------------------------------------------------------- */

.journal-post-body blockquote {
    margin: 50px 0;

    padding: 26px 30px;

    border-left: 4px solid var(--orange);

    background: #f4f4f1;
}

.journal-post-body blockquote p {
    margin: 0;

    font-size: 1.12rem;
    line-height: 1.7;

    color: #213a59;
}


/* ---------------------------------------------------------
   HORIZONTAL RULE
--------------------------------------------------------- */

.journal-post-body hr {
    margin: 55px 0;

    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}


/* =========================================================
   RELATED JOURNAL POSTS
========================================================= */

.journal-related {
    padding-top: 90px;
    padding-bottom: 95px;

    background: #f3f3f1;
}

.journal-related-head {
    margin-bottom: 40px;
}

.journal-related-head h2 {
    margin: 10px 0 0;
}

.journal-related-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.journal-related-card {
    display: flex;
    flex-direction: column;

    min-width: 0;

    background: #fff;
}

.journal-related-image {
    display: block;

    overflow: hidden;

    aspect-ratio: 4 / 3;
}

.journal-related-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.journal-related-card:hover .journal-related-image img {
    transform: scale(1.03);
}

.journal-related-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 24px 24px 28px;
}

.journal-related-date {
    display: block;

    margin-bottom: 10px;

    font-size: .7rem;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;

    color: #888;
}

.journal-related-content h3 {
    margin: 0 0 12px;
}

.journal-related-content h3 a {
    color: var(--navy);

    text-decoration: none;

    transition: color .2s ease;
}

.journal-related-content h3 a:hover {
    color: var(--orange);
}

.journal-related-content > p {
    margin: 0 0 18px;

    line-height: 1.65;

    color: #555;
}

.journal-related-content .text-link {
    margin-top: auto;
}


/* =========================================================
   JOURNAL DETAIL CTA
========================================================= */

.journal-post-cta {
    padding-top: 85px;
    padding-bottom: 90px;

    text-align: center;

    background: #fff;
}

.journal-post-cta h2 {
    margin: 8px 0 30px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    /* Homepage */

    .journal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journal-grid > .journal-intro {
        grid-column: 1 / -1;

        padding-right: 0;

        margin-bottom: 20px;
    }

}


@media (max-width: 1024px) {

    /* Detail hero */

    .journal-post-hero {
        min-height: 500px;
    }

    .journal-post-hero-inner {
        padding-top: 145px;
        padding-bottom: 55px;
    }

    .journal-post-hero-copy {
        max-width: 700px;
    }

    .journal-post-hero-copy h1 {
        max-width: 700px;

        font-size: clamp(2.8rem, 6vw, 4.5rem);
    }

    /* Article */

    .journal-post-content {
        padding-top: 80px;
        padding-bottom: 85px;
    }

    .journal-post-body img {
        width: calc(100% + 60px);

        margin-left: -30px;
        margin-right: -30px;
    }

    /* Related */

    .journal-related {
        padding-top: 80px;
        padding-bottom: 85px;
    }

}


@media (max-width: 1000px) {

    /* Journal listing */

    .journal-intro-grid,
    .journal-list-head,
    .journal-purpose-grid,
    .journal-cta-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .journal-featured-card {
        grid-template-columns: 1fr;
    }

    .journal-featured-image img {
        min-height: 480px;
        height: 480px;
    }

    .journal-cards,
    .journal-topics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 850px) {

    .journal-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 820px) {

    /* Homepage */

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

    .journal-grid > .journal-intro {
        grid-column: auto;
    }

    .journal-card-image {
        aspect-ratio: 16 / 9;
    }

}


@media (max-width: 767px) {

    /* Detail hero */

    .journal-post-hero {
        min-height: 480px;
    }

    .journal-post-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5,25,55,.12) 0%,
                rgba(5,25,55,.34) 42%,
                rgba(5,25,55,.90) 100%
            );
    }

    .journal-post-hero-inner {
        padding-top: 130px;
        padding-bottom: 42px;
    }

    .journal-post-hero-copy {
        max-width: none;
    }

    .journal-post-hero-copy h1 {
        max-width: 100%;

        font-size: clamp(2.45rem, 11vw, 3.8rem);
        line-height: 1;
    }

    .journal-post-lead {
        max-width: 100%;

        margin-top: 18px;

        font-size: .96rem;
        line-height: 1.65;
    }

    .journal-post-date {
        margin-top: 16px;
    }

    /* Breadcrumb */

    .breadcrumb--journal .breadcrumb-inner {
        min-height: 50px;

        flex-wrap: nowrap;

        gap: 5px;

        overflow: hidden;
    }

    .breadcrumb--journal .breadcrumb-inner span {
        min-width: 0;

        overflow: hidden;

        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .breadcrumb--journal .breadcrumb-inner svg {
        width: 11px;
        height: 11px;
    }

    /* Article */

    .journal-post-content {
        padding-top: 60px;
        padding-bottom: 65px;
    }

    .journal-post-body {
        max-width: none;
    }

    .journal-post-body p {
        font-size: 1rem;
        line-height: 1.78;
    }

    .journal-post-body p:first-child {
        font-size: 1.07rem;
    }

    .journal-post-body h2 {
        margin-top: 44px;
    }

    .journal-post-body h3 {
        margin-top: 34px;
    }

    .journal-post-body img {
        width: 100%;
        max-width: 100%;

        margin: 32px 0;
    }

    .journal-post-body blockquote {
        margin: 38px 0;

        padding: 22px;
    }

    /* Related */

    .journal-related {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .journal-related-head {
        margin-bottom: 30px;
    }

    .journal-related-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    /* Detail CTA */

    .journal-post-cta {
        padding-top: 65px;
        padding-bottom: 70px;
    }

}


@media (max-width: 700px) {

    /* Listing */

    .journal-intro,
    .journal-list,
    .journal-topics {
        padding: 75px 0;
    }

    .journal-featured {
        padding-bottom: 75px;
    }

    .journal-featured-image img {
        min-height: 340px;
        height: 340px;
    }

    .journal-featured-copy {
        padding: 50px 24px;
    }

    .journal-cards,
    .journal-topics-grid {
        grid-template-columns: 1fr;
    }

    .journal-entry-image img {
        height: 240px;
    }

    .journal-purpose,
    .journal-cta {
        padding: 70px 0;
    }

}


@media (max-width: 520px) {

    .journal-card-content {
        padding: 20px 18px 22px;
    }

    .journal-card h3 {
        font-size: 1.3rem;
    }

    .journal-card-content > p {
        font-size: .9rem;
    }

}


@media (max-width: 480px) {

    .journal-post-hero {
        min-height: 450px;
    }

    .journal-post-hero-inner {
        padding-top: 120px;
        padding-bottom: 38px;
    }

    .journal-post-hero-copy h1 {
        font-size: clamp(2.2rem, 10.5vw, 3.1rem);
    }

    .journal-post-lead {
        font-size: .93rem;
    }

}