:root {
  --paper: #fffaf3;
  --paper-deep: #f4eade;
  --ink: #2c211d;
  --muted: #6f5d55;
  --brand: #b9472c;
  --brand-dark: #7d2e20;
  --brand-soft: #d87d64;
  --lake: #426a70;
  --line: rgba(74, 48, 38, 0.16);
  --shadow: 0 24px 70px rgba(83, 44, 27, 0.14);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 6.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 15%, rgba(216, 125, 100, 0.13), transparent 30rem),
    radial-gradient(circle at 92% 58%, rgba(66, 106, 112, 0.1), transparent 28rem),
    var(--paper);
  font-size: 1rem;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(185, 71, 44, 0.2);
  border-radius: 50%;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 650;
}

nav a {
  text-decoration: none;
}

nav a:not(.nav-contact):hover {
  color: var(--brand);
}

.nav-contact {
  padding: 0.55rem 1rem;
  border: 1px solid var(--brand);
  border-radius: 999px;
  color: var(--brand-dark);
}

.nav-contact:hover {
  color: white;
  background: var(--brand);
}

main,
footer {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}

.hero {
  padding: 1.5rem 0 6rem;
}

.hero-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(111, 73, 51, 0.18);
  border-radius: var(--radius-lg);
  background: #f2dfcc;
  box-shadow: var(--shadow);
  text-decoration: none;
  animation: rise 700ms ease-out both;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.hero-image-wrap:hover {
  box-shadow: 0 30px 85px rgba(83, 44, 27, 0.2);
  transform: translateY(-3px);
}

.hero-image-wrap:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 350ms ease;
}

.hero-image-wrap:hover .hero-image {
  transform: scale(1.012);
}

.hero-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: #38251f;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 8px 30px rgba(57, 32, 21, 0.12);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  backdrop-filter: blur(12px);
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  padding: 3.5rem clamp(0rem, 3vw, 3rem) 0;
  animation: rise 700ms 120ms ease-out both;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ffd6c7;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 6.2vw, 5.8rem);
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.15rem, 4.4vw, 4.25rem);
}

h3 {
  line-height: 1.2;
}

.hero-lead {
  max-width: 31rem;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--brand-dark);
}

.button-quiet {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.button-quiet:hover {
  border-color: var(--brand-soft);
}

.section {
  margin-bottom: 7rem;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: start;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.manifesto-copy p:last-child {
  max-width: 48rem;
  color: var(--muted);
  font-size: 1.08rem;
}

blockquote {
  position: relative;
  margin: 4.8rem 0 0;
  padding: 1.5rem 0 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--brand-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
}

blockquote span {
  position: absolute;
  top: -1.2rem;
  left: 0;
  padding-right: 0.65rem;
  color: var(--brand);
  background: var(--paper);
  font-size: 3rem;
  font-style: normal;
}

.series {
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5.5rem);
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 190, 150, 0.2), transparent 23rem),
    linear-gradient(135deg, #913621 0%, #b9472c 55%, #743023 100%);
  box-shadow: 0 24px 60px rgba(108, 42, 27, 0.22);
}

.series-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(17rem, 0.7fr);
  gap: 1rem 4rem;
  align-items: end;
}

.series-heading .eyebrow {
  grid-column: 1 / -1;
}

.series-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
}

.series-heading > p:last-child {
  margin-bottom: 0.7rem;
  color: #ffe7dd;
  font-size: 1.05rem;
}

.perspectives {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(2.5rem, 7vw, 6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.perspectives article {
  min-height: 15rem;
  padding: 1.5rem 1.5rem 0 0;
}

.perspectives article + article {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.perspective-index {
  color: #ffc7b3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.perspectives h3 {
  margin: 2.6rem 0 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.perspectives p {
  max-width: 18rem;
  margin-bottom: 0;
  color: #ffe8df;
}

.team {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.team-visual {
  padding: clamp(1rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 50% 50% 46% 54% / 53% 47% 53% 47%;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
}

.team-visual img {
  width: 100%;
  border-radius: 50%;
}

.team-copy h2 {
  max-width: 12ch;
}

.team-list article {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.team-list h3 {
  margin: 0;
  color: var(--brand);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.team-list p {
  margin: 0;
  color: var(--muted);
}

.values {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.46);
}

.values h2 {
  margin-bottom: 0;
}

.values ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.values li {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.values li:first-child {
  border-top: 0;
}

.values li span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 13rem;
  gap: 2rem;
  overflow: hidden;
  padding: clamp(2.2rem, 6vw, 5.5rem);
  border-radius: var(--radius-lg);
  color: white;
  background: var(--ink);
}

.contact-mark {
  position: absolute;
  right: 17%;
  bottom: -42%;
  width: min(42vw, 31rem);
  border-radius: 50%;
  opacity: 0.07;
  mix-blend-mode: screen;
}

.contact-copy,
.contact-side {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  max-width: 18ch;
  margin-bottom: 1.2rem;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 35rem;
  color: #d8cbc4;
}

.button-light {
  margin-top: 1rem;
  color: var(--ink);
  background: white;
}

.button-light:hover {
  color: white;
  background: var(--brand);
}

.contact-side {
  align-self: end;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-side:hover {
  border-color: #ffd2c1;
  transform: translateY(-2px);
}

.contact-side span,
.contact-side strong {
  display: block;
}

.contact-side span {
  color: #ac9b93;
  font-size: 0.82rem;
}

.contact-side strong {
  margin-top: 0.15rem;
  color: #ffd2c1;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 1rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-brand img {
  width: 11rem;
  mix-blend-mode: multiply;
}

.footer-brand p,
.disclaimer,
.copyright {
  margin-bottom: 0;
}

.footer-brand p {
  margin-top: 0.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.disclaimer {
  max-width: 29rem;
}

.copyright {
  white-space: nowrap;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  nav a:not(.nav-contact) {
    display: none;
  }

  .hero {
    padding-bottom: 4.5rem;
  }

  .hero-copy,
  .manifesto,
  .series-heading,
  .team,
  .values,
  .contact,
  footer {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    gap: 1.5rem;
    padding-top: 2.4rem;
  }

  h1 {
    max-width: 15ch;
  }

  .manifesto {
    gap: 1rem;
  }

  blockquote {
    margin-top: 1.2rem;
  }

  .series-heading {
    gap: 1rem;
  }

  .series-heading .eyebrow {
    grid-column: auto;
  }

  .series-heading > p:last-child {
    margin-top: 1rem;
  }

  .team-visual {
    width: min(28rem, 90%);
    margin-inline: auto;
  }

  .contact-side {
    max-width: 15rem;
  }

  footer {
    align-items: start;
  }
}

@media (max-width: 610px) {
  .site-header,
  main,
  footer {
    width: min(100% - 1.25rem, 80rem);
  }

  .brand span {
    font-size: 0.98rem;
  }

  .nav-contact {
    padding-inline: 0.85rem;
  }

  .hero {
    padding-top: 0.7rem;
  }

  .hero-image-wrap,
  .series,
  .values,
  .contact {
    border-radius: var(--radius-md);
  }

  .hero-badge {
    top: 0.7rem;
    left: 0.7rem;
    padding: 0.4rem 0.65rem;
    font-size: 0.72rem;
  }

  .section {
    margin-bottom: 4.5rem;
  }

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

  .perspectives article {
    min-height: 0;
    padding: 1.4rem 0 1.6rem;
  }

  .perspectives article + article {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }

  .perspectives h3 {
    margin-top: 1.2rem;
  }

  .team-list article {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .contact {
    padding-block: 3rem;
  }

  .button-light {
    width: 100%;
    overflow-wrap: anywhere;
  }
}

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

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