:root {
  --black: #171b1d;
  --gold: #c5a574;
  --white: #fff;
  --soft: #f8f8f7;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;
}

/* =========================
   RESET & BASE
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--black);
  font: 400 14px/1.75 var(--sans);
}

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

/* =========================
   LAYOUT
========================= */

.shell {
  width: min(1180px, calc(100% - 68px));
  margin: auto;
}

/* =========================
   HEADER / NAVIGATION
========================= */

.topbar {
  height: 94px;
  background: var(--black);
  color: #fff;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font: 500 17px/1 var(--serif);
  letter-spacing: -0.6px;
}

.logo-mark {
  width: 43px;
  height: 52px;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 19px;
}

.logo-mark span {
  font-size: 10px;
}

.logo small {
  display: block;
  margin-top: 6px;
  font: 600 7px/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: 1.9px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.nav-links > a:not(.nav-button) {
  position: relative;
}

.nav-links > a:not(.nav-button):hover::after,
.nav-links > a:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.nav-button {
  padding: 13px 22px;
  background: var(--gold);
  color: #fff;
  transition: 0.2s;
}

.nav-button:hover,
.gold-button:hover {
  filter: brightness(1.12);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
}

/* =========================
   HERO
========================= */

.hero {
  background: var(--black);
  color: #fff;
  min-height: 510px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  min-height: 510px;
}

.kicker {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin: 0 0 17px;
  color: var(--gold);
}

.kicker.dark {
  color: #777;
}

.hero h1,
.gold-band h2,
.section-intro h2,
.profile h2,
.contact h2 {
  font: 500 clamp(33px, 4vw, 52px) / 1.17 var(--sans);
  letter-spacing: -1.8px;
  margin: 0 0 17px;
}

.hero h1 em,
.gold-band em,
.section-intro em,
.profile em,
.contact em {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
}

.hero-copy > p:not(.kicker) {
  max-width: 570px;
  color: #e4e4e4;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 26px;
}

/* =========================
   BUTTONS
========================= */

.gold-button,
.white-button,
.black-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 14px 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: 0.2s;
}

.gold-button {
  background: var(--gold);
  color: #fff;
}

.gold-button b {
  font-size: 17px;
  font-weight: 400;
}

/* =========================
   HERO PORTRAIT — EMMA
========================= */

.hero-portrait {
  height: 100%;
  min-height: 510px;
  display: grid;
  place-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    #25292b,
    #121516
  );
}

.portrait-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  background: #3b3834;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.portrait-circle img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* =========================
   GOLD BAND
========================= */

.gold-band {
  background: var(--gold);
  color: #fff;
  padding: 67px 0;
}

.center {
  text-align: center;
}

.gold-band .kicker {
  color: #fff;
}

.gold-band h2 {
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -1.2px;
}

.gold-band > div > p:not(.kicker) {
  max-width: 710px;
  margin: 0 auto 24px;
  font-size: 12px;
  line-height: 1.9;
}

.white-button {
  background: #fff;
  color: var(--black);
}

/* =========================
   GENERAL SECTIONS
========================= */

.section {
  padding: 90px 0;
}

/* =========================
   SERVICES
========================= */

.services {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid #e9e5de;
  transform: rotate(45deg);
  left: calc(50% - 180px);
  top: 100px;
}

.section-intro {
  text-align: center;
  position: relative;
  margin-bottom: 41px;
}

.section-intro h2 {
  font-size: 30px;
}

.section-intro em {
  color: var(--gold);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
}

.service-card {
  min-height: 250px;
  text-align: center;
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 27px 25px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.025);
  transition: 0.25s;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-card span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
}

.service-card h3 {
  font-size: 13px;
  line-height: 1.45;
  margin: 27px 0 14px;
}

.service-card p {
  font-size: 11px;
  line-height: 1.8;
  margin: 0 0 19px;
}

.service-card a {
  font-size: 9px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

/* =========================
   PROFILE — MARY
========================= */

.profile {
  background: var(--black);
  color: #fff;
}

.profile-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 485px;
}

.profile-portrait {
  display: grid;
  place-items: center;
  background: #222728;
}

/* Mary's portrait */

.profile-photo {
  width: 310px;
  height: 310px;
  border-radius: 50%;
  overflow: hidden;
  background: #3e3b36;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.profile-copy {
  padding: 75px 55px;
}

.profile-copy h2 {
  font-size: 32px;
  color: var(--gold);
}

.profile-copy > p:not(.kicker) {
  max-width: 510px;
  color: #e6e6e6;
  font-size: 12px;
  line-height: 1.85;
  margin-bottom: 24px;
}

.outline-button {
  border: 1px solid var(--gold);
  color: #fff;
}

.profile-copy small {
  display: block;
  color: #aaa;
  font-size: 9px;
  margin-top: 17px;
}

/* =========================
   INSIGHTS
========================= */

.insights {
  background: #fff;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px;
}

.insight {
  min-height: 190px;
  background: var(--soft);
  padding: 27px;
  border-left: 4px solid var(--gold);
  transition: 0.2s;
}

.insight:hover {
  background: #eee;
}

.insight span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
  font-weight: 700;
}

.insight h3 {
  font-size: 18px;
  line-height: 1.35;
  margin: 21px 0 18px;
}

.insight b {
  font-size: 9px;
  color: var(--gold);
  text-transform: uppercase;
}

/* =========================
   CONTACT
========================= */

.contact {
  background: var(--gold);
  padding: 80px 0;
  color: #fff;
}

.contact .kicker {
  color: #fff;
}

.contact h2 {
  font-size: 36px;
  line-height: 1.15;
}

.contact > div > p:not(.kicker) {
  font-size: 12px;
  margin-bottom: 22px;
}

.black-button {
  background: var(--black);
  color: #fff;
}

.contact small {
  display: block;
  margin-top: 22px;
  font-size: 9px;
  letter-spacing: 0.3px;
}

/* =========================
   FOOTER
========================= */

footer {
  background: var(--black);
  color: #fff;
  padding: 30px 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer p,
.footer div {
  margin: 0;
  color: #bbb;
  font-size: 9px;
}

.footer div {
  display: flex;
  gap: 18px;
}

/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 760px) {

  .shell {
    width: min(100% - 40px, 600px);
  }

  .topbar {
    height: 73px;
  }

  .logo-mark {
    height: 42px;
    width: 36px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle i {
    display: block;
    width: 24px;
    height: 1px;
    background: #fff;
    margin: 5px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 22px 20px;
    z-index: 4;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-layout,
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 64px 0 36px;
  }

  .hero-portrait {
    min-height: 330px;
  }

  /* Mobile Emma portrait */

  .portrait-circle {
    width: 280px;
    height: 280px;
  }

  .hero {
    min-height: auto;
  }

  .gold-band,
  .section,
  .contact {
    padding: 60px 0;
  }

  .service-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile Mary portrait */

  .profile-portrait {
    min-height: 325px;
  }

  .profile-photo {
    width: 250px;
    height: 250px;
  }

  .profile-copy {
    padding: 60px 0;
  }

  .footer {
    display: grid;
    gap: 20px;
  }

  .footer div {
    display: block;
  }

  .footer div a {
    margin-right: 15px;
  }
}
