:root {
  --ink: #171313;
  --cream: #f6f0ea;
  --paper: #fffaf6;
  --pink: #e8b8bc;
  --rose: #c96f79;
  --muted: #6f6663;
  --line: #d7cbc4;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
}
body::selection { background: var(--pink); }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding: 16px clamp(22px, 5vw, 72px);
  background: rgba(255,250,246,.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23,19,19,.08);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center;
  width: 43px; height: 43px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -.03em;
}
.brand-name { font-size: 13px; line-height: 1.2; text-transform: uppercase; letter-spacing: .06em; }
.brand-name em { font-family: "Playfair Display", serif; text-transform: none; letter-spacing: 0; font-size: 12px; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; }
.nav a:hover { opacity: .62; }
.nav-cta { border: 1px solid var(--ink); border-radius: 999px; padding: 10px 16px; }
.menu-toggle { display: none; background: none; border: 0; font: inherit; }

.section-pad { padding: clamp(82px, 10vw, 145px) clamp(24px, 7vw, 110px); }
.eyebrow { margin: 0 0 20px; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 600; color: var(--rose); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 500; letter-spacing: -.035em; }
h1 { font-size: clamp(48px, 7vw, 102px); line-height: .98; max-width: 1050px; margin-bottom: 30px; }
h2 { font-size: clamp(39px, 5vw, 72px); line-height: 1.03; }
h1 em, h2 em { color: var(--rose); font-weight: 500; }

.hero { min-height: calc(100vh - 86px); display: grid; grid-template-columns: 1.55fr .65fr; gap: 7vw; align-items: center; background: linear-gradient(135deg, var(--paper), var(--cream)); }
.hero-text { max-width: 720px; font-size: clamp(18px, 2vw, 23px); color: #3f3836; }
.button-row { display: flex; align-items: center; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 600; transition: transform .2s, opacity .2s; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--white); }
.button-light { background: var(--white); color: var(--ink); }
.text-link { display: inline-block; font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.hero-card { display: flex; justify-content: center; }
.hero-card-inner { width: min(100%, 375px); aspect-ratio: .74; padding: 32px; background: var(--pink); display: flex; flex-direction: column; justify-content: space-between; transform: rotate(3deg); box-shadow: 18px 22px 0 rgba(23,19,19,.06); }
.hero-card-inner > p { font-size: 13px; text-transform: uppercase; letter-spacing: .13em; }
.scribble { font-family: "Playfair Display", serif; font-size: clamp(29px, 3vw, 47px); line-height: 1.02; font-style: italic; }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); padding: 18px 0; }
.marquee-track { width: max-content; display: flex; gap: 22px; align-items: center; animation: scroll 27s linear infinite; font-family: "Playfair Display", serif; font-size: 22px; }
.marquee-track b { color: var(--rose); }
@keyframes scroll { to { transform: translateX(-50%); } }

.section-intro { max-width: 940px; margin-bottom: 65px; }
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 315px; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.number { font-size: 12px; letter-spacing: .12em; color: var(--rose); }
.service-card h3 { font-family: "Playfair Display", serif; font-size: clamp(28px, 3vw, 40px); font-weight: 500; margin: 58px 0 18px; }
.service-card p { max-width: 570px; color: var(--muted); font-size: 17px; }

.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: center; background: var(--cream); }
.portrait-placeholder { aspect-ratio: .78; background: #d9ccc5; display: grid; place-items: center; border-radius: 220px 220px 20px 20px; overflow: hidden; }
.portrait-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.caption { font-family: "Playfair Display", serif; font-style: italic; color: var(--rose); margin-top: 14px; text-align: center; }
.about-copy p:not(.eyebrow) { max-width: 720px; font-size: 18px; color: #504744; }
.about-copy .text-link { margin-top: 12px; }

.work { background: var(--ink); color: var(--white); }
.work .eyebrow, .work h2 em { color: var(--pink); }
.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.work-card { padding: 34px; min-height: 385px; background: #211b1b; border: 1px solid #3b3131; display: flex; flex-direction: column; }
.work-type { text-transform: uppercase; letter-spacing: .13em; font-size: 11px; color: var(--pink); }
.work-card h3 { font-family: "Playfair Display", serif; font-size: 38px; font-weight: 500; margin: 62px 0 20px; }
.work-card > p:nth-of-type(2) { color: #d9cfcb; }
.work-card span { margin-top: auto; font-size: 12px; color: #aa9d98; }

.approach { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; background: var(--paper); }
.approach-list > div { display: grid; grid-template-columns: 50px 1fr; gap: 22px; border-top: 1px solid var(--line); padding: 28px 0; }
.approach-list span { font-family: "Playfair Display", serif; color: var(--rose); }
.approach-list p { margin: 0; color: var(--muted); font-size: 17px; }
.approach-list strong { color: var(--ink); }

.contact { background: var(--pink); }
.contact-card { max-width: 1000px; }
.contact .eyebrow { color: #6f3037; }
.contact h2 { max-width: 950px; }
.contact p:not(.eyebrow):not(.small-note) { max-width: 690px; font-size: 20px; }
.contact .button { margin-top: 20px; }
.small-note { margin-top: 12px; font-size: 12px; color: #6d5254; }

footer { padding: 34px clamp(24px,7vw,110px); display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; border-top: 1px solid var(--line); font-size: 12px; }
.footer-brand { justify-self: start; }
.footer-links { justify-self: end; display: flex; gap: 18px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }

@media (max-width: 900px) {
  .site-header { min-height: 76px; }
  .menu-toggle { display: block; }
  .nav { position: absolute; left: 0; right: 0; top: 76px; display: none; flex-direction: column; align-items: stretch; padding: 24px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .hero, .about, .approach { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { justify-content: flex-start; }
  .hero-card-inner { width: min(78vw, 340px); }
  .service-grid, .work-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .footer-links, .footer-brand { justify-self: start; }
}

@media (max-width: 560px) {
  .brand-name { display: none; }
  .section-pad { padding-left: 20px; padding-right: 20px; }
  h1 { font-size: 49px; }
  .service-card { padding: 28px 22px; min-height: 285px; }
  .work-card { min-height: 330px; }
}
