:root {
  --ink: #13201c;
  --muted: #5e6862;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --line: #d9d4c8;
  --forest: #173b32;
  --gold: #b1842d;
  --sage: #dbe5d2;
  --steel: #243844;
  --sky: #d5e6ec;
  --shadow: 0 24px 60px rgba(19, 32, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(217, 212, 200, 0.72);
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 244, 238, 0.96);
  box-shadow: 0 10px 28px rgba(19, 32, 28, 0.08);
}

.brand,
.nav-links,
.hero-actions,
.tag-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(177, 132, 45, 0.48);
  border-radius: 6px;
  background: var(--forest);
  color: #fbf6eb;
  font-size: 0.82rem;
}

.nav-links {
  gap: clamp(14px, 2.6vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 75px);
  display: grid;
  align-items: center;
  padding: clamp(44px, 7vw, 86px) clamp(20px, 4vw, 64px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.97) 0%, rgba(247, 244, 238, 0.86) 44%, rgba(247, 244, 238, 0.28) 100%),
    linear-gradient(135deg, #eef3e7, #d8e8ef 52%, #f4e4bd);
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(19, 32, 28, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 32, 28, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0%, black 35%, black 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  right: min(5vw, 70px);
  top: 12%;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.92), transparent 0 21%, rgba(255, 255, 255, 0) 22%),
    conic-gradient(from 160deg, var(--forest), #476c64, var(--gold), #e6c879, var(--steel), var(--forest));
  box-shadow: var(--shadow);
  opacity: 0.92;
}

.hero-media::after {
  content: "";
  position: absolute;
  right: 13%;
  top: 24%;
  width: min(28vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(2px);
}

.signal-card {
  position: absolute;
  display: grid;
  gap: 4px;
  width: min(280px, 34vw);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(19, 32, 28, 0.12);
  backdrop-filter: blur(18px);
}

.signal-card span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-card strong {
  font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.signal-card-primary {
  right: 28%;
  bottom: 19%;
}

.signal-card-secondary {
  right: 5%;
  bottom: 32%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 14ch;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 7.2vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: #3f4944;
  font-size: clamp(1.04rem, 1.55vw, 1.22rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.button-primary {
  background: var(--forest);
  color: #fffaf0;
}

.button-primary:hover {
  background: #0f2a24;
}

.button-secondary {
  border-color: rgba(19, 32, 28, 0.22);
  background: rgba(255, 255, 255, 0.52);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffaf1;
}

.intro-item {
  min-height: 170px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.intro-item:last-child {
  border-right: 0;
}

.intro-item span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 900;
}

.intro-item p {
  max-width: 330px;
  margin: 0;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  font-weight: 700;
}

.section,
.portfolio-section,
.contact-section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 4vw, 64px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.principles article {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.principles p,
.portfolio-copy p,
.portfolio-details p,
.contact-section h2 {
  color: var(--muted);
}

.icon-dot {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, 0.8) 43% 55%, transparent 56%),
    var(--forest);
  box-shadow: inset 0 0 0 10px var(--sage);
}

.portfolio-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #eaf0e4;
}

.portfolio-copy {
  position: sticky;
  top: 110px;
}

.portfolio-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(260px, 1fr);
  overflow: hidden;
  border: 1px solid rgba(19, 32, 28, 0.14);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.portfolio-visual {
  min-height: 440px;
  background: #13201c;
}

.portfolio-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-details {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 42px);
}

.tag-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.tag-row span {
  padding: 7px 10px;
  border: 1px solid rgba(19, 32, 28, 0.13);
  border-radius: 999px;
  background: #f8f5ed;
  color: #52605a;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-details h3 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 2.4vw, 2.45rem);
  line-height: 1.08;
}

dl {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
}

dl div {
  display: grid;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  background: var(--forest);
  color: #fffaf0;
}

.contact-section .eyebrow {
  color: #e6c879;
}

.contact-section h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: #f9f3e7;
}

.contact-section .button-primary {
  border-color: rgba(255, 255, 255, 0.18);
  background: #fffaf0;
  color: var(--forest);
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: end;
  padding: clamp(60px, 8vw, 104px) clamp(20px, 4vw, 64px) clamp(46px, 6vw, 76px);
  background:
    linear-gradient(115deg, rgba(247, 244, 238, 0.96), rgba(247, 244, 238, 0.72)),
    linear-gradient(135deg, var(--sage), var(--sky) 54%, #f2dfb4);
}

.about-hero h1 {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  line-height: 1.02;
}

.about-hero > p {
  margin: 0;
  color: #3f4944;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 600;
}

.team-section {
  display: grid;
  gap: 18px;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 4vw, 64px);
  background: #fffaf1;
}

.profile-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(20px, 3.2vw, 42px);
  align-items: stretch;
  padding: clamp(22px, 3.2vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.profile-featured {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
    linear-gradient(135deg, rgba(219, 229, 210, 0.75), rgba(213, 230, 236, 0.78));
}

.profile-portrait {
  display: grid;
  width: 120px;
  min-height: 120px;
  place-items: center;
  align-self: start;
  border: 1px solid rgba(177, 132, 45, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.82), transparent 0 22%, transparent 23%),
    conic-gradient(from 180deg, var(--forest), #476c64, var(--gold), var(--steel), var(--forest));
  color: #fffaf0;
  font-size: 1.55rem;
  font-weight: 900;
}

.profile-body {
  max-width: 980px;
}

.profile-role {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-body h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  line-height: 1.08;
}

.profile-body p {
  max-width: 880px;
  color: var(--muted);
  font-size: 0.98rem;
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.credential-row span {
  padding: 8px 11px;
  border: 1px solid rgba(19, 32, 28, 0.13);
  border-radius: 999px;
  background: #f8f5ed;
  color: #52605a;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 6vw, 82px);
  padding: clamp(70px, 9vw, 120px) clamp(20px, 4vw, 64px);
  background: var(--forest);
  color: #fffaf0;
}

.about-band .eyebrow {
  color: #e6c879;
}

.about-band h2 {
  margin-bottom: 0;
  color: #f9f3e7;
}

.working-grid {
  display: grid;
  gap: 24px;
}

.working-grid div {
  display: grid;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 250, 240, 0.22);
}

.working-grid span {
  color: #e6c879;
  font-weight: 900;
}

.working-grid h3 {
  margin-bottom: 0;
}

.working-grid p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.74);
}

@media (max-width: 920px) {
  .hero {
    min-height: 760px;
    align-items: start;
  }

  .hero-content {
    padding-top: 34px;
  }

  .hero-media::before {
    right: -120px;
    top: auto;
    bottom: 38px;
    width: 560px;
  }

  .signal-card {
    width: min(260px, 72vw);
  }

  .signal-card-primary {
    right: 34%;
    bottom: 90px;
  }

  .signal-card-secondary {
    right: 22px;
    bottom: 230px;
  }

  .intro-band,
  .principles,
  .portfolio-section,
  .contact-section,
  .about-hero,
  .about-band {
    grid-template-columns: 1fr;
  }

  .intro-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-item:last-child {
    border-bottom: 0;
  }

  .portfolio-copy {
    position: static;
  }

  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .portfolio-visual,
  .portfolio-details {
    min-height: 360px;
  }

  .contact-section {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero {
    min-height: 820px;
  }

  .hero-media::before {
    right: -190px;
    bottom: 42px;
    width: 520px;
  }

  .signal-card-primary {
    right: 22px;
    bottom: 74px;
  }

  .signal-card-secondary {
    right: 22px;
    bottom: 222px;
  }

  .button {
    width: 100%;
  }

  .portfolio-visual,
  .portfolio-details {
    min-height: 300px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-portrait {
    width: 118px;
    min-height: 118px;
    font-size: 1.6rem;
  }
}
