:root {
  --bg: #fffaf8;
  --surface: #ffffff;
  --surface-soft: #fff2f4;
  --text: #3a2b2f;
  --muted: #7b6870;
  --primary: #d9778d;
  --primary-deep: #bb5f76;
  --border: #f0d7de;
  --shadow: 0 18px 45px rgba(173, 97, 124, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.hero {
  min-height: 100vh;
  padding: 28px 6vw 72px;
  color: #fff;
  background:
    linear-gradient(rgba(59, 27, 39, 0.35), rgba(59, 27, 39, 0.5)),
    url("storefront.jpg") center/cover no-repeat;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.95;
}

.hero-content {
  max-width: 680px;
  padding-top: 14vh;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 700;
}

.hero .eyebrow {
  color: #ffd6df;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.hero-text {
  font-size: 1.06rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button.primary {
  background: var(--primary);
  color: #fff;
}

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

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 88px 6vw;
}

.section.alt {
  background: linear-gradient(180deg, #fff6f8 0%, #fffaf8 100%);
}

.section-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 42px;
}

.two-column {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.lashes-layout {
  max-width: 860px;
}

.about-heading {
  font-size: 1.15rem;
  color: var(--primary-deep);
  margin: 28px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--surface-soft);
}

.about-heading:first-of-type {
  margin-top: 8px;
}

.image-card,
.price-card,
.contact-card,
.gallery-item,
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card,
.gallery-item,
.service-card {
  overflow: hidden;
}

.image-card img,
.gallery-item img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-card.large img {
  min-height: 520px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tags span {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary-deep);
  font-size: 0.95rem;
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-heading.center {
  text-align: center;
}

.section-heading p:last-child {
  color: var(--muted);
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-body {
  padding: 24px 24px 28px;
}

.lash-service-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}

.lash-service-card img {
  height: 100%;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
  margin-top: 20px;
}

.service-list h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--text);
}

.service-list p {
  font-size: 0.93rem;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--primary-deep);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.price-card {
  padding: 28px;
}

.price-card.featured {
  background: linear-gradient(180deg, #fff3f6 0%, #ffffff 100%);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #f3e1e7;
}

.price-card li:last-child {
  border-bottom: none;
}

.price-card span {
  color: var(--muted);
}

.price-card strong {
  color: var(--text);
  white-space: nowrap;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.gallery-item.wide img {
  aspect-ratio: 1.15 / 1;
}

.gallery-item:not(.wide) img {
  aspect-ratio: 1 / 1;
}

figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-card {
  padding: 10px 20px;
  margin: 26px 0 28px;
}

.contact-card > div {
  padding: 16px 0;
  border-bottom: 1px solid #f3e1e7;
}

.contact-card > div:last-child {
  border-bottom: none;
}

.label {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 5px;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.contact-card a:hover {
  color: var(--primary-deep);
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lash-service-card {
    grid-column: span 2;
  }
}

@media (max-width: 980px) {
  .two-column,
  .two-column.reverse,
  .pricing-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero-content {
    padding-top: 9vh;
  }

  .image-card.large img {
    min-height: 360px;
  }

  .lash-service-card {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .section,
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .button {
    width: 100%;
  }

  .service-card-body {
    padding: 22px 20px 24px;
  }
}
