@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #211b20;
  --muted: #756a6b;
  --paper: #fbf7f4;
  --surface: #ffffff;
  --soft: #f0e1df;
  --line: #e3d6d2;
  --rose: #bd6875;
  --berry: #7e3f55;
  --sage: #657c69;
  --clay: #b78970;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 22px; font-size: clamp(2.8rem, 6vw, 6.2rem); line-height: .92; letter-spacing: 0; }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: 1.16rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 74px);
  background: rgba(251, 247, 244, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--berry);
  color: var(--white);
  font-weight: 950;
}
.brand small { display: block; color: var(--muted); font-size: .78rem; font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { padding: 10px 13px; border-radius: 999px; color: var(--muted); font-weight: 800; }
.site-nav a:hover, .site-nav a.is-active { background: var(--surface); color: var(--berry); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--surface); border-radius: 50%; }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--ink); }

.hero {
  min-height: 730px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .92fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: clamp(50px, 8vw, 118px) clamp(18px, 5vw, 86px) 74px;
  background:
    linear-gradient(90deg, rgba(251,247,244,.96), rgba(251,247,244,.86)),
    radial-gradient(circle at 84% 12%, #e9c6c8 0, transparent 34%);
}
.hero-copy { max-width: 760px; }
.eyebrow { margin: 0 0 12px; color: var(--rose); font-size: .76rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.lead, .hero-copy p:not(.eyebrow), .section-copy p, .section-head p, .gallery-preview p, .page-intro p, .contact-card p { color: var(--muted); font-size: 1.08rem; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
}
.btn.primary { background: var(--berry); color: var(--white); }
.btn.secondary { background: var(--surface); border-color: var(--line); color: var(--berry); }
.text-link { color: var(--berry); font-weight: 900; }
.hero-image { border-radius: 8px; overflow: hidden; background: var(--surface); box-shadow: 0 34px 90px rgba(126, 63, 85, .18); }

.section { padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 86px); }
.signature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding-top: 0; }
.signature-strip a { min-height: 150px; padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.signature-strip span { display: block; margin-bottom: 20px; color: var(--rose); font-weight: 950; }
.signature-strip strong, .signature-strip small { display: block; }
.signature-strip small { margin-top: 6px; color: var(--muted); }
.split-section, .gallery-preview, .contact-layout { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr); gap: clamp(30px, 5vw, 76px); align-items: center; }
.studio-photo, .gallery-tile, .person-photo, .map-box {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: grid;
  place-items: end start;
  padding: 18px;
  border: 1px dashed #cdbab5;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0e1df, #fffaf6);
  color: var(--muted);
  font-weight: 900;
}

.photo-real {
  position: relative;
  padding: 0;
  border: 0;
}

.photo-real img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.ai-disclosure {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(33, 27, 32, .72);
  color: #fff;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .02em;
}
.studio-photo.large { min-height: 480px; background: linear-gradient(135deg, #7e3f55, #e5c1bc 54%, #fbf7f4); color: var(--white); }
.section-copy { max-width: 720px; }
.check-list { display: grid; gap: 10px; padding: 0; margin: 26px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; font-weight: 760; color: var(--ink); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 12px; height: 12px; border-radius: 50%; background: var(--sage); }
.featured-services { background: var(--soft); }
.section-head { max-width: 820px; margin-bottom: 30px; }
.service-cards, .price-grid, .treatment-grid, .team-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-cards article, .price-grid article, .treatment-grid article, .team-mini-grid article, .contact-card, .form-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.service-cards span, .price-grid span, .treatment-grid span { display: inline-flex; margin-bottom: 34px; padding: 6px 10px; border-radius: 999px; background: #f6ece9; color: var(--berry); font-weight: 900; }
.service-cards p, .price-grid p, .treatment-grid p, .team-mini-grid p { color: var(--muted); }
.service-cards strong, .price-grid strong { display: block; margin-top: 22px; font-size: 1.28rem; }
.mini-gallery, .gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.mini-gallery .gallery-tile:nth-child(2), .gallery-grid .gallery-tile:nth-child(3n + 2) { background: linear-gradient(135deg, #657c69, #e6ded6); color: var(--white); }
.mini-gallery .gallery-tile:nth-child(3), .gallery-grid .gallery-tile:nth-child(3n) { background: linear-gradient(135deg, #b78970, #f2dfd8); color: var(--white); }
.cta-panel { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin: 0 clamp(18px, 5vw, 86px) 70px; padding: 32px; border-radius: 8px; background: var(--ink); color: var(--white); }
.cta-panel h2 { margin-bottom: 0; font-size: clamp(1.8rem, 3vw, 3rem); }
.cta-panel .eyebrow { color: #e8b5bc; }

.page-hero { padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 86px); }
.page-hero .page-intro { max-width: 920px; }
.page-hero.dark { background: var(--berry); color: var(--white); }
.page-hero.dark .page-intro p { color: #f2d8dc; }
.treatment-row { display: grid; grid-template-columns: .42fr 1fr; gap: 30px; padding: 34px 0; border-top: 1px solid var(--line); }
.treatment-row:last-child { border-bottom: 1px solid var(--line); }
.treatment-row h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.detail-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0; margin: 20px 0 0; list-style: none; }
.detail-list li { padding: 16px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface); }
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid .gallery-tile { min-height: 280px; }
.price-note { max-width: 760px; color: var(--muted); }
.form-card form { display: grid; gap: 14px; }
label { display: grid; gap: 7px; color: var(--ink); font-weight: 800; }
input, select, textarea { width: 100%; min-height: 46px; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); color: var(--ink); font: inherit; }
textarea { min-height: 128px; resize: vertical; }
.map-box { min-height: 280px; margin-top: 16px; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 30px clamp(18px, 4vw, 74px); color: var(--muted); border-top: 1px solid var(--line); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; inset: 80px 16px auto; flex-direction: column; align-items: stretch; padding: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 24px 60px rgba(33,27,32,.12); }
  .site-nav.is-open { display: flex; }
  .hero, .split-section, .gallery-preview, .contact-layout, .treatment-row { grid-template-columns: 1fr; }
  .signature-strip, .service-cards, .price-grid, .treatment-grid, .team-mini-grid, .gallery-grid, .detail-list { grid-template-columns: 1fr; }
  .mini-gallery { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .studio-photo.large { min-height: 320px; }
  .cta-panel, .site-footer { flex-direction: column; align-items: flex-start; }
}
