@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;650&display=swap");

:root {
  color-scheme: light;
  --color-navy: #13233a;
  --color-offwhite: #f7f4ef;
  --color-charcoal: #2b2b2b;
  --color-brick: #d9822b;
  --color-sand: #e8ded1;
  --color-slate: #6f7478;
  --color-green-grey: #6f7f72;
  --bg: var(--color-offwhite);
  --text: var(--color-charcoal);
  --heading: var(--color-navy);
  --muted: var(--color-slate);
  --line: var(--color-sand);
  --line-strong: color-mix(in srgb, var(--color-brick) 60%, var(--color-sand));
  --card: #ffffff;
  --soft-card: #f1ece4;
  --shadow: 0 12px 30px rgba(19, 35, 58, 0.06);
  --radius: 3px;
  --max-width: 1236px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.32)),
    var(--bg);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 34px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 14px;
  z-index: 10;
  min-height: 76px;
  margin-bottom: 30px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 244, 239, 0.96);
  box-shadow: 0 8px 22px rgba(19, 35, 58, 0.04);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  font: 600 0.95rem/1 "Inter", Arial, sans-serif;
  letter-spacing: 0.08em;
  background: var(--color-navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--heading);
  font: 600 1rem/1.1 "Inter", Arial, sans-serif;
  letter-spacing: 0.01em;
}

.brand-text small {
  color: var(--muted);
  font: 500 0.82rem/1.1 "Inter", Arial, sans-serif;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font: 500 0.95rem/1.2 "Inter", Arial, sans-serif;
}

.site-nav a {
  color: var(--heading);
  opacity: 0.78;
  padding: 8px 0 7px;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition:
    opacity 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.site-nav a.is-current {
  opacity: 1;
  color: var(--heading);
  font-weight: 600;
  border-bottom-color: var(--color-brick);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: var(--color-brick);
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 2px;
  font: 600 0.82rem/1 "Inter", Arial, sans-serif;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.lang-btn.is-active {
  color: var(--heading);
  background: color-mix(in srgb, var(--color-navy) 8%, white);
}

.site-main {
  display: grid;
  gap: 28px;
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 24px;
  align-items: start;
  padding: 10px 0 22px;
}

.hero-copy,
.page-hero-copy,
.page-hero-panel,
.section-card,
.project-card,
.contact-card,
.callout,
.criteria-card,
.contact-card-header,
.contact-form,
.contact-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.hero-copy,
.page-hero-copy {
  padding: 34px 32px 30px;
  border-left: 3px solid var(--color-navy);
  box-shadow: var(--shadow);
}

.page-hero-panel {
  padding: 20px;
  box-shadow: var(--shadow);
}

.about-hero-panel {
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  align-content: start;
  min-height: auto;
}

.hero-visual {
  position: relative;
  min-height: auto;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft-card);
  box-shadow: var(--shadow);
}

.hero-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
}

.hero-visual-copy {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: 260px;
  padding: 12px 14px;
  background: rgba(247, 244, 239, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.hero-visual-copy span {
  color: var(--color-brick);
  font: 600 0.78rem/1 "Inter", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual-copy strong {
  color: var(--heading);
  font: 600 1.02rem/1.3 "Inter", Arial, sans-serif;
}

.hero-visual-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.eyebrow,
.section-kicker,
.panel-label,
.project-chip {
  margin: 0 0 14px;
  color: var(--color-brick);
  font: 600 0.8rem/1.2 "Inter", Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0 0 14px;
  color: var(--heading);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 760px;
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.08;
}

.hero h1 {
  max-width: 660px;
  font-size: 44px;
  line-height: 1.06;
}

h2 {
  max-width: 720px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
  font-weight: 650;
  letter-spacing: -0.025em;
}

h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font: 650 20px/1.3 "Inter", Arial, sans-serif;
}

p {
  margin-top: 0;
}

.lead,
.section-card p,
.section-heading p,
.contact-copy p,
.project-card p,
.contact-note {
  color: var(--text);
  font: 400 15px/1.65 "Inter", Arial, sans-serif;
  max-width: 650px;
}

.lead {
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: 600 0.95rem/1 "Inter", Arial, sans-serif;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-brick);
}

.button-secondary {
  color: var(--color-navy);
  background: transparent;
  border-color: var(--color-navy);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #fff;
  background: var(--color-navy);
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font: 500 16px/1.5 "Inter", Arial, sans-serif;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-points li::before,
.simple-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-brick);
  flex: none;
  margin-top: 0.55em;
}

.section-card,
.project-card {
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: none;
}

.section-card-with-image {
  overflow: hidden;
}

.section-card-banner {
  width: calc(100% + 64px);
  max-width: none;
  aspect-ratio: 16 / 6;
  height: auto;
  object-fit: cover;
  object-position: center 44%;
  margin: -32px -32px 26px;
  border-bottom: 1px solid var(--line);
}

.section-card-banner-slim {
  aspect-ratio: auto;
  height: 165px;
}

.section-card-banner-compact {
  aspect-ratio: auto;
  height: 240px;
  object-position: center;
}

.section-card:hover,
.project-card:hover,
.contact-link:hover {
  border-color: var(--color-brick);
}

.section-card,
.project-card,
.contact-card,
.callout,
.criteria-card,
.contact-card-header,
.contact-form,
.contact-details {
  background: var(--card);
}

.section-card p a {
  color: var(--heading);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--color-brick) 55%, transparent);
  text-underline-offset: 3px;
}

.section-card p a:hover,
.section-card p a:focus-visible {
  color: var(--color-brick);
}

.content-grid,
.project-grid {
  display: grid;
  gap: 22px;
}

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

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

.section-wide {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-card);
}

.audience-cta {
  margin-top: 28px;
  padding: 0 0 18px;
}

.audience-cta-card {
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.audience-cta-header {
  max-width: 760px;
  margin-bottom: 24px;
}

.audience-cta-header h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

.audience-cta-header p {
  color: var(--text);
  font: 400 16px/1.6 "Inter", Arial, sans-serif;
  max-width: 720px;
}

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

.audience-item {
  padding-top: 16px;
  border-top: 2px solid rgba(200, 117, 42, 0.55);
}

.audience-item h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.audience-item p {
  margin: 0;
  color: #5f666d;
  font: 400 15.5px/1.6 "Inter", Arial, sans-serif;
}

.audience-cta-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.section-heading {
  max-width: 68ch;
  margin-bottom: 22px;
}

.service-list {
  display: grid;
  gap: 18px;
}

.info-block + .info-block {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.criteria-card,
.callout {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
}

.simple-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text);
  font: 400 16px/1.6 "Inter", Arial, sans-serif;
}

.simple-list li {
  display: flex;
  gap: 10px;
}

.project-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
}

.project-card.has-image::before {
  display: none;
}

.project-card-image {
  width: calc(100% + 64px);
  max-width: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  margin: -32px -32px 10px;
  border-bottom: 1px solid var(--line);
}

.project-card-image-detail {
  object-position: 45% 28%;
}

.project-card::before {
  content: "";
  display: block;
  height: 168px;
  margin: -32px -32px 10px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(19, 35, 58, 0.04), rgba(19, 35, 58, 0.01)),
    linear-gradient(135deg, rgba(232, 222, 209, 0.92), rgba(247, 244, 239, 0.9));
}

.project-card:nth-child(1)::before {
  background:
    linear-gradient(180deg, rgba(19, 35, 58, 0.04), rgba(19, 35, 58, 0.01)),
    linear-gradient(135deg, rgba(232, 222, 209, 0.96), rgba(247, 244, 239, 0.9)),
    radial-gradient(circle at 25% 32%, rgba(19, 35, 58, 0.14), transparent 14%);
}

.project-card:nth-child(2)::before {
  background:
    linear-gradient(180deg, rgba(19, 35, 58, 0.04), rgba(19, 35, 58, 0.01)),
    linear-gradient(135deg, rgba(244, 237, 226, 0.92), rgba(232, 222, 209, 0.85)),
    radial-gradient(circle at 70% 38%, rgba(154, 79, 53, 0.18), transparent 14%);
}

.project-card:nth-child(3)::before {
  background:
    linear-gradient(180deg, rgba(19, 35, 58, 0.04), rgba(19, 35, 58, 0.01)),
    linear-gradient(135deg, rgba(232, 239, 233, 0.88), rgba(247, 244, 239, 0.9)),
    radial-gradient(circle at 40% 50%, rgba(111, 127, 114, 0.16), transparent 16%);
}

.project-chip {
  display: inline-block;
  margin-bottom: 2px;
}

.project-meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 400 16px/1.55 "Inter", Arial, sans-serif;
}

.project-meta p,
.project-footer-note {
  margin: 0;
}

.project-meta strong {
  color: var(--heading);
  font-weight: 600;
}

.project-footer-note {
  margin-top: 8px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  color: var(--color-brick);
  font: 600 0.95rem/1.2 "Inter", Arial, sans-serif;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-copy {
  padding: 6px 0 0;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.contact-card-header,
.contact-form,
.contact-details,
.contact-link {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card-header {
  padding: 22px;
  background: var(--card);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: var(--card);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--muted);
  font: 500 0.82rem/1.2 "Inter", Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  font: 400 0.98rem/1.5 "Inter", Arial, sans-serif;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(19, 35, 58, 0.1);
}

.full-width {
  grid-column: 1 / -1;
}

.contact-details {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: transparent;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: #fff;
  transition: border-color 0.2s ease;
}

.contact-link span {
  color: var(--muted);
  font: 500 0.74rem/1.2 "Inter", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-link strong {
  color: var(--heading);
  font: 600 16px/1.3 "Inter", Arial, sans-serif;
}

.contact-note {
  margin: 0;
}

.site-footer {
  margin-top: 28px;
  padding: 44px 0 36px;
  border-top: 1px solid var(--line);
  background: var(--color-offwhite);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand strong {
  color: var(--heading);
  font: 650 1.05rem/1.2 "Inter", Arial, sans-serif;
}

.footer-brand span {
  color: #4f5660;
  font: 500 15px/1.55 "Inter", Arial, sans-serif;
}

.footer-brand p,
.footer-column p {
  margin: 0;
  color: #4f5660;
  font: 400 15px/1.55 "Inter", Arial, sans-serif;
}

.footer-brand p {
  max-width: 28rem;
}

.footer-column {
  display: grid;
  gap: 6px;
  align-content: start;
}

.footer-column h4 {
  margin: 0 0 4px;
  color: var(--heading);
  font: 700 16px/1.2 "Inter", Arial, sans-serif;
}

.footer-nav {
  display: grid;
  gap: 0;
}

.footer-column a {
  display: block;
  color: #4f5660;
  font: 400 15px/1.55 "Inter", Arial, sans-serif;
  margin-bottom: 8px;
  transition:
    color 0.2s ease;
}

.footer-brand p a {
  color: var(--heading);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--color-brick) 55%, transparent);
  text-underline-offset: 3px;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-column a.is-current,
.footer-brand p a:hover,
.footer-brand p a:focus-visible {
  color: var(--color-brick);
}

.hero-panel .stat-card,
.page-hero-panel .stat-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.stat-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font: 500 0.74rem/1.2 "Inter", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-card strong {
  color: var(--heading);
  font: 600 16px/1.35 "Inter", Arial, sans-serif;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .page-hero,
  .content-grid,
  .contact-section,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: var(--radius);
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-copy,
  .page-hero-copy,
  .audience-cta-card,
  .section-wide,
  .section-card,
  .project-card,
  .contact-form,
  .contact-card-header,
  .contact-details {
    padding: 24px;
  }

  .project-card::before {
    margin: -28px -28px 10px;
  }

  .section-card-banner {
    width: calc(100% + 48px);
    margin: -24px -24px 22px;
  }

  .section-card-banner-slim {
    height: 140px;
  }

  .section-card-banner-compact {
    height: 210px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    top: 8px;
    padding: 12px 14px;
  }

  .hero-copy,
  .page-hero-copy,
  .section-wide,
  .section-card,
  .project-card,
  .contact-form,
  .contact-card-header,
  .contact-details {
    padding: 24px;
  }

  .hero-visual {
    min-height: 220px;
  }

  h1 {
    font-size: clamp(34px, 7vw, 46px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
  }

  h2 {
    font-size: clamp(24px, 5.5vw, 32px);
  }

  .audience-cta {
    padding-bottom: 8px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }

  .site-nav {
    gap: 12px 16px;
  }
}
