:root {
  --paper: #f7f6f2;
  --ink: #282b29;
  --muted: #6b6e68;
  --red: #972e37;
  --line: #ddded5;
  --white: #fffefa;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea {
  font: inherit;
}
button, a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button, a, input, select, textarea {
  outline-offset: 5px;
}
:focus-visible {
  outline: 2px solid var(--red);
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
h1, h2, h3, p {
  margin: 0;
}
button {
  border: 0;
}
::selection {
  background: #e6bec1;
  color: #572027;
}
body .container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -70px;
  padding: 12px 20px;
  background: var(--red);
  color: white;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 102px;
  gap: 30px;
}
.brand {
  display: flex;
  gap: 12px;
  width: fit-content;
}
.brand-mark {
  width: 39px;
  height: 39px;
  fill: var(--red);
}
.brand-name {
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .075em;
  line-height: 1.5;
}
.brand-name > span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .32em;
}
body .desktop-nav {
  gap: 34px;
  margin-left: auto;
  margin-right: 62px;
  font-size: 13px;
}
body .desktop-nav a {
  transition: color .2s;
  padding-block: 10px;
}
body .desktop-nav a:hover {
  color: var(--red);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 17px 24px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
  transition: background .2s, transform .2s;
}
.button:hover {
  background: #75212a;
  transform: translateY(-2px);
}
.button:focus-visible {
  outline-offset: 4px;
}
.button-small {
  min-height: 44px;
  padding: 12px 20px;
  gap: 28px;
}
.menu-toggle, .mobile-nav {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 54px;
  padding-top: 63px;
  padding-bottom: 76px;
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.6;
}
.status-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: var(--red);
  flex: 0 0 auto;
}
.hero .eyebrow {
  color: var(--red);
  margin-bottom: 25px;
}
.hero h1 {
  font-size: clamp(58px, 6.2vw, 86px);
  font-weight: 500;
  letter-spacing: -.064em;
  line-height: 1.045;
}
h1 > span {
  color: var(--red);
}
.hero-description {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 419px;
  margin-top: 26px;
}
.hero-actions {
  gap: 23px;
  margin-top: 29px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  padding-block: 10px;
}
.text-link:hover {
  color: var(--red);
}
.text-link .icon {
  width: 17px;
  transition: transform .2s;
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 41px;
  color: #74766e;
  font-size: 10px;
  letter-spacing: .015em;
}
.small-line {
  width: 24px;
  height: 1px;
  background: #8c9284;
}
.hero-visual {
  position: relative;
  padding-bottom: 22px;
}
.hero-image-wrap {
  height: 564px;
  position: relative;
  overflow: hidden;
  border-radius: 110px 5px 5px 5px;
  background: #d6d0c5;
}
.hero-image-wrap:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 35, 29, .3), transparent 45%, rgba(34, 35, 29, .22));
  pointer-events: none;
}
.hero-image-wrap > img {
  height: 100%;
  object-position: center 58%;
}
.image-label {
  position: absolute;
  z-index: 1;
  top: 36px;
  right: 27px;
  font-size: 9px;
  letter-spacing: .2em;
  line-height: 1.8;
  color: white;
}
.image-caption {
  position: absolute;
  z-index: 1;
  bottom: 23px;
  right: 23px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  letter-spacing: .12em;
  color: white;
}
.image-caption > span {
  height: 5px;
  width: 5px;
  background: white;
  border-radius: 50%;
}
.insight-card {
  position: absolute;
  bottom: 50px;
  left: -35px;
  width: 293px;
  background: #f8f7f0;
  padding: 23px 24px;
  border: 1px solid #e7e5dc;
  border-radius: 3px;
  box-shadow: 0 12px 35px #282b2912;
  z-index: 2;
}
.insight-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.insight-card-top .eyebrow {
  font-size: 8px;
  margin: 0;
  color: var(--muted);
  letter-spacing: .11em;
}
.insight-card-top .icon {
  color: var(--red);
  width: 19px;
}
.insight-card-bottom {
  margin-top: 21px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.insight-card-bottom p {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.04em;
}
.insight-card-bottom em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--red);
}
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 54px;
  padding-bottom: 2px;
}
.mini-chart i {
  width: 11px;
  background: #ead8d6;
  height: 18px;
}
.mini-chart i:nth-child(2) {
  height: 27px;
  background: #d9b1b0;
}
.mini-chart i:nth-child(3) {
  height: 34px;
  background: #c78b8d;
}
.mini-chart i:nth-child(4) {
  height: 44px;
  background: #b2646a;
}
.mini-chart i:nth-child(5) {
  height: 54px;
  background: var(--red);
}
.image-index {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 8px;
  color: var(--muted);
  letter-spacing: .13em;
}
.principles {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  align-items: center;
  gap: 25px;
  padding-block: 29px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principles > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.principles strong {
  color: var(--ink);
  font-weight: 500;
}
.principles > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 13px;
}
.principles .icon {
  width: 29px;
  height: 29px;
  stroke-width: 1.4;
  color: var(--red);
}
.section-space {
  padding-block: 98px;
}
.section-label {
  color: var(--red);
  margin-bottom: 23px;
}
body h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  letter-spacing: -.05em;
  line-height: 1.12;
  font-weight: 500;
}
h2 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: var(--red);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  align-items: flex-end;
  margin-bottom: 45px;
}
.section-intro {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 335px;
  padding-bottom: 3px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 27px 24px 21px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f3f3ec;
  transition: border-color .25s, background .25s, transform .25s;
}
.service-card:hover {
  border-color: #b88688;
  background: #fffefa;
  transform: translateY(-5px);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.service-icon {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.35;
}
.service-top > span {
  font-size: 10px;
  color: #92948b;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 18px;
}
.service-card > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 26px;
}
.service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 19px;
  margin-top: auto;
  font-size: 10px;
  font-weight: 600;
}
.service-link .icon {
  color: var(--red);
  width: 16px;
}
.service-link:hover {
  color: var(--red);
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 85px;
  padding-bottom: 105px;
}
.about-visual {
  position: relative;
  align-self: stretch;
  min-height: 480px;
}
.about-visual > img {
  height: 100%;
  position: absolute;
  border-radius: 4px 4px 80px 4px;
}
.about-image-note {
  display: flex;
  gap: 10px;
  align-items: center;
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  width: fit-content;
  background: var(--paper);
  border-radius: 3px;
  padding: 15px 18px;
  font-size: 8px;
  letter-spacing: .12em;
}
.about-content > .section-label {
  font-size: 9px;
}
.about-content h2 {
  margin-bottom: 24px;
}
.about-lead {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-content > p:not(.eyebrow):not(.about-lead) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 27px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}
.about-values > div > span {
  font-size: 10px;
  color: var(--red);
}
.about-values h3 {
  font-size: 13px;
  font-weight: 600;
  margin-block: 10px;
}
.about-values p {
  font-size: 11px;
  line-height: 1.75;
  color: var(--muted);
}
.about-content > .text-link {
  margin-top: 23px;
  color: var(--red);
}
.approach {
  background: #842b33;
  color: #fcf8f0;
  position: relative;
  overflow: hidden;
}
.approach .section-label {
  color: #e6b9b9;
}
.approach .section-heading {
  margin-bottom: 58px;
}
.approach-intro {
  max-width: 300px;
}
.approach-intro p {
  font-size: 13px;
  line-height: 1.85;
  color: #e4cccc;
}
.approach-flower {
  font-size: 57px;
  line-height: 1;
  display: block;
  margin-bottom: 17px;
  color: #dcb8a9;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.process-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff38;
  color: #e5b5b7;
  font-size: 12px;
}
.process-number .icon {
  width: 17px;
}
.process-grid h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.025em;
  margin-top: 26px;
  margin-bottom: 13px;
}
.process-grid p {
  color: #e4cccc;
  font-size: 12px;
  line-height: 1.85;
  max-width: 235px;
}
.contact-cta {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  padding-block: 99px;
}
.contact-cta h2 {
  font-size: clamp(36px, 3.7vw, 51px);
}
.contact-cta-action {
  padding-right: 31px;
}
.contact-cta-action > p {
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 20px;
  color: var(--muted);
}
.contact-cta-action > span {
  font-size: 10px;
  display: block;
  margin-top: 13px;
  color: var(--muted);
}
.site-footer {
  background: #262d29;
  color: #eeefe8;
  padding-top: 63px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 54px;
}
.site-footer .brand-mark {
  fill: #eeefe8;
}
.footer-brand-block > p {
  color: #b8bfb6;
  font-size: 12px;
  line-height: 1.9;
  margin-top: 23px;
}
.footer-company {
  display: block;
  color: #aeb7ad;
  font-size: 8px;
  letter-spacing: .07em;
  margin-top: 22px;
}
.site-footer h3 {
  color: #c7cdc4;
  font-size: 9px;
  letter-spacing: .15em;
  font-weight: 500;
  margin-top: 6px;
  margin-bottom: 25px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ffffff26;
}
.footer-contact a:hover {
  color: #e5b1b4;
}
.footer-contact .icon {
  width: 16px;
  height: 16px;
}
.footer-address address {
  font-size: 12px;
  font-style: normal;
  line-height: 1.9;
  color: #d1d6cd;
}
.location-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 7px;
  letter-spacing: .07em;
  color: #b7c1b2;
  margin-top: 24px;
}
.location-label .status-dot {
  width: 5px;
  height: 5px;
  background: #b7c1b2;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid #ffffff26;
  padding-block: 23px;
  font-size: 9px;
  color: #b4bcb1;
}
.footer-bottom a {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #d1d6cd;
}
.footer-bottom .icon {
  width: 15px;
  height: 15px;
}
.site-footer :focus-visible {
  outline-color: #edb8b8;
}
dialog {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 0;
  border-radius: 7px;
  width: min(560px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  box-shadow: 0 25px 100px #121b1955;
}
dialog::backdrop {
  background: #17251ec9;
  backdrop-filter: blur(5px);
}
.dialog-inner {
  position: relative;
  padding: 38px;
}
.dialog-close {
  position: absolute;
  top: 17px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
  color: var(--ink);
}
.dialog-close:hover {
  background: #e9e7de;
}
.dialog-inner .section-label {
  margin-bottom: 17px;
  font-size: 9px;
}
.dialog-inner h2 {
  font-size: 43px;
}
#inquiry-description {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin-block: 17px 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
#inquiry-form label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 17px;
}
#inquiry-form input, #inquiry-form select, #inquiry-form textarea {
  display: block;
  width: 100%;
  background: var(--white);
  border: 1px solid #cfd1c7;
  border-radius: 3px;
  padding: 11px 12px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 400;
}
#inquiry-form textarea {
  resize: vertical;
  min-height: 90px;
}
#inquiry-form .button {
  width: 100%;
  justify-content: space-between;
}
.form-note {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
}
.dialog-direct {
  font-size: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  line-height: 1.7;
}
.dialog-direct > a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.dialog-open {
  overflow: hidden;
}
@media (min-width: 1550px) {
  .hero {
    gap: 82px;
  }
}
@media (max-width: 1150px) {
  body .container {
    width: calc(100% - 72px);
  }
  body .desktop-nav {
    margin-right: 15px;
    gap: 24px;
  }
  .hero {
    gap: 40px;
  }
  .hero h1 {
    font-size: 69px;
  }
  .hero-image-wrap {
    height: 548px;
  }
  .hero-actions {
    gap: 10px 18px;
  }
  .hero-note {
    margin-top: 25px;
  }
  .insight-card {
    width: 260px;
    left: -24px;
    padding: 20px;
  }
  .insight-card-bottom p {
    font-size: 22px;
  }
  .service-card {
    padding-inline: 18px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .services-grid {
    gap: 12px;
  }
  .about {
    gap: 55px;
  }
  .footer-main {
    gap: 35px;
  }
  .footer-contact a {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  body .container {
    width: calc(100% - 48px);
  }
  .header-inner {
    min-height: 87px;
    gap: 20px;
  }
  .brand-name {
    font-size: 12px;
  }
  .brand-name > span {
    font-size: 8px;
  }
  .brand-mark {
    width: 33px;
  }
  body .desktop-nav {
    gap: 19px;
    font-size: 11px;
    margin-right: 0;
  }
  .button-small {
    gap: 15px;
    padding-inline: 16px;
  }
  .hero {
    gap: 30px;
    padding-top: 45px;
    padding-bottom: 50px;
  }
  .hero h1 {
    font-size: 57px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-image-wrap {
    height: 490px;
    border-top-left-radius: 85px;
  }
  .insight-card {
    left: -17px;
    width: 238px;
  }
  .insight-card-top .eyebrow {
    font-size: 7px;
  }
  .image-caption {
    font-size: 6px;
  }
  .image-label {
    font-size: 7px;
    right: 20px;
  }
  .image-index {
    font-size: 6px;
  }
  .hero-note {
    font-size: 8px;
  }
  .principles {
    gap: 15px;
  }
  .principles > p {
    font-size: 10px;
  }
  .principles > div {
    gap: 8px;
    font-size: 10px;
  }
  .principles .icon {
    width: 23px;
  }
  .section-space {
    padding-block: 73px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-intro {
    max-width: 280px;
    font-size: 12px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .service-card {
    padding: 26px;
  }
  .service-top {
    margin-bottom: 25px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .service-card > p {
    font-size: 13px;
  }
  .about {
    gap: 35px;
  }
  .about-visual {
    min-height: 470px;
  }
  .about-values {
    gap: 18px;
  }
  .about-image-note {
    font-size: 6px;
    padding: 12px;
    left: 14px;
    right: 14px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .process-grid p {
    max-width: 300px;
  }
  .contact-cta {
    padding-block: 75px;
    gap: 30px;
  }
  .contact-cta-action {
    padding-right: 0;
  }
  .contact-cta-action > p {
    font-size: 11px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand-block {
    grid-column: 1 / -1;
  }
}
@media (max-width: 650px) {
  html {
    scroll-padding-top: 20px;
  }
  body .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 78px;
  }
  .brand {
    gap: 9px;
  }
  .brand-name {
    font-size: 12px;
  }
  .brand-mark {
    width: 32px;
    height: 35px;
  }
  body .desktop-nav, .header-contact {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    background: transparent;
    padding: 9px;
  }
  .menu-toggle > span {
    height: 1px;
    width: 24px;
    background: var(--ink);
    transition: transform .2s;
  }
  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-nav:not([hidden]) {
    display: grid;
    padding: 6px 20px 22px;
    gap: 0;
    background: var(--paper);
  }
  .mobile-nav a {
    padding: 15px 3px;
    border-top: 1px solid var(--line);
    font-size: 14px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
    padding-bottom: 38px;
    gap: 39px;
  }
  .hero .eyebrow {
    font-size: 8px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: clamp(53px, 13.6vw, 78px);
    line-height: 1.035;
  }
  .hero-description {
    font-size: 14px;
    margin-top: 23px;
    max-width: 450px;
  }
  .hero-actions {
    gap: 13px 20px;
    margin-top: 25px;
  }
  .button {
    font-size: 12px;
    gap: 21px;
    padding-inline: 20px;
    min-height: 51px;
  }
  .text-link {
    font-size: 11px;
    gap: 9px;
  }
  .hero-note {
    font-size: 9px;
    margin-top: 26px;
  }
  .hero-visual {
    margin-left: 13px;
  }
  .hero-image-wrap {
    height: 455px;
    border-top-left-radius: 90px;
  }
  .image-label {
    font-size: 8px;
    top: 28px;
    right: 23px;
  }
  .image-caption {
    font-size: 6px;
  }
  .insight-card {
    left: -13px;
    bottom: 51px;
    width: 256px;
    padding: 21px;
  }
  .insight-card-top .eyebrow {
    margin: 0;
  }
  .insight-card-bottom p {
    font-size: 25px;
  }
  .image-index {
    font-size: 7px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 27px 0;
  }
  .principles > p {
    font-size: 12px;
    padding-bottom: 6px;
  }
  .principles > div {
    justify-content: flex-start;
    gap: 13px;
    font-size: 12px;
  }
  .principles .icon {
    width: 27px;
    height: 27px;
  }
  .section-space {
    padding-block: 59px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 29px;
  }
  .section-label {
    font-size: 8px;
    margin-bottom: 18px;
  }
  body h2 {
    font-size: clamp(33px, 8.5vw, 42px);
  }
  .section-intro {
    max-width: 100%;
    font-size: 13px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .service-card {
    padding: 27px;
  }
  .service-top {
    margin-bottom: 22px;
  }
  .service-card h3 br {
    display: none;
  }
  .service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .service-card > p {
    font-size: 13px;
    margin-bottom: 23px;
  }
  .service-link {
    font-size: 11px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .about-visual {
    min-height: 350px;
  }
  .about-image-note {
    font-size: 7px;
    padding: 14px;
  }
  .about-content > .section-label {
    font-size: 8px;
  }
  .about-values {
    gap: 24px;
    margin-top: 24px;
  }
  .about-values h3 {
    font-size: 12px;
  }
  .about-values p {
    font-size: 11px;
  }
  .about-content > .text-link {
    margin-top: 22px;
  }
  .approach .section-heading {
    margin-bottom: 36px;
  }
  .approach-intro {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 25px;
    max-width: none;
  }
  .approach-flower {
    font-size: 48px;
    margin: 0;
  }
  .approach-intro p {
    font-size: 12px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-number {
    padding-bottom: 15px;
  }
  .process-grid h3 {
    margin-top: 21px;
    font-size: 20px;
  }
  .process-grid p {
    max-width: none;
    font-size: 13px;
  }
  .contact-cta {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 61px;
    gap: 28px;
  }
  .contact-cta h2 {
    font-size: clamp(31px, 8.2vw, 43px);
  }
  .contact-cta-action > p {
    font-size: 13px;
  }
  .contact-cta-action > span {
    margin-top: 14px;
  }
  .site-footer {
    padding-top: 44px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 33px;
    padding-bottom: 38px;
  }
  .footer-brand-block {
    grid-column: auto;
  }
  .footer-brand-block > p {
    margin-top: 18px;
  }
  .footer-company {
    margin-top: 15px;
  }
  .site-footer h3 {
    margin-bottom: 20px;
  }
  .footer-contact a {
    font-size: 13px;
  }
  .footer-contact a:last-child {
    margin-bottom: 0;
  }
  .footer-address address {
    font-size: 13px;
  }
  .location-label {
    font-size: 7px;
    margin-top: 18px;
  }
  .footer-bottom {
    align-items: flex-start;
    gap: 24px;
    font-size: 8px;
    line-height: 1.8;
  }
  .footer-bottom > p {
    max-width: 235px;
  }
  .footer-bottom > a {
    flex-shrink: 0;
    gap: 7px;
  }
  .dialog-inner {
    padding: 30px 23px;
  }
  .dialog-inner h2 {
    font-size: 37px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .dialog-close {
    top: 14px;
    right: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
