:root {
  --ink: #211916;
  --soft-ink: #6e5d55;
  --paper: #fffaf6;
  --mist: #f3eee9;
  --rose: #b76e79;
  --plum: #3b2430;
  --gold: #c99a52;
  --line: rgba(33, 25, 22, .12);
  --shadow: 0 24px 70px rgba(45, 28, 22, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 246, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 24px;
  color: var(--soft-ink);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}

.topbar a { color: var(--plum); font-weight: 700; }

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 5vw, 72px);
}

.brand {
  display: grid;
  gap: 0;
  min-width: 162px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
  color: var(--plum);
}

.brand small {
  font-size: 10px;
  color: var(--soft-ink);
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a { position: relative; padding: 26px 0; }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--rose); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta, .button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta, .button.primary {
  background: var(--plum);
  color: #fff;
  box-shadow: 0 14px 35px rgba(59, 36, 48, .22);
}

.button.ghost {
  background: rgba(255, 255, 255, .78);
  color: var(--plum);
}

.button.ghost-light {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .34);
}

.button.outline {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--plum);
}

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

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  display: grid;
  align-items: center;
  padding: clamp(42px, 7vw, 92px) clamp(20px, 6vw, 90px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(33,25,22,.75), rgba(33,25,22,.28), rgba(33,25,22,.02)), url("../../inst3.jpeg");
  background-size: cover;
  background-position: center;
}

.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  z-index: -1;
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-content {
  width: min(680px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 { font-size: clamp(46px, 7vw, 84px); margin-bottom: 22px; }

h2 { font-size: clamp(34px, 4vw, 56px); margin-bottom: 22px; }

h3 { font-size: 22px; margin-bottom: 10px; }

.hero-content p:not(.eyebrow) {
  width: min(560px, 100%);
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
}

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

.hero-card {
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  bottom: 42px;
  width: min(320px, calc(100% - 40px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 250, 246, .86);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-card span { display: block; color: var(--soft-ink); font-weight: 800; }
.hero-card strong { display: block; color: var(--plum); font-size: 34px; line-height: 1.1; margin: 6px 0 16px; }
.hero-card a { color: var(--rose); font-weight: 900; }

.section-pad { padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 90px); }
.muted { background: var(--mist); }

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.intro-grid, .content-split, .contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.intro-grid img, .content-split img {
  width: 100%;
  height: min(620px, 58vw);
  min-height: 420px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-copy p, .content-split p { color: var(--soft-ink); font-size: 18px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.stats div, .review-grid article, .values article {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .58);
  border-radius: 8px;
}

.stats strong {
  display: block;
  color: var(--plum);
  font-size: 30px;
  line-height: 1;
}

.stats span, .review-grid p, .values p, .service-card p { color: var(--soft-ink); }

.text-link {
  color: var(--rose);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

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

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(33, 25, 22, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card span, .service-list article span, .values span { color: var(--rose); font-weight: 900; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.gallery-grid.large { grid-template-columns: repeat(4, 1fr); }

.gallery-grid img {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(33, 25, 22, .12);
}

.gallery-grid img:first-child { height: 520px; }
.gallery-grid.large img:first-child { height: 420px; }

.review-grid, .values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-grid strong {
  display: block;
  color: var(--plum);
  font-size: 20px;
  margin-bottom: 10px;
}

.insta-panel, .contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 8px;
  background: var(--plum);
  color: #fff;
  box-shadow: var(--shadow);
}

.insta-panel p:not(.eyebrow), .contact-band p { color: rgba(255, 255, 255, .78); max-width: 620px; }

.contact-band {
  margin: 0 clamp(20px, 6vw, 90px) clamp(70px, 8vw, 100px);
  background-image: linear-gradient(90deg, rgba(59,36,48,.94), rgba(59,36,48,.72)), url("../../inst3.jpeg");
  background-size: cover;
  background-position: center;
}

.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 6vw, 90px);
  background: #1d1514;
  color: #fff;
}

.site-footer p { margin: 6px 0 0; color: rgba(255, 255, 255, .68); }
.site-footer div:last-child { display: flex; align-items: center; gap: 20px; font-weight: 800; }

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: end;
  padding: 80px clamp(20px, 6vw, 90px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.page-hero h1 { max-width: 940px; font-size: clamp(42px, 6vw, 72px); margin: 0; }
.about-hero::before { background-image: linear-gradient(90deg, rgba(33,25,22,.78), rgba(33,25,22,.25)), url("../../inst3.jpeg"); }
.services-hero::before { background-image: linear-gradient(90deg, rgba(33,25,22,.78), rgba(33,25,22,.24)), url("../../inst2.jpeg"); }
.salon-hero::before { background-image: linear-gradient(90deg, rgba(33,25,22,.78), rgba(33,25,22,.24)), url("../../inst3.jpeg"); }
.contact-hero::before { background-image: linear-gradient(90deg, rgba(33,25,22,.82), rgba(33,25,22,.24)), url("../../inst5.jpeg"); }

.service-list {
  display: grid;
  gap: 18px;
}

.service-list article {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}

.service-list img {
  width: 100%;
  height: 230px;
  border-radius: 8px;
}

.service-list p { color: var(--soft-ink); max-width: 760px; }

.contact-card, .appointment-form {
  min-height: 560px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

dl { margin: 26px 0 0; }
dt { color: var(--rose); font-weight: 900; margin-top: 18px; }
dd { margin: 4px 0 0; color: var(--soft-ink); }

.appointment-form { display: grid; gap: 14px; }
.appointment-form label { display: grid; gap: 8px; color: var(--soft-ink); font-weight: 800; }
.appointment-form input, .appointment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

@media (max-width: 1040px) {
  .nav-links { gap: 15px; }
  .service-grid, .gallery-grid.large { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img, .gallery-grid img:first-child { height: 360px; }
}

@media (max-width: 820px) {
  .topbar { display: none; }
  .navbar { min-height: 72px; padding: 0 20px; }
  .nav-cta { display: none; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }
  .menu-toggle span { width: 18px; height: 2px; background: var(--ink); }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px; }
  .nav-links a::after { display: none; }
  .hero { min-height: 760px; align-items: start; padding-top: 92px; }
  .hero-card { left: 20px; right: 20px; bottom: 28px; }
  .section-heading.split, .insta-panel, .contact-band, .site-footer { flex-direction: column; align-items: flex-start; }
  .intro-grid, .content-split, .contact-layout { grid-template-columns: 1fr; }
  .intro-grid img, .content-split img { height: 420px; min-height: 0; }
  .service-grid, .review-grid, .values, .gallery-grid, .gallery-grid.large { grid-template-columns: 1fr; }
  .service-list article { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .hero-content p:not(.eyebrow) { font-size: 17px; }
  .hero-actions, .contact-actions { width: 100%; }
  .button { width: 100%; }
  .gallery-grid img, .gallery-grid img:first-child { height: 300px; }
  .site-footer div:last-child { flex-wrap: wrap; }
}
