.component {
  --page-ink: #20392f;
  --page-muted: #5c675e;
  --page-paper: #faf7f0;
  --page-paper-deep: #eee7d9;
  --page-sage: #dfe9df;
  --page-clay: #b96542;
  --page-clay-dark: #91482f;
  --page-line: rgba(32, 57, 47, 0.2);
  --page-shadow: 0 18px 50px rgba(58, 48, 36, 0.12);
  box-sizing: border-box;
  width: 100%;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  color: var(--page-ink);
  background: var(--page-paper);
  font-family: system-ui, -apple-system, "Hiragino Sans", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.045em;
}

.component *,
.component *::before,
.component *::after {
  box-sizing: inherit;
}

.component a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, text-decoration-color 180ms ease;
}

.component a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.28em;
}

.component a:focus-visible {
  outline: 3px solid var(--page-clay);
  outline-offset: 4px;
  text-decoration: none;
}

.component .site-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 14px 18px;
  background: var(--page-paper);
  border-bottom: 1px solid rgba(32, 57, 47, 0.12);
}

.component .site-logo {
  flex: 0 1 auto;
  color: var(--page-ink);
  font-size: clamp(1.15rem, 4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  white-space: nowrap;
}

.component .site-logo:hover {
  color: var(--page-clay-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.component .nav-cta {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 44px;
  max-width: 58%;
  padding: 10px 13px 10px 15px;
  overflow-wrap: anywhere;
  color: #fffaf2;
  background: var(--page-clay);
  border: 1px solid var(--page-clay);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(145, 72, 47, 0.16);
  font-size: clamp(0.72rem, 2.4vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
}

.component .nav-cta::after,
.component .hero-section-link::after,
.component .services-section-link::after,
.component .cv-bar-button::after {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.component .nav-cta:hover,
.component .nav-cta:focus-visible {
  color: #fff;
  background: var(--page-clay-dark);
  border-color: var(--page-clay-dark);
  box-shadow: 0 10px 24px rgba(145, 72, 47, 0.28);
  text-decoration: none;
  transform: translateY(-2px);
}

.component .page-main {
  display: block;
}

.component .hero-section {
  background: var(--page-paper);
}

.component .hero-section-media {
  width: 100%;
  overflow: hidden;
  background: #d7ddd2;
}

.component .hero-section-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.component .hero-section-content {
  position: relative;
  isolation: isolate;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 56px;
}

.component .hero-section-content::before,
.component .hero-section-content::after {
  position: absolute;
  z-index: -1;
  display: block;
  border: 1px solid rgba(185, 101, 66, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.component .hero-section-content::before {
  top: 28px;
  right: -64px;
  width: 170px;
  height: 170px;
}

.component .hero-section-content::after {
  right: -12px;
  bottom: 22px;
  width: 70px;
  height: 70px;
  border-color: rgba(32, 57, 47, 0.17);
}

.component .hero-section-title {
  max-width: 13em;
  margin: 0;
  color: var(--page-ink);
  font-size: clamp(2.05rem, 8vw, 4.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-wrap: balance;
}

.component .hero-section-text {
  max-width: 44em;
  margin: 24px 0 0;
  color: var(--page-muted);
  font-size: clamp(0.94rem, 2vw, 1.15rem);
  line-height: 2;
  overflow-wrap: anywhere;
}

.component .hero-section-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 56px;
  margin-top: 30px;
  padding: 15px 20px;
  color: #fffaf2;
  background: var(--page-clay);
  border: 1px solid var(--page-clay);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(145, 72, 47, 0.16);
  font-size: clamp(0.91rem, 2.5vw, 1.08rem);
  font-weight: 700;
  line-height: 1.4;
}

.component .hero-section-link:hover,
.component .hero-section-link:focus-visible,
.component .services-section-link:hover,
.component .services-section-link:focus-visible {
  color: #fff;
  background: var(--page-clay-dark);
  border-color: var(--page-clay-dark);
  box-shadow: 0 16px 28px rgba(145, 72, 47, 0.25);
  text-decoration: none;
  transform: translateY(-2px);
}

.component .services-section {
  background: linear-gradient(135deg, #f2ecdf 0%, #e9e0d1 100%);
}

.component .services-section-inner,
.component .process-section-inner,
.component .faq-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 58px 20px 64px;
}

.component .services-section-heading,
.component .process-section-heading,
.component .faq-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 0 0 34px;
}

.component .services-section-heading::before,
.component .process-section-heading::before,
.component .faq-section-heading::before {
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 2px;
  margin-top: 0.9em;
  background: var(--page-clay);
  content: "";
}

.component .services-section-title,
.component .process-section-title,
.component .faq-section-title {
  margin: 0;
  color: var(--page-ink);
  font-size: clamp(1.65rem, 5.5vw, 3.15rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-wrap: balance;
}

.component .services-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.component .service-item {
  position: relative;
  min-height: 150px;
  padding: 25px 24px 24px 29px;
  overflow: hidden;
  background: rgba(250, 247, 240, 0.67);
  border: 1px solid rgba(32, 57, 47, 0.13);
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(80, 64, 46, 0.05);
}

.component .service-item::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--page-clay), #d99b70);
  content: "";
}

.component .service-item::after {
  position: absolute;
  right: -30px;
  bottom: -50px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(32, 57, 47, 0.11);
  border-radius: 50%;
  content: "";
}

.component .service-item:nth-child(2) {
  background: rgba(223, 233, 223, 0.62);
}

.component .service-item:nth-child(3) {
  background: rgba(255, 250, 242, 0.72);
}

.component .service-item-text {
  position: relative;
  z-index: 1;
  max-width: 34em;
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.95;
  overflow-wrap: anywhere;
}

.component .services-section-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 48px;
  margin-top: 30px;
  padding: 9px 0 9px 2px;
  color: var(--page-ink);
  border-bottom: 1px solid var(--page-ink);
  font-size: 0.98rem;
  font-weight: 700;
}

.component .services-section-link:hover,
.component .services-section-link:focus-visible {
  color: var(--page-clay-dark);
  border-bottom-color: var(--page-clay-dark);
  background: transparent;
  box-shadow: none;
}

.component .process-section {
  background: var(--page-paper);
}

.component .process-section-inner {
  padding-bottom: 70px;
}

.component .process-list {
  position: relative;
  display: grid;
  gap: 27px;
  max-width: 900px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.component .process-list::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 15px;
  width: 1px;
  background: linear-gradient(180deg, var(--page-clay), rgba(185, 101, 66, 0.16));
  content: "";
}

.component .process-item {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.component .process-item-marker {
  position: relative;
  z-index: 1;
  display: block;
  width: 32px;
  height: 32px;
  background: var(--page-clay);
  border: 6px solid var(--page-paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(145, 72, 47, 0.28);
}

.component .process-item-text {
  min-width: 0;
  margin: 0;
  padding: 1px 0 5px;
  color: var(--page-muted);
  font-size: clamp(0.98rem, 2.35vw, 1.17rem);
  line-height: 1.95;
  overflow-wrap: anywhere;
}

.component .faq-section {
  background: var(--page-paper-deep);
}

.component .faq-section-inner {
  padding-bottom: 92px;
}

.component .faq-list {
  display: grid;
  gap: 0;
  max-width: 930px;
  margin: 0;
}

.component .faq-item {
  position: relative;
  padding: 23px 0 25px;
  border-bottom: 1px solid var(--page-line);
}

.component .faq-item:first-child {
  padding-top: 0;
}

.component .faq-item:last-child {
  border-bottom: 0;
}

.component .faq-item-text {
  max-width: 62em;
  margin: 0;
  color: var(--page-ink);
  font-size: clamp(0.95rem, 2.3vw, 1.12rem);
  line-height: 2;
  overflow-wrap: anywhere;
}

.component .site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  padding: 40px 20px 126px;
  color: #f7f3e9;
  background: #214337;
}

.component .site-footer .site-logo {
  color: #f7f3e9;
}

.component .site-footer .site-logo:hover {
  color: #f0b18e;
}

.component .footer-nav {
  display: block;
  flex: 1 1 120px;
  min-width: 0;
}

.component .footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.component .site-copyright {
  flex: 0 1 auto;
  margin: 0;
  color: rgba(247, 243, 233, 0.86);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.component .cv-bar {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(27, 54, 43, 0.96);
  box-shadow: 0 -10px 28px rgba(35, 42, 35, 0.16);
  backdrop-filter: blur(10px);
}

.component .cv-bar-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 1180px;
  min-height: 52px;
  margin: 0 auto;
  padding: 13px 20px;
  color: #fffaf2;
  background: var(--page-clay);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  font-size: clamp(0.88rem, 2.3vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
}

.component .cv-bar-button:hover,
.component .cv-bar-button:focus-visible {
  color: #fff;
  background: var(--page-clay-dark);
  border-color: rgba(255, 250, 242, 0.35);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transform: translateY(-2px);
}

.component #process,
.component #faq {
  scroll-margin-top: 18px;
}

@media (min-width: 641px) {
  .component .site-header {
    min-height: 88px;
    padding: 16px clamp(28px, 5vw, 72px);
  }

  .component .nav-cta {
    min-width: 275px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .component .hero-section-content {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.55fr);
    column-gap: clamp(30px, 7vw, 110px);
    align-items: center;
    padding: 76px clamp(28px, 6.4vw, 92px) 82px;
  }

  .component .hero-section-content::before {
    top: 48px;
    right: 5%;
    width: 230px;
    height: 230px;
  }

  .component .hero-section-content::after {
    right: 14%;
    bottom: 50px;
    width: 92px;
    height: 92px;
  }

  .component .hero-section-link {
    min-width: min(100%, 500px);
  }

  .component .services-section-inner,
  .component .process-section-inner,
  .component .faq-section-inner {
    padding-right: clamp(28px, 6.4vw, 92px);
    padding-left: clamp(28px, 6.4vw, 92px);
  }

  .component .services-section-inner {
    padding-top: 80px;
    padding-bottom: 88px;
  }

  .component .services-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .component .service-item {
    min-height: 230px;
    padding: 30px 26px 28px 30px;
  }

  .component .service-item:nth-child(2) {
    transform: translateY(28px);
  }

  .component .service-item:nth-child(2):hover {
    transform: translateY(24px);
  }

  .component .services-section-link {
    margin-top: 56px;
  }

  .component .process-section-inner {
    padding-top: 84px;
    padding-bottom: 100px;
  }

  .component .process-list {
    gap: 31px;
    margin-left: 22px;
  }

  .component .process-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 24px;
  }

  .component .process-list::before {
    left: 20px;
  }

  .component .process-item-marker {
    width: 42px;
    height: 42px;
    border-width: 8px;
  }

  .component .faq-section-inner {
    padding-top: 82px;
    padding-bottom: 120px;
  }

  .component .site-footer {
    align-items: center;
    padding: 46px clamp(28px, 5vw, 72px) 132px;
  }

  .component .site-footer .site-logo {
    padding-right: 28px;
    border-right: 1px solid rgba(247, 243, 233, 0.55);
  }

  .component .site-copyright {
    margin-left: auto;
  }

  .component .cv-bar {
    padding-right: clamp(16px, 2.5vw, 36px);
    padding-left: clamp(16px, 2.5vw, 36px);
  }
}

@media (min-width: 1024px) {
  .component .hero-section-image {
    max-height: 650px;
    object-fit: cover;
    object-position: center;
  }

  .component .faq-section-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.28fr);
    column-gap: 8vw;
  }

  .component .faq-section-heading {
    grid-column: 1 / -1;
  }

  .component .faq-list {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .component a {
    transition: none;
  }
}