:root {
  --ink: #1e2030;
  --cream: #faf7f3;
  --cream-soft: #f3e9db;
  --orange-deep: #d84a1b;
  --orange: #f15a24;
  --orange-light: #f6a171;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-width: 320px;
  margin: 0;
  background: var(--ink);
}

body {
  color: var(--cream);
  font-family: "Archivo", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

::selection {
  color: var(--cream);
  background: var(--orange);
}

.site-shell {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 360px;
  flex: 0 0 52vh;
  overflow: hidden;
  background: #14161f;
}

.hero__photo,
.hero__wash,
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__photo {
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  filter: contrast(1.12) brightness(0.56) sepia(0.32) saturate(0.8);
  animation: ken-burns 26s ease-out forwards;
}

.hero__wash--dark {
  background: linear-gradient(
    180deg,
    rgba(14, 10, 7, 0.6) 0%,
    rgba(14, 10, 7, 0.14) 26%,
    rgba(12, 9, 7, 0.26) 50%,
    rgba(8, 6, 5, 0.88) 100%
  );
}

.hero__wash--warm {
  background: rgba(30, 18, 9, 0.34);
  mix-blend-mode: multiply;
}

.hero__wash--glow {
  background: radial-gradient(
    120% 90% at 18% 118%,
    rgba(216, 74, 27, 0.24) 0%,
    rgba(216, 74, 27, 0) 52%
  );
  mix-blend-mode: soft-light;
}

.grain {
  opacity: 0.11;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 150px 150px;
}

.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 48px;
}

.desktop-nav {
  display: flex;
  gap: 38px;
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  opacity: 0.86;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero__content {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 48px 26px;
}

.hero__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--cream-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.eyebrow__line {
  width: 44px;
  height: 1px;
  flex: 0 0 auto;
  background: rgba(247, 242, 236, 0.7);
}

.hero__name {
  margin: 0;
  color: #fffdf8;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(50px, 9vw, 144px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-shadow: 0 1px 2px rgba(6, 5, 9, 0.6), 0 6px 40px rgba(6, 5, 9, 0.7);
}

.hero__role {
  margin-top: 18px;
  color: #f7f2ec;
  text-align: left;
}

.hero__role p {
  margin: 0;
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0.24em;
  line-height: 1.7;
  text-transform: uppercase;
}

.connect {
  position: relative;
  display: flex;
  min-height: 340px;
  flex: 1 1 auto;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #cf3300 0%,
    #ed4300 42%,
    #ff7040 100%
  );
}

.grain--connect {
  opacity: 0.09;
  background-size: 160px 160px;
}

.connect__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 48px 12px;
}

.connect__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 4.4vw, 64px);
  transform: translateY(-8px);
}

.portrait-column {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
}

.portrait-block {
  width: clamp(168px, 16vw, 220px);
  margin: 0;
  flex: 0 0 auto;
}

.portrait-block img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 26%;
  filter: contrast(1.03) saturate(0.9) sepia(0.06);
}

.brokerage-block {
  margin-top: 42px;
  color: #fbe7d6;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.65;
  text-transform: uppercase;
}

.brokerage-block p {
  margin: 0;
}

.brokerage-block p:first-child {
  color: #fff6ee;
}

.brokerage-block p:last-child {
  font-weight: 400;
  opacity: 0.72;
}

.brokerage-block--mobile {
  display: none;
}

.connect__copy {
  max-width: 780px;
  flex: 1 1 auto;
  align-self: center;
}

.connect__statement {
  margin: 0 0 16px;
  color: var(--cream);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(17px, 1.75vw, 24px);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.24;
}

.connect__nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #fbe7d6;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.connect__direct {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 7px;
}

.connect__direct a {
  font-size: clamp(14px, 0.95vw, 16px);
  letter-spacing: 0.08em;
  text-transform: none;
  white-space: nowrap;
}

.connect__nav a {
  transition: color 180ms ease;
}

.connect__nav a:hover,
.connect__nav a:focus-visible {
  color: #fff;
}

.reveal {
  opacity: 0;
  animation: reveal 1.3s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  will-change: opacity, transform;
}

.delay-1 {
  animation-delay: 50ms;
}

.delay-2 {
  animation-delay: 120ms;
}

.delay-3 {
  animation-delay: 200ms;
}

.delay-4 {
  animation-delay: 280ms;
}

.delay-5 {
  animation-delay: 500ms;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ken-burns {
  from {
    transform: scale(1.015);
  }
  to {
    transform: scale(1.09);
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    gap: 22px;
  }

  .connect__row {
    gap: 36px;
  }

  .connect__nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 360px;
    flex-basis: 50svh;
  }

  .hero__image {
    object-position: 53% 36%;
  }

  .site-header {
    padding: 22px 26px;
  }

  .desktop-nav {
    display: flex;
    gap: 0;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .hero__content {
    padding: 24px 26px 24px;
  }

  .eyebrow {
    gap: 12px;
    margin-bottom: 18px;
    font-size: 9px;
    letter-spacing: 0.27em;
  }

  .eyebrow__line {
    width: 30px;
  }

  .hero__name {
    font-size: clamp(44px, 13.8vw, 76px);
    line-height: 0.9;
  }

  .hero__role {
    margin-top: 14px;
  }

  .hero__role p {
    font-size: 10px;
    line-height: 1.8;
  }

  .connect {
    min-height: 0;
  }

  .connect__inner {
    padding: 22px 26px 16px;
  }

  .connect__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    transform: translateY(-6px);
  }

  .portrait-column {
    order: 1;
  }

  .portrait-column .brokerage-block {
    display: none;
  }

  .portrait-block {
    width: min(44vw, 164px);
  }

  .connect__copy {
    order: 3;
    max-width: 100%;
    margin-top: 38px;
    text-align: left;
  }

  .connect__statement {
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.45;
    text-align: left;
  }

  .connect__nav {
    display: flex;
    order: 2;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    margin-top: 24px;
    font-size: 11px;
    text-align: left;
    white-space: normal;
  }

  .connect__direct {
    align-items: flex-start;
    gap: 7px;
  }

  .connect__direct a {
    font-size: clamp(11px, 3vw, 13px);
    letter-spacing: 0.05em;
    white-space: normal;
    word-break: break-word;
  }

  .brokerage-block--mobile {
    display: block;
    order: 4;
    margin-top: 52px;
  }
}

@media (max-width: 390px) {
  .hero__name {
    font-size: 13.6vw;
  }

}

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

  .reveal,
  .hero__image {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}
