:root {
  color-scheme: light;
  --ink: #171813;
  --stone: #8b8a7f;
  --ivory: #f2f0e9;
  --paper: #faf9f5;
  --bronze: #a58b70;
  --line: rgba(23, 24, 19, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(440px, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
}

.intro {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 4.5rem);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.26), transparent 36%),
    var(--ivory);
}

.intro::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 2.2vw, 2.5rem);
  top: 0;
  width: 1px;
  height: 18%;
  background: var(--bronze);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand__mark {
  width: 48px;
  height: 72px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.brand__name {
  display: grid;
  gap: 0.4rem;
}

.brand__name strong {
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand__name span {
  max-width: 27rem;
  color: #5f6058;
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro__content {
  width: min(100%, 38rem);
  margin: auto 0;
  padding: clamp(4rem, 10vh, 8rem) 0;
}

.eyebrow {
  margin: 0 0 1.4rem;
  color: #66675f;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(4.5rem, 8.5vw, 9rem);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.065em;
}

.intro__copy {
  max-width: 31rem;
  margin: clamp(2.6rem, 5vh, 4rem) 0 0;
  padding-left: 1.2rem;
  border-left: 2px solid var(--bronze);
  color: #55564f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.7;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  font-style: normal;
}

.contact-item {
  min-width: 0;
  display: grid;
  gap: 0.6rem;
  padding: 1.4rem 1rem 0 0;
  text-decoration: none;
}

.contact-item + .contact-item {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.social-links {
  display: grid;
  gap: 0.35rem;
}

.social-links a {
  width: fit-content;
  font-size: clamp(0.74rem, 0.92vw, 0.92rem);
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
}

.contact-item span {
  color: #6c6d64;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  font-size: clamp(0.74rem, 0.92vw, 0.92rem);
  font-weight: 500;
  line-height: 1.45;
}

.contact-item:hover strong,
.contact-item:focus-visible strong,
.social-links a:hover,
.social-links a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--bronze);
  text-underline-offset: 0.35rem;
}

.contact-item:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 6px;
}

.portrait {
  position: relative;
  min-width: 0;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background: #797b72;
}

.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 21, 18, 0.2), transparent 34%);
  pointer-events: none;
}

.portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.72) contrast(1.03);
  transform: scale(1.005);
}

.portrait figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(1.5rem, 3vw, 3.5rem);
  bottom: clamp(1.5rem, 3vw, 3rem);
  padding: 0.65rem 0.85rem;
  color: var(--paper);
  background: rgba(23, 24, 19, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .page-shell {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(24rem, 52svh) auto;
    overflow: visible;
  }

  .portrait {
    grid-row: 1;
    min-height: 0;
  }

  .portrait img {
    object-position: 54% 42%;
  }

  .intro {
    grid-row: 2;
    min-height: 48svh;
  }

  .intro__content {
    margin: 0;
  }

  h1 {
    font-size: clamp(4.8rem, 17vw, 8rem);
  }
}

@media (max-width: 650px) {
  .page-shell {
    grid-template-rows: minmax(22rem, 48svh) auto;
  }

  .intro {
    padding: 1.5rem;
  }

  .intro::after {
    display: none;
  }

  .brand__mark {
    width: 38px;
    height: 57px;
  }

  .brand__name strong {
    font-size: 0.9rem;
  }

  .brand__name span {
    font-size: 0.64rem;
  }

  .intro__content {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-item,
  .contact-item + .contact-item {
    grid-template-columns: 5.5rem 1fr;
    align-items: baseline;
    gap: 0.75rem;
    padding: 1rem 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-item--social {
    display: grid;
  }

  .contact-item strong {
    font-size: 0.9rem;
  }

  .portrait figcaption {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
