@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Serif+SC:wght@500;600;700&display=swap");

:root {
  --ink: #10251f;
  --muted: #5f6f69;
  --deep: #0f5b46;
  --green: #1f8a63;
  --sage: #e7f4ee;
  --mint: #f5fbf8;
  --rose: #b85c6a;
  --gold: #b58a42;
  --line: #d7e7df;
  --paper: #ffffff;
  --soft: #f7faf8;
  --shadow: 0 18px 42px rgba(15, 91, 70, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-120%);
  background: var(--deep);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(16, 37, 31, 0.08);
  border-radius: var(--radius);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(215, 231, 223, 0.95);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-weight: 700;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #28413a;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a {
  padding: 8px 0;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-cta {
  min-height: 40px;
  padding: 9px 13px;
  color: #fff;
  background: var(--deep);
  box-shadow: 0 10px 22px rgba(15, 91, 70, 0.22);
  font-size: 14px;
  white-space: nowrap;
}

.btn svg,
.header-cta svg,
.text-link svg,
.contact-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-primary {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 14px 30px rgba(15, 91, 70, 0.24);
}

.btn-secondary {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(15, 91, 70, 0.18);
}

.btn:hover,
.btn:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(15, 91, 70, 0.2);
}

.btn:focus-visible,
.header-cta:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(184, 92, 106, 0.45);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-microblading.png");
  background-size: cover;
  background-position: center right;
  z-index: -3;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 35, 29, 0.76) 0%, rgba(13, 49, 40, 0.62) 36%, rgba(13, 49, 40, 0.18) 66%, rgba(13, 49, 40, 0.08) 100%),
    linear-gradient(0deg, rgba(9, 31, 26, 0.2), rgba(9, 31, 26, 0.08));
  z-index: -2;
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 52px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 30px 0 0;
  padding: 0;
}

.hero-facts div {
  min-width: 112px;
  padding-left: 13px;
  border-left: 2px solid rgba(255, 255, 255, 0.46);
}

.hero-facts dt {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.intro-band {
  background: var(--mint);
  border-bottom: 1px solid var(--line);
}

.section,
.intro-band {
  padding: 76px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.proof-copy h2,
.faq-layout h2,
.booking-layout h2 {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", serif;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.22;
  letter-spacing: 0;
}

.intro-grid p,
.section-heading p,
.proof-copy p,
.faq-layout > div > p,
.booking-layout p {
  margin: 16px 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.muted {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.fit-list article,
.booking-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 22px rgba(16, 37, 31, 0.04);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 246px;
  padding: 22px;
}

.service-card svg {
  width: 28px;
  height: 28px;
  color: var(--rose);
}

.service-card h3,
.fit-list h3 {
  margin: 18px 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.service-card p,
.fit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-card span {
  margin-top: auto;
  padding-top: 18px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.process-list li {
  position: relative;
  min-height: 190px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li::before {
  content: counter(list-item, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--deep);
  font-weight: 800;
}

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

.process-list span {
  color: var(--muted);
  font-size: 15px;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

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

.fit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fit-list article {
  min-height: 185px;
  padding: 22px;
}

.pricing-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.pricing-table [role="row"] {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 150px;
  border-bottom: 1px solid var(--line);
}

.pricing-table [role="row"]:last-child {
  border-bottom: 0;
}

.pricing-table span {
  padding: 18px 20px;
}

.pricing-head {
  background: var(--deep);
  color: #fff;
  font-weight: 800;
}

.faq-layout,
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--deep);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.booking-band {
  background: linear-gradient(135deg, #eef8f3 0%, #fff8f7 100%);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--deep);
  font-weight: 700;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
}

.booking-form label {
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #cfe1d8;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #8a9b94;
}

.form-note {
  min-height: 44px;
  margin: 0;
  padding: 12px 13px;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 30px 0 86px;
  background: #0b241d;
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: none;
}

.mobile-sticky .btn {
  width: 100%;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 31, 26, 0.78) 0%, rgba(9, 31, 26, 0.7) 45%, rgba(9, 31, 26, 0.34) 100%),
      linear-gradient(0deg, rgba(9, 31, 26, 0.22), rgba(9, 31, 26, 0.08));
  }

  .intro-grid,
  .proof-layout,
  .faq-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-list,
  .fit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 10px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-media {
    background-position: 72% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 31, 26, 0.86) 0%, rgba(9, 31, 26, 0.72) 62%, rgba(9, 31, 26, 0.34) 100%),
      linear-gradient(0deg, rgba(9, 31, 26, 0.24), rgba(9, 31, 26, 0.12));
  }

  .hero-content {
    width: min(100% - 24px, 1180px);
    padding-top: 84px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .hero-facts {
    gap: 12px;
  }

  .hero-facts div {
    width: calc(50% - 6px);
    min-width: 0;
  }

  .section,
  .intro-band {
    padding: 58px 0;
  }

  .intro-grid h2,
  .section-heading h2,
  .proof-copy h2,
  .faq-layout h2,
  .booking-layout h2 {
    font-size: 29px;
  }

  .service-grid,
  .process-list,
  .fit-list {
    grid-template-columns: 1fr;
  }

  .process-list li:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .pricing-table {
    display: grid;
    gap: 10px;
    border: 0;
    background: transparent;
  }

  .pricing-table [role="row"] {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
  }

  .pricing-table .pricing-head {
    display: none;
  }

  .pricing-table span {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }

  .pricing-table span:last-child {
    border-bottom: 0;
    color: var(--deep);
    font-weight: 800;
  }

  .footer-inner {
    display: grid;
  }

  .mobile-sticky {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
