:root {
  --paper: #f6f4ef;
  --white: #fffefa;
  --ink: #292c29;
  --muted: #62655e;
  --red: #b6382b;
  --red-dark: #952d22;
  --line: #deded5;
  --green: #35644c;
  --font-body: "Source Sans 3", sans-serif;
  --font-title: "Manrope", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 18px/1.7 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
::selection {
  background: #eecbc0;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
}
.container {
  width: min(1232px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: white;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip-path: none;
  padding: 12px 20px;
}
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.header-inner {
  height: 105px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-inner nav {
  display: flex;
  gap: 28px;
  font-size: 16px;
}
.header-inner nav a {
  transition: color 0.2s;
}
.header-inner nav a:hover {
  color: var(--red);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-red {
  background: var(--red);
  color: #fff;
}
.button-red:hover {
  background: var(--red-dark);
  box-shadow: 0 5px 14px #962b231a;
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  background: #474b44;
}
.button-small {
  font-size: 15px;
  min-height: 43px;
  padding: 10px 16px;
  gap: 15px;
}
.button-small .icon {
  width: 18px;
}
.mobile-label {
  display: none;
}
.hero {
  padding-top: 66px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.14fr 1fr;
  gap: 94px;
  align-items: start;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  display: inline-block;
  background: var(--red);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #b6382b0d;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 600;
}
h1 {
  font-size: clamp(48px, 5.1vw, 72px);
  line-height: 1.13;
  letter-spacing: -2.7px;
  margin: 28px 0 23px;
}
h1 > span {
  color: var(--red);
}
.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #60635d;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 29px;
}
.hero-actions .button {
  white-space: nowrap;
  padding-inline: 19px;
  font-size: 16px;
  gap: 13px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 600;
}
.text-link:hover {
  color: var(--red);
}
.hero-actions .text-link {
  font-size: 15px;
  white-space: nowrap;
  color: var(--green);
  gap: 7px;
}
.hero-reassurance {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin-top: 13px;
}
.hero-reassurance .icon {
  width: 14px;
  height: 14px;
  color: var(--green);
}
.hero-reassurance > span {
  margin-inline: 3px;
}
.language-art {
  height: 171px;
  position: relative;
  margin-top: 27px;
  max-width: 510px;
}
.orbit {
  position: absolute;
  width: 310px;
  height: 156px;
  right: 3px;
  top: 0;
  stroke: #c7cac0;
  stroke-width: 0.7;
}
.orbit-dot {
  fill: var(--red);
  stroke: var(--red);
}
.art-caption {
  position: absolute;
  top: 68px;
  left: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.art-caption > span {
  color: var(--ink);
  font-weight: 500;
}
.language {
  position: absolute;
  border: 1px solid #e0e0d7;
  border-radius: 6px;
  background: var(--paper);
  font: 500 18px var(--font-title);
  padding: 8px 15px;
  box-shadow: 0 4px 8px #33333303;
}
.language-it {
  right: 157px;
  top: 10px;
  transform: rotate(-8deg);
  color: var(--red);
  background: #f0e6de;
}
.language-en {
  right: 11px;
  top: 31px;
  transform: rotate(8deg);
}
.language-fr {
  right: 116px;
  top: 95px;
  transform: rotate(-4deg);
}
.language-de {
  right: -12px;
  top: 114px;
  transform: rotate(8deg);
  font-size: 16px;
  color: var(--muted);
}
.quote-card {
  border: 1px solid #e4e2db;
  border-top: 3px solid var(--red);
  border-radius: 12px;
  background: var(--white);
  padding: 28px 31px 0;
  box-shadow: 0 14px 38px #423a2710;
  position: relative;
  scroll-margin-top: 25px;
}
.card-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mini-line {
  height: 1px;
  background: var(--red);
  width: 19px;
}
.quote-card h2 {
  font-size: 28px;
  letter-spacing: -1.1px;
  margin-top: 11px;
  line-height: 1.4;
}
.quote-card > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 7px 0 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-purpose {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-left: 3px solid var(--red);
  border-radius: 0 5px 5px 0;
  background: #f8efeb;
  color: #5c514b;
  font-size: 13px;
  line-height: 1.55;
}
.field {
  margin-bottom: 14px;
  min-width: 0;
}
.field label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.field label > span:not(.optional) {
  color: var(--red);
}
.optional {
  float: right;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
input:not([type="checkbox"]),
select,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid #ddded5;
  background: #fbfaf6;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 16px;
  color: var(--ink);
  transition: border 0.2s;
}
input::placeholder,
textarea::placeholder {
  color: #6c6f66;
  opacity: 1;
}
textarea {
  resize: vertical;
  min-height: 75px;
  display: block;
  line-height: 1.6;
}
.select-wrap {
  position: relative;
}
.select-wrap:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--muted);
  border-bottom: 1px solid var(--muted);
  transform: rotate(45deg);
  pointer-events: none;
}
select {
  appearance: none;
  padding-right: 30px;
}
select:invalid {
  color: #686b61;
}
option {
  color: var(--ink);
}
.phone-field {
  margin-bottom: 15px;
}
.field-help {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: 18px;
}
.privacy-check input {
  accent-color: var(--red);
  margin: 2px 0 0;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.privacy-check a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.submit-button {
  width: 100%;
  justify-content: space-between;
  min-height: 49px;
  padding: 13px 16px;
  font-size: 15px;
}
.form-note {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  margin: 11px 0 19px;
}
.form-note .icon {
  width: 13px;
  height: 13px;
}
.form-alternative {
  font-size: 13px;
  border-top: 1px solid #ecebe4;
  padding: 15px 0;
  text-align: center;
  color: var(--muted);
}
.form-alternative a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
  font-weight: 600;
  margin-left: 4px;
}
.form-alternative .icon {
  width: 13px;
  height: 13px;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  padding: 12px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 5px;
  margin-top: 12px;
  background: #fcebe7;
  color: #863127;
}
.form-status.success {
  background: #e8f2e7;
  color: #315c3a;
}
.form-status:focus {
  outline: 2px solid currentColor;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  border-top: 1px solid var(--line);
  padding: 26px 0 29px;
  margin-top: 47px;
}
.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
}
.trust-strip > div:last-child {
  border: 0;
}
.trust-strip > div:first-child {
  display: block;
}
.trust-strip > div:first-child strong {
  font: 600 24px var(--font-title);
  letter-spacing: -1px;
}
.trust-strip > div:first-child span {
  display: block;
  margin-top: 3px;
}
.trust-strip .icon {
  width: 29px;
  height: 29px;
  color: #666e62;
}
.trust-strip span {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
.trust-strip strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
}
.section-space {
  padding: 92px 0;
}
.services {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}
.section-heading .eyebrow,
.about-copy .eyebrow,
.faq-grid .eyebrow,
.final-cta .eyebrow {
  margin-bottom: 18px;
  color: var(--red);
}
h2 {
  font-size: 38px;
  line-height: 1.27;
  letter-spacing: -1.5px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  padding-bottom: 5px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px;
}
.service-card {
  padding: 27px 26px 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: #b5b9ac;
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 29px;
}
.service-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  background: #efe5db;
  border-radius: 8px;
  color: var(--red);
}
.service-card:nth-child(2) .service-icon {
  background: #e8ece3;
  color: #5d7156;
}
.service-card:nth-child(3) .service-icon {
  background: #e9e9f0;
  color: #6c6681;
}
.service-card:nth-child(4) .service-icon {
  background: #f3e4e4;
  color: var(--red);
}
.service-number {
  font-size: 11px;
  letter-spacing: 1.2px;
  color: var(--muted);
}
h3 {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.7px;
}
.service-card > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 14px 0 19px;
  max-width: 290px;
}
.service-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: 14px;
  line-height: 2.2;
}
.service-card li:before {
  content: "✓";
  color: var(--green);
  margin-right: 8px;
}
.service-card > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}
.service-card > a:hover {
  color: var(--red);
}
.service-card > a .icon {
  width: 18px;
}
.services-help {
  text-align: center;
  margin-top: 29px;
  font-size: 15px;
  color: var(--muted);
}
.services-help a {
  color: var(--ink);
  font-weight: 600;
  margin-left: 5px;
  white-space: nowrap;
}
.services-help .icon {
  width: 15px;
  height: 15px;
}
.about-section {
  background: #2e3830;
  color: #fcfaf4;
  padding: 76px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 105px;
  align-items: center;
}
.portrait-wrap {
  position: relative;
  max-width: 460px;
}
.portrait-wrap > img {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 8px;
}
.portrait-caption {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 17px;
  background: #faf8f0f5;
  color: var(--ink);
  padding: 16px 20px;
  border-radius: 5px;
}
.portrait-caption strong {
  display: block;
  font: 600 16px var(--font-title);
}
.portrait-caption span {
  font-size: 13px;
  color: var(--muted);
}
.portrait-caption > .icon {
  position: absolute;
  right: 19px;
  top: 25px;
  color: var(--red);
}
.photo-label {
  font-size: 11px;
  letter-spacing: 1.9px;
  position: absolute;
  top: 29px;
  left: 21px;
  padding: 7px 11px;
  background: #f8f5ede8;
  color: var(--ink);
  border-radius: 3px;
}
.about-copy .eyebrow {
  color: #d7b8a0;
}
.about-copy h2 {
  font-size: 38px;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}
.about-copy > p {
  font-size: 17px;
  line-height: 1.85;
  color: #d4d9d0;
  margin-bottom: 14px;
}
.credential {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 20px 0 25px;
  font-size: 14px;
  color: #ecebdf;
}
.credential > .icon {
  width: 29px;
  height: 29px;
  color: #d7b8a0;
}
.credential small {
  display: block;
  color: #bfc8b9;
  font-size: 13px;
  margin-top: 3px;
}
.button-light {
  background: #f4f2e8;
  color: var(--ink);
  font-size: 15px;
  gap: 15px;
}
.button-light:hover {
  background: #e3dfd0;
}
.process .section-heading .text-link {
  margin-bottom: 5px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 53px;
}
.steps article {
  position: relative;
  border-top: 1px solid #cdcec4;
  padding-top: 29px;
}
.step-number {
  display: block;
  font: 500 14px var(--font-title);
  color: var(--red);
  margin-bottom: 14px;
}
.steps h3 {
  font-size: 18px;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.steps p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 300px;
}
.testimonial {
  border-block: 1px solid var(--line);
  background: #eeeae0;
  padding: 37px 0;
}
.testimonial-inner {
  display: flex;
  align-items: center;
  gap: 26px;
}
.quote-mark {
  font:
    90px/1 Georgia,
    serif;
  color: var(--red);
  height: 68px;
}
.testimonial blockquote {
  margin: 0;
  flex: 1;
}
.testimonial blockquote > p {
  font: 500 18px/1.6 var(--font-title);
  letter-spacing: -0.4px;
  max-width: 640px;
}
.testimonial blockquote footer {
  display: flex;
  gap: 14px;
  font-size: 13px;
  margin-top: 13px;
}
.testimonial blockquote footer span {
  color: var(--muted);
}
.testimonial-inner > a {
  font-size: 13px;
  max-width: 180px;
  line-height: 1.8;
}
.testimonial-inner > a .icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}
.faq-section {
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
}
.faq-grid > div > p {
  margin: 22px 0 17px;
  color: var(--muted);
  font-size: 17px;
}
.faq-grid .text-link {
  color: var(--green);
}
.faqs details {
  border-bottom: 1px solid var(--line);
}
.faqs details:first-child {
  border-top: 1px solid var(--line);
}
.faqs summary {
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
}
.faqs summary::-webkit-details-marker {
  display: none;
}
.faqs summary span {
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  color: var(--muted);
  transition: transform 0.2s;
}
.faqs details[open] summary span {
  transform: rotate(45deg);
  color: var(--red);
}
.faqs details p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  padding: 0 28px 22px 0;
}
.faqs details p a {
  text-decoration: underline;
}
.final-cta {
  border-top: 1px solid var(--line);
  padding: 59px 0 65px;
  background: #eeeae1;
}
.final-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.final-cta h2 {
  font-size: 34px;
  letter-spacing: -1.2px;
}
.final-inner > div:last-child > p {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  margin-top: 13px;
}
.final-inner > div:last-child > p a {
  color: var(--green);
  font-weight: 500;
}
.final-inner > div:last-child > p .icon {
  width: 15px;
  height: 15px;
}
.site-footer {
  padding-top: 40px;
  background: var(--white);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
}
.footer-top > p {
  font-size: 14px;
  color: var(--muted);
}
.footer-top > a:not(.brand) {
  font-size: 15px;
}
.footer-top > a > .icon {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  color: var(--muted);
  font-size: 12px;
}
.footer-bottom .icon {
  width: 13px;
  height: 13px;
}
.mobile-bar {
  display: none;
}
@media (min-width: 1450px) {
  .hero {
    padding-top: 75px;
  }
  .hero-grid {
    gap: 110px;
  }
  .language-art {
    margin-top: 42px;
  }
  .hero-description {
    font-size: 17px;
  }
}
@media (max-width: 1200px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 20px;
  }
  .header-inner nav {
    gap: 20px;
    font-size: 15px;
  }
  .header-cta {
    font-size: 14px;
  }
  .hero-grid {
    gap: 45px;
    grid-template-columns: 1.1fr 1fr;
  }
  h1 {
    font-size: 59px;
    letter-spacing: -3px;
  }
  .hero-actions {
    gap: 15px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-actions .text-link {
    font-size: 16px;
  }
  .hero-reassurance {
    margin-top: 12px;
  }
  .language-art {
    height: 150px;
    margin-top: 7px;
  }
  .orbit {
    width: 270px;
    right: 0;
  }
  .language-fr {
    right: 100px;
  }
  .language-it {
    right: 125px;
  }
  .language-de {
    right: 0;
  }
  .art-caption {
    top: 83px;
  }
  .quote-card {
    padding-inline: 24px;
  }
  .about-grid {
    gap: 65px;
  }
  .service-card {
    padding-inline: 22px;
  }
  .service-number {
    font-size: 11px;
  }
  .about-copy h2 {
    font-size: 34px;
  }
  .testimonial blockquote > p {
    font-size: 18px;
  }
  .faq-grid {
    gap: 55px;
  }
  .footer-top {
    gap: 18px;
  }
  .footer-top > p {
    display: none;
  }
}
@media (max-width: 960px) {
  .header-inner nav {
    display: none;
  }
  .hero {
    padding-top: 45px;
  }
  .hero-grid {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
  h1 {
    font-size: 48px;
    letter-spacing: -2.5px;
  }
  .hero-description {
    font-size: 17px;
  }
  .quote-card {
    padding-inline: 20px;
  }
  .quote-card h2 {
    font-size: 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .quote-card > p br {
    display: none;
  }
  .language-art {
    margin-top: 30px;
    height: 165px;
  }
  .art-caption {
    display: none;
  }
  .language-en {
    right: 10px;
  }
  .trust-strip {
    gap: 18px;
    margin-top: 35px;
  }
  .trust-strip > div {
    gap: 9px;
  }
  .trust-strip strong {
    font-size: 13px;
  }
  .trust-strip span {
    font-size: 12px;
  }
  .trust-strip .icon {
    width: 23px;
    height: 23px;
  }
  .section-space {
    padding: 67px 0;
  }
  h2 {
    font-size: 32px;
  }
  .section-heading > p {
    max-width: 270px;
    font-size: 15px;
  }
  .service-grid {
    gap: 14px;
  }
  .service-card {
    padding-inline: 19px;
  }
  .service-top {
    margin-bottom: 22px;
  }
  .service-number {
    display: none;
  }
  .service-card h3 {
    font-size: 19px;
  }
  .service-card > p {
    font-size: 15px;
  }
  .service-card ul {
    font-size: 13px;
  }
  .service-card > a {
    font-size: 13px;
    gap: 8px;
  }
  .about-section {
    padding: 60px 0;
  }
  .about-grid {
    gap: 40px;
  }
  .about-copy h2 {
    font-size: 29px;
  }
  .portrait-wrap > img {
    height: 450px;
  }
  .credential {
    font-size: 13px;
  }
  .credential small {
    font-size: 12px;
  }
  .about-copy > p {
    font-size: 16px;
  }
  .steps {
    gap: 28px;
  }
  .steps h3 {
    font-size: 18px;
  }
  .testimonial-inner {
    gap: 20px;
  }
  .testimonial-inner > a {
    max-width: 125px;
  }
  .testimonial blockquote footer {
    display: block;
  }
  .testimonial blockquote footer span {
    display: block;
  }
  .faq-grid {
    gap: 45px;
    grid-template-columns: 0.85fr 1.2fr;
  }
  .faqs summary {
    font-size: 15px;
  }
  .final-cta h2 {
    font-size: 28px;
  }
  .final-inner {
    gap: 30px;
  }
  .final-inner .button {
    font-size: 15px;
    padding-inline: 17px;
    gap: 15px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 25px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 81px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .header-cta {
    font-size: 13px;
    padding: 9px 12px;
    min-height: 40px;
    width: auto;
    gap: 8px;
  }
  .header-cta .icon {
    width: 16px;
    height: 16px;
  }
  .header-cta .desktop-label {
    display: none;
  }
  .header-cta .mobile-label {
    display: inline;
  }
  .hero {
    padding-top: 34px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.7px;
  }
  .hero-copy h1 {
    font-size: clamp(42px, 10.5vw, 68px);
    letter-spacing: -1.6px;
    line-height: 1.13;
    margin-top: 22px;
    margin-bottom: 21px;
  }
  .hero-description {
    font-size: 17px;
    max-width: 480px;
    line-height: 1.85;
  }
  .hero-actions {
    margin-top: 24px;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    font-size: 15px;
    min-height: 48px;
    padding: 12px 15px;
  }
  .hero-actions .text-link {
    font-size: 14px;
  }
  .hero-reassurance {
    font-size: 13px;
  }
  .language-art {
    display: none;
  }
  .quote-card {
    padding: 24px 23px 0;
    max-width: 520px;
    width: 100%;
    justify-self: center;
  }
  .quote-card h2 {
    font-size: 27px;
  }
  .quote-card > p {
    font-size: 16px;
    margin-bottom: 22px;
  }
  .quote-card > p br {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .field {
    margin-bottom: 16px;
  }
  .field label {
    font-size: 15px;
  }
  .optional {
    font-size: 13px;
  }
  input:not([type="checkbox"]),
  select,
  textarea {
    font-size: 18px;
    padding: 11px;
    min-height: 47px;
  }
  .privacy-check {
    font-size: 14px;
    gap: 10px;
  }
  .privacy-check input {
    width: 17px;
    height: 17px;
  }
  .submit-button {
    font-size: 16px;
    min-height: 53px;
    gap: 10px;
  }
  .form-note {
    font-size: 12px;
  }
  .form-alternative {
    font-size: 13px;
    line-height: 1.8;
    padding-block: 15px;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 22px 12px;
    padding-block: 24px 28px;
    margin-top: 29px;
  }
  .trust-strip > div {
    padding-left: 8px;
    gap: 10px;
  }
  .trust-strip > div:nth-child(2) {
    border: 0;
  }
  .trust-strip > div:nth-child(1) {
    padding-left: 8px;
  }
  .trust-strip > div:first-child strong {
    font-size: 24px;
  }
  .trust-strip strong {
    font-size: 13px;
  }
  .trust-strip span {
    font-size: 12px;
  }
  .trust-strip .icon {
    width: 24px;
    height: 24px;
  }
  .section-space {
    padding: 56px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 29px;
  }
  .section-heading .eyebrow,
  .faq-grid .eyebrow,
  .final-cta .eyebrow {
    margin-bottom: 14px;
  }
  h2 {
    font-size: 29px;
    letter-spacing: -1.2px;
  }
  .section-heading > p {
    margin-top: 18px;
    font-size: 16px;
    max-width: 100%;
  }
  .section-heading > p br {
    display: none;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 23px 24px 0;
  }
  .service-top {
    margin-bottom: 22px;
  }
  .service-number {
    display: block;
    font-size: 12px;
  }
  .service-icon {
    width: 43px;
    height: 43px;
  }
  .service-card h3 {
    font-size: 23px;
  }
  .service-card > p {
    font-size: 17px;
    max-width: 100%;
    margin-top: 13px;
  }
  .service-card ul {
    font-size: 15px;
    margin-bottom: 21px;
  }
  .service-card > a {
    font-size: 15px;
    padding-block: 18px;
  }
  .services-help {
    font-size: 15px;
    line-height: 1.9;
    max-width: 300px;
    margin-inline: auto;
  }
  .about-section {
    padding: 44px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .portrait-wrap {
    max-width: 100%;
  }
  .portrait-wrap > img {
    height: 390px;
    object-position: center 31%;
  }
  .about-copy .eyebrow {
    margin-bottom: 15px;
  }
  .about-copy h2 {
    font-size: 30px;
    letter-spacing: -1.2px;
  }
  .about-copy > p {
    font-size: 17px;
  }
  .credential {
    font-size: 14px;
    gap: 11px;
  }
  .credential small {
    font-size: 13px;
  }
  .about-copy .button {
    font-size: 16px;
  }
  .process .section-heading .text-link {
    margin-top: 22px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  .steps article {
    padding: 24px 0 0 42px;
  }
  .step-number {
    position: absolute;
    left: 0;
    top: 28px;
  }
  .steps h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .steps p {
    font-size: 17px;
    max-width: 100%;
  }
  .testimonial {
    padding: 34px 0;
  }
  .testimonial-inner {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 14px;
  }
  .quote-mark {
    font-size: 72px;
    width: 25px;
    height: 45px;
  }
  .testimonial blockquote {
    flex-basis: calc(100% - 45px);
  }
  .testimonial blockquote > p {
    font-size: 17px;
  }
  .testimonial blockquote footer {
    font-size: 14px;
  }
  .testimonial blockquote footer span {
    margin-top: 2px;
  }
  .testimonial-inner > a {
    margin-left: 40px;
    max-width: 100%;
    font-size: 14px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-grid > div > p {
    font-size: 16px;
    margin-top: 18px;
  }
  .faqs summary {
    font-size: 16px;
    padding: 21px 0;
  }
  .faqs details p {
    font-size: 16px;
  }
  .final-cta {
    padding: 45px 0;
  }
  .final-inner {
    display: block;
  }
  .final-cta h2 {
    font-size: 29px;
  }
  .final-inner > div:last-child {
    margin-top: 26px;
  }
  .final-inner .button {
    font-size: 16px;
    width: 100%;
    justify-content: space-between;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 19px;
    padding-bottom: 27px;
  }
  .footer-top > a:not(.brand) {
    font-size: 16px;
  }
  .footer-brand {
    margin-bottom: 3px;
  }
  .footer-bottom {
    display: block;
    font-size: 12px;
    line-height: 1.8;
    padding-bottom: 105px;
  }
  .footer-bottom > a {
    display: block;
    margin-top: 10px;
  }
  .mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fffefaf5;
    backdrop-filter: blur(12px);
    padding: 10px 16px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    gap: 9px;
    z-index: 20;
    box-shadow: 0 -4px 20px #24262108;
  }
  .mobile-bar .button {
    font-size: 15px;
    min-height: 45px;
    padding: 10px 13px;
    gap: 9px;
  }
  .mobile-bar .button:first-child {
    flex: 1;
    justify-content: space-between;
  }
  .mobile-bar .whatsapp-link {
    background: #e9eee7;
    color: var(--green);
    padding-inline: 14px;
  }
  .mobile-bar .icon {
    width: 19px;
    height: 19px;
  }
}
@media (max-width: 375px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero-copy h1 {
    font-size: 41px;
    letter-spacing: -1.4px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .text-link {
    font-size: 15px;
  }
  .quote-card {
    padding-inline: 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-alternative a {
    display: flex;
    justify-content: center;
    margin: 2px 0 0;
  }
  .mobile-bar .button {
    font-size: 14px;
  }
  .about-copy h2 {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Original identity and readable typography across viewports. */
.brand-logo {
  display: block;
  width: 350px;
  max-width: 100%;
  height: auto;
}
.icon-whatsapp {
  fill: currentColor;
  stroke: none;
  width: 24px;
  height: 24px;
}
.hero-description {
  max-width: 490px;
  line-height: 1.75;
}
.hero-actions {
  flex-wrap: wrap;
}
.hero-actions .text-link {
  font-size: 16px;
  min-height: 44px;
}
.field label {
  font-weight: 600;
}
input:not([type="checkbox"]),
select,
textarea {
  font-size: 16px;
}
.privacy-check {
  font-size: 13px;
  line-height: 1.55;
}
.form-note {
  font-size: 12px;
}
.form-alternative {
  font-size: 13px;
}
.service-card > p,
.steps p,
.about-copy > p,
.faqs details p {
  line-height: 1.75;
}
.service-card > p,
.steps p {
  max-width: 36ch;
}
.service-card ul {
  line-height: 1.9;
}
.footer-top {
  flex-wrap: wrap;
}
.footer-brand .brand-logo {
  width: 300px;
}
@media (max-width: 1100px) {
  .header-inner nav {
    display: none;
  }
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-copy {
    max-width: 650px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
  .language-art {
    display: none;
  }
  .quote-card {
    width: 100%;
    max-width: 650px;
    justify-self: center;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-number {
    display: block;
    font-size: 12px;
  }
  .service-card > p {
    max-width: 100%;
  }
  .service-card h3 {
    font-size: 25px;
  }
  .service-card h3 br {
    display: none;
  }
  .service-card ul {
    font-size: 15px;
  }
  .hero-description {
    font-size: 18px;
  }
  .hero-actions .button {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .brand-logo {
    width: min(295px, calc(100vw - 150px));
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.3px;
  }
  .hero-copy h1 {
    font-size: clamp(40px, 10.5vw, 68px);
  }
  .hero-actions .text-link {
    font-size: 16px;
  }
  .hero-description {
    font-size: 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-alternative a {
    display: flex;
    justify-content: center;
    margin: 4px 0 0;
  }
  .trust-strip > div {
    align-items: flex-start;
  }
  .trust-strip strong {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
  }
  .trust-strip span {
    font-size: 13px;
    line-height: 1.5;
  }
  .about-copy > p,
  .steps p {
    font-size: 17px;
  }
  .testimonial blockquote footer {
    font-size: 14px;
  }
  .mobile-bar .button {
    font-size: 14px;
    padding-inline: 12px;
    gap: 8px;
  }
  .mobile-bar .whatsapp-link {
    padding-inline: 12px;
  }
  .mobile-bar .icon-whatsapp {
    width: 22px;
    height: 22px;
  }
  .footer-brand .brand-logo {
    width: min(300px, calc(100vw - 40px));
  }
}
@media (max-width: 375px) {
  .hero-copy h1 {
    font-size: 39px;
    letter-spacing: -1.5px;
  }
  .mobile-bar {
    padding-inline: 10px;
    gap: 6px;
  }
  .mobile-bar .button {
    font-size: 13px;
    padding-inline: 10px;
    gap: 5px;
  }
  .mobile-bar .icon {
    width: 18px;
    height: 18px;
  }
  .header-cta {
    font-size: 12px;
    padding-inline: 10px;
  }
}
