:root {
  --paper: #f7f4ef;
  --surface: #ffffff;
  --ink: #2a2622;
  --muted: #6f655c;
  --clay: #c08457;
  --clay-dark: #a96843;
  --sage: #8a9a82;
  --sand: #e4ddd1;
  --shadow: 0 22px 60px rgba(42, 38, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.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, 58px);
  border-bottom: 1px solid rgba(228, 221, 209, 0.86);
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.button,
.mobile-booking {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.header-cta,
.button.primary,
.mobile-booking {
  color: #fff;
  background: var(--clay);
}

.button.primary:hover,
.header-cta:hover,
.mobile-booking:hover {
  background: var(--clay-dark);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--ink);
  background: transparent;
}

.button.dark {
  width: 100%;
  color: #fff;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(46px, 6vw, 82px) clamp(18px, 4vw, 58px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.93;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.intro-copy p,
.studio-copy p,
.booking-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-image {
  position: relative;
  height: min(68vh, 660px);
  min-height: 440px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(42, 38, 34, 0.28));
}

.floating-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: 280px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  color: #fff;
  background: rgba(42, 38, 34, 0.42);
  backdrop-filter: blur(14px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.section {
  padding: clamp(72px, 8vw, 112px) clamp(18px, 4vw, 58px);
}

.intro,
.studio {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.intro-image,
.studio-images img {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.intro-image {
  height: 520px;
}

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

.treatment-grid,
.why-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

.treatment-grid {
  grid-template-columns: repeat(4, minmax(280px, 1fr));
}

.treatments .section-heading,
.treatments .treatment-grid {
  max-width: 1680px;
  margin-right: auto;
  margin-left: auto;
}

.treatments .treatment-grid {
  gap: clamp(24px, 2vw, 34px);
}

.treatment-card,
.why article,
.review-grid article,
.booking-form {
  border: 1px solid var(--sand);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 14px 34px -18px rgba(42, 38, 34, 0.16);
}

.treatment-card {
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.treatment-card:hover,
.treatment-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.treatment-card img {
  height: clamp(260px, 16vw, 320px);
  object-fit: cover;
  transition: transform 500ms ease;
}

.treatment-card .image-cut,
.treatment-card .image-color,
.treatment-card .image-facial {
  object-position: center;
}

/* Lash macro close-up: the eye/lash focal point sits in the upper portion
   of the source photo, with plain skin filling the lower third. A center
   crop pushes the lash detail too low and wastes space on empty skin, so
   we bias the crop upward to keep the eye and lash line properly framed. */
.treatment-card .image-brows {
  object-position: center 25%;
}

.treatment-card:hover img {
  transform: scale(1.04);
}

.treatment-card div {
  padding: 20px;
}

.treatment-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.treatment-card p,
.why p,
.review-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.treatment-card strong {
  display: block;
  margin-top: 14px;
  color: var(--clay);
  font-size: 15px;
}

.treatment-card em {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.treatment-card:hover em,
.treatment-card:focus-visible em {
  color: var(--clay-dark);
}

.why {
  /* Warm sage-tinted neutral instead of the previous taupe (#ede8de), which
     read as an unrelated off-palette color. This blends the paper (#f7f4ef)
     and sage (#8a9a82) tones so the section feels part of the same family. */
  background: #f1f0e7;
}

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

.why article {
  padding: 24px;
}

.why span {
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(193, 126, 82, 0.42);
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-tabs {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 18px;
  padding: 5px;
  border: 1px solid var(--sand);
  border-radius: 999px;
  background: var(--surface);
}

.price-tabs button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.price-tabs button.active {
  color: #fff;
  background: var(--clay);
}

.price-table {
  max-width: 720px;
  border: 1px solid var(--sand);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.price-panel {
  display: none;
  padding: 12px 22px;
}

.price-panel.active {
  display: block;
}

.price-panel p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--sand);
}

.price-panel p:last-child {
  border-bottom: 0;
}

.reviews {
  background: var(--surface);
}

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

.review-grid article {
  padding: 26px;
}

.review-grid span {
  color: var(--clay);
  letter-spacing: 0.12em;
}

.studio-images {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.studio-images img {
  height: 420px;
}

.studio-images img:first-child {
  margin-top: 54px;
}

.booking {
  padding: 20px clamp(18px, 4vw, 58px) clamp(78px, 8vw, 112px);
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(30px, 6vw, 70px);
  padding: clamp(28px, 5vw, 58px);
  border-radius: 14px;
  color: #fff;
  background: var(--ink);
}

.booking-panel .eyebrow {
  color: #e3a877;
}

.booking-panel p {
  color: #c9c1b8;
}

dl {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
}

dt {
  color: #9a8f83;
  font-weight: 700;
}

dd {
  margin: 0;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  border: 1px solid var(--sand);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fdfbf8;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

input:hover,
select:hover {
  border-color: #d8c9b6;
  background: #fff;
}

input:focus,
select:focus {
  border-color: var(--clay);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(192, 132, 87, 0.16);
}

select.booking-highlight {
  animation: booking-pulse 900ms ease;
}

.booking-form small {
  color: var(--muted);
  line-height: 1.4;
  text-align: center;
}

.mobile-booking {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 25;
  display: none;
  box-shadow: var(--shadow);
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 24;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--sand);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--sand);
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer > a:last-child {
  color: var(--clay);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@keyframes booking-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 132, 87, 0.36);
  }

  100% {
    box-shadow: 0 0 0 12px rgba(192, 132, 87, 0);
  }
}

@media (max-width: 1060px) {
  .hero,
  .intro,
  .studio,
  .booking-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1060px) and (min-width: 901px) {
  .treatment-grid,
  .why-grid,
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .treatment-grid,
  .why-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-image {
    min-height: 360px;
    height: 440px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .treatment-grid,
  .why-grid,
  .review-grid,
  .studio-images {
    grid-template-columns: 1fr;
  }

  .intro-image,
  .studio-images img,
  .studio-images img:first-child {
    height: 360px;
    margin-top: 0;
  }

  dl div {
    grid-template-columns: 1fr;
  }

  .mobile-booking {
    display: inline-flex;
  }

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