@charset "UTF-8";

:root {
  --ivory: #fbf7f1;
  --paper: #fffdf9;
  --navy: #0d2342;
  --navy-2: #142f56;
  --wine: #861f2d;
  --wine-dark: #651520;
  --gold: #c59a54;
  --gold-light: #efd3a1;
  --ink: #172338;
  --muted: #657084;
  --line: #e8ddd0;
  --white: #ffffff;
  --header-height: 78px;
  --shadow: 0 18px 50px rgba(21, 32, 50, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

section,
footer {
  position: relative;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(134, 31, 45, .10);
  background: rgba(255, 253, 249, .96);
  box-shadow: 0 5px 22px rgba(22, 33, 52, .04);
}

.nav-wrap {
  width: min(1200px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-family: "STSong", "Songti SC", serif;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: .03em;
}

.brand img {
  width: 38px;
  height: 38px;
}

.site-nav {
  height: 100%;
}

.site-nav ul {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: #344055;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--wine);
}

.site-nav .nav-consult {
  height: 38px;
  padding: 0 17px;
  border: 1px solid rgba(134, 31, 45, .42);
  border-radius: 999px;
  color: var(--wine);
  transition: color .2s ease, background .2s ease;
}

.site-nav .nav-consult:hover {
  color: var(--white);
  background: var(--wine);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: #f7eae4;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--ivory);
}

.hero::before {
  position: absolute;
  top: 150px;
  left: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(197, 154, 84, .18);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  width: min(1200px, 100%);
  min-height: 700px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(480px, 48%) 1fr;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(540px, calc(100% - 48px));
  margin-left: max(24px, calc((100% - 1200px) / 2));
  padding: 94px 28px 74px 0;
  align-self: center;
}

.eyebrow,
.section-heading > p,
.package-price > p,
.faq-intro > .eyebrow {
  margin-bottom: 14px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero h1 {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: "STSong", "Songti SC", serif;
  font-size: 75px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.055em;
}

.hero h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.35;
}

.hero-text {
  max-width: 510px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 16px;
}

.hero-price {
  display: flex;
  width: fit-content;
  margin-bottom: 25px;
  align-items: center;
  gap: 22px;
}

.hero-price strong {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  font-weight: 500;
  line-height: 1;
}

.hero-price strong em {
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 25px;
  font-style: normal;
}

.hero-price span {
  padding-left: 22px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-bottom: 26px;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--wine);
}

.button-primary:hover {
  background: var(--wine-dark);
}

.button-outline {
  border-color: rgba(134, 31, 45, .48);
  color: var(--wine);
  background: rgba(255, 255, 255, .44);
}

.button-outline:hover {
  color: var(--white);
  background: var(--wine);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  color: #596477;
  font-size: 13px;
  gap: 10px 20px;
}

.hero-points li {
  position: relative;
  padding-left: 14px;
}

.hero-points li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--wine);
}

.hero-visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-bottom-left-radius: 44% 15%;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 18%;
  content: "";
  background: linear-gradient(90deg, var(--ivory), transparent);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.visual-label {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  display: inline-flex;
  min-height: 39px;
  padding: 0 16px;
  align-items: center;
  border: 1px solid rgba(197, 154, 84, .35);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 253, 249, .90);
  box-shadow: 0 9px 26px rgba(15, 32, 58, .13);
  font-size: 13px;
  font-weight: 800;
}

.visual-label::before {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border: 2px solid var(--wine);
  border-radius: 50%;
  content: "";
}

.label-local {
  left: 10%;
}

.label-overseas {
  right: 7%;
}

.section-heading {
  margin-bottom: 50px;
}

.heading-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  column-gap: 60px;
}

.heading-left > p {
  grid-column: 1;
  margin-bottom: 8px;
}

.heading-left h2 {
  grid-column: 1;
  margin-bottom: 0;
}

.heading-left > span {
  grid-column: 2;
  grid-row: 1 / 3;
  max-width: 500px;
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 15px;
}

.section-heading h2,
.faq-intro h2,
.about-copy h2 {
  color: var(--navy);
  font-family: "STSong", "Songti SC", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.2;
  letter-spacing: -.025em;
}

.services {
  background: var(--paper);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr);
  border-top: 1px solid var(--line);
}

.service-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.service-tab {
  position: relative;
  min-height: 118px;
  padding: 26px 34px;
  display: grid;
  grid-template-columns: 38px 45px 1fr;
  align-items: center;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.service-tab > span {
  align-self: start;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 18px;
}

.service-tab strong {
  font-size: 17px;
}

.service-tab:hover,
.service-tab.active {
  color: var(--wine);
  background: #fbf0e9;
}

.service-tab.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--wine);
}

.service-panel {
  position: relative;
  min-height: 354px;
  padding: 56px 44px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.service-panel::after {
  position: absolute;
  top: -85px;
  right: -80px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(239, 211, 161, .25);
  border-radius: 50%;
  content: "";
}

.panel-number {
  position: absolute;
  top: 25px;
  right: 34px;
  color: rgba(239, 211, 161, .28);
  font-family: Georgia, serif;
  font-size: 86px;
  line-height: 1;
}

.service-panel > div {
  position: relative;
  z-index: 1;
}

.service-panel p:first-child {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-panel h3 {
  margin-bottom: 14px;
  font-family: "STSong", "Songti SC", serif;
  font-size: 32px;
}

.panel-text {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.panel-meta {
  color: var(--gold-light);
  font-size: 13px;
}

.package {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.package::before,
.package::after {
  position: absolute;
  border: 1px solid rgba(239, 211, 161, .13);
  border-radius: 50%;
  content: "";
}

.package::before {
  top: -330px;
  left: -260px;
  width: 620px;
  height: 620px;
}

.package::after {
  right: -180px;
  bottom: -300px;
  width: 560px;
  height: 560px;
}

.package-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 68px;
}

.package-price {
  padding-right: 46px;
  border-right: 1px solid rgba(239, 211, 161, .28);
}

.package-price > p {
  color: var(--gold-light);
}

.package-price > strong {
  display: block;
  margin: 8px 0;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 110px;
  font-weight: 400;
  line-height: .95;
}

.package-price > strong em {
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 30px;
  font-style: normal;
}

.package-price h2 {
  margin-bottom: 0;
  font-size: 24px;
}

.package-kicker {
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-light);
  font-size: 17px;
  font-weight: 800;
}

.package-kicker::after {
  height: 1px;
  flex: 1;
  content: "";
  background: rgba(239, 211, 161, .3);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 26px;
}

.package-grid article {
  padding: 0 30px;
  border-right: 1px solid rgba(239, 211, 161, .22);
}

.package-grid article:first-child {
  padding-left: 0;
}

.package-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.package-grid h3 {
  margin: 17px 0 10px;
  color: var(--gold-light);
  font-size: 17px;
}

.package-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .67);
  font-size: 13px;
}

.package-note {
  max-width: 820px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.button-gold {
  color: var(--navy);
  background: var(--gold-light);
}

.button-gold:hover {
  background: #f5dfb9;
}

.paths {
  background: var(--ivory);
}

.path-tabs {
  display: flex;
  margin-bottom: 28px;
  gap: 8px;
}

.path-tab {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
  cursor: pointer;
}

.path-tab.active {
  border-color: var(--wine);
  color: var(--white);
  background: var(--wine);
}

.path-stage {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.path-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  align-items: stretch;
  gap: 52px;
}

.path-panel[hidden] {
  display: none;
}

.path-image {
  position: relative;
  min-height: 355px;
  overflow: hidden;
}

.path-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.path-image-local img {
  transform: scale(1.035);
}

.path-image span {
  position: absolute;
  right: 18px;
  bottom: 12px;
  color: rgba(255, 255, 255, .82);
  font-family: Georgia, serif;
  font-size: 26px;
  letter-spacing: .08em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.path-copy {
  padding: 28px 22px 20px 0;
  align-self: center;
}

.path-copy > p:first-child {
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.path-copy h3 {
  margin-bottom: 20px;
  color: var(--navy);
  font-family: "STSong", "Songti SC", serif;
  font-size: 34px;
  line-height: 1.35;
}

.path-copy > p:not(:first-child) {
  color: var(--muted);
  font-size: 15px;
}

.path-copy ul {
  margin-top: 24px;
}

.path-copy li {
  position: relative;
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.path-copy li::before {
  position: absolute;
  top: 18px;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  grid-template-areas: "copy image" "facts facts";
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-copy {
  grid-area: copy;
  padding: 60px 56px 55px 0;
}

.about-copy h2 {
  margin-bottom: 26px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  align-items: center;
  gap: 12px;
  color: var(--wine);
  font-weight: 800;
}

.text-link span {
  font-size: 21px;
}

.about-image {
  grid-area: image;
  min-height: 370px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.about-facts article {
  min-height: 150px;
  padding: 32px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-content: center;
  border-right: 1px solid var(--line);
}

.about-facts article:last-child {
  border-right: 0;
}

.about-facts strong,
.about-facts span {
  grid-column: 2;
}

.about-facts strong {
  color: var(--navy);
  font-size: 17px;
}

.about-facts span {
  color: var(--muted);
  font-size: 13px;
}

.process {
  color: var(--white);
  background: var(--navy);
}

.process .section-heading h2 {
  color: var(--white);
}

.process .section-heading > p {
  color: var(--gold-light);
}

.process .section-heading > span {
  color: rgba(255, 255, 255, .62);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.process-list::before {
  position: absolute;
  top: 61px;
  right: 6%;
  left: 6%;
  height: 1px;
  content: "";
  background: rgba(239, 211, 161, .38);
}

.process-list li {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
}

.process-list li > span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 14px;
}

.process-list li > .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 211, 161, .35);
  border-radius: 50%;
  background: var(--navy);
}

.process-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.process-list small {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  line-height: 1.55;
}

.cases {
  background: var(--paper);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case-card {
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.case-photo {
  height: 230px;
  overflow: hidden;
  background: #eee8e0;
}

.case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.case-card:hover .case-photo img {
  transform: scale(1.035);
}

.case-content {
  padding: 27px 28px 30px;
}

.case-content > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.case-content h3 {
  min-height: 58px;
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.5;
}

.case-content p {
  min-height: 68px;
  color: var(--muted);
  font-size: 13px;
}

.case-content strong {
  color: var(--gold);
  font-size: 12px;
}

.faq {
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 80px;
}

.faq-intro h2 {
  margin-bottom: 24px;
}

.faq-intro > p:last-child {
  color: var(--muted);
  font-size: 14px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 70px;
  padding: 0 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.faq-item button span {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.faq-item button i {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--wine);
  transition: transform .2s ease;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item.active button i::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 55px 23px 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-answer p {
  margin-bottom: 0;
}

.contact {
  padding: 0 0 86px;
  background: var(--ivory);
}

.contact-inner {
  min-height: 164px;
  padding: 35px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(118deg, var(--wine-dark), #9d2530 62%, var(--wine));
}

.contact-inner::after {
  position: absolute;
  right: 24%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  content: "";
}

.contact-inner > div,
.contact-inner > a {
  position: relative;
  z-index: 1;
}

.contact-inner p {
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
}

.contact-inner h2 {
  margin-bottom: 4px;
  font-family: "STSong", "Songti SC", serif;
  font-size: 28px;
}

.contact-inner span {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.contact-inner .button {
  min-width: 210px;
  border-radius: 999px;
}

.contact-inner .button b {
  margin-left: 24px;
  font-size: 20px;
}

.site-footer {
  color: rgba(255, 255, 255, .72);
  background: #091a32;
}

.footer-main {
  padding: 66px 0 48px;
  display: grid;
  grid-template-columns: 1.25fr 1fr .85fr;
  gap: 80px;
}

.footer-brand a {
  display: inline-flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: "STSong", "Songti SC", serif;
  font-size: 20px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.footer-brand p,
.footer-info p {
  margin-bottom: 9px;
  font-size: 12px;
}

.footer-main h3 {
  margin-bottom: 19px;
  color: var(--white);
  font-size: 14px;
}

.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
}

.footer-nav a {
  font-size: 12px;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  min-height: 66px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 14px;
}

.icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.icon::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-user::before,
.icon-team::before {
  background-image: url("../icons/user-heart.svg");
}

.icon-cycle::before {
  background-image: url("../icons/cycle.svg");
}

.icon-flower::before {
  background-image: url("../icons/flower.svg");
}

.icon-dna::before {
  background-image: url("../icons/dna.svg");
}

.icon-heart::before,
.icon-follow::before {
  background-image: url("../icons/heart.svg");
}

.icon-file::before,
.icon-clipboard::before {
  background-image: url("../icons/file-check.svg");
}

.icon-lab::before {
  background-image: url("../icons/chart.svg");
}

.icon-care::before {
  background-image: url("../icons/hand-heart.svg");
}

.icon-location::before {
  background-image: url("../icons/badge.svg");
}

.icon-globe::before {
  background-image: url("../icons/chromosome.svg");
}

.icon-message::before {
  background-image: url("../icons/message.svg");
}

.package .icon,
.about-facts .icon {
  width: 36px;
  height: 36px;
}

.package-grid .icon {
  width: 46px;
  height: 46px;
  padding: 9px;
  border: 1px solid rgba(239, 211, 161, .55);
  border-radius: 50%;
  background: var(--paper);
}

.process-list li > .icon {
  background: var(--ivory);
}

@media (max-width: 1180px) {
  .site-nav ul {
    gap: 16px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .site-nav .nav-consult {
    padding-inline: 13px;
  }

  .hero-inner {
    grid-template-columns: minmax(430px, 48%) 1fr;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .nav-wrap {
    width: min(100% - 36px, 1200px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1001;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    padding: 24px 18px 38px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav ul {
    width: min(100%, 600px);
    height: auto;
    margin-inline: auto;
    display: grid;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid var(--line);
  }

  .site-nav a,
  .site-nav .nav-consult {
    width: 100%;
    height: 54px;
    padding: 0 10px;
    justify-content: space-between;
    border: 0;
    border-radius: 0;
    font-size: 15px;
  }

  .site-nav a::before {
    content: "→";
    order: 2;
    color: var(--wine);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: min(720px, calc(100% - 36px));
    margin-inline: auto;
    padding: 70px 0 42px;
  }

  .hero-visual {
    min-height: 500px;
    border-bottom-left-radius: 0;
  }

  .hero-visual::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 80px;
    background: linear-gradient(180deg, var(--ivory), transparent);
  }

  .heading-left {
    grid-template-columns: 1fr;
  }

  .heading-left > span {
    grid-column: 1;
    grid-row: auto;
    margin-top: 15px;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-panel {
    min-height: 280px;
  }

  .package-inner {
    grid-template-columns: 250px 1fr;
    gap: 45px;
  }

  .package-price > strong {
    font-size: 84px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .package-grid article,
  .package-grid article:first-child,
  .package-grid article:last-child {
    padding: 18px 0;
    display: grid;
    grid-template-columns: 45px 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(239, 211, 161, .2);
  }

  .package-grid h3,
  .package-grid p {
    grid-column: 2;
  }

  .package-grid h3 {
    margin: 0 0 5px;
  }

  .package-grid .icon {
    grid-row: 1 / 3;
  }

  .path-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .path-copy {
    padding: 28px 10px 10px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "image" "facts";
  }

  .about-copy {
    padding-right: 0;
  }

  .process-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 34px 16px;
  }

  .process-list::before {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
  }

  .container,
  .nav-wrap {
    width: min(100% - 28px, 1200px);
  }

  .section {
    padding: 76px 0;
  }

  .brand {
    gap: 8px;
    font-size: 16px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    width: calc(100% - 28px);
    padding: 52px 0 36px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 50px;
    letter-spacing: -.045em;
  }

  .hero h2 {
    font-size: 21px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-price {
    gap: 15px;
  }

  .hero-price strong {
    font-size: 61px;
  }

  .hero-price strong em {
    font-size: 20px;
  }

  .hero-price span {
    padding-left: 15px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    min-height: 46px;
    padding-inline: 17px;
    font-size: 13px;
  }

  .hero-points {
    gap: 7px 16px;
    font-size: 12px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-visual img {
    object-position: 68% center;
  }

  .visual-label {
    bottom: 18px;
    min-height: 34px;
    padding-inline: 11px;
    font-size: 11px;
  }

  .label-local {
    left: 14px;
  }

  .label-overseas {
    right: 14px;
  }

  .section-heading {
    margin-bottom: 33px;
  }

  .section-heading h2,
  .faq-intro h2,
  .about-copy h2 {
    font-size: 34px;
  }

  .heading-left > span {
    font-size: 13px;
  }

  .service-index {
    grid-template-columns: 1fr;
  }

  .service-tab {
    min-height: 82px;
    padding: 18px;
    grid-template-columns: 34px 38px 1fr;
    border-right: 0;
  }

  .service-tab strong {
    font-size: 15px;
  }

  .service-panel {
    min-height: 250px;
    padding: 38px 25px;
  }

  .service-panel h3 {
    font-size: 27px;
  }

  .panel-number {
    right: 18px;
    font-size: 66px;
  }

  .package-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .package-price {
    padding: 0 0 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(239, 211, 161, .28);
  }

  .package-price > strong {
    font-size: 92px;
  }

  .package-kicker {
    font-size: 15px;
  }

  .path-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .path-tab {
    padding-inline: 10px;
    font-size: 13px;
  }

  .path-stage {
    padding: 14px;
  }

  .path-image {
    min-height: 250px;
  }

  .path-copy h3 {
    font-size: 28px;
  }

  .path-copy > p:not(:first-child) {
    font-size: 13px;
  }

  .about-copy {
    padding: 42px 0;
  }

  .about-copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .about-image {
    min-height: 260px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts article {
    min-height: 104px;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .process-list li {
    width: calc(100% - 40px);
    min-height: 96px;
    padding: 17px 20px;
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(239, 211, 161, .18);
    text-align: left;
    background: rgba(255, 255, 255, .05);
  }

  .process-list li:nth-child(odd) {
    margin-right: 40px;
  }

  .process-list li:nth-child(even) {
    margin-left: 40px;
    grid-template-columns: 1fr 56px;
    text-align: right;
  }

  .process-list li > span {
    position: absolute;
    top: 8px;
    margin: 0;
    font-size: 11px;
  }

  .process-list li:nth-child(odd) > span {
    left: 8px;
  }

  .process-list li:nth-child(even) > span {
    right: 8px;
  }

  .process-list li > .icon {
    width: 48px;
    height: 48px;
    margin: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .process-list li:nth-child(even) > .icon {
    grid-column: 2;
  }

  .process-list li > div {
    grid-column: 2;
    grid-row: 1;
  }

  .process-list li:nth-child(even) > div {
    grid-column: 1;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-photo {
    height: 210px;
  }

  .case-content h3,
  .case-content p {
    min-height: 0;
  }

  .faq-grid {
    gap: 20px;
  }

  .faq-intro h2 br {
    display: none;
  }

  .faq-item button {
    min-height: 62px;
  }

  .faq-item button span,
  .faq-answer {
    font-size: 13px;
  }

  .contact {
    padding-bottom: 0;
  }

  .contact-inner {
    width: 100%;
    min-height: 250px;
    padding: 38px 22px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
  }

  .contact-inner h2 {
    font-size: 25px;
  }

  .contact-inner .button {
    width: 100%;
  }

  .footer-main {
    padding: 52px 0 36px;
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-brand a {
    justify-content: center;
  }

  .footer-brand p,
  .footer-info p {
    max-width: 420px;
    margin-inline: auto;
  }

  .footer-nav ul {
    max-width: 330px;
    margin-inline: auto;
  }

  .footer-bottom {
    min-height: 110px;
    padding: 24px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 350px;
  }

  .visual-label {
    bottom: 12px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
