@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #fbfaf7;
  --warm: #fbf8f2;
  --warm-2: #fcf9f3;
  --warm-3: #fbf4eb;
  --cream: #fffdf8;
  --ink: rgba(31, 28, 23, 0.96);
  --text: rgba(53, 47, 42, 0.86);
  --muted: rgba(93, 81, 70, 0.72);
  --soft: rgba(143, 123, 104, 0.16);
  --line: rgba(127, 111, 95, 0.08);
  --frame: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  min-height: 600px;
  min-width: var(--frame);
  background: var(--warm);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

body {
  height: 100%;
  min-height: 600px;
  min-width: var(--frame);
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  width: var(--frame);
  height: 100vh;
  min-height: 600px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--warm);
  box-shadow: inset 1px 0 var(--line), inset -1px 0 var(--line);
}

.page > main {
  flex: 1 1 auto;
  min-height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
}

.page--compact > main {
  display: flex;
  flex-direction: column;
}

.site-header {
  flex: 0 0 59px;
  position: relative;
  z-index: 20;
  width: 1200px;
  height: 59px;
  background: var(--paper);
  border: 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  position: absolute;
  left: 88px;
  top: 17px;
  width: 190px;
  font-size: 20px;
  line-height: 23px;
  font-weight: 600;
  color: var(--ink);
}

.nav {
  position: absolute;
  left: 324px;
  top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  height: 18px;
  color: rgba(93, 81, 70, 0.84);
  font-size: 14px;
  line-height: 18px;
}

.nav a,
.nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav a[aria-current="page"],
.nav button[aria-expanded="true"] {
  color: rgba(31, 28, 24, 0.94);
}

.nav__item {
  position: relative;
}

.nav__item::after {
  content: "";
  position: absolute;
  left: -38px;
  top: 18px;
  width: 274px;
  height: 34px;
}

.projects-menu {
  position: absolute;
  left: -38px;
  top: 28px;
  width: 274px;
  padding: 12px;
  border: 1px solid rgba(143, 123, 104, 0.13);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 36px -20px rgba(89, 74, 56, 0.22);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
}

.nav__item:hover .projects-menu,
.nav__item:focus-within .projects-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.projects-menu a {
  display: block;
  height: 38px;
  padding: 10px 12px 0;
  border-radius: 9px;
  color: rgba(78, 67, 57, 0.84);
  font-size: 15px;
  line-height: 18px;
}

.projects-menu a:hover,
.projects-menu a:focus {
  background: rgba(248, 240, 229, 0.66);
}

.language-switcher {
  position: absolute;
  left: 854px;
  top: 20px;
  width: 112px;
  color: var(--muted);
  font-size: 14px;
  line-height: 18px;
  white-space: pre;
}

.language-switcher a {
  color: inherit;
}

.language-switcher__current {
  color: var(--ink);
}

.header-cta {
  position: absolute;
  left: 1040px;
  top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 34px;
  border: 1px solid rgba(31, 28, 24, 0.52);
  border-radius: 9px;
  background: rgba(255, 253, 247, 0.38);
  color: rgba(31, 28, 24, 0.92);
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}

.site-footer {
  flex: 0 0 56px;
  position: relative;
  width: 1200px;
  height: 56px;
  background: var(--cream);
  border: 0;
  border-top: 1px solid var(--line);
  color: rgba(93, 81, 70, 0.56);
  font-size: 12px;
  line-height: 16px;
}

.site-footer span,
.site-footer a {
  position: absolute;
  top: 19px;
}

.site-footer__email {
  left: 88px;
  width: 230px;
  color: rgba(93, 81, 70, 0.64);
}

.site-footer__privacy {
  left: 486px;
  width: 228px;
  color: rgba(93, 81, 70, 0.64);
  text-align: center;
}

.site-footer__email:hover,
.site-footer__email:focus,
.site-footer__privacy:hover,
.site-footer__privacy:focus {
  color: rgba(31, 28, 24, 0.88);
}

.site-footer__copy {
  right: 88px;
  width: 190px;
  text-align: right;
}

.home-hero {
  flex: 0 0 350px;
  position: relative;
  height: 350px;
  overflow: hidden;
  background: var(--paper);
  border: 0;
}

.home-hero img {
  position: absolute;
  left: -42px;
  top: -258px;
  width: 1258px;
  height: 708px;
  object-fit: cover;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 620px;
  background: linear-gradient(90deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.82) 62%, rgba(251, 250, 247, 0) 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 1200px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(253, 250, 244, 0.72) 100%);
}

.hero-copy {
  position: absolute;
  left: 88px;
  top: 40px;
  z-index: 2;
  width: 600px;
}

.hero-copy h1 {
  margin: 0 0 20px;
  color: #1f1c17;
  font-size: 38px;
  line-height: 44px;
  font-weight: 700;
}

.hero-copy p {
  width: 520px;
  margin: 0 0 22px 2px;
  color: rgba(87, 79, 69, 0.92);
  font-size: 18px;
  line-height: 27px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 2px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 188px;
  height: 48px;
  border: 1px solid rgba(31, 28, 23, 0.76);
  border-radius: 10px;
  background: rgba(252, 247, 235, 0.82);
  color: #1f1c17;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
}

.text-link {
  color: rgba(93, 81, 70, 0.78);
  font-size: 15px;
  line-height: 18px;
}

.services-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 318px);
  align-content: start;
  gap: 15px 34px;
  flex: 1 1 auto;
  min-height: 190px;
  padding: 18px 88px 2px;
  background: #fdfaf4;
  border: 0;
  border-top: 1px solid var(--line);
}

.service-card {
  display: block;
  width: 318px;
  height: 78px;
  padding: 11px 18px;
  border: 1px solid var(--soft);
  border-radius: 14px;
  background: rgba(255, 248, 239, 0.34);
  box-shadow: 0 8px 18px -10px rgba(89, 74, 56, 0.04);
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.service-card:hover,
.service-card:focus {
  border-color: rgba(143, 123, 104, 0.28);
  background: rgba(255, 248, 239, 0.58);
  transform: translateY(-1px);
}

.service-card h2 {
  margin: 0 0 5px;
  color: rgba(78, 67, 57, 0.88);
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: rgba(101, 88, 77, 0.74);
  font-size: 12px;
  line-height: 14px;
}

.gradient-main {
  position: relative;
  background: linear-gradient(90deg, var(--warm-2) 0%, var(--warm-3) 52%, #fffaf2 100%);
  border-top: 1px solid rgba(143, 123, 104, 0.05);
}

.gradient-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 760px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.28) 42%, rgba(255, 255, 255, 0.06) 78%, rgba(255, 255, 255, 0) 100%);
}

.gradient-main.text-main::before {
  content: none;
  display: none;
}

.form-main {
  min-height: 710px;
}

.form-copy {
  position: absolute;
  left: 100px;
  top: 61px;
  width: 470px;
}

.form-copy h1 {
  margin: 0 0 16px;
  color: #25221e;
  font-size: 41px;
  line-height: 49px;
  font-weight: 600;
}

.form-copy > p {
  width: 450px;
  margin: 0;
  color: rgba(95, 85, 75, 0.92);
  font-size: 18px;
  line-height: 27px;
}

.info-panel {
  position: absolute;
  left: 100px;
  top: 230px;
  width: 410px;
  height: 244px;
  padding: 22px 28px;
  border: 1px solid rgba(143, 123, 104, 0.05);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.18);
}

.info-panel h2 {
  margin: 0 0 12px;
  color: rgba(77, 68, 60, 0.78);
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
}

.info-panel p {
  margin: 0 0 10px;
  color: rgba(97, 86, 76, 0.7);
  font-size: 15px;
  line-height: 21px;
}

.info-panel .note {
  color: rgba(97, 86, 76, 0.6);
  font-size: 14px;
  line-height: 20px;
}

.request-form {
  position: absolute;
  left: 636px;
  top: 40px;
  width: 420px;
  height: 642px;
  padding: 28px 38px 30px;
  border: 1px solid rgba(143, 123, 104, 0.09);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.46);
  box-shadow: 0 9px 20px -14px rgba(89, 74, 56, 0.02);
}

.field {
  margin-bottom: 8px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(77, 68, 60, 0.76);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  display: block;
  width: 344px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(143, 123, 104, 0.12);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.58);
  color: rgba(53, 47, 42, 0.9);
  font-size: 15px;
  line-height: 20px;
  outline: none;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(77, 68, 60, 0.62) 50%), linear-gradient(135deg, rgba(77, 68, 60, 0.62) 50%, transparent 50%);
  background-position: calc(100% - 19px) 20px, calc(100% - 14px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  color: rgba(53, 47, 42, 0.82);
}

.field textarea {
  height: 104px;
  padding-top: 12px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(122, 109, 96, 0.42);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 344px;
  margin: 12px 0 16px;
  color: rgba(77, 68, 60, 0.72);
  font-size: 12px;
  line-height: 17px;
}

.consent-field input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: rgba(47, 42, 36, 0.72);
}

.consent-field a {
  color: rgba(36, 33, 29, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 16px;
}

.form-submit {
  width: 152px;
  height: 42px;
  border: 1px solid rgba(47, 42, 36, 0.46);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(36, 33, 29, 0.98);
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
}

.privacy-note {
  width: 164px;
  margin: 3px 0 0;
  color: rgba(106, 93, 81, 0.58);
  font-size: 12px;
  line-height: 16px;
}

.text-main {
  padding-top: 40px;
  padding-bottom: 180px;
}

.text-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 620px 320px;
  column-gap: 60px;
  width: 1000px;
  margin-left: 100px;
  min-height: 1600px;
}

.text-content {
  width: 620px;
}

.label {
  margin: 0 0 12px;
  color: rgba(124, 111, 99, 0.74);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.text-content h1 {
  width: 560px;
  margin: 0 0 18px;
  color: rgba(25, 23, 19, 0.95);
  font-size: 47px;
  line-height: 55px;
  font-weight: 600;
}

.subtitle {
  width: 560px;
  margin: 0 0 46px;
  color: rgba(70, 62, 54, 0.86);
  font-size: 22px;
  line-height: 34px;
}

.body-text {
  margin: 0 0 66px;
  color: var(--text);
  font-size: 19px;
  line-height: 33px;
}

.body-text--tight {
  margin-bottom: 22px;
}

.list-lead {
  margin: 0 0 15px;
  color: rgba(74, 65, 56, 0.82);
  font-size: 17px;
  line-height: 22px;
  font-weight: 500;
}

.text-list {
  margin: 0 0 68px;
  padding: 0;
  list-style: none;
  color: rgba(53, 47, 42, 0.88);
  font-size: 18px;
  line-height: 34px;
}

.text-section {
  scroll-margin-top: 84px;
  margin-bottom: 82px;
}

.expertise-block {
  scroll-margin-top: 84px;
  margin-bottom: 86px;
  padding-top: 28px;
  border-top: 1px solid rgba(143, 123, 104, 0.12);
}

.expertise-block h2 {
  width: 560px;
  margin: 0 0 26px;
  color: rgba(25, 23, 19, 0.95);
  font-size: 31px;
  line-height: 39px;
  font-weight: 600;
}

.expertise-block h3 {
  margin: 0 0 8px;
  color: rgba(74, 65, 56, 0.84);
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
}

.expertise-block p {
  margin: 0 0 26px;
  color: var(--text);
  font-size: 18px;
  line-height: 31px;
}

.expertise-block p:last-child {
  margin-bottom: 0;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  height: 42px;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid rgba(47, 42, 36, 0.46);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.44);
  color: rgba(36, 33, 29, 0.98);
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
}

.contact-block {
  margin-bottom: 68px;
  padding-top: 28px;
  border-top: 1px solid rgba(143, 123, 104, 0.12);
}

.contact-value {
  margin: 0 0 16px;
  color: rgba(36, 33, 29, 0.94);
  font-size: 21px;
  line-height: 29px;
  font-weight: 500;
}

.contact-value a {
  color: inherit;
}

.contact-block .inline-cta {
  margin: 0 0 22px;
}

.text-list li::before {
  content: "• ";
}

.section-title {
  margin: 0 0 18px;
  color: rgba(33, 29, 25, 0.94);
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
}

.long-copy {
  margin: 0 0 64px;
  color: var(--text);
  font-size: 19px;
  line-height: 33px;
}

.image-placeholder {
  border: 1px solid rgba(143, 123, 104, 0.21);
  border-radius: 24px;
  background: rgba(255, 249, 240, 0.96);
  box-shadow: 0 14px 30px -10px rgba(111, 96, 79, 0.11);
}

.image-placeholder__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(246, 234, 220, 0.42);
  color: rgba(109, 98, 88, 0.68);
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  text-align: center;
}

.image-placeholder--wide {
  width: 620px;
  height: 300px;
  padding: 30px 24px 24px;
  margin: 0 0 16px;
}

.image-placeholder--wide .image-placeholder__inner {
  width: 572px;
  height: 216px;
}

.caption {
  margin: 0 0 70px;
  color: rgba(110, 99, 88, 0.7);
  font-size: 15px;
  line-height: 22px;
}

.closing {
  margin: 0;
  color: rgba(79, 70, 61, 0.82);
  font-size: 18px;
  line-height: 31px;
}

.side {
  padding-top: 28px;
}

.side-card {
  width: 320px;
  margin-bottom: 246px;
}

.side-card .image-placeholder {
  width: 320px;
  height: 246px;
  padding: 28px 24px 0;
}

.side-card .image-placeholder__inner {
  width: 272px;
  height: 168px;
}

.side-card .caption {
  margin-top: 16px;
  color: rgba(110, 99, 88, 0.68);
  font-size: 15px;
  line-height: 21px;
}

.side-note h2 {
  margin: 0 0 18px;
  color: rgba(52, 46, 40, 0.86);
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
}

.side-note p,
.side-note li {
  color: rgba(93, 82, 72, 0.76);
  font-size: 17px;
  line-height: 27px;
}

.side-note ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.side-note li {
  line-height: 30px;
}

.side-note li::before {
  content: "• ";
}

.side-nav ul {
  margin-top: 22px;
}

.side-nav a {
  color: rgba(93, 82, 72, 0.78);
}

.side-nav a:hover,
.side-nav a:focus {
  color: rgba(31, 28, 23, 0.92);
}

.side-process {
  margin-top: 74px;
}

.side-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 38px;
  margin-top: 30px;
  padding: 0 15px;
  border: 1px solid rgba(47, 42, 36, 0.34);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.36);
  color: rgba(36, 33, 29, 0.92);
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}

.policy-layout {
  min-height: 1760px;
}

.policy-content h1 {
  width: 620px;
}

.policy-section {
  margin-bottom: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(143, 123, 104, 0.12);
}

.policy-section p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 18px;
  line-height: 31px;
}

.policy-section .text-list {
  margin-bottom: 22px;
}

.policy-section a {
  color: rgba(36, 33, 29, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-date {
  color: rgba(93, 82, 72, 0.7);
}

.policy-summary {
  position: sticky;
  top: 94px;
}
