:root {
  --navy: #142330;
  --dusty-navy: #243746;
  --cream: #faf8f3;
  --ivory: #f2efe9;
  --gold: #b8974a;
  --body: #5a5750;
  --muted: #807b72;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Libre Franklin", Arial, sans-serif;
  --page-pad: clamp(1.35rem, 5vw, 4.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--cream);
}

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

a {
  color: inherit;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(5.75rem, 10vw, 8.25rem);
  padding: 1.05rem var(--page-pad);
  background: transparent;
}

.logo-link {
  display: inline-flex;
  width: clamp(8.75rem, 32vw, 13.75rem);
}

.site-logo {
  width: 100%;
  height: auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(42rem, 78vw, 55rem);
  padding: clamp(7.4rem, 12vw, 9.5rem) 0 clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
  background: var(--cream);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0 35% 0 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(250, 248, 243, 0.98) 0%, rgba(250, 248, 243, 0.9) 34%, rgba(250, 248, 243, 0.46) 70%, rgba(250, 248, 243, 0) 100%);
}

.hero::after {
  inset: auto 0 0;
  z-index: 1;
  height: 11rem;
  background: linear-gradient(180deg, rgba(250, 248, 243, 0) 0%, var(--cream) 96%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(42rem, 48vw);
  margin-left: clamp(1.35rem, 5vw, 4.75rem);
}

.section-label {
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "wght" 300;
  line-height: 0.98;
}

h1 {
  margin-bottom: 1.45rem;
  font-size: clamp(3.15rem, 12vw, 5.15rem);
  max-width: 11.2ch;
}

h2 {
  margin-bottom: 1.6rem;
  font-size: clamp(2.55rem, 11vw, 4.45rem);
  max-width: 12ch;
}

.hero-copy p:not(.section-label),
.about-copy p {
  max-width: min(100%, 21rem);
  color: var(--navy);
  font-weight: 300;
  font-variation-settings: "wght" 300;
  font-size: clamp(0.98rem, 2.5vw, 1.08rem);
}

.gold-rule {
  width: 4.15rem;
  height: 1px;
  margin: 0 0 1.3rem;
  background: var(--gold);
}

.gold-rule.short {
  width: 3.25rem;
  margin-bottom: 2rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.about {
  position: relative;
  padding: clamp(4.1rem, 6vw, 5.25rem) var(--page-pad) clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 30% 22%, rgba(184, 151, 74, 0.08), transparent 31rem),
    linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  overflow: hidden;
}

.about-inner {
  display: grid;
  align-items: center;
  gap: 3rem;
  width: min(100%, 70rem);
  margin: 0 auto;
}

.portrait-frame {
  margin: 0;
  align-self: center;
}

.portrait-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.95) contrast(0.98);
  -webkit-mask-image: radial-gradient(ellipse at 50% 51%, #000 0%, #000 73%, rgba(0, 0, 0, 0.78) 86%, transparent 100%);
  mask-image: radial-gradient(ellipse at 50% 51%, #000 0%, #000 73%, rgba(0, 0, 0, 0.78) 86%, transparent 100%);
}

.about-copy {
  align-self: center;
}

.about-copy p {
  margin-bottom: 1.2rem;
  color: var(--navy);
}

.signature {
  margin-top: 2rem;
}

.signature img {
  width: min(16rem, 70vw);
  height: auto;
  margin-bottom: 0.25rem;
  mix-blend-mode: multiply;
}

.signature span {
  color: var(--dusty-navy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.values {
  padding: 0 var(--page-pad) 4.8rem;
  background: var(--ivory);
}

.values-inner {
  display: grid;
  gap: 0;
  width: min(100%, 73rem);
  margin: 0 auto;
  border-top: 1px solid rgba(184, 151, 74, 0.52);
}

.value {
  padding: 2.15rem 0;
  border-bottom: 1px solid rgba(184, 151, 74, 0.24);
}

.value-icon {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  margin: 0 0 1.1rem;
  place-items: center;
  color: var(--gold);
}

.value-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.value:nth-child(3) .value-icon,
.value:nth-child(4) .value-icon {
  transform: scale(1.12);
}

.value h3 {
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.45;
  text-transform: uppercase;
}

.value p {
  margin-bottom: 0;
  max-width: 22rem;
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.68;
}

.site-footer {
  display: grid;
  justify-items: center;
  padding: 4.1rem var(--page-pad) 3.8rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(36, 55, 70, 0.78), transparent 30rem),
    var(--navy);
  color: rgba(250, 248, 243, 0.86);
  text-align: center;
}

.footer-logo {
  width: min(13rem, 54vw);
  height: auto;
  margin-bottom: 2.1rem;
}

.footer-rule {
  width: min(37rem, 100%);
  height: 1px;
  margin-bottom: 1.35rem;
  background: rgba(184, 151, 74, 0.67);
}

.site-footer p {
  margin-bottom: 0.85rem;
  max-width: 48rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.8;
  text-transform: uppercase;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  margin-top: 0.45rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid rgba(184, 151, 74, 0.74);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.footer-button:hover,
.footer-button:focus-visible {
  background: rgba(184, 151, 74, 0.12);
  border-color: var(--gold);
  color: var(--cream);
  outline: none;
}

@media (min-width: 48rem) {
  .site-header {
    justify-content: center;
  }

  .hero {
    min-height: clamp(45rem, 58vw, 56rem);
  }

  .hero-copy {
    width: min(38rem, 43vw);
  }

  .hero-copy p:not(.section-label) {
    font-weight: 300;
    text-shadow:
      0 1px 0 rgba(250, 248, 243, 0.75),
      0 0 1.25rem rgba(250, 248, 243, 0.78);
  }

  .values-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .value {
    min-height: 13rem;
    padding: 2.25rem 1.65rem 1.35rem;
    text-align: center;
  }

  .value-icon {
    margin-inline: auto;
  }

  .value:not(:last-child) {
    border-right: 1px solid rgba(184, 151, 74, 0.38);
  }

  .value p {
    margin-inline: auto;
  }
}

@media (min-width: 64rem) {
  .about {
    min-height: clamp(46rem, 58vw, 58rem);
    padding: clamp(5.5rem, 7vw, 7.5rem) var(--page-pad);
    background:
      linear-gradient(90deg, rgba(250, 248, 243, 0.05) 0%, rgba(250, 248, 243, 0.02) 45%, rgba(250, 248, 243, 0.36) 64%, rgba(250, 248, 243, 0.82) 100%),
      linear-gradient(180deg, rgba(250, 248, 243, 0) 82%, var(--ivory) 100%),
      url("assets/rachel-kelloway-wide.jpg") 43% center / cover no-repeat,
      var(--ivory);
  }

  .about-inner {
    display: block;
    min-height: clamp(36rem, 44vw, 45rem);
    width: min(100%, 78rem);
  }

  .portrait-frame {
    display: none;
  }

  .about-copy {
    width: min(38rem, 43vw);
    margin-left: auto;
    padding-top: clamp(0rem, 2vw, 2.25rem);
  }

  .about-copy p {
    max-width: 34rem;
  }
}

@media (min-width: 48rem) and (max-width: 63.9375rem) {
  .about-inner {
    width: min(100%, 42rem);
  }

  .portrait-frame img {
    max-height: none;
  }

  .about-copy {
    width: min(100%, 38rem);
    margin-inline: auto;
  }

  .about-copy p {
    max-width: 34rem;
  }
}

@media (min-width: 75rem) {
  .site-header {
    padding-inline: 4.5rem;
  }

  .hero {
    min-height: clamp(48rem, 52vw, 58rem);
  }

  h1 {
    font-size: clamp(4.4rem, 5vw, 5.3rem);
    max-width: 11.6ch;
  }

  .hero-copy p:not(.section-label) {
    max-width: 27rem;
  }
}

@media (min-width: 105rem) {
  .hero {
    min-height: 56rem;
  }

  .hero-copy {
    width: min(60rem, 48vw);
    margin-left: clamp(8rem, 10vw, 15rem);
  }

  .hero::before {
    inset-right: 34%;
  }

  h1 {
    font-size: clamp(4.15rem, 3.15vw, 4.85rem);
    max-width: 24ch;
    line-height: 0.96;
  }

  .hero-copy p:not(.section-label) {
    max-width: 34rem;
    font-size: 1.08rem;
  }

  .about {
    background-position: 44% center;
  }

  .about-inner {
    width: min(100%, 90rem);
  }

  .about-copy {
    width: min(41rem, 38vw);
    margin-right: clamp(2rem, 5vw, 6rem);
  }
}

@media (max-width: 47.9375rem) {
  .site-header {
    min-height: 8.8rem;
    align-items: flex-start;
    padding-top: 1.15rem;
  }

  .logo-link {
    width: clamp(8.25rem, 42vw, 10.25rem);
  }

  .hero {
    align-items: flex-start;
    min-height: 54rem;
    padding-top: 9.7rem;
  }

  .hero::before {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(250, 248, 243, 0.98) 0%, rgba(250, 248, 243, 0.96) 34%, rgba(250, 248, 243, 0.52) 59%, rgba(250, 248, 243, 0.03) 79%),
      linear-gradient(90deg, rgba(250, 248, 243, 0.9) 0%, rgba(250, 248, 243, 0.28) 62%, rgba(250, 248, 243, 0) 100%);
  }

  .hero-copy {
    width: auto;
    max-width: 25rem;
    margin: 0;
    padding: 0 var(--page-pad);
  }

  .hero-copy p:not(.section-label) {
    max-width: 20.5rem;
    font-weight: 300;
    text-shadow:
      0 1px 0 rgba(250, 248, 243, 0.85),
      0 0 1.1rem rgba(250, 248, 243, 0.9);
  }

  .hero-media img {
    object-position: 66% center;
  }

  .about {
    padding-top: 4.2rem;
  }

  .portrait-frame {
    margin-inline: calc(var(--page-pad) * -0.45);
  }

  .portrait-frame img {
    -webkit-mask-image: radial-gradient(ellipse at 50% 51%, #000 0%, #000 76%, rgba(0, 0, 0, 0.82) 88%, transparent 100%);
    mask-image: radial-gradient(ellipse at 50% 51%, #000 0%, #000 76%, rgba(0, 0, 0, 0.82) 88%, transparent 100%);
  }
}
