:root {
  --ink: #11100f;
  --paper: #fbf6ee;
  --paper-deep: #eee3d5;
  --line: #d8cab9;
  --muted: #625b53;
  --accent: #9d2f2f;
  --sage: #70836d;
  --white: #fffdf9;
  --shadow: 0 22px 70px rgba(17, 16, 15, 0.12);
  --display-serif: Didot, "Bodoni 72", "Bodoni MT", "Libre Bodoni", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(17, 16, 15, 0.12);
  background: rgba(251, 246, 238, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display-serif);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 0.9;
}

.brand-avatar {
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

nav a {
  padding: 8px 0;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(38px, 7vw, 96px) clamp(20px, 4vw, 56px) clamp(26px, 5vw, 72px);
}

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

.eyebrow,
.work-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--display-serif);
  font-size: clamp(5.5rem, 13vw, 14rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 0.8;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  font-weight: 700;
}

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

.button.secondary {
  background: transparent;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding: clamp(42px, 7vw, 86px) clamp(20px, 4vw, 56px);
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.intro > p {
  max-width: 890px;
  margin: 0;
  font-family: var(--display-serif);
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1.06;
}

dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

dt {
  font-family: var(--display-serif);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
}

dd {
  margin: 8px 0 0;
  color: rgba(255, 253, 249, 0.68);
  font-size: 0.85rem;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 4vw, 56px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--display-serif);
  font-size: clamp(2.25rem, 6vw, 6.4rem);
  font-weight: 400;
  line-height: 0.94;
}

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

.identity-feature,
.identity-card,
.portrait-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.identity-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: stretch;
}

.identity-feature img,
.identity-card img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.identity-feature > div,
.identity-card > div,
.portrait-card > div {
  padding: clamp(20px, 3vw, 34px);
}

h3 {
  margin: 0;
  font-family: var(--display-serif);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1.05;
}

article p:not(.work-label) {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
}

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

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

.portrait-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.studio-section {
  background: var(--white);
}

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

.studio-grid article {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.studio-grid span {
  display: block;
  margin-bottom: 76px;
  color: var(--sage);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 4vw, 56px);
  background: var(--ink);
  color: var(--white);
}

.contact .eyebrow {
  color: #d45a50;
}

.contact .button.primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  white-space: nowrap;
}

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

  nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero,
  .intro,
  .identity-feature,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(4.75rem, 24vw, 8.5rem);
  }

  .intro {
    align-items: start;
  }
}

@media (max-width: 720px) {
  .identity-grid,
  .portrait-grid,
  .studio-grid,
  dl {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .identity-feature img,
  .identity-card img {
    min-height: 220px;
  }

  .studio-grid article {
    min-height: 220px;
  }

  .studio-grid span {
    margin-bottom: 42px;
  }
}
