:root {
  --navy: #10213a;
  --ink: #202124;
  --graphite: #404040;
  --paper: #f4f1ea;
  --paper-deep: #e7dfd2;
  --camel: #c69a6b;
  --clay: #9c6f55;
  --sage: #62766b;
  --white: #fffaf2;
  --line: rgba(16, 33, 58, 0.16);
  --shadow: 0 24px 70px rgba(16, 33, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(244, 241, 234, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.language-switch,
.hero-actions,
.contact-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
}

.brand-mark {
  display: block;
  width: 40px;
  height: 38px;
  background: url('va-mark.png') no-repeat center center;
  background-size: contain;
}

.nav {
  gap: 22px;
  color: var(--graphite);
  font-size: 14px;
}

.nav a:hover,
.contact-links a:hover {
  color: var(--clay);
}

.language-switch {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--graphite);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}

.lang-button.is-active {
  background: var(--navy);
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 96px) 48px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.hero-line,
.question-list p,
blockquote {
  overflow-wrap: break-word;
  hyphens: auto;
}

h1,
h2 {
  color: var(--navy);
  font-family: Spectral, Georgia, serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(64px, 8vw, 132px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 70px);
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.hero-line {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--navy);
  font-family: Spectral, Georgia, serif;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.12;
}

.hero-text,
.section-intro p,
.method-copy p,
.about-copy p,
.contact h2 {
  color: var(--graphite);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-weight: 700;
}

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

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

.hero-image {
  position: relative;
  min-height: 580px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(198, 154, 107, 0.32), rgba(98, 118, 107, 0.22)),
    var(--paper-deep);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section,
.work-method,
.questions,
.contact {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 96px);
}

.section-intro {
  max-width: 850px;
  margin-bottom: 42px;
}

.practice-grid,
.format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.practice-grid article,
.format-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
}

.practice-grid p {
  color: var(--graphite);
}

.work-method {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(30px, 7vw, 90px);
  background: var(--navy);
  color: var(--white);
}

.work-method h2,
.work-method .eyebrow {
  color: var(--white);
}

.method-copy p {
  color: rgba(255, 250, 242, 0.82);
}

.method-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.method-copy li {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 250, 242, 0.22);
  font-family: Spectral, Georgia, serif;
  font-size: 28px;
}

.artifact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
}

.artifact {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 150px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.72), rgba(231, 223, 210, 0.72)),
    repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(16, 33, 58, 0.08) 19px);
  border: 1px solid var(--line);
  color: var(--navy);
  font-family: Spectral, Georgia, serif;
  font-size: 25px;
}

.artifact img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.artifact span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 5px 14px;
  background: rgba(244, 241, 234, 0.86);
  backdrop-filter: blur(4px);
  border-radius: 2px;
  font-size: 18px;
}

.artifact.large {
  grid-column: span 3;
  grid-row: span 2;
  background-color: rgba(198, 154, 107, 0.2);
}

.artifact.wide {
  grid-column: span 3;
  background-color: rgba(98, 118, 107, 0.18);
}

.artifact.third {
  grid-column: span 2;
  background-color: rgba(244, 241, 234, 0.9);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 90px);
}

.hero > *,
.about > *,
.work-method > *,
.contact > * {
  min-width: 0;
}

blockquote {
  margin: 34px 0 0;
  padding-left: 24px;
  border-left: 4px solid var(--camel);
  color: var(--navy);
  font-family: Spectral, Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
}

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

.format-grid article {
  min-height: 170px;
}

.format-grid p {
  margin-top: 10px;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.5;
}

.questions {
  background: var(--paper-deep);
}

.question-list {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.question-list p {
  margin: 0;
  color: var(--navy);
  font-family: Spectral, Georgia, serif;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
}

.contact h2 {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--navy);
}

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

.contact-links a {
  display: inline-flex;
  min-width: 116px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
}

.cta-coffee {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.cta-coffee .button.primary {
  min-height: 54px;
  padding: 0 30px;
  font-size: 16px;
}

.cta-note {
  margin: 0;
  max-width: 340px;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.55;
}

.contact-secondary {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 22px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-secondary-label {
  color: var(--graphite);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 32px clamp(20px, 6vw, 96px);
  border-top: 1px solid var(--line);
  color: var(--graphite);
}

.footer-logo {
  height: 52px;
  width: auto;
  display: block;
}

.site-footer strong {
  color: var(--navy);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand lang"
      "nav nav";
    row-gap: 14px;
  }

  .brand {
    grid-area: brand;
  }

  .language-switch {
    grid-area: lang;
  }

  .nav {
    grid-area: nav;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
  }

  .hero,
  .work-method,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image,
  .hero-image img {
    min-height: 460px;
  }

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

  .artifact-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .artifact,
  .artifact.large,
  .artifact.wide,
  .artifact.third {
    grid-column: span 1;
    grid-row: span 1;
  }

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

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
    padding: 14px 16px;
  }

  .hero,
  .section,
  .work-method,
  .questions,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 58px;
  }

  .hero-line {
    font-size: 32px;
  }

  .hero-image,
  .hero-image img {
    min-height: 390px;
  }

  .practice-grid,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .practice-grid article,
  .format-grid article {
    min-height: 160px;
  }
}
