:root {
  --bg: #f7f4ee;
  --panel: #fffdf8;
  --ink: #20201d;
  --muted: #68645c;
  --line: #ded7ca;
  --accent: #1f5f5b;
  --accent-dark: #164844;
  --warm: #b85d36;
  --shadow: 0 18px 50px rgba(38, 34, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.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, 56px);
  background: rgba(247, 244, 238, 0.9);
  border-bottom: 1px solid rgba(222, 215, 202, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(220px, 48vw);
  font-weight: 750;
  text-decoration: none;
  letter-spacing: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 420px);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 108px) clamp(20px, 6vw, 88px) 48px;
}

.hero-copy,
.page-heading {
  max-width: 780px;
}

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

h1,
h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 3rem);
}

p {
  margin: 0;
}

.lead {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

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

.portrait-card {
  margin: 0;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-card img {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.section,
.page {
  padding-right: clamp(20px, 6vw, 88px);
  padding-left: clamp(20px, 6vw, 88px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 28px;
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid var(--line);
}

.intro-grid p,
.about-flow p,
.story-copy p,
.feature p,
.today p,
.note p,
.project-card p,
.questions li {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-grid p + p {
  margin-top: 14px;
}

.about-flow {
  display: grid;
  gap: 28px;
  padding-top: 72px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line);
}

.about-flow article {
  max-width: 940px;
}

.about-flow article + article {
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.about-flow p + p {
  margin-top: 14px;
}

.about-flow.compact {
  padding-bottom: 24px;
}

.about-flow.final-about {
  background: #ece7dc;
}

.intro-grid h2,
.story-copy h2,
.feature h2,
.today h2 {
  margin-bottom: 18px;
}

.quote-panel {
  display: flex;
  align-items: center;
  padding: 28px;
  background: var(--accent-dark);
  border-radius: 8px;
}

.quote-panel p {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 650;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  background: #ece7dc;
}

.media-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.media-strip img,
.feature img,
.note.with-image img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-strip img {
  aspect-ratio: 4 / 3;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.feature {
  display: grid;
  gap: 22px;
}

.feature img {
  aspect-ratio: 16 / 10;
}

.today {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid var(--line);
}

.today p + p {
  margin-top: 12px;
}

.today-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-note {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid var(--line);
}

.contact-note p {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-page {
  --about-pad: clamp(24px, 6vw, 88px);
  --about-width: 1080px;
  padding-bottom: 40px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 360px);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  width: min(var(--about-width), calc(100% - (var(--about-pad) * 2)));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0 56px;
  border-bottom: 1px solid var(--line);
}

.about-hero-copy {
  max-width: 880px;
}

.about-hero-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.about-hero-copy .lead,
.about-hero-copy p + p {
  margin-top: 18px;
}

.about-article {
  width: min(var(--about-width), calc(100% - (var(--about-pad) * 2)));
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.about-article > section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.about-article h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
}

.about-article p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-article p + p {
  margin-top: 14px;
}

.with-side-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.image-pair img,
.media-notes img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-pair img {
  aspect-ratio: 16 / 10;
}

.media-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}

.media-notes article {
  display: grid;
  align-content: start;
  gap: 16px;
}

.media-notes img {
  aspect-ratio: 16 / 10;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 88px);
  background: var(--ink);
  color: #fff;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
}

.page {
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-heading {
  margin-bottom: 48px;
}

.note-list {
  display: grid;
  gap: 22px;
  max-width: 1120px;
}

.note,
.project-card,
.questions {
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.note h2,
.project-card h2,
.questions h2 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

.note p + p {
  margin-top: 14px;
}

.note.with-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 26px;
  align-items: center;
}

.note.with-image img {
  aspect-ratio: 4 / 3;
}

.projects-heading {
  max-width: 900px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--warm);
  font-size: 0.86rem;
  font-weight: 900;
}

.questions {
  margin-top: 28px;
}

.questions ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

@media (max-width: 900px) {
  .hero,
  .intro-grid,
  .story-section,
  .two-column,
  .today,
  .contact-note,
  .about-hero,
  .with-side-image,
  .media-notes,
  .note.with-image,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .today {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

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

  .nav a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 44px;
  }

  .media-strip {
    grid-template-columns: 1fr;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

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