.component {
  --ink: #173d32;
  --ink-soft: #365448;
  --cream: #f5f0e6;
  --cream-deep: #eee5d5;
  --line: #cfc4b1;
  --rust: #bc623f;
  --rust-deep: #a95032;
  --forest: #214c3c;
  box-sizing: border-box;
  min-width: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

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

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

.component a:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 5px;
}

.component .site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.25rem;
  padding: 0.85rem clamp(1.25rem, 6.5vw, 4.75rem);
  background: var(--cream);
}

.component .site-logo {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.component .nav-cta,
.component .cv-bar-button,
.component .hero-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.8rem 3.8rem 0.8rem 1.5rem;
  border-radius: 0.35rem;
  color: #fffaf2;
  background: var(--rust);
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  transition: background-color 180ms ease, transform 180ms ease;
}

.component .nav-cta::after,
.component .cv-bar-button::after,
.component .hero-link::after,
.component .services-link::after {
  position: absolute;
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.component .nav-cta::after,
.component .cv-bar-button::after,
.component .hero-link::after {
  right: 1.5rem;
}

.component .nav-cta:hover,
.component .cv-bar-button:hover,
.component .hero-link:hover {
  background: var(--rust-deep);
  transform: translateY(-2px);
}

.component .cv-bar-button:focus-visible,
.component .nav-cta:focus-visible,
.component .hero-link:focus-visible,
.component .services-link:focus-visible {
  outline: 3px solid #e8b79b;
  outline-offset: 4px;
}

.component .hero-image-wrap {
  width: 100%;
  background: var(--cream-deep);
}

.component .hero-image {
  display: block;
  width: 100%;
  height: clamp(17rem, 49vw, 35rem);
  object-fit: cover;
}

.component .hero-copy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(8rem, 17rem);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  max-width: 75rem;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1.25rem, 6.5vw, 4.75rem) clamp(4.5rem, 8vw, 7rem);
}

.component .hero-copy::after,
.component .process-copy::after,
.component .faq-copy::after {
  position: absolute;
  content: "";
  width: 4.3rem;
  height: 7rem;
  right: clamp(1.25rem, 6.5vw, 4.75rem);
  bottom: 3rem;
  border: 1px solid var(--ink-soft);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50% 50% 0 50%;
  opacity: 0.7;
  transform: rotate(28deg);
}

.component .hero-copy::before,
.component .process-copy::before,
.component .faq-copy::before {
  position: absolute;
  content: "";
  width: 2.8rem;
  height: 1px;
  right: clamp(1.25rem, 6.5vw, 4.75rem);
  bottom: 2.15rem;
  background: var(--ink-soft);
}

.component .hero-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.component .hero-title,
.component .section-title {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.07em;
}

.component .hero-title {
  max-width: 46rem;
  font-size: clamp(2.3rem, 5.4vw, 5rem);
}

.component .hero-text {
  margin: 1.7rem 0 2rem;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 2;
  white-space: normal;
}

.component .hero-link {
  width: min(100%, 37rem);
}

.component .hero-aside {
  position: relative;
  z-index: 1;
  align-self: end;
  padding-bottom: 4rem;
  font-size: clamp(0.9rem, 1.6vw, 1.2rem);
  line-height: 2.2;
  writing-mode: vertical-rl;
}

.component .hero-aside::before {
  content: "";
  display: block;
  width: 1px;
  height: 3rem;
  margin-inline: auto 1rem;
  background: var(--ink-soft);
}

.component .section-shell {
  max-width: 75rem;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1.25rem, 6.5vw, 4.75rem);
}

.component .section-heading {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.25rem);
}

.component .section-heading::before {
  flex: 0 0 3rem;
  height: 1px;
  content: "";
  background: var(--ink);
}

.component .section-title {
  font-size: clamp(1.9rem, 4vw, 3.25rem);
}

.component .services-section,
.component .faq-section {
  background: var(--cream-deep);
}

.component .services-list,
.component .process-list,
.component .faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.component .services-list {
  display: grid;
  gap: 1.15rem;
}

.component .service-item {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.9;
}

.component .service-marker {
  display: block;
  width: 4.3rem;
  height: 3.1rem;
  border-bottom: 1px solid var(--rust);
}

.component .service-text {
  min-width: 0;
}

.component .services-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  margin-top: 2.4rem;
  padding-right: 2.7rem;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
}

.component .services-link::after {
  right: 0.3rem;
  width: 0.6rem;
  height: 0.6rem;
}

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

.component .process-copy,
.component .faq-copy {
  position: relative;
}

.component .process-list {
  position: relative;
  max-width: 57rem;
  padding-left: 5.5rem;
}

.component .process-list::before {
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 1.45rem;
  width: 1px;
  content: "";
  background: var(--rust);
}

.component .process-item {
  position: relative;
  min-height: 7rem;
  padding: 0 0 2rem;
}

.component .process-marker {
  position: absolute;
  left: -5.5rem;
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--rust);
}

.component .process-item:last-child {
  padding-bottom: 0;
}

.component .process-item p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.9;
}

.component .faq-list {
  max-width: 59rem;
}

.component .faq-item {
  padding: 1.4rem 0 1.65rem;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.9;
}

.component .faq-item p {
  margin: 0;
}

.component .site-footer {
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) minmax(14rem, 1.4fr) minmax(8rem, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 3.5rem clamp(1.25rem, 6.5vw, 4.75rem) 8rem;
  color: #fffaf2;
  background: var(--forest);
}

.component .site-footer .site-logo {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.component .footer-nav {
  min-height: 1px;
}

.component .site-copyright {
  margin: 0;
  font-size: 0.95rem;
  text-align: right;
}

.component .cv-bar {
  position: fixed;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  padding: 0.8rem clamp(1rem, 2.5vw, 1.75rem);
  background: var(--forest);
}

.component .cv-bar-button {
  width: min(100%, 75rem);
  min-height: 3.3rem;
}

@media (min-width: 48rem) {
  .component .services-list {
    gap: 0;
  }

  .component .service-item {
    grid-template-columns: 7rem minmax(0, 1fr);
    min-height: 8rem;
    padding: 2rem 0;
  }

  .component .process-item p {
    max-width: 48rem;
  }
}

@media (max-width: 47.99rem) {
  .component .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .component .site-logo {
    text-align: center;
  }

  .component .nav-cta {
    width: 100%;
    min-height: 3rem;
  }

  .component .hero-copy {
    display: block;
  }

  .component .hero-aside {
    display: none;
  }

  .component .hero-copy::after,
  .component .hero-copy::before,
  .component .process-copy::after,
  .component .process-copy::before,
  .component .faq-copy::after,
  .component .faq-copy::before {
    display: none;
  }

  .component .hero-link {
    width: 100%;
  }

  .component .process-list {
    padding-left: 4.25rem;
  }

  .component .process-list::before {
    left: 1.15rem;
  }

  .component .process-marker {
    left: -4.25rem;
    width: 2.4rem;
    height: 2.4rem;
  }

  .component .site-footer {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-bottom: 7rem;
    text-align: center;
  }

  .component .site-copyright {
    text-align: center;
  }
}

@media (max-width: 22rem) {
  .component .section-heading {
    align-items: flex-start;
    gap: 0.8rem;
  }

  .component .section-heading::before {
    flex-basis: 1.5rem;
    margin-top: 1.1rem;
  }

  .component .service-item {
    grid-template-columns: 3.1rem minmax(0, 1fr);
    gap: 0.7rem;
  }

  .component .service-marker {
    width: 2.7rem;
  }

  .component .process-list {
    padding-left: 3.5rem;
  }

  .component .process-marker {
    left: -3.5rem;
  }
}