@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --primary-navy: #0A192F;
  --dark-navy: #050E1A;
  --accent-theme: #0C1C2C;
  --accent-hover: #162B40;
  --slate-neutral: #1E293B;
  --soft-bg: #F8FAFC;
  --white: #FFFFFF;
  --text: #0A192F;
  --muted: #64748B;
  --border: rgba(10, 25, 47, .10);
  --shadow: 0 18px 55px rgba(5, 14, 26, .10);
  --container: 1240px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: 'Jost', sans-serif;
  line-height: 1.6
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease
}

a:hover {
  color: var(--accent-theme)
}

button,
input,
select,
textarea {
  font: inherit
}

button {
  cursor: pointer
}

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

.section {
  padding: 96px 0
}

.section-soft {
  background: var(--soft-bg)
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-theme);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  margin: 12px 0 0
}

.section-copy {
  max-width: 650px;
  color: #64748b;
  margin: 18px 0 0
}

.rule {
  width: 56px;
  height: 1px;
  background: var(--accent-theme);
  margin: 22px 0
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  padding: 13px 24px;
  border-radius: 3px;
  font-weight: 700;
  transition: all .3s ease
}

.btn-primary {
  background: var(--accent-theme);
  color: #fff
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 28, 44, .22)
}

.btn-outline {
  border-color: var(--primary-navy);
  color: var(--primary-navy);
  background: transparent
}

.btn-outline:hover {
  background: var(--primary-navy);
  color: #fff
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(12, 28, 44, .09);
  border: 1px solid rgba(12, 28, 44, .18);
  color: var(--accent-theme);
  font-size: 11px;
  font-weight: 700
}

.img-container {
  overflow: hidden
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease-in-out, filter .5s ease-in-out
}

.img-container img:hover {
  transform: scale(1.08);
  filter: brightness(1.05)
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(12, 28, 44, .20)
}

.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(5, 14, 26, .07)
}

.project-card .project-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--primary-navy)
}

.project-card .project-image {
  aspect-ratio: 16/10
}

.project-card .project-image img {
  transition: transform .55s ease, filter .55s ease
}

.project-card:hover .project-image img {
  transform: scale(1.08);
  filter: brightness(.72)
}

.project-card .status {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  color: var(--primary-navy);
  border: 0;
  box-shadow: 0 4px 14px rgba(5, 14, 26, .14)
}

.project-card .project-body {
  padding: 23px 23px 20px;
  display: flex;
  flex: 1;
  flex-direction: column
}

.project-card .project-body>.badge:not(.status) {
  width: max-content;
  background: rgba(12, 28, 44, .07);
  border: 0;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px
}

.project-card .project-body h3 {
  font: 700 26px 'Playfair Display', serif;
  line-height: 1.18;
  margin: 14px 0 6px
}

.project-card .location {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px
}

.project-card .project-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: #475569
}

.project-card .project-highlights li::before {
  content: "✓";
  color: var(--accent-theme);
  font-weight: 800;
  margin-right: 6px
}

.project-card .project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted)
}

.project-card .project-meta a {
  color: var(--primary-navy);
  font-weight: 700;
  white-space: nowrap
}

.project-card .project-meta a:hover {
  color: var(--accent-hover)
}

/* Modern project cards shared by the Projects and Home pages. */
.project-card {
  border: 0;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(5, 14, 26, .09);
  background: #fff
}

.project-card:hover {
  box-shadow: 0 24px 48px rgba(5, 14, 26, .16)
}

.project-card .project-image img {
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .5s ease
}

.project-card:hover .project-image img {
  transform: scale(1.09);
  filter: brightness(.78)
}

.project-card .status {
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(9px)
}

.project-card .project-body {
  position: relative;
  padding: 25px 25px 22px;
  text-align: left;
}

.project-card .project-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  right: 25px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 25, 47, .18), transparent)
}

.project-card .project-body>.badge:not(.status) {
  background: #edf2f7;
  color: #40536b;
  letter-spacing: .1em
}

.project-card .project-body h3 {
  font-size: 27px;
  margin: 15px 0 7px
}

.project-card .location {
  margin-bottom: 18px
}

.project-card .project-highlights {
  margin-bottom: 24px
}

.project-card .project-highlights li::before {
  color: #2b6e5b
}

.project-card .project-meta {
  padding-top: 15px;
  border-color: #e6edf3
}

.project-card .project-meta a:hover {
  color: #2b6e5b
}

.seo-hero {
  padding: 140px 0 70px;
  background: var(--primary-navy);
  color: #fff
}

.seo-hero p {
  max-width: 850px;
  color: #d8e0e8;
  font-size: 18px
}

.seo-card,
.type-card {
  margin: 25px 0;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(5, 14, 26, .05)
}

.seo-card p,
.type-card p {
  color: var(--muted)
}

.seo-card li {
  margin: 10px 0
}

.faq {
  margin: 10px 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden
}

.faq button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 18px;
  background: #fff;
  border: 0;
  text-align: left;
  font-weight: 700
}

.faq div {
  padding: 0 18px;
  color: var(--muted)
}

.cta {
  margin: 30px 0;
  padding: 30px;
  border-radius: 16px;
  background: var(--primary-navy);
  color: #fff
}

.sister-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.sister-links a {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px
}

.grid {
  display: grid;
  gap: 28px
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: white;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 50px;
}


.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: var(--accent-theme);
  display: grid;
  place-items: center;
  font-weight: 800
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1
}

.brand-sub {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #b8c2ce;
  margin-top: 4px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-links>li {
  position: relative
}

.nav-link {
  color: #0C1C2C;
  font-size: 14px;
  font-weight: 600;
  padding: 28px 0;
  display: block
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-theme)
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0)
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--primary-navy);
  font-size: 13px
}

.dropdown a:hover {
  background: var(--soft-bg);
  color: var(--accent-theme)
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: #0C1C2C;
  font-size: 28px
}

.mobile-nav {
  display: none
}

.site-footer {
  background: var(--dark-navy);
  color: rgba(255, 255, 255, .55);
  padding: 70px 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-title {
  color: #fff;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 17px
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 13px
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px
}

.footer-contact .footer-title {
  margin-bottom: 5px
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .65);
  font-size: 13px
}

.footer-contact a:hover {
  color: #fff
}

.footer-contact span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: #fff;
  font-size: 16px
}

.footer-links a:hover {
  color: #FFFFFF
}

.footer-brand-copy {
  max-width: 370px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .43)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  font-size: 11px;
  flex-wrap: wrap
}

.hero-page {
  min-height: 520px;
  padding-top: 78px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, rgba(5, 14, 26, .88), rgba(10, 25, 47, .58)), url('https://images.unsplash.com/photo-1524227900966-d81dd3e21fa8?w=1800&auto=format&fit=crop') center/cover;
  color: #fff
}

.hero-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 40px);
  line-height: 1.05;
  margin: 14px 0
}

.hero-page p {
  max-width: 650px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px
}

.form-control {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #dbe3ea;
  border-radius: 7px;
  outline: none;
  background: #fff
}

.form-control:focus {
  border-color: var(--accent-theme);
  box-shadow: 0 0 0 3px rgba(12, 28, 44, .08)
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px
}

.form-group {
  display: grid;
  gap: 7px
}
.logo img {
    width: auto;
    height: 55px;
    max-width: 180px;
    object-fit: contain;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(25px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
}

@media(max-width:1000px) {

  .nav-links,
  .nav-actions {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .mobile-nav {
    display: none;
    background: var(--primary-navy);
    padding: 10px 20px 25px
  }

  .mobile-nav.open {
    display: block
  }

  .mobile-nav a {
    display: block;
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
  }

  .mobile-nav .dropdown-mobile {
    padding-left: 15px
  }

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

@media(max-width:720px) {
  .container {
    width: min(var(--container), calc(100% - 28px))
  }

  .section {
    padding: 70px 0
  }

  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column
  }
}
.blog-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
