/*
  Ivan Tsyplakov — private consulting
  Visual posture: editorial, warm, restrained.
*/
:root {
  --ink: #171512;
  --ink-soft: #34302b;
  --paper: #f4f0e8;
  --paper-deep: #e8e0d4;
  --white: #fffdf8;
  --charcoal: #211e1a;
  --charcoal-soft: #2e2923;
  --wood: #6b4737;
  --brass: #a77b43;
  --muted: #716a61;
  --line: rgba(23, 21, 18, 0.17);
  --line-light: rgba(255, 253, 248, 0.2);
  --focus: #9d6d36;
  --container: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --display: Georgia, 'Times New Roman', serif;
  --body: 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a, input, textarea, select { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
::selection { background: #d7c0a4; color: var(--ink); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--container), calc(100% - 64px)); margin-inline: auto; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; hyphens: auto; }
h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.048em;
}
h1 { font-size: clamp(3.25rem, 6.25vw, 6.4rem); line-height: .94; }
h2 { font-size: clamp(2.65rem, 5vw, 5.15rem); line-height: .98; }
h3 { font-size: 1.25rem; line-height: 1.2; }
.eyebrow {
  margin-bottom: 24px;
  color: var(--wood);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow-light { color: #d5b181; }
.section { padding: clamp(92px, 11vw, 164px) 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(244, 240, 232, .94);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
  backdrop-filter: blur(18px) saturate(130%);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(42, 33, 26, .06);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-height: 46px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: .82rem;
  letter-spacing: -.04em;
}
.brand-text { display: grid; gap: 1px; line-height: 1.15; }
.brand-text strong { font-size: .88rem; letter-spacing: .02em; }
.brand-text span { color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.1vw, 34px); }
.main-nav > a:not(.nav-cta) { position: relative; padding: 26px 0; font-size: .82rem; font-weight: 600; }
.main-nav > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: .8rem;
  font-weight: 700;
  transition: background .25s ease, transform .25s ease;
}
.nav-cta:hover { background: var(--wood); transform: translateY(-1px); }
.menu-toggle { display: none; }

.hero { position: relative; padding: clamp(46px, 5vw, 72px) 0 72px; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: 38px;
  right: 0;
  bottom: 38px;
  width: 42vw;
  background: var(--paper-deep);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .82fr); align-items: center; gap: clamp(60px, 8vw, 120px); }
.hero-copy { padding-top: 28px; }
.hero-copy h1 { max-width: 760px; margin-bottom: 30px; font-size: clamp(3.5rem, 5.4vw, 5.55rem); line-height: .98; hyphens: none; }
.hero-lead { max-width: 680px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(1.13rem, 1.7vw, 1.36rem); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; margin-bottom: 18px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--wood); box-shadow: 0 10px 30px rgba(107, 71, 55, .18); }
.button-primary:hover { background: #563628; }
.button-text { gap: 10px; min-height: 46px; padding: 0; border-radius: 0; border-bottom-color: var(--ink); }
.button-text:hover { color: var(--wood); border-bottom-color: var(--wood); transform: none; }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--wood); }
.messenger-links { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-messengers { margin-bottom: 36px; }
.messenger-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(23,21,18,.2);
  border-radius: 999px;
  background: rgba(255,253,248,.42);
  font-size: .8rem;
  font-weight: 700;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.messenger-link svg { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.messenger-telegram svg { fill: currentColor; stroke: none; }
.messenger-whatsapp { color: #2d7455; }
.messenger-telegram { color: #326f91; }
.messenger-link:hover { color: var(--white); background: var(--ink); border-color: var(--ink); transform: translateY(-2px); }
.trust-line { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 0; padding: 0; color: var(--muted); list-style: none; font-size: .82rem; }
.trust-line li { position: relative; }
.trust-line li + li::before { content: '·'; position: absolute; left: -15px; }
.hero-portrait { margin: 0; }
.portrait-frame { position: relative; overflow: hidden; aspect-ratio: 4 / 5; padding: 12px; background: #2e2925; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; filter: saturate(.82) contrast(1.02); }
.price-note {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 17px 20px 18px;
  color: var(--white);
  background: rgba(23, 21, 18, .92);
  font-size: .68rem;
  line-height: 1.45;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price-note strong { font-size: .9rem; letter-spacing: .02em; }
.hero-portrait figcaption { display: grid; gap: 3px; padding: 18px 0 0; }
.hero-portrait figcaption strong { font-family: var(--display); font-size: 1.22rem; font-weight: 400; }
.hero-portrait figcaption span { color: var(--muted); font-size: .75rem; text-transform: lowercase; }

.section-statement { padding-block: clamp(105px, 13vw, 190px); background: var(--white); }
.statement-grid { display: grid; grid-template-columns: minmax(150px, .35fr) minmax(0, 1fr); gap: 70px; }
.statement-copy h2 { max-width: 960px; margin-bottom: 42px; font-size: clamp(2.8rem, 5vw, 5.5rem); }
.statement-copy p { max-width: 760px; margin-left: auto; margin-bottom: 0; color: var(--muted); font-size: 1.14rem; line-height: 1.7; }

.choice-scene { position: relative; min-height: min(780px, 82svh); display: flex; align-items: center; overflow: hidden; background: #d8cfc3; }
.choice-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.choice-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(244,240,232,.97) 0%, rgba(244,240,232,.89) 27%, rgba(244,240,232,.3) 58%, rgba(23,21,18,.08) 100%); }
.choice-content { position: relative; z-index: 1; }
.choice-content h2 { max-width: 600px; margin-bottom: 30px; }
.choice-content > p:last-child { max-width: 530px; margin-bottom: 0; color: var(--ink-soft); font-size: 1.08rem; }

.section-heading { display: grid; grid-template-columns: .55fr 1.45fr; align-items: start; gap: 60px; margin-bottom: 72px; }
.section-heading h2 { margin-bottom: 0; }
.question-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.question-list li {
  display: grid;
  grid-template-columns: 72px minmax(240px, .7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 34px 0 36px;
  border-bottom: 1px solid var(--line);
}
.question-number { color: var(--brass); font-family: var(--display); font-size: .92rem; }
.question-list h3 { margin-bottom: 0; font-family: var(--display); font-size: clamp(1.55rem, 2.25vw, 2.1rem); font-weight: 400; }
.question-list p { max-width: 610px; margin: 0; color: var(--muted); }

.approach { color: var(--white); background: var(--charcoal); }
.approach .container { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(70px, 10vw, 150px); }
.approach-intro { position: sticky; top: calc(var(--header-h) + 50px); align-self: start; }
.approach-intro h2 { margin-bottom: 34px; font-size: clamp(2.8rem, 4.7vw, 5.1rem); }
.approach-intro > p:last-child { max-width: 560px; margin-bottom: 0; color: rgba(255,253,248,.66); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 26px; padding: 38px 0 44px; border-bottom: 1px solid var(--line-light); }
.process-list > li > span { color: #d5b181; font-family: var(--display); font-size: .9rem; }
.process-list h3 { margin-bottom: 14px; font-family: var(--display); font-size: 1.72rem; font-weight: 400; }
.process-list p { margin-bottom: 0; color: rgba(255,253,248,.62); }

.practice { background: var(--paper); }
.practice-heading {
  display: grid;
  grid-template-columns: minmax(160px, .45fr) minmax(0, 1.35fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 92px);
}
.practice-heading h2 { max-width: 910px; margin-bottom: 30px; }
.practice-heading > div > p { max-width: 680px; margin: 0 0 0 auto; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.practice-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  grid-template-rows: clamp(280px, 31vw, 390px) clamp(420px, 48vw, 590px);
  gap: 18px;
}
.practice-gallery figure { margin: 0; overflow: hidden; background: var(--paper-deep); }
.practice-gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.02); transition: transform .8s var(--ease); }
.practice-gallery figure:hover img { transform: scale(1.018); }
.practice-wide { grid-column: 1 / -1; }
.practice-wide img { object-position: center 48%; }
.practice-working img { object-position: center 38%; }
.practice-detail img { object-position: center; }

.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr); gap: clamp(60px, 10vw, 150px); align-items: start; }
.about-photo { position: relative; }
.about-photo::after { content: ''; position: absolute; top: 24px; right: -24px; bottom: -24px; left: 24px; border: 1px solid rgba(107,71,55,.32); z-index: 0; }
.about-photo img { position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 4 / 5.3; object-fit: cover; object-position: center 46%; filter: saturate(.8); }
.about-copy { padding-top: 24px; }
.about-copy h2 { margin-bottom: 34px; }
.about-lead { color: var(--ink-soft); font-size: 1.22rem; line-height: 1.62; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: var(--muted); }
.about-copy blockquote { margin: 44px 0; padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--display); font-size: clamp(1.6rem, 2.5vw, 2.35rem); line-height: 1.24; letter-spacing: -.03em; }
.credentials { margin: 0; padding: 0; list-style: none; }
.credentials li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.credentials span { color: var(--brass); font-family: var(--display); font-size: .8rem; }

.price { background: var(--paper-deep); }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px, 11vw, 160px); align-items: start; }
.price-copy h2 { margin-bottom: 0; }
.price-copy h2 span { color: var(--wood); white-space: nowrap; }
.price-details > p { margin-bottom: 38px; color: var(--ink-soft); font-size: 1.15rem; }
.price-details dl { margin: 0 0 40px; border-top: 1px solid var(--line); }
.price-details dl > div { display: grid; grid-template-columns: 130px 1fr; gap: 26px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.price-details dt { color: var(--wood); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.price-details dd { margin: 0; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 10vw, 150px); }
.faq-title h2 { font-size: clamp(2.8rem, 4.3vw, 4.7rem); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 25px 48px 25px 0; cursor: pointer; list-style: none; font-family: var(--display); font-size: 1.4rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; top: 22px; right: 4px; font-family: var(--body); font-size: 1.45rem; font-weight: 300; transition: transform .25s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 650px; padding: 0 52px 26px 0; margin: 0; color: var(--muted); }

.contact { position: relative; min-height: 900px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: #161310; }
.contact-background, .contact-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.contact-background { object-fit: cover; object-position: center; }
.contact-shade { background: linear-gradient(90deg, rgba(18,15,12,.46) 0%, rgba(18,15,12,.08) 45%, rgba(18,15,12,.48) 100%); }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr minmax(420px, .78fr); justify-content: space-between; align-items: center; gap: 80px; padding-block: 100px; }
.contact-intro { max-width: 560px; text-shadow: 0 2px 24px rgba(0,0,0,.5); }
.contact-intro h2 { margin-bottom: 28px; font-size: clamp(3.1rem, 5.2vw, 5.6rem); }
.contact-intro > p:not(.eyebrow) { max-width: 500px; color: rgba(255,253,248,.76); font-size: 1.08rem; }
.direct-contacts { display: grid; gap: 8px; margin-top: 34px; }
.direct-contacts a { width: fit-content; border-bottom: 1px solid rgba(255,255,255,.55); font-size: 1.08rem; }
.contact-messengers { margin-top: 20px; }
.contact-messengers .messenger-link { color: var(--white); border-color: rgba(255,255,255,.42); background: rgba(18,15,12,.32); text-shadow: none; }
.contact-messengers .messenger-link:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.contact-form { padding: clamp(30px, 4vw, 50px); color: var(--ink); background: var(--paper); box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.field { margin-bottom: 21px; }
.field label { display: block; margin-bottom: 8px; font-size: .75rem; font-weight: 700; letter-spacing: .04em; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(23,21,18,.38);
  border-radius: 0;
  padding: 11px 0 12px;
  color: var(--ink);
  background: transparent;
  appearance: none;
  transition: border-color .2s ease;
}
.field textarea { min-height: 122px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--wood); }
.field input::placeholder, .field textarea::placeholder { color: #90877d; }
.field.is-invalid input, .field.is-invalid textarea { border-bottom-color: #a53b32; }
.field-error { display: block; min-height: 17px; padding-top: 5px; color: #a53b32; font-size: .72rem; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.consent-field { margin-top: -2px; }
.consent-field label { display: flex; align-items: flex-start; gap: 10px; margin: 0; padding: 4px 0; color: #625b53; font-size: .78rem; font-weight: 500; letter-spacing: 0; line-height: 1.5; cursor: pointer; }
.consent-field input { width: 20px; height: 20px; flex: 0 0 20px; margin: 1px 0 0; padding: 0; border: 1px solid rgba(23,21,18,.45); border-radius: 3px; appearance: auto; accent-color: var(--wood); }
.consent-field.is-invalid input { outline: 2px solid #a53b32; outline-offset: 2px; }
.form-submit { width: 100%; margin-top: 4px; border: 0; }
.form-submit:disabled { cursor: wait; opacity: .68; transform: none; }
.form-note, .form-status { margin: 13px 0 0; color: var(--muted); font-size: .73rem; line-height: 1.45; }
.form-status { min-height: 18px; color: #3f6a46; font-weight: 600; }
.form-status.is-error { color: #8d302a; }
.copy-button { margin-top: 8px; padding: 0; border: 0; border-bottom: 1px solid currentColor; color: var(--wood); background: transparent; cursor: pointer; font-size: .78rem; }

.site-footer { padding: 64px 0 90px; color: rgba(255,253,248,.72); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1fr .65fr 1.1fr; gap: 50px; }
.brand-footer { color: var(--white); margin-bottom: 20px; }
.brand-footer .brand-mark { border-color: rgba(255,255,255,.6); }
.brand-footer .brand-text span { color: rgba(255,255,255,.48); }
.site-footer p { margin-bottom: 0; font-size: .78rem; }
.footer-links { display: grid; align-content: start; gap: 10px; font-size: .82rem; }
.footer-links a:hover { color: var(--white); }
.footer-legal { display: grid; align-content: start; gap: 20px; }
.mobile-contact { display: none; }

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

@media (max-width: 1040px) {
  :root { --header-h: 70px; }
  .container { width: min(var(--container), calc(100% - 44px)); }
  .main-nav { gap: 18px; }
  .main-nav > a:not(.nav-cta) { font-size: .76rem; }
  .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr); gap: 54px; }
  .hero-copy h1 { font-size: clamp(3.5rem, 7.7vw, 5.2rem); }
  .statement-grid { grid-template-columns: 1fr; gap: 20px; }
  .statement-copy p { margin-left: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; }
  .approach .container { grid-template-columns: minmax(0, 1fr); }
  .approach-intro { position: static; }
  .process-list { max-width: 760px; margin-left: auto; }
  .about-grid { gap: 70px; }
  .contact-layout { grid-template-columns: .8fr minmax(400px, .9fr); gap: 46px; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .site-header { background: rgba(244,240,232,.98); }
  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    place-content: center;
    gap: 7px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 24px; height: 1px; background: var(--ink); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    align-content: start;
    gap: 0;
    min-height: calc(100svh - var(--header-h));
    padding: 36px 22px;
    background: var(--paper);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: clip-path .35s var(--ease), opacity .25s ease, visibility .35s;
  }
  .main-nav.is-open { clip-path: inset(0); opacity: 1; pointer-events: auto; visibility: visible; }
  .main-nav > a:not(.nav-cta) { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.55rem; font-weight: 400; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { justify-content: center; min-height: 52px; margin-top: 30px; }
  .hero { padding-top: 44px; }
  .hero::before { top: auto; bottom: 0; width: 100%; height: 43%; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { padding-top: 0; }
  .hero-copy h1 { max-width: 700px; font-size: clamp(3.1rem, 11vw, 5.2rem); }
  .hero-lead { max-width: 640px; }
  .hero-portrait { width: min(620px, 100%); margin-left: auto; }
  .choice-scene { min-height: 680px; }
  .choice-image { object-position: 60% center; }
  .choice-overlay { background: linear-gradient(90deg, rgba(244,240,232,.96), rgba(244,240,232,.78) 52%, rgba(23,21,18,.05)); }
  .question-list li { grid-template-columns: 54px 1fr; gap: 14px 20px; }
  .question-list p { grid-column: 2; }
  .practice-heading { grid-template-columns: 1fr; gap: 14px; }
  .practice-heading > div > p { margin-left: 0; }
  .practice-gallery { grid-template-columns: minmax(0, 1.15fr) minmax(240px, .85fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { width: min(560px, calc(100% - 24px)); }
  .price-grid, .faq-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact { min-height: 0; display: block; }
  .contact-background { position: relative; height: 440px; object-position: 30% center; }
  .contact-shade { height: 440px; background: linear-gradient(0deg, rgba(18,15,12,.72), rgba(18,15,12,.12)); }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; margin-top: -240px; padding-block: 0 90px; }
  .contact-intro { padding-right: 15%; }
  .contact-form { width: min(650px, 100%); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --header-h: 66px; }
  html { scroll-padding-top: calc(var(--header-h) + 10px); }
  body { padding-bottom: 68px; }
  .container { width: min(var(--container), calc(100% - 34px)); }
  .brand-text span { display: none; }
  .section { padding: 90px 0; }
  .hero { padding: 38px 0 64px; }
  .hero-copy h1 { margin-bottom: 26px; font-size: clamp(3rem, 15vw, 4.35rem); }
  .hero-lead { margin-bottom: 27px; font-size: 1.06rem; }
  .hero-actions { display: grid; align-items: stretch; gap: 14px; margin-bottom: 34px; }
  .button { width: 100%; }
  .button-text { width: fit-content; }
  .hero-actions { margin-bottom: 18px; }
  .hero-messengers, .contact-messengers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-messengers { margin-bottom: 32px; }
  .messenger-link { min-width: 0; padding-inline: 10px; }
  .trust-line { display: grid; gap: 4px; }
  .trust-line li + li::before { display: none; }
  .hero-portrait { width: 100%; }
  .portrait-frame { aspect-ratio: 4 / 5.2; }
  .price-note { padding: 14px 16px; }
  .statement-grid { gap: 12px; }
  .statement-copy h2 { margin-bottom: 30px; font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .statement-copy p { font-size: 1rem; }
  .choice-scene { min-height: 620px; align-items: flex-end; padding-bottom: 64px; }
  .choice-image { object-position: 62% center; }
  .choice-overlay { background: linear-gradient(0deg, rgba(244,240,232,.98) 5%, rgba(244,240,232,.78) 65%, rgba(244,240,232,.18)); }
  .choice-content h2 { font-size: 3.45rem; }
  .section-heading { margin-bottom: 46px; }
  .question-list li { grid-template-columns: 36px 1fr; padding: 26px 0 28px; }
  .question-list h3 { font-size: 1.55rem; }
  .approach .container { gap: 54px; }
  .approach-intro h2 { font-size: 3.25rem; }
  .process-list li { grid-template-columns: 38px 1fr; gap: 14px; padding: 30px 0; }
  .practice-heading { margin-bottom: 42px; }
  .practice-heading h2 { font-size: 3.35rem; }
  .practice-gallery { grid-template-columns: 1fr; grid-template-rows: auto; gap: 12px; }
  .practice-wide { grid-column: auto; aspect-ratio: 16 / 10; }
  .practice-working { aspect-ratio: 4 / 5.2; }
  .practice-detail { aspect-ratio: 4 / 3.2; }
  .practice-detail img { object-position: center 54%; }
  .about-photo::after { top: 14px; right: -14px; bottom: -14px; left: 14px; }
  .about-copy { padding-top: 8px; }
  .about-copy h2 { font-size: 3.35rem; }
  .about-copy blockquote { margin: 34px 0; padding: 26px 0; }
  .price-copy h2 { font-size: 3.55rem; }
  .price-details dl > div { grid-template-columns: 1fr; gap: 7px; }
  .faq-grid { gap: 30px; }
  .contact-background, .contact-shade { height: 390px; }
  .contact-layout { margin-top: -245px; padding-bottom: 70px; }
  .contact-intro { padding-right: 0; }
  .contact-intro h2 { font-size: 3.55rem; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { grid-column: auto; }
  .site-footer { padding-bottom: 62px; }
  .mobile-contact {
    position: fixed;
    right: 14px;
    bottom: 12px;
    left: 14px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity .25s ease, transform .3s var(--ease);
    min-height: 50px;
    border-radius: 999px;
    color: var(--white);
    background: var(--wood);
    box-shadow: 0 12px 36px rgba(34,22,16,.35);
    font-size: .86rem;
    font-weight: 700;
  }
  .mobile-contact.is-visible { opacity: 1; pointer-events: auto; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .practice-gallery figure:hover img { transform: none; }
}
