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

:root {
  --bg: #ffffff;
  --text: #0b1d41;
  --muted: #5d6975;
  --header-bg: #0b1d41;
  --brand: var(--header-bg);
  --accent: #b48a4a;
  --border: #d8d1c5;
  --shadow: 0 18px 40px rgba(11, 29, 65, 0.08);
  --radius: 18px;
  --container: 1120px;
  --page-gutter: clamp(1rem, 3vw, 2rem);
  --content-frame: calc(var(--container) + (var(--page-gutter) * 2));
  --header-height: 96px;
  --footer-height: 76px;
  --footer-text-size: clamp(0.74rem, 0.85vw, 0.82rem);
  --font-sans: "Inter", Arial, Helvetica, sans-serif;
  --font-serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

body {
  min-height: 100vh;
  margin: 0;
  padding-top: var(--header-height);
  padding-bottom: var(--footer-height);
  overflow-y: scroll;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

main {
  display: block;
}

#top,
section[id] {
  scroll-margin-top: var(--header-height);
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.18;
  font-family: var(--font-serif);
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--content-frame);
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: var(--content-frame);
  margin: 0 auto;
  padding: 0.75rem var(--page-gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(150px, 20vw, 220px);
  height: auto;
}

.site-nav {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.25rem, 2.6vw, 2.25rem);
  font-size: 0.92rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.4rem 0;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-color: var(--accent);
}

.menu-toggle {
  display: none;
  padding: 0.75rem 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(90svh, 820px);
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.58),
    rgba(255, 255, 255, 0.18)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-frame);
  margin: 0 auto;
  padding: clamp(1.5rem, 7dvh, 5rem) var(--page-gutter);
  color: var(--brand);
}

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.15rem, min(5.2vw, 7.8dvh), 4.8rem);
}

.hero-accent {
  color: var(--accent);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: #334452;
  font-size: clamp(1rem, min(1.7vw, 2.5dvh), 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.hero-actions .button {
  padding: 0.72rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-button-primary {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 24px rgba(180, 138, 74, 0.26);
}

.hero-button-primary:hover {
  color: #ffffff;
  background: #c79b57;
}

.hero-button-secondary {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(11, 29, 65, 0.22);
}

.hero-button-secondary:hover {
  background: rgba(255, 255, 255, 0.84);
}

.section {
  padding: clamp(1.75rem, 3vw, 2.75rem) 0;
}

.section-about,
.section-approach,
.section-expertise,
.section-contact {
  min-height: calc(100svh - var(--header-height) - var(--footer-height));
}

.section-contact {
  color: #ffffff;
  background: var(--header-bg);
}

.section-title {
  grid-column: 1 / -1;
  margin-bottom: clamp(0.65rem, 1.4vw, 1rem);
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.15;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.55rem;
  background: var(--accent);
}

.about-page-content,
.approach-content {
  display: grid;
  align-content: start;
  gap: clamp(0.85rem, 1.8svh, 1.25rem);
  text-align: left;
}

.about-page-lead,
.approach-lead,
.expertise-page-lead {
  max-width: 920px;
  margin-inline: 0;
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(0.75rem, 1.8vw, 1.25rem);
  align-items: center;
  min-height: 0;
}

.about-copy {
  display: grid;
  gap: clamp(0.75rem, 1.2vw, 1rem);
  max-width: 720px;
}

.about-copy p,
.about-support p,
.about-support li,
.expertise-page-copy,
.contact-story-copy {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.58;
}

.about-copy p,
.about-support li {
  margin-bottom: 0;
}

.about-support {
  margin-bottom: clamp(0.2rem, 0.6svh, 0.4rem);
  padding: clamp(0.4rem, 0.9svh, 0.65rem) 0 clamp(0.4rem, 0.9svh, 0.65rem)
    clamp(1rem, 1.8vw, 1.35rem);
  border-left: 3px solid var(--accent);
}

.about-support p {
  margin-bottom: 0.3rem;
  color: var(--text);
  font-weight: 700;
}

.about-support ul {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding-left: 1.1rem;
}

.about-support li::marker {
  color: var(--accent);
}

.about-map {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: start;
  justify-content: flex-end;
  margin-top: 0;
}

.about-map img {
  width: 100%;
  max-width: 620px;
  height: auto;
  max-height: min(330px, 28vw);
  object-fit: contain;
  object-position: top right;
  filter: saturate(0.94) contrast(1.02);
}

.about-map p {
  width: 100%;
  max-width: 620px;
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.approach-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: clamp(0.7rem, 1.6vw, 1.2rem);
}

.approach-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(1.25rem, 2vw, 1.55rem);
  color: #ffffff;
  background: var(--header-bg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(11, 29, 65, 0.14);
}

.approach-card h2 {
  margin-bottom: clamp(0.75rem, 1.4vw, 1rem);
  color: #ffffff;
  font-size: clamp(1.35rem, 1.9vw, 1.7rem);
  font-weight: 700;
}

.approach-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.005em;
}

.expertise-page-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(1.8rem, 3.6vw, 3rem);
  align-items: start;
}

.expertise-page-lead,
.expertise-page-copy {
  grid-column: 1 / -1;
}

.expertise-page-copy {
  max-width: none;
  margin-bottom: 0;
  color: var(--text);
  font-family: var(--font-sans);
}

.expertise-page-content,
.expertise-page-stack {
  display: grid;
  gap: clamp(0.8rem, 1.3vw, 1rem);
}

.expertise-insight-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: clamp(1.05rem, 1.55vw, 1.35rem);
  background: #ffffff;
  border: 1px solid rgba(11, 29, 65, 0.08);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(11, 29, 65, 0.05);
}

.expertise-insight-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  background: rgba(180, 138, 74, 0.12);
  border-radius: 50%;
}

.expertise-insight-copy h2,
.expertise-insight-copy p {
  margin-bottom: 0;
}

.expertise-insight-copy h2 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
}

.expertise-insight-copy p {
  color: #5f7182;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.42;
}

.expertise-page-intro {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.expertise-page-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(11, 29, 65, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(11, 29, 65, 0.06);
}

.expertise-page-eyebrow {
  margin-bottom: 1.35rem;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.expertise-page-summary {
  margin-bottom: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-style: italic;
  line-height: 1.7;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.contact-story {
  display: grid;
  gap: 1.6rem;
  align-content: start;
}

.contact-story-title {
  margin-bottom: 0;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  font-weight: 700;
  line-height: 1.1;
}

.contact-story-accent {
  color: var(--accent);
  font-style: italic;
}

.contact-story-copy {
  max-width: 320px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.contact-detail-list {
  display: grid;
  gap: 1.3rem;
  padding-left: 0;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.35rem;
  align-items: center;
  padding: clamp(1rem, 1.6vw, 1.25rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail-icon {
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.contact-detail-icon svg,
.contact-detail-icon img {
  display: block;
  width: 34px;
  height: 34px;
}

.contact-detail-copy {
  min-width: 0;
}

.contact-detail-label {
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-detail-copy a {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  font-weight: 600;
  line-height: 1.28;
  word-break: break-word;
}

.contact-detail-copy a:hover {
  color: var(--accent);
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: clamp(0.65rem, 1.2vw, 0.9rem) 0 0.45rem;
  color: #ffffff;
  background: var(--header-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(330px, 1.9fr) repeat(3, minmax(135px, 0.72fr));
  column-gap: clamp(1.1rem, 2vw, 1.8rem);
  row-gap: 0.65rem;
  align-items: start;
  padding-bottom: clamp(0.55rem, 1.2vw, 0.85rem);
}

.footer-brand-statement p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand-statement span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--accent);
}

.footer-column {
  display: grid;
  gap: 0.35rem;
}

.footer-column h2 {
  margin-bottom: 0;
  color: var(--accent);
  text-transform: none;
}

.footer-column ul {
  display: grid;
  gap: 0.18rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-brand-statement p,
.footer-brand-statement span,
.footer-column h2,
.footer-column li,
.footer-column a,
.footer-copy p {
  font-family: var(--font-sans);
  font-size: var(--footer-text-size);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.footer-column li,
.footer-column a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copy {
  min-width: 0;
  text-align: left;
}

.footer-copy p {
  margin-bottom: 0;
  white-space: nowrap;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-left: auto;
}

.social-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--header-bg);
  border: 1px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.28);
  transition: background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.social-link:hover {
  background: #1f3447;
  opacity: 0.95;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.42);
}

.social-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 0.9rem;
  }

  .site-nav a {
    padding: 0.7rem 1rem;
  }

  .expertise-page-layout {
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
    gap: 1.75rem;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--header-bg);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(11, 29, 65, 0.28);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .about-overview {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: clamp(1.25rem, 3vw, 2rem);
  }

  .about-map img {
    width: min(78vw, 520px);
  }

  .expertise-page-layout,
  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.6rem);
  }

  .expertise-page-intro {
    padding-top: 0;
  }

  .expertise-page-card {
    max-width: 520px;
  }

  .contact-story-copy {
    max-width: none;
  }

  .footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1rem;
  }

  .footer-brand-statement {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }

  .about-overview {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about-page-content {
    gap: 0.6rem;
  }

  .about-copy {
    max-width: none;
    gap: 0.45rem;
  }

  .about-support {
    padding: 0.4rem 0 0.4rem 0.85rem;
  }

  .about-support ul {
    gap: 0.15rem;
  }

  .about-map {
    align-items: center;
    justify-content: center;
  }

  .about-map img {
    width: min(100%, 420px);
    object-position: top center;
  }

  .about-map p {
    max-width: 420px;
  }

  .approach-content {
    gap: 0.45rem;
  }

  .approach-lead {
    font-size: clamp(17px, 4.6vw, 22px);
    line-height: 1.16;
  }

  .approach-card-grid {
    gap: 0.45rem;
    margin-top: 0.25rem;
  }

  .approach-card {
    padding: clamp(0.45rem, 2vw, 0.7rem);
  }

  .approach-card h2 {
    margin-bottom: 0.3rem;
    font-size: clamp(10px, 2.9vw, 14px);
    line-height: 1.2;
  }

  .approach-card p {
    font-size: clamp(8px, 2.2vw, 10px);
    line-height: 1.3;
  }

  .footer-bottom {
    gap: 0.75rem;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 0.875rem;
  }

  .nav-bar {
    gap: 1rem;
  }

  .brand img {
    width: clamp(130px, 36vw, 170px);
  }

  .hero-content h1 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 0.7rem;
  }

  .hero-actions .button {
    font-size: 0.8rem;
  }

  .section {
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
  }

  .section-title {
    margin-bottom: 0.4rem;
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  .about-page-lead,
  .approach-lead,
  .expertise-page-lead {
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
    line-height: 1.3;
  }

  .expertise-page-card,
  .expertise-insight-card {
    padding: 1.1rem;
    border-radius: 18px;
  }

  .expertise-insight-card {
    gap: 0.9rem;
  }

  .expertise-insight-icon {
    width: 44px;
    height: 44px;
  }

  .expertise-page-eyebrow {
    margin-bottom: 1rem;
    font-size: 0.78rem;
  }

  .contact-page-layout {
    gap: 1.25rem;
  }

  .contact-story {
    gap: 0.95rem;
  }

  .contact-story-title {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .contact-story-copy {
    max-width: none;
    font-size: clamp(0.9rem, 3vw, 1rem);
    line-height: 1.62;
  }

  .contact-detail-item {
    gap: 0.8rem;
    padding: 0.95rem 0;
  }

  .contact-detail-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .contact-detail-icon svg,
  .contact-detail-icon img {
    width: 22px;
    height: 22px;
  }

  .contact-detail-label {
    font-size: 0.7rem;
  }

  .contact-detail-copy a {
    font-size: clamp(0.9rem, 3.35vw, 1.05rem);
    line-height: 1.28;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-brand-statement p {
    max-width: none;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }
}

@media (max-height: 620px) {
  .nav-bar {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .brand img {
    width: clamp(130px, 18vw, 180px);
  }

  .hero-content {
    padding-top: clamp(1rem, 4dvh, 2rem);
    padding-bottom: clamp(1rem, 4dvh, 2rem);
  }

  .hero-content h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.7rem, min(4.8vw, 7dvh), 3.3rem);
  }

  .hero-copy {
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
