:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --text: #202629;
  --muted: #697177;
  --line: #e6e0d7;
  --soft: #f2eee7;
  --accent: #405363;
  --accent-dark: #24313b;
  --max: 1180px;
  --radius: 18px;
  --font: "Source Sans 3", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.58;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.page { min-height: 100vh; }
.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}
.site-header nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}
.site-header nav a { text-decoration: none; }
.site-header nav a:hover { color: var(--text); }
.hero,
.section,
.image-row,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 64px;
  align-items: center;
  padding-top: 58px;
  padding-bottom: 76px;
}
.small-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em;
}
h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  max-width: 650px; margin-bottom: 24px; font-size: clamp(2.65rem, 4.6vw, 4.45rem); line-height: 1.04; letter-spacing: -0.055em; font-weight: 760;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 750;
}
h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}
.intro,
.text-panel p,
.contact p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.18rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid var(--line);
}
.button.primary {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
}
.button.secondary { background: var(--surface); }
.hero-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.88) brightness(1.04);
}
.section { padding-top: 78px; padding-bottom: 78px; }
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.media-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.media-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(0.82) brightness(1.05);
}
.text-panel {
  padding: 10px 0;
}
.values { border-top: 1px solid var(--line); }
.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.value-grid article {
  background: var(--surface);
  padding: 34px;
}
.value-grid p {
  margin-bottom: 0;
  color: var(--muted);
}
.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 6px;
  padding-bottom: 78px;
}
.image-row img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  filter: saturate(0.8) brightness(1.06);
}
.contact {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
dl { margin: 0; }
dl div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
dl div:first-child { padding-top: 0; }
dl div:last-child { border-bottom: 0; padding-bottom: 0; }
dt {
  color: var(--muted);
  font-weight: 700;
}
dd { margin: 0; font-weight: 650; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 34px;
  padding-bottom: 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}
@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero,
  .split,
  .contact { grid-template-columns: 1fr; gap: 34px; }
  .hero { min-height: auto; padding-top: 48px; padding-bottom: 66px; }
  .hero-image { max-width: 430px; }
  .value-grid,
  .image-row { grid-template-columns: 1fr; }
  .media-panel img,
  .image-row img { height: 340px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .site-header,
  .hero,
  .section,
  .image-row,
  .site-footer { padding-left: 18px; padding-right: 18px; }
  .site-header { padding-top: 16px; padding-bottom: 16px; }
  .brand-logo { width: 38px; height: 38px; }
  h1 { width: 100%; max-width: calc(100vw - 36px); font-size: 2.15rem; line-height: 1.08; letter-spacing: -0.045em; overflow-wrap: break-word; }
  h2 { font-size: 2.05rem; }
  .intro, .text-panel p, .contact p { max-width: calc(100vw - 36px); font-size: 1rem; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .section { padding-top: 58px; padding-bottom: 58px; }
  .value-grid article { padding: 24px; }
  dl div { grid-template-columns: 1fr; gap: 3px; }
  .media-panel img,
  .image-row img { height: 270px; }
}

@media (max-width:560px){.hero{display:block;overflow:hidden}.hero-text{width:100%;max-width:calc(100vw - 36px)}.hero-image{width:100%;max-width:calc(100vw - 36px)}.small-label{font-size:.72rem;letter-spacing:.12em}.site-header{max-width:100vw}.brand span{font-size:.98rem}}


.hero h1 span{display:block}
@media (max-width:560px){.page{max-width:100vw;overflow:hidden}.hero-text,.hero h1,.intro,.actions,.hero-image{width:320px!important;max-width:calc(100vw - 36px)!important}.hero h1{font-size:1.82rem!important;line-height:1.12!important;letter-spacing:-.035em!important}.intro{font-size:.96rem!important}.hero{padding-top:40px!important;padding-bottom:52px!important}.button{min-height:48px!important}}

@media (max-width:560px){h2{width:320px!important;max-width:calc(100vw - 36px)!important;font-size:1.62rem!important;line-height:1.14!important;letter-spacing:-.025em!important;overflow-wrap:break-word}.text-panel,.section-head,.contact>div{width:320px!important;max-width:calc(100vw - 36px)!important}.split,.contact{overflow:hidden!important}}
