:root {
  --paper: #f4efe6;
  --paper-soft: #ebe3d7;
  --ink: #1d1b17;
  --muted: #766d60;
  --quiet: #a59a89;
  --rule: rgba(29, 27, 23, .14);
  --deep: #22251f;
  --field: rgba(255,255,255,.36);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.58' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
a { color: inherit; text-decoration: none; }
.site-shell { min-height: 100vh; }
.site-header {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 34px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { display: block; width: 204px; height: auto; }
.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.nav a { padding: 8px 0; border-bottom: 1px solid transparent; }
.nav a:hover, .nav a:focus { border-color: var(--rule); color: var(--ink); }
.main-grid {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(60px, 11vw, 156px);
  align-items: center;
  padding: 72px 0 80px;
}
.letter { max-width: 675px; }
.kicker {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .23em;
  margin: 0 0 34px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -.026em;
  margin-bottom: 30px;
  max-width: 620px;
}
.lead {
  color: #49433a;
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.42;
  letter-spacing: -.01em;
  max-width: 650px;
  margin-bottom: 46px;
}
.annotation {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--rule);
  max-width: 650px;
}
.annotation .label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.annotation p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.86;
  margin-bottom: 0;
}
.inquiry-card {
  background: rgba(255,255,255,.22);
  border: 1px solid var(--rule);
  padding: 34px;
  align-self: center;
}
.inquiry-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -.015em;
  margin-bottom: 12px;
}
.inquiry-card > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.74;
  margin-bottom: 28px;
}
.form-row { margin-bottom: 18px; }
label {
  display: block;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 8px;
}
label span { color: var(--quiet); }
input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(29, 27, 23, .18);
  border-radius: 0;
  background: var(--field);
  color: var(--ink);
  padding: 13px 12px;
  font: 15px var(--sans);
  outline: none;
}
input:focus { border-color: rgba(29,27,23,.42); background: rgba(255,255,255,.52); }
.button {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--deep);
  background: var(--deep);
  color: var(--paper);
  cursor: pointer;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease;
}
.button:hover, .button:focus { background: transparent; color: var(--deep); }
.form-status { min-height: 18px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.form-disclaimer {
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.65;
  margin: 14px 0 0;
}
.website-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.below {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 78px 0 92px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 9vw, 130px);
}
.below h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.02em;
  max-width: 520px;
}
.below p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  max-width: 560px;
}
.quiet-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  border-top: 1px solid var(--rule);
}
.quiet-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 22px;
  color: #3b362f;
}
.quiet-list span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--quiet);
  padding-top: 7px;
}
.site-footer {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 32px 0 46px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; text-transform: uppercase; letter-spacing: .16em; font-size: 9px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--ink); }
.legal-page {
  width: min(820px, calc(100% - 56px));
  margin: 0 auto;
  padding: 116px 0 84px;
}
.legal-page h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 500;
}
.legal-page h2 { font-family: var(--serif); font-weight: 500; font-size: 30px; margin-top: 40px; }
.legal-page p, .legal-page li { color: var(--muted); line-height: 1.85; }
.legal-page a { border-bottom: 1px solid var(--rule); }
.fade { animation: fade .9s ease both; }
.fade-2 { animation-delay: .12s; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (max-width: 880px) {
  .nav { display: none; }
  .main-grid, .below { grid-template-columns: 1fr; }
  .main-grid { min-height: auto; padding-top: 72px; gap: 52px; }
  .inquiry-card { max-width: 480px; }
}
@media (max-width: 560px) {
  .site-header, .main-grid, .below, .site-footer, .legal-page { width: min(100% - 36px, 1240px); }
  .brand img { width: 184px; }
  h1 { font-size: 43px; }
  .lead { font-size: 23px; }
  .annotation { grid-template-columns: 1fr; gap: 12px; }
  .inquiry-card { padding: 24px; }
  .quiet-list li { display: block; font-size: 21px; }
  .quiet-list span { display: block; margin-bottom: 7px; }
  .site-footer { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade { animation: none; }
}
