:root {
  --ink: #1f2922;
  --ink-soft: #324139;
  --paper: #f4f0e7;
  --paper-warm: #ebe4d7;
  --white: #fffdf8;
  --sage: #aab9a7;
  --line: rgba(31, 41, 34, 0.16);
  --max: 1240px;
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), var(--max));
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.brand img { width: 182px; height: auto; }
.site-header nav { display: flex; align-items: center; gap: 34px; }
.site-header nav a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .05em;
  opacity: .82;
  transition: opacity .2s ease;
}
.site-header nav a:hover { opacity: 1; }
.nav-contact {
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  padding: 11px 18px;
}

.section-shell {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 820px;
  padding: 178px 0 92px;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  gap: 74px;
  align-items: center;
}

.eyebrow, .tiny-label {
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: 12px;
  font-weight: 700;
  color: var(--sage);
}
.eyebrow.dark { color: #617064; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
h1 {
  margin-bottom: 28px;
  font-size: clamp(58px, 7vw, 102px);
  line-height: .93;
}
h1 em { font-weight: 400; color: var(--sage); }

.hero-lede {
  max-width: 600px;
  margin-bottom: 36px;
  color: rgba(255,255,255,.72);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 12px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--ink); }
.button-outline { border: 1px solid rgba(255,255,255,.52); color: var(--white); }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 180px 180px 28px 28px;
  filter: saturate(.9) contrast(.96);
}
.hero-note {
  position: absolute;
  left: -34px;
  bottom: 34px;
  max-width: 250px;
  padding: 18px 22px;
  background: rgba(244,240,231,.94);
  color: var(--ink);
  border-radius: 16px;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.45;
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}

.light-section {
  color: var(--ink);
  background: var(--paper);
}
.about.section-shell,
.philosophy.section-shell {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
}

.about { padding-top: 112px; padding-bottom: 124px; }
.section-label {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 12px;
  font-weight: 750;
  color: #617064;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 104px;
  padding-top: 64px;
}
.about h2,
.philosophy h2,
.gallery h2,
.contact h2 {
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
}
.about-copy p {
  color: #465249;
  font-size: 17px;
  line-height: 1.8;
}
.about-copy .signature-line {
  margin: 32px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1.45;
}

.gallery {
  padding-top: 120px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 1.15fr .72fr .68fr;
  gap: 36px;
  align-items: end;
}
.gallery-card { margin: 0; overflow: hidden; border-radius: var(--radius); background: #f7f4ee; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-large { height: 560px; }
.gallery-small { height: 390px; }
.gallery-copy { padding: 0 8px 30px; }
.gallery-copy h2 { margin-bottom: 24px; font-size: clamp(38px, 4vw, 58px); }
.gallery-copy p { margin: 0; color: rgba(255,255,255,.67); line-height: 1.75; font-size: 16px; }

.philosophy { padding-top: 112px; padding-bottom: 128px; }
.philosophy-head { max-width: 760px; margin-bottom: 66px; }
.philosophy-head h2 { margin-bottom: 0; }
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principle { padding: 42px 40px 48px 0; }
.principle + .principle { padding-left: 40px; border-left: 1px solid var(--line); }
.principle-number { margin-bottom: 60px; color: #7c8b7f; font-size: 12px; letter-spacing: .12em; }
.principle h3 { margin-bottom: 16px; font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.principle p { margin-bottom: 0; color: #526057; line-height: 1.75; }

.contact {
  min-height: 650px;
  display: grid;
  place-items: center;
  padding-top: 110px;
  padding-bottom: 110px;
  text-align: center;
}
.contact-inner { max-width: 760px; }
.contact h2 { margin-bottom: 22px; font-size: clamp(50px, 6vw, 82px); }
.contact-inner > p:not(.eyebrow):not(.contact-handle) {
  max-width: 620px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,.69);
  font-size: 18px;
  line-height: 1.72;
}
.contact-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.contact-handle { margin-top: 28px; color: var(--sage); font-size: 13px; letter-spacing: .12em; }

footer { background: #172019; border-top: 1px solid rgba(255,255,255,.12); }
.footer-inner {
  width: min(calc(100% - 48px), var(--max));
  min-height: 150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner img { width: 150px; }
.footer-inner p { margin: 0; color: rgba(255,255,255,.48); font-size: 12px; letter-spacing: .04em; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: 0; gap: 54px; padding-top: 165px; }
  .hero-copy { max-width: 760px; }
  .hero-media img { height: 520px; }
  .hero-note { left: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 38px; }
  .about-heading { max-width: 760px; }
  .gallery { grid-template-columns: 1.1fr .9fr; }
  .gallery-copy { grid-column: 1 / -1; grid-row: 1; max-width: 680px; padding-left: 0; }
  .gallery-large { height: 500px; }
  .gallery-small { height: 500px; }
}

@media (max-width: 720px) {
  .site-header { width: min(calc(100% - 32px), var(--max)); height: 88px; }
  .brand img { width: 142px; }
  .site-header nav { gap: 14px; }
  .site-header nav a:not(.nav-contact) { display: none; }
  .nav-contact { padding: 9px 14px; }
  .section-shell { width: min(calc(100% - 32px), var(--max)); }
  .hero { padding-top: 136px; padding-bottom: 72px; }
  h1 { font-size: clamp(50px, 16vw, 74px); }
  .hero-media img { height: 390px; border-radius: 120px 120px 22px 22px; }
  .hero-note { left: 14px; right: 14px; bottom: 14px; max-width: none; font-size: 14px; }
  .about.section-shell, .philosophy.section-shell { padding-left: 16px; padding-right: 16px; }
  .about, .philosophy { padding-top: 82px; padding-bottom: 88px; }
  .about-grid { padding-top: 42px; }
  .gallery { padding-top: 84px; padding-bottom: 84px; grid-template-columns: 1fr; gap: 22px; }
  .gallery-copy { grid-column: auto; grid-row: auto; padding-bottom: 18px; }
  .gallery-large, .gallery-small { height: auto; aspect-ratio: 1.05 / 1; }
  .principles { grid-template-columns: 1fr; }
  .principle { padding: 32px 0 36px; }
  .principle + .principle { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .principle-number { margin-bottom: 28px; }
  .contact { min-height: 560px; }
  .contact-actions { flex-direction: column; }
  .button { width: 100%; }
  .footer-inner { min-height: 180px; flex-direction: column; align-items: flex-start; justify-content: center; }
}
