:root {
  --ink: #0b1217;
  --navy: #151f27;
  --cream: #fbf8f2;
  --cream-soft: #f4efe6;
  --gold: #bba469;
  --gold-dark: #8b6c31;
  --white: #ffffff;
  --line-dark: rgba(255, 255, 255, 0.22);
  --line-light: rgba(11, 18, 23, 0.20);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", Arial, sans-serif;
  --header-height: 80px;
  --page-max: 1240px;
  --page-gutter: 48px;
  --mobile-bar-height: 58px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

:where(a, button, input, textarea, summary):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--ink);
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.skip-link:focus { transform: none; }

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background: rgba(11, 18, 23, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header-inner {
  width: min(var(--page-max), calc(100% - var(--page-gutter)));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand,
.footer-brand {
  display: block;
  width: 116px;
  flex: 0 0 auto;
}
.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}
.site-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 43px;
  font-size: 13px;
  font-weight: 600;
}
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 0.2s ease;
}
.nav-link:hover,
.nav-link.is-active { color: var(--white); }
.nav-link.is-active::after,
.nav-link:hover::after { transform: scaleX(1); }
.language-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 22px;
}
.language-btn {
  min-height: 44px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.70);
  font-size: 11px;
  font-weight: 700;
}
.language-btn.is-active { color: var(--gold); }
.header-phone,
.privacy-header-action {
  min-width: 84px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--white);
}
.mobile-language-switch,
.mobile-menu { display: none; }

/* Hero */
.hero {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  color: var(--white);
  background: var(--ink);
}
.hero-inner {
  width: min(var(--page-max), calc(100% - var(--page-gutter)));
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  gap: 145px;
  align-items: center;
  padding: 76px 0 66px;
}
.hero-copy { padding-top: 20px; }
.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.3vw, 102px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.hero-description {
  margin: 24px 0 0;
  max-width: 690px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
.button,
.text-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  font-size: 12px;
  font-weight: 700;
}
.button-gold {
  min-width: 187px;
  padding: 0 22px;
  background: var(--gold);
  color: var(--ink);
}
.text-link {
  min-width: 155px;
  border: 1px solid var(--line-dark);
  padding: 0 20px;
}
.text-link span:last-child { color: var(--gold); }
.hero-meta {
  max-width: 760px;
  margin-top: 50px;
  padding-top: 27px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  gap: 70px;
}
.hero-meta div { min-width: 92px; }
.hero-meta span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.hero-meta strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
.hero-portrait { margin: 0; align-self: center; }
.portrait-frame {
  width: 540px;
  height: 674px;
  overflow: hidden;
  background: #d8d7d2;
}
.portrait-frame picture,
.portrait-frame img {
  width: 100%;
  height: 100%;
}
.portrait-frame img {
  object-fit: cover;
  object-position: 50% 50%;
}
.hero-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* Shared section shells */
.section-light { background: var(--cream); }
.section-dark { color: var(--white); background: var(--ink); }
.section-cream { background: var(--cream-soft); }
.section-navy { color: var(--white); background: var(--navy); }
.content-wrap,
.services-wrap,
.consultation-wrap,
.contact-wrap,
.map-card,
.footer-wrap {
  width: min(var(--page-max), calc(100% - var(--page-gutter)));
  margin-right: auto;
  margin-left: auto;
}
.about h2,
.services h2,
.consultation h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

/* About */
.content-wrap { padding: 78px 0 122px; }
.about-intro {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 120px;
}
.about h2,
.contact h2 {
  font-size: clamp(46px, 4.8vw, 74px);
  line-height: 1;
}
.about-copy {
  padding-top: 37px;
  color: #3e505e;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.85;
}
.about-copy p { margin: 0 0 22px; }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.fact-item {
  min-width: 0;
  min-height: 220px;
  padding: 33px 35px;
}
.fact-item + .fact-item { border-left: 1px solid var(--line-light); }
.fact-item span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.fact-item h3 {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.06;
  font-weight: 400;
  overflow-wrap: anywhere;
}

/* Services */
.services-wrap { padding: 88px 0 92px; }
.services-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 55px;
}
.services .section-kicker { margin-bottom: 15px; }
.services h2 {
  max-width: 700px;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 0.96;
}
.services-heading > p {
  max-width: 380px;
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
.service-list { margin: 0; padding: 0; list-style: none; }
.service-list li {
  display: grid;
  grid-template-columns: 72px minmax(500px, 1fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: center;
  min-height: 72px;
  border-top: 1px solid var(--line-dark);
}
.service-list li:last-child { border-bottom: 1px solid var(--line-dark); }
.service-number {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.service-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1.05;
  font-weight: 500;
  white-space: nowrap;
}
.service-list p {
  min-width: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

/* Consultation */
.consultation-wrap {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 110px;
  align-items: center;
  padding: 75px 0;
}
.consultation h2 {
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 0.9;
}
.consultation-wrap > div > p:last-child {
  max-width: 690px;
  margin: 28px 0 0;
  color: #3e505e;
  font-size: 16px;
  line-height: 1.7;
}
.consult-phone {
  width: 100%;
  min-height: 59px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
}
.consult-phone span,
.consult-phone strong { font-weight: 700; }

/* Contact and form */
.contact { padding: 92px 0 120px; }
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 110px;
  align-items: start;
}
.contact h2 { line-height: 0.92; }
.contact-lead {
  max-width: 500px;
  margin: 26px 0 48px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.75;
}
.contact-details { margin: 0; border-top: 1px solid var(--line-dark); }
.contact-details > div {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  gap: 18px;
  min-height: 58px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}
.contact-details dt,
.contact-details dd { min-width: 0; margin: 0; }
.contact-details dt {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.contact-details dd {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.contact-email { text-decoration: underline; text-underline-offset: 3px; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}
.social-links svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.social-links a:hover svg { transform: translateY(-2px); }
.contact-card {
  min-width: 0;
  min-height: 690px;
  padding: 48px 46px;
  background: var(--cream-soft);
  color: var(--ink);
}
.contact-card form > label,
.form-row label {
  display: block;
  margin-bottom: 21px;
}
.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}
.contact-card label > span:first-child {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
}
.contact-card input[type="text"],
.contact-card input[type="tel"],
.contact-card input[type="email"],
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(11, 18, 23, 0.35);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  padding: 9px 11px;
  font-size: 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-card input { height: 40px; }
.contact-card textarea { min-height: 145px; resize: vertical; }
.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 2px rgba(187, 164, 105, 0.18);
}
.contact-card [aria-invalid="true"] {
  border-color: #8a3f3f;
}
.form-note {
  margin: -2px 0 18px;
  color: #52606a;
  font-size: 12px;
  line-height: 1.55;
}
.form-error {
  display: block;
  margin-top: 6px;
  color: #7e3030;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}
.privacy-check {
  display: grid !important;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin: 0 0 24px !important;
  font-size: 12px;
  line-height: 1.55;
}
.privacy-check input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--gold-dark);
}
.privacy-check span { margin: 0 !important; font-weight: 400 !important; }
.privacy-check a { text-decoration: underline; text-underline-offset: 2px; }
.privacy-error { grid-column: 2; }
.turnstile-widget {
  width: 100%;
  margin: 0 0 18px;
}
.submit-button {
  width: 100%;
  min-height: 47px;
  border: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-message {
  display: none;
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 18, 23, 0.25);
  font-size: 12px;
  line-height: 1.5;
}
.form-message.is-visible { display: block; }
.form-message.is-success { border-color: #597a59; }
.form-message.is-error { border-color: #a04f4f; }

/* Map */
.map-card {
  min-height: 264px;
  margin-top: 96px;
  padding: 56px 50px;
  border: 1px solid rgba(187, 164, 105, 0.4);
  background: rgba(11, 18, 23, 0.72);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}
.map-card h3 {
  margin: 19px 0 9px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 500;
}
.map-copy > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}
.map-actions {
  min-width: 165px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.map-button {
  min-height: 47px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.map-button[disabled] { cursor: wait; opacity: 0.7; }
.map-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}
.map-link span:last-child { color: var(--gold); }
.map-embed {
  display: none;
  grid-column: 1 / -1;
  min-width: 0;
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
}
.map-card.is-loaded .map-embed { display: block; }
.map-card iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}
.map-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer */
.site-footer { color: var(--white); background: var(--ink); }
.footer-wrap { padding: 42px 0 25px; }
.footer-top {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
.footer-brand { width: 93px; }
.footer-top > p {
  margin: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 22px;
}
.back-to-top {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
}
.back-to-top span:last-child { color: var(--gold); }
.footer-bottom {
  min-height: 50px;
  padding-top: 19px;
  border-top: 1px solid var(--line-dark);
  
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  font-size: 12px;
}
.footer-bottom > p {
  margin: 0;
}

.footer-bottom > p:first-child {
  justify-self: start;
}

.footer-bottom > p:nth-child(2) {
  justify-self: center;
  text-align: center;
}
.footer-bottom p:last-child {justify-self: end; display: flex; gap: 9px; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; }
.site-credit { color: rgba(255, 255, 255, 0.72); }

/* Mobile quick-contact bar */
.mobile-contact-bar { display: none; }
body.menu-open .mobile-contact-bar { display: none !important; }

/* Privacy page */
.privacy-main {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  background: var(--cream);
}
.privacy-wrap {
  width: min(860px, calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: 90px 0 120px;
}
.privacy-wrap h1 {
  margin: 0 0 40px;
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 86px);
  line-height: 0.9;
  font-weight: 400;
}
.privacy-wrap h2 {
  margin: 38px 0 10px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 500;
}
.privacy-wrap p,
.privacy-wrap li { color: #3e505e; }
.privacy-wrap a { text-decoration: underline; text-underline-offset: 2px; }
.privacy-wrap strong { color: var(--ink); }
.privacy-intro { font-size: 18px; line-height: 1.8; }
.privacy-section p { margin: 0; line-height: 1.8; }
.privacy-back { margin-top: 54px; }
.privacy-header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.privacy-language-switch { margin: 0; }
.privacy-header-action { font-size: 12px; font-weight: 700; }

@media (max-width: 1280px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 75px;
  }
  .portrait-frame { width: 470px; height: 588px; }
}

@media (max-width: 1060px) {
  .hero h1 { font-size: clamp(56px, 7.2vw, 78px); }
}

@media (max-width: 1024px) {
  :root { --header-height: 72px; }
  .header-inner { width: calc(100% - 40px); }
  .brand { width: 104px; }
  .desktop-site-nav { display: none; }
  .mobile-language-switch {
    display: flex;
    margin-left: auto;
    margin-right: 14px;
    gap: 0;
  }
  .mobile-language-switch .language-btn {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
  }
  .mobile-menu { display: block; }
  .menu-toggle {
    list-style: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
  }
  .menu-toggle::-webkit-details-marker { display: none; }
  .menu-toggle::marker { content: ""; }
  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform 0.2s ease;
  }
  .mobile-menu[open] .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .mobile-menu[open] .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    padding: 42px 24px calc(60px + env(safe-area-inset-bottom));
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    animation: mobile-menu-in 0.25s ease both;
  }
  @keyframes mobile-menu-in {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }
  .mobile-site-nav .nav-link {
    height: auto;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
  }
  .mobile-site-nav .nav-link::after { display: none; }
  .mobile-site-nav .header-phone {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    height: 54px;
    margin-top: 32px;
    padding: 0 22px;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--gold);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
  }
  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 90px 0 70px;
  }
  .hero-copy { padding-top: 0; }
  .hero-portrait { width: min(620px, 100%); }
  .portrait-frame { width: 100%; height: auto; aspect-ratio: 4 / 5; }
  .about-intro { grid-template-columns: 1fr 1fr; gap: 60px; }
  .fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-light); }
  .fact-item:nth-child(4) { border-top: 1px solid var(--line-light); }
  .services-heading { gap: 50px; }
  .service-list li { grid-template-columns: 50px minmax(260px, 0.85fr) minmax(0, 1.15fr); }
  .service-list h3 { white-space: normal; font-size: clamp(26px, 2.35vw, 38px); }
  .consultation-wrap { grid-template-columns: 1fr; gap: 45px; min-height: 0; }
  .consult-phone { max-width: 460px; }
  .contact-wrap { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 50px; }
  .contact-card { padding: 38px 32px; }
}

@media (max-width: 960px) {
  .hero h1 { font-size: clamp(56px, 10vw, 82px); }
}

@media (max-width: 760px) {
  :root { --page-gutter: 48px; }
  body { font-size: 16px; }
  .header-inner,
  .hero-inner,
  .content-wrap,
  .services-wrap,
  .consultation-wrap,
  .contact-wrap,
  .map-card,
  .footer-wrap { width: calc(100% - 48px); }
  .privacy-wrap { width: min(860px, calc(100% - 48px)); }
  .mobile-site-nav .nav-link { font-size: clamp(30px, 7vw, 42px); }
  .hero-inner { padding: 68px 0 54px; gap: 44px; }
  .hero-description { font-size: 16px; margin-top: 20px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; margin-top: 32px; }
  .button,
  .text-link { width: 100%; min-height: 52px; }
  .hero-meta { gap: 34px; margin-top: 36px; }
  .hero-meta > div { flex: 1; min-width: 0; }
  .hero-portrait figcaption { font-size: 10px; }
  .content-wrap { padding: 70px 0 75px; }
  .about-intro { min-height: 0; grid-template-columns: 1fr; gap: 30px; margin-bottom: 58px; }
  .about h2,
  .contact h2 { font-size: clamp(46px, 4.8vw, 74px); }
  .about-copy { padding-top: 0; font-size: clamp(16px, 1.2vw, 18px); line-height: 1.75; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-item,
  .fact-item + .fact-item,
  .fact-item:nth-child(3),
  .fact-item:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }
  .fact-item:first-child { border-top: 0; }
  .services-wrap { padding: 70px 0 76px; }
  .services-heading { grid-template-columns: 1fr; gap: 34px; margin-bottom: 42px; }
  .services h2 { font-size: clamp(42px, 4.5vw, 68px); }
  .services-heading > p { max-width: none; }
  .service-list li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 22px 0;
  }
  .service-list h3 { font-size: clamp(26px, 2.35vw, 38px); }
  .service-list p { grid-column: 2; font-size: 13px; }
  .consultation-wrap { padding: 68px 0 78px; }
  .consultation h2 { font-size: clamp(44px, 4.8vw, 72px); line-height: 0.92; }
  .consultation-wrap > div > p:last-child { font-size: 16px; }
  .consult-phone { min-height: 62px; padding: 0 18px; gap: 18px; font-size: 10px; }
  .contact { padding: 70px 0 80px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 58px; }
  .contact-details > div { grid-template-columns: 100px minmax(0, 1fr); }
  .contact-card { min-height: 0; padding: 34px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-card {
    min-height: 0;
    margin-top: 68px;
    padding: 38px 28px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .map-card h3 { font-size: 28px; }
  .map-actions { min-width: 0; }
  .map-embed { grid-column: 1; }
  .map-card iframe { height: 350px; }
  .footer-wrap { padding-top: 34px; }
  .footer-top {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand top" "name name";
    gap: 24px;
    padding-bottom: 24px;
  }
  .footer-brand { grid-area: brand; }
  .footer-top > p { grid-area: name; text-align: left; }
  .back-to-top { grid-area: top; }
.footer-bottom {
  grid-template-columns: 1fr;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  text-align: center;
}

.footer-bottom > p:first-child {
  justify-self: center;
  text-align: center;
}

.footer-bottom > p:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.footer-bottom > p:last-child {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  text-align: center;
}
}

@media (max-width: 620px) {
  body.has-mobile-contact-bar {
    padding-bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom));
  }
  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid var(--line-dark);
  }
  .mobile-contact-bar a {
    min-height: var(--mobile-bar-height);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
  }
  .mobile-contact-bar a + a { color: var(--ink); background: var(--gold); }
  .header-inner,
  .hero-inner,
  .content-wrap,
  .services-wrap,
  .consultation-wrap,
  .contact-wrap,
  .map-card,
  .footer-wrap { width: calc(100% - 32px); }
  .privacy-wrap { width: min(860px, calc(100% - 32px)); }
  .mobile-site-nav .nav-link { font-size: clamp(28px, 8.3vw, 37px); }
  .hero h1 { font-size: clamp(48px, 13.8vw, 64px); }
  .hero-description { font-size: 15px; }
  .about h2,
  .contact h2,
  .consultation h2 { font-size: clamp(42px, 11.8vw, 58px); }
  .services h2 { font-size: clamp(34px, 9vw, 50px); }
  .service-list h3 { font-size: 28px; }
  .service-list p { font-size: 13px; }
  .fact-item,
  .fact-item + .fact-item,
  .fact-item:nth-child(3),
  .fact-item:nth-child(4) {
    min-height: 0;
    padding: 25px 0 28px;
    border-left: 0;
  }
  .fact-item h3 {
    width: 100%;
    max-width: 100%;
    margin: 16px 0 0;
    font-size: clamp(23px, 6.2vw, 31px);
    line-height: 1.15;
    white-space: normal;
    text-wrap: pretty;
  }
  .hero-portrait figcaption { font-size: 10px; }
  .privacy-header-actions { gap: 8px; }
  .privacy-language-switch { gap: 0; margin: 0; }
  .privacy-language-switch .language-btn {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
  }
  .privacy-header-action { min-width: 76px; padding: 0 12px; }
  .privacy-intro { font-size: 16px; }
  .privacy-wrap h2 { font-size: 30px; }
}

@media (max-width: 380px) {
  .header-inner,
  .hero-inner,
  .content-wrap,
  .services-wrap,
  .consultation-wrap,
  .contact-wrap,
  .map-card,
  .footer-wrap { width: calc(100% - 28px); }
  .privacy-wrap { width: min(860px, calc(100% - 28px)); }
  .hero h1 { font-size: clamp(44px, 13.3vw, 51px); }
  .privacy-header-action { min-width: 70px; padding: 0 10px; }
}

@media (max-width: 960px) and (max-height: 500px) {
  body.has-mobile-contact-bar {
    padding-bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom));
  }
  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid var(--line-dark);
  }
  .mobile-contact-bar a {
    min-height: var(--mobile-bar-height);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
  }
  .mobile-contact-bar a + a { color: var(--ink); background: var(--gold); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
