@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --cream: #fbf8f2;
  --paper: #fffdf9;
  --ink: #17141c;
  --plum: #2b143f;
  --plum-2: #43205f;
  --teal: #568a89;
  --gold: #b8872d;
  --muted: #675f6b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-header {
  height: 94px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  gap: 38px;
  background: rgba(251,248,242,.94);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(184,135,45,.16);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex; align-items: center; gap: 15px; font-size: 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600; margin-right: auto;
}
.brand em { color: var(--gold); font-style: normal; font-weight: 500; }
.brand-mark {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  display: block; background: white;
}
.brand-mark img {
  width: 68px; height: 68px; max-width: none; display: block;
  object-fit: cover; object-position: 50% 0; transform: translate(-6px, -3px);
}
nav { display: flex; gap: 34px; font-size: 14px; }
nav a:hover { color: var(--gold); }
.nav-cta { padding: 12px 18px; border: 1px solid var(--plum); font-size: 13px; font-weight: 600; }

.hero {
  min-height: calc(100vh - 94px);
  padding: clamp(64px, 7vw, 104px) clamp(24px, 5vw, 78px) 32px;
  display: grid; grid-template-columns: 1.02fr .98fr; column-gap: 48px;
  position: relative; overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; align-self: center; padding-bottom: 80px; }
.eyebrow {
  color: var(--gold); text-transform: uppercase; letter-spacing: .2em;
  font-size: 12px; font-weight: 600; margin: 0 0 20px;
}
h1 { font-family: "Playfair Display", Georgia, serif; color: var(--plum); font-weight: 500; }
h2 { font-family: "DM Serif Display", Georgia, serif; color: var(--plum); font-weight: 400; }
h1 { margin: 0; font-size: clamp(64px, 7.1vw, 112px); line-height: .94; letter-spacing: -.045em; max-width: 800px; }
h1 span { display: block; }
.hero-text { max-width: 630px; margin: 30px 0 34px; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.72; color: #3d3740; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; }
.button { min-height: 56px; padding: 0 30px; display: inline-flex; align-items: center; justify-content: center; font-weight: 600; transition: .25s ease; }
.button-primary { background: var(--plum); color: white; }
.button-primary:hover { background: var(--plum-2); transform: translateY(-2px); }
.button-outline { border: 1.5px solid var(--gold); color: var(--gold); background: rgba(255,255,255,.48); }
.button-outline:hover { background: var(--gold); color: white; }

.hero-art { min-height: 610px; position: relative; align-self: center; }
.shape { position: absolute; display: block; }
.shape-teal { width: 56%; height: 67%; border-radius: 50% 50% 42% 58%; background: var(--teal); left: 3%; top: 0; transform: rotate(-16deg); }
.shape-plum { width: 58%; height: 100%; border-radius: 48% 0 0 52%; background: var(--plum); right: -20%; top: -5%; }
.shape-plum::after { content:""; position:absolute; inset: 24% 18%; border: 1.5px solid var(--gold); border-radius: 50%; transform: rotate(34deg); }
.shape-gold { width: 65%; height: 52%; border-radius: 50% 50% 0 0; background: var(--gold); left: 4%; bottom: 0; transform: rotate(-8deg); }
.portrait-card {
  position: absolute; z-index: 3; width: 61%; min-width: 350px; height: 76%;
  top: 10%; left: 20%; border: 3px solid #d1a957; border-radius: 18px;
  overflow: hidden; background: linear-gradient(145deg, #eee1cd, #b99a73 54%, #493227);
  box-shadow: 0 24px 60px rgba(43,20,63,.25);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-portrait {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.portrait-caption { padding: 22px 25px; background: rgba(43,20,63,.91); color: white; position: relative; display: grid; gap: 4px; }
.portrait-caption span { color: #e2bf78; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.portrait-caption strong { font: 400 21px "DM Serif Display", Georgia, serif; }
.portrait-caption a { font-size: 12px; margin-top: 4px; color: #f4dfb0; }
.value-strip {
  grid-column: 1/-1; align-self: end; min-height: 72px;
  display: flex; align-items: center; justify-content: center; gap: 28px;
  border-top: 1px solid rgba(184,135,45,.5); margin-top: 22px;
  font-size: 14px;
}
.value-strip span::first-letter { color: var(--gold); }
.value-strip i { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

.statement { padding: 120px 8vw; text-align: center; background: var(--paper); }
.statement h2, .section-heading h2, .cta-section h2 { font-size: clamp(42px, 5vw, 70px); line-height: 1.05; margin: 0 auto 28px; max-width: 950px; }
.statement > p:last-child { font-size: 19px; line-height: 1.75; max-width: 780px; margin: 0 auto; color: var(--muted); }

.process, .profile-section { padding: 110px clamp(24px, 7vw, 110px); }
.section-heading { margin-bottom: 52px; }
.section-heading h2 { margin-left: 0; max-width: 760px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(184,135,45,.35); }
.steps article { background: var(--cream); padding: 46px 36px 52px; }
.steps article > span { color: var(--gold); font: 500 16px "Playfair Display", Georgia, serif; }
.steps h3 { color: var(--plum); font: 400 27px "DM Serif Display", Georgia, serif; margin: 45px 0 15px; }
.steps p { color: var(--muted); line-height: 1.75; margin: 0; }

.profile-section { background: var(--plum); }
.profile-section .eyebrow { color: #d6b36c; }
.profile-section h2 { color: white; }
.profile-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 24px; }
.profile-grid-single { grid-template-columns: minmax(0, 940px); }
.profile-tile {
  min-height: 280px; padding: 32px; background: #f4eee4; display: grid;
  grid-template-columns: 150px 1fr auto; align-items: end; gap: 28px;
  transition: transform .25s ease, background .25s ease;
}
.profile-tile:hover { transform: translateY(-4px); background: white; }
.tile-monogram {
  width: 150px; height: 180px; display: grid; place-items: center;
  background: var(--teal); color: white; font: 500 60px "Playfair Display", Georgia, serif;
}
.profile-tile:not(.featured) { grid-template-columns: 90px 1fr auto; }
.profile-tile:not(.featured) .tile-monogram { width: 90px; height: 120px; background: var(--gold); font-size: 38px; }
.profile-tile span { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; }
.profile-tile h3 { font: 400 29px "DM Serif Display", Georgia, serif; color: var(--plum); margin: 9px 0; }
.profile-tile p { color: var(--muted); margin: 0; line-height: 1.5; }
.profile-tile b { color: var(--gold); font-size: 28px; align-self: start; }

.cta-section { text-align: center; padding: 125px 24px; background: var(--teal); color: white; }
.cta-section .eyebrow { color: #f2d392; }
.cta-section h2 { color: white; }
.cta-section > p:not(.eyebrow) { max-width: 620px; margin: 0 auto 32px; font-size: 18px; line-height: 1.7; }
.button-gold { background: var(--gold); color: white; }
.button-gold:hover { background: #9f7020; transform: translateY(-2px); }

footer { padding: 55px clamp(24px, 5vw, 78px); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 20px; background: #170d21; color: #e8dfeb; font-size: 12px; }
.footer-brand { font-size: 16px; }
.footer-brand .brand-mark { width: 42px; height: 42px; }
.footer-brand .brand-mark img { width: 51px; height: 51px; transform: translate(-5px, -2px); }
footer p:nth-child(2) { text-align: center; }
footer p:last-child { text-align: right; }

.profile-placeholder {
  min-height: 100vh; padding: 42px clamp(24px, 6vw, 92px);
  background: var(--cream); position: relative; overflow: hidden;
}
.profile-placeholder::after {
  content: ""; position: absolute; width: 46vw; height: 80vh; right: -10vw; top: 10vh;
  border-radius: 50% 0 0 50%; background: var(--plum); z-index: 0;
}
.profile-placeholder > .brand { position: relative; z-index: 2; width: max-content; }
.profile-placeholder section {
  min-height: calc(100vh - 140px); display: grid; grid-template-columns: minmax(260px, .7fr) 1.3fr;
  align-items: center; gap: clamp(45px, 7vw, 110px); max-width: 1180px; position: relative; z-index: 1;
}
.placeholder-monogram {
  aspect-ratio: 4/5; max-height: 590px; border: 3px solid var(--gold); border-radius: 18px;
  display: grid; place-items: center; background: linear-gradient(145deg, #eadbc4, #9d7655);
  color: white; font: 500 clamp(82px, 10vw, 150px) "Playfair Display", Georgia, serif;
  box-shadow: 0 24px 60px rgba(43,20,63,.18);
}
.profile-placeholder h1 { font-size: clamp(58px, 7vw, 100px); }
.profile-role { color: var(--gold); font: 500 clamp(20px, 2vw, 28px) "Playfair Display", Georgia, serif; margin: 24px 0; }
.profile-note { max-width: 540px; color: var(--muted); font-size: 18px; line-height: 1.7; margin: 0 0 32px; }

@media (max-width: 980px) {
  nav { display: none; }
  .nav-cta { margin-left: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { padding-bottom: 30px; }
  .hero-art { min-height: 540px; }
  .portrait-card { width: 55%; left: 28%; }
  .steps { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-placeholder section { grid-template-columns: 1fr; padding: 70px 0; }
  .placeholder-monogram { max-width: 360px; width: 75%; }
  .profile-placeholder::after { opacity: .08; width: 80vw; }
}

@media (max-width: 640px) {
  .site-header { height: 76px; padding: 0 18px; }
  .brand { font-size: 16px; gap: 10px; }
  .brand em { display: none; }
  .brand-mark { width: 43px; height: 43px; font-size: 21px; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding: 58px 20px 22px; }
  h1 { font-size: clamp(52px, 15vw, 72px); }
  .hero-text { margin-top: 24px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-art { min-height: 430px; margin-top: 20px; }
  .portrait-card { width: 76%; min-width: 0; height: 76%; left: 12%; }
  .value-strip { overflow: hidden; justify-content: flex-start; white-space: nowrap; gap: 16px; font-size: 12px; }
  .statement, .process, .profile-section, .cta-section { padding: 82px 20px; }
  .profile-tile, .profile-tile:not(.featured) { grid-template-columns: 76px 1fr; min-height: 230px; padding: 24px; }
  .profile-tile b { display: none; }
  .tile-monogram, .profile-tile:not(.featured) .tile-monogram { width: 76px; height: 100px; font-size: 30px; }
  footer { grid-template-columns: 1fr; text-align: left; }
  footer p:nth-child(2), footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
