:root {
  --gold: #b88a44;
  --gold-dark: #9c7439;
  --cream: #faf7f1;
  --ivory: #fffdf9;
  --sand: #f5efe6;
  --line: #eadfce;
  --brown: #3d2d22;
  --muted: #7d6d60;
  --soft: #bfa88f;
  --shadow: 0 16px 42px rgba(85, 58, 34, 0.1);
  --radius: 14px;
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  --sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--brown);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(22px, 7vw, 108px);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(184, 138, 68, 0.18);
  box-shadow: 0 6px 24px rgba(65, 43, 24, 0.06);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-grid;
  gap: 2px;
  color: var(--gold);
  line-height: 1.05;
}

.logo strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
}

.logo span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 38px);
  color: #5f5048;
  font-size: 13px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding: 27px 0 25px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:first-child::after {
  width: 22px;
}

.nav-button,
.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-button,
.btn-primary {
  background: linear-gradient(135deg, #c49b5d, var(--gold-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(184, 138, 68, 0.24);
}

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

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.68);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.btn-soft {
  min-height: 38px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--gold-dark);
  border-color: rgba(184, 138, 68, 0.32);
}

.btn-outline {
  color: var(--gold-dark);
  border-color: var(--gold);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--brown);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(45, 31, 22, 0.76), rgba(45, 31, 22, 0.38) 45%, rgba(45, 31, 22, 0.05)),
    linear-gradient(0deg, rgba(45, 31, 22, 0.18), rgba(45, 31, 22, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(650px, calc(100% - 44px));
  margin-left: clamp(22px, 12vw, 180px);
  color: #fff;
}

.eyebrow,
.mini-title {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d8b77f;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 74px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(22px, 8vw, 132px);
}

.compact {
  padding-top: clamp(54px, 6.2vw, 96px);
  padding-bottom: clamp(54px, 6.2vw, 96px);
}

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

h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.about {
  min-height: clamp(560px, 78vh, 780px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.92fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  background: linear-gradient(90deg, var(--ivory), var(--cream));
}

.about-copy {
  max-width: 590px;
}

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

.about-copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--gold-dark);
  font-weight: 600;
}

.image-collage {
  display: grid;
  grid-template-columns: 1.7fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.image-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.collage-main {
  grid-row: 1 / 3;
  min-height: 310px;
}

.section-head {
  margin-bottom: clamp(42px, 5vw, 74px);
}

.centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.centered span {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.centered h2 {
  margin: 0;
}

.services {
  display: grid;
  align-content: center;
  background: var(--ivory);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
}

.service-card,
.price-card,
.work-card,
.article-grid article,
.team-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: clamp(235px, 28vh, 320px);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-items: start;
  padding: clamp(30px, 3vw, 44px) clamp(24px, 2.6vw, 36px);
  transition: transform 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.line-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: clamp(18px, 2.4vw, 34px);
  border-radius: 50%;
  background: #f3eadb;
  color: var(--gold);
  font-size: 28px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: clamp(16px, 2vw, 26px);
}

.service-card a,
.article-grid a {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(26px, 3.4vw, 46px);
}

.section-row h2 {
  margin-bottom: 0;
}

.works,
.team,
.faq {
  background: var(--cream);
}

.work-grid,
.article-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.work-card {
  overflow: hidden;
}

.work-card img {
  width: 100%;
  aspect-ratio: 1.56;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.work-card div {
  padding: 15px 16px 17px;
}

.work-card h3 {
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: 18px;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.packages {
  background: linear-gradient(180deg, var(--ivory), #fbf4ea);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.15fr;
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 26px 22px;
}

.price-card.popular {
  border-color: rgba(184, 138, 68, 0.55);
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
}

.price-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 8px;
}

.price-card strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 14px;
}

.price-card small {
  font-family: var(--sans);
  font-size: 12px;
}

.price-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.price-card a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-dark);
  font-weight: 600;
}

.popular a {
  background: var(--gold);
  color: #fff;
}

.custom-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.custom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08);
}

.custom-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.88), rgba(255, 253, 249, 0.24));
}

.custom-card div {
  position: absolute;
  inset: 34px auto auto 34px;
  z-index: 1;
  width: min(270px, calc(100% - 56px));
}

.custom-card h3 {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.35;
}

.custom-card p {
  color: var(--muted);
}

.process {
  display: grid;
  align-content: center;
  background: var(--ivory);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(24px, 2.6vw, 40px);
  margin-top: clamp(38px, 5vw, 66px);
}

.process-line::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 31px;
  height: 1px;
  background: var(--gold);
}

.process-line article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  align-content: start;
  min-height: 230px;
  padding: 0 14px 18px;
}

.process-line b {
  z-index: 1;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
}

.process-line i {
  margin-top: 18px;
  color: var(--brown);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
}

.process-line p {
  width: min(220px, 100%);
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.process-line small {
  width: min(220px, 100%);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(184, 138, 68, 0.25);
  color: var(--gold-dark);
  font-size: 12px;
  line-height: 1.7;
}

.reviews {
  display: grid;
  align-content: center;
  background: var(--sand);
}

.review-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.12fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
  min-height: clamp(360px, 45vh, 500px);
  padding: clamp(32px, 4vw, 56px);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.78);
}

.review-copy h2 {
  margin-bottom: 14px;
}

.review-copy p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.8;
}

.review-copy strong {
  color: var(--brown);
}

.dots {
  display: flex;
  gap: 7px;
  margin-top: 18px;
}

.dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8c4a8;
}

.dots span:first-child {
  background: var(--gold);
}

.review-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(12px, 1.5vw, 18px);
}

.review-images img {
  width: 100%;
  height: clamp(200px, 26vh, 310px);
  object-fit: cover;
  border-radius: var(--radius);
}

.team {
  display: grid;
  align-content: center;
}

.team-grid article {
  overflow: hidden;
  text-align: center;
  padding-bottom: 22px;
}

.team-grid img {
  width: 100%;
  height: clamp(210px, 28vh, 310px);
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  filter: saturate(0.82) brightness(1.08);
}

.team-grid h3 {
  margin: 18px 0 4px;
  font-family: var(--serif);
  font-size: 20px;
}

.team-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.article-grid article {
  overflow: hidden;
}

.article-grid img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.article-grid time,
.article-grid h3,
.article-grid p,
.article-grid a {
  margin-left: 16px;
  margin-right: 16px;
}

.article-grid time {
  display: block;
  margin-top: 14px;
  color: var(--gold-dark);
  font-size: 12px;
}

.article-grid h3 {
  margin-top: 5px;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 17px;
}

.article-grid p {
  color: var(--muted);
  font-size: 13px;
}

.article-grid a {
  display: inline-flex;
  margin-bottom: 16px;
}

.instagram {
  min-height: 300px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: clamp(24px, 3.4vw, 46px);
  padding: clamp(44px, 5.6vw, 78px) clamp(22px, 8vw, 132px);
  background: #eadfce;
}

.insta-copy span,
.insta-copy strong {
  display: block;
}

.insta-copy span {
  color: var(--muted);
  font-size: 14px;
}

.insta-copy strong {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
}

.insta-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(68px, 1fr));
  gap: clamp(8px, 1.2vw, 14px);
}

.insta-strip img {
  width: 100%;
  height: clamp(112px, 16vh, 180px);
  object-fit: cover;
  border-radius: var(--radius);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ivory);
  padding: 0 18px;
}

summary {
  cursor: pointer;
  padding: 16px 0;
  color: var(--brown);
  font-weight: 600;
  list-style: none;
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}

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

details p {
  margin: 0 0 16px;
  color: var(--muted);
}

.bottom-cta {
  position: relative;
  min-height: clamp(360px, 48vh, 520px);
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.bottom-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px) brightness(0.72);
  transform: scale(1.04);
}

.bottom-cta div {
  position: relative;
  z-index: 1;
  padding: 34px 22px;
}

.bottom-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 48px);
}

.bottom-cta p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 20px;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 34px;
  padding: 38px clamp(22px, 8vw, 132px) 22px;
  background: #2d2019;
  color: rgba(255, 253, 249, 0.76);
}

.footer .logo {
  color: #d9b77c;
  margin-bottom: 14px;
}

.footer h3 {
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--serif);
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 253, 249, 0.68);
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.socials span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: 50%;
  font-size: 11px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 253, 249, 0.14);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 170px 1fr auto;
    padding-inline: 24px;
  }

  .site-nav {
    gap: 16px;
  }

  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .custom-card {
    grid-column: 1 / -1;
  }

  .work-grid,
  .article-grid,
  .team-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: grid;
    gap: 0;
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-button {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 66px);
  }

  .hero-inner {
    margin-left: 22px;
  }

  .about,
  .review-card {
    grid-template-columns: 1fr;
  }

  .about,
  .services,
  .process,
  .reviews,
  .team,
  .bottom-cta {
    min-height: auto;
  }

  .services,
  .process,
  .reviews,
  .team {
    align-content: start;
  }

  .image-collage {
    grid-template-columns: 1fr 1fr;
  }

  .collage-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .package-grid,
  .process-line,
  .faq-list,
  .instagram,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .process-line {
    gap: 24px;
  }

  .process-line article {
    grid-template-columns: 86px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
    column-gap: 20px;
    min-height: auto;
    padding: 4px 0 22px;
  }

  .process-line b {
    grid-row: 1 / 4;
    width: 72px;
    height: 72px;
    align-self: start;
  }

  .process-line i,
  .process-line p,
  .process-line small {
    grid-column: 2;
  }

  .process-line p {
    width: 100%;
  }

  .process-line i {
    margin-top: 0;
    font-size: 18px;
    line-height: 1.4;
  }

  .process-line small {
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
  }

  .instagram {
    text-align: center;
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .section,
  .compact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: calc(100svh - 66px);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .work-grid,
  .article-grid,
  .team-grid,
  .service-grid,
  .review-images {
    grid-template-columns: 1fr;
  }

  .section-row {
    display: grid;
    align-items: start;
  }

  .price-card.popular {
    transform: none;
  }

  .insta-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    min-height: 300px;
  }

  .review-images img,
  .team-grid img,
  .insta-strip img {
    height: 220px;
  }

  .bottom-cta {
    min-height: 420px;
  }
}
