
:root {
  --black: #070707;
  --graphite: #1f1f1f;
  --text: #181818;
  --muted: #5d5d5d;
  --line: #d8d8d8;
  --light: #f5f5f3;
  --paper: #fbfbf9;
  --white: #ffffff;
  --max: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251, 251, 249, 0.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.header-inner { max-width: var(--max); margin: 0 auto; min-height: 86px; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo { width: 315px; height: auto; }
nav { display: flex; align-items: center; gap: 34px; font-size: 14px; }
nav a { position: relative; padding-bottom: 5px; color: var(--graphite); }
nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--black); transition: width 180ms ease; }
nav a:hover::after { width: 100%; }
.hero { position: relative; min-height: 76vh; display: grid; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--light); }
.hero-image { position: absolute; inset: 0; z-index: 0; }
.hero-image img { opacity: 0.9; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(251,251,249,0.88) 0%, rgba(251,251,249,0.67) 32%, rgba(251,251,249,0.08) 70%); z-index: 1; }
.hero-inner { position: relative; z-index: 2; max-width: var(--max); width: 100%; margin: 0 auto; padding: 120px 28px 110px; }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; color: var(--black); line-height: 1.08; letter-spacing: -0.04em; }
h1 { max-width: 700px; font-size: clamp(48px, 6.5vw, 88px); line-height: 0.98; letter-spacing: -0.055em; }
h2 { font-size: clamp(36px, 4vw, 62px); }
h3 { font-size: clamp(25px, 2.5vw, 34px); }
.rule { width: 82px; height: 1px; background: var(--black); margin: 30px 0 24px; }
.hero p { max-width: 470px; margin: 0; color: var(--graphite); font-size: 18px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; min-height: 46px; padding: 14px 22px; background: var(--black); color: var(--white); text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; border: 1px solid var(--black); transition: transform 180ms ease, background 180ms ease, color 180ms ease; }
.btn:hover { transform: translateY(-1px); background: transparent; color: var(--black); }
.container { max-width: var(--max); margin: 0 auto; }
.section { padding: 92px 28px; border-bottom: 1px solid var(--line); }
.section.white { background: var(--white); }
.section.light { background: var(--light); }
.label { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; color: var(--graphite); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700; }
.label::after { content: ""; width: 56px; height: 1px; background: var(--black); }
p { margin: 0; }
.copy { color: var(--muted); font-size: 16px; max-width: 610px; }
.copy + .copy { margin-top: 18px; }
.fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.field { min-height: 230px; padding: 44px 54px; border-right: 1px solid var(--line); }
.field:last-child { border-right: 0; }
.number { display: block; margin-bottom: 20px; font-size: 12px; letter-spacing: 0.1em; color: var(--graphite); }
.field h3 { font-size: 27px; margin-bottom: 16px; }
.field p { color: var(--muted); font-size: 14px; max-width: 280px; }
.more { display: inline-flex; gap: 12px; margin-top: 26px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.split { display: grid; grid-template-columns: 1fr 1.35fr; min-height: 520px; border-bottom: 1px solid var(--line); }
.split.reverse { grid-template-columns: 1.35fr 1fr; }
.split .text { padding: 70px 84px; display: flex; flex-direction: column; justify-content: center; }
.split .image { min-height: 460px; }
.portrait img { object-position: center 34%; }
.profile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-bottom: 1px solid var(--line); }
.profile-item { padding: 42px 48px; border-right: 1px solid var(--line); }
.profile-item:last-child { border-right: 0; }
.profile-item h3 { font-size: 28px; margin-bottom: 16px; }
.profile-item p { color: var(--muted); font-size: 14px; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-bottom: 1px solid var(--line); }
.content-box { padding: 72px 84px; border-right: 1px solid var(--line); }
.content-box:last-child { border-right: 0; }
.content-box h3 { margin-bottom: 22px; }
ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 15px; }
li + li { margin-top: 8px; }
.quote { padding: 72px 84px; background: var(--white); border-bottom: 1px solid var(--line); font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 4vw, 58px); line-height: 1.05; letter-spacing: -0.045em; }
.contact { display: grid; grid-template-columns: 1fr 1.35fr; border-bottom: 1px solid var(--line); background: var(--paper); }
.contact-text { padding: 72px 64px; }
.contact-text h2 { margin-bottom: 32px; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 34px; margin-top: 26px; }
.contact-detail span { display: block; margin-bottom: 5px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 700; }
.contact-detail strong, .contact-detail a { font-size: 15px; font-weight: 500; }
.contact-image { min-height: 420px; }
.legal { max-width: 860px; margin: 0 auto; padding: 90px 28px; }
.legal h1 { font-size: clamp(42px, 5vw, 72px); margin-bottom: 38px; }
.legal h2 { font-size: 30px; margin-top: 36px; margin-bottom: 12px; }
.legal p, .legal li { color: var(--muted); font-size: 16px; }
.legal p + p { margin-top: 14px; }
footer { background: var(--black); color: rgba(255,255,255,0.72); padding: 30px 28px; font-size: 13px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-links { display: flex; gap: 34px; }
.footer-links a:hover { color: var(--white); }
@media (max-width: 980px) { nav { display: none; } .header-inner { min-height: 74px; } .logo { width: 245px; } .fields, .profile-grid, .content-grid, .split, .split.reverse, .contact { grid-template-columns: 1fr; } .field, .profile-item, .content-box { border-right: 0; border-bottom: 1px solid var(--line); padding: 36px 28px; } .split .text, .content-box, .quote, .contact-text { padding: 54px 28px; } .split .image, .contact-image { min-height: 340px; } .hero::after { background: linear-gradient(90deg, rgba(251,251,249,0.9), rgba(251,251,249,0.52)); } .contact-details { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .section { padding: 64px 22px; } .hero-inner { padding: 88px 22px 86px; } .field, .profile-item { padding: 32px 22px; } .split .text, .content-box, .quote, .contact-text { padding: 44px 22px; } .logo { width: 205px; } .footer-inner { flex-direction: column; align-items: flex-start; } .footer-links { gap: 18px; flex-wrap: wrap; } }
