:root {
  --bg: #d9d6d1;
  --bg-soft: #ece8e1;
  --bg-warm: #e7e2db;
  --text: #2f2d2a;
  --muted: #6e6860;
  --panel: #5b5751;
  --panel-2: #615d57;
  --line: rgba(34, 32, 29, 0.12);
  --line-light: rgba(255,255,255,0.12);
  --max: 1520px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(217,214,209,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding: 1rem 1.25rem;
}
.brand { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.brand-mark {
  font-size: .78rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
  white-space: nowrap;
}
.brand-divider { width: 1px; height: 20px; background: rgba(0,0,0,.18); }
.brand-sub {
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(0,0,0,.55);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.desktop-nav { display: none; gap: 1.35rem; font-size: .88rem; color: rgba(0,0,0,.74); }
.desktop-nav a:hover { color: #000; }
.hero {
  display: grid; grid-template-columns: 1fr; min-height: calc(100vh - 73px);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(140deg,#625e58 0%,#55514b 42%,#4b4843 100%);
  border-bottom: 1px solid var(--line);
}
.hero-copy::before,
.hero-copy::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
}
.hero-copy::before {
  background-image:
    linear-gradient(to right, transparent 9%, rgba(255,255,255,.12) 9%, rgba(255,255,255,.12) calc(9% + 1px), transparent calc(9% + 1px), transparent 43%, rgba(255,255,255,.07) 43%, rgba(255,255,255,.07) calc(43% + 1px), transparent calc(43% + 1px), transparent 86%, rgba(255,255,255,.10) 86%, rgba(255,255,255,.10) calc(86% + 1px), transparent calc(86% + 1px)),
    linear-gradient(to bottom, transparent 17%, rgba(255,255,255,.08) 17%, rgba(255,255,255,.08) calc(17% + 1px), transparent calc(17% + 1px), transparent 74%, rgba(255,255,255,.08) 74%, rgba(255,255,255,.08) calc(74% + 1px), transparent calc(74% + 1px));
  opacity: .7;
}
.hero-copy-inner {
  position: relative; z-index: 1; min-height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 2rem 1.25rem;
}
.eyebrow {
  font-size: .68rem; letter-spacing: .34em; text-transform: uppercase; color: rgba(255,255,255,.5);
}
.hero-title {
  margin: 1.2rem 0 0; font-size: clamp(2.9rem, 7.4vw, 8rem);
  line-height: .9; letter-spacing: -.08em; font-weight: 500;
}
.hero-title .gap { height: .55em; }
.hero-bottom {
  display: grid; gap: 1.8rem; align-items: start;
}
.hero-text {
  max-width: 630px; font-size: clamp(.95rem, 1.05vw, 1.08rem); line-height: 1.8; color: rgba(255,255,255,.76);
  text-align: justify; text-justify: inter-word;
}
.hero-meta {
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.25rem;
}
.meta-label { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.44); }
.meta-value { margin-top: .6rem; font-size: 1.18rem; letter-spacing: -.04em; }
.hero-visual {
  position: relative; min-height: 44vh; background: #c8c3bb; overflow: hidden;
}
.hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(231,228,223,.01) 0%, rgba(95,90,84,.10) 100%);
}
.hero-card-row {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: grid; grid-template-columns: 1fr; background: rgba(236,232,225,.9); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.hero-card {
  padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--line);
}
.hero-card:last-child { border-bottom: 0; }
.hero-card h3, .section-head h2, .side-head, .contact-title, .legal-head, .process-title, .service-title {
  margin: 0;
}
.card-label, .section-label, .legal-label { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(0,0,0,.4); }
.card-title { margin-top: .65rem; font-size: 1.5rem; letter-spacing: -.05em; line-height: 1.06; font-weight: 500; }
.card-text { margin-top: .75rem; font-size: .92rem; line-height: 1.75; color: rgba(0,0,0,.62); text-align: justify; }
.section-split, .legal-split, .two-col { display: grid; grid-template-columns: 1fr; }
.section-split { border-bottom: 1px solid var(--line); }
.image-panel {
  position: relative; overflow: hidden; min-height: 260px; border-bottom: 1px solid var(--line);
}
.image-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); opacity: .82; }
.image-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(236,233,227,.32), rgba(236,233,227,.54)); }
.section-head { padding: 2.3rem 1.25rem; position: relative; }
.section-head h2 { margin-top: .75rem; font-size: clamp(1.9rem, 3.6vw, 3.85rem); line-height: 1; letter-spacing: -.06em; font-weight: 500; max-width: 560px; color: rgba(0,0,0,.97); }
.section-body { padding: 2.3rem 1.25rem; }
.section-body p, .contact-copy p, .legal-copy p, .service-copy p, .process-copy p {
  text-align: justify; text-justify: inter-word; hyphens: auto;
}
.profile-body { max-width: 780px; color: rgba(0,0,0,.67); font-size: 1.02rem; line-height: 1.86; display: grid; gap: 1rem; }
.profile-body p { text-align: justify; text-justify: inter-word; hyphens: none; -webkit-hyphens: none; -ms-hyphens: none; word-break: normal; overflow-wrap: normal; }
.dark-section { background: var(--panel); color: white; border-bottom: 1px solid var(--line); }
.dark-grid, .process-grid { display: grid; grid-template-columns: 1fr; }
.dark-side, .process-side { padding: 2.3rem 1.25rem; border-bottom: 1px solid var(--line-light); }
.dark-side h2, .process-side h2, .focus-side h2, .contact-copy h2, .legal-copy h2 {
  margin-top: .75rem; font-size: clamp(1.82rem, 3.6vw, 3.6rem); line-height: 1; letter-spacing: -.06em; font-weight: 500;
}
.rows { display: grid; }
.row {
  display: grid; grid-template-columns: 1fr; gap: .8rem; padding: 1.6rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.row:last-child { border-bottom: 0; }
.row-index { font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.service-title, .process-title { font-size: clamp(1.42rem, 1.8vw, 2rem); line-height: 1; letter-spacing: -.05em; font-weight: 500; }
.service-copy, .process-copy { margin-top: .75rem; max-width: 760px; color: rgba(255,255,255,.67); font-size: .98rem; line-height: 1.82; }
.process-wrap { background: var(--bg-warm); color: var(--text); border-bottom: 1px solid var(--line); }
.process-side { border-color: var(--line); }
.process-copy { color: rgba(0,0,0,.64); }
.focus-wrap { background: #f1ede6; border-bottom: 1px solid var(--line); }
.focus-grid { display: grid; grid-template-columns: 1fr; }
.focus-side, .focus-visual { padding: 2.3rem 1.25rem; }
.focus-list { margin-top: 2rem; border-top: 1px solid var(--line); }
.focus-item { padding: 1rem 0; border-bottom: 1px solid var(--line); color: rgba(0,0,0,.68); }
.focus-item:last-child { border-bottom: 0; }
.focus-visual {
  position: relative; overflow: hidden; background: #d3cec6;
}
.focus-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); opacity: .82; }
.focus-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(211,206,198,.30), rgba(211,206,198,.54)); }
.focus-content { position: relative; z-index: 1; max-width: 620px; }
.focus-content p { color: rgba(0,0,0,.66); font-size: 1.02rem; line-height: 1.84; }
.contact-wrap { background: var(--panel-2); color: white; }
.contact-grid { display: grid; grid-template-columns: 1fr; }
.contact-copy, .contact-form-wrap { padding: 2.3rem 1.25rem; }
.contact-copy { border-bottom: 1px solid var(--line-light); }
.contact-copy p { max-width: 560px; color: rgba(255,255,255,.68); font-size: 1.02rem; line-height: 1.84; }
.form-box { border: 1px solid rgba(255,255,255,.12); display: grid; }
.form-box input, .form-box textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.12);
  color: white; padding: 1rem 1.1rem; font: inherit; outline: none;
}
.form-box textarea { min-height: 180px; resize: vertical; border-bottom: 0; }
.form-box input::placeholder, .form-box textarea::placeholder { color: rgba(255,255,255,.38); }
.contact-actions {
  margin-top: 1.6rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.18);
  padding: .88rem 1.3rem; text-transform: uppercase; letter-spacing: .18em; font-size: .76rem;
}
.btn:hover { background: #ece8e1; color: #3b3935; }
.gm-wrap { display: flex; gap: 1rem; align-items: end; }
.gm-text { text-align: right; }
.gm-label { font-size: .74rem; letter-spacing: .06em; text-transform: none; color: rgba(255,255,255,.72); }
.gm-sub { margin-top: .35rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.44); }
.gm-image {
  width: 124px; height: 154px; overflow: hidden; position: relative; flex: 0 0 auto;
}
.gm-image img {
  width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); opacity: .98; transform: scale(1.01);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 82%, rgba(0,0,0,.96) 90%, rgba(0,0,0,.72) 97%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 82%, rgba(0,0,0,.96) 90%, rgba(0,0,0,.72) 97%, rgba(0,0,0,0) 100%);
}
.gm-image::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(97,93,87,0) 78%, rgba(97,93,87,.05) 92%, rgba(97,93,87,.14) 100%);
}
.legal-wrap { background: #dcd8d1; border-top: 1px solid var(--line); }
.legal-split { grid-template-columns: 1fr; }
.legal-copy { padding: 2.3rem 1.25rem; }
.legal-col:first-child { border-bottom: 1px solid var(--line); }
.legal-copy p { max-width: 780px; color: rgba(0,0,0,.69); line-height: 1.85; }
.footer-link { text-decoration: underline; text-underline-offset: 4px; }
.page-hero { padding: 3rem 1.25rem 2rem; border-bottom: 1px solid var(--line); }
.page-hero h1 { margin: .8rem 0 0; font-size: clamp(2.28rem, 5.4vw, 4.8rem); line-height: .95; letter-spacing: -.06em; font-weight: 500; }
.page-hero p { max-width: 820px; color: rgba(0,0,0,.64); font-size: 1.02rem; line-height: 1.84; }
.page-content { padding: 2.2rem 1.25rem 4rem; }
.page-content .block { max-width: 940px; margin-bottom: 2rem; }
.page-content h2 { margin: 0 0 .8rem; font-size: 1.22rem; letter-spacing: -.03em; }
.page-content p { margin: 0; color: rgba(0,0,0,.72); line-height: 1.8; text-align: justify; font-size: .96rem; }
.page-footer { padding: 1.5rem 1.25rem 3rem; border-top: 1px solid var(--line); color: var(--muted); }
@media (min-width: 768px) {
  .header-inner { padding: 1rem 1.5rem; }
  .hero-card-row { grid-template-columns: 1fr 1fr; }
  .hero-card:first-child { border-right: 1px solid var(--line); border-bottom: 0; }
  .hero-copy-inner, .section-head, .section-body, .dark-side, .process-side, .focus-side, .focus-visual, .contact-copy, .contact-form-wrap, .legal-copy, .page-hero, .page-content, .page-footer { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1100px) {
  .desktop-nav { display: flex; }
  .hero { grid-template-columns: 1.18fr .82fr; }
  .hero-copy { border-bottom: 0; border-right: 1px solid var(--line); }
  .hero-copy-inner { padding: 3rem; }
  .hero-bottom { grid-template-columns: 1fr 260px; gap: 2rem; }
  .hero-meta { border-top: 0; border-left: 1px solid rgba(255,255,255,.14); padding-top: 0; padding-left: 1.5rem; margin-top: .72rem; }
  .section-split { grid-template-columns: .9fr 1.1fr; }
  .image-panel { border-bottom: 0; border-right: 1px solid var(--line); }
  .dark-grid, .process-grid { grid-template-columns: .42fr 1.58fr; }
  .dark-side, .process-side { border-bottom: 0; border-right: 1px solid rgba(255,255,255,.1); }
  .process-side { border-right-color: var(--line); }
  .row { grid-template-columns: 110px 1fr; align-items: start; }
  .focus-grid { grid-template-columns: 1.04fr .96fr; }
  .focus-side { border-right: 1px solid var(--line); }
  .contact-grid { grid-template-columns: .88fr 1.12fr; }
  .contact-copy { border-bottom: 0; border-right: 1px solid rgba(255,255,255,.1); }
  .contact-actions { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .legal-split { grid-template-columns: 1.1fr .9fr; }
  .legal-col:first-child { border-bottom: 0; border-right: 1px solid var(--line); }
  .hero-visual { min-height: 52vh; }
}
