/* Beauty Galore — sharper KOVNA-inspired V2 */

:root {
  --bg: #f4ede5;
  --paper: #fbf6f0;
  --brown: #47362d;
  --muted: #7e695b;
  --light-muted: #a99484;
  --accent: #c66d31;
  --accent-dark: #a15022;
  --line: rgba(71,54,45,.14);
  --shadow: 0 28px 90px rgba(71,54,45,.12);
  --container: 1180px;
  --header-h: 82px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  background: var(--bg);
}

body {
  margin: 0;
  padding-top: var(--header-h);
  color: var(--brown);
  background:
    radial-gradient(circle at 15% 0%, rgba(198,109,49,.10), transparent 26rem),
    radial-gradient(circle at 90% 0%, rgba(126,105,91,.10), transparent 22rem),
    linear-gradient(180deg, var(--bg), #faf5ef 48%, var(--bg));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  width: min(var(--container), calc(100% - 42px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  min-height: var(--header-h);
  z-index: 1000;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px max(22px, calc((100vw - var(--container)) / 2));
  background: rgba(244, 237, 229, .90);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(24px);
}

.menu-button {
  justify-self: start;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--brown);
  font-weight: 800;
  cursor: pointer;
}

.brand {
  justify-self: center;
  font-family: Georgia, "Times New Roman", serif;
  color: #8b7667;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: .02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav a {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 650;
}

.nav .appointment-link {
  color: var(--accent);
  font-weight: 800;
}

.hero {
  padding-top: 18px;
}

.hero-panel {
  width: min(1510px, calc(100% - 26px));
  min-height: calc(100svh - var(--header-h) - 26px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(251,246,240,.72);
  box-shadow: var(--shadow);
}

.image-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 760px;
}

.image-collage img {
  filter: saturate(.96) contrast(1.01);
}

.logo-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(445px, 72%);
  min-height: 235px;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 32px 24px;
  text-align: center;
  background: rgba(251,246,240,.96);
  color: #8b7667;
  box-shadow: 0 32px 105px rgba(71,54,45,.20);
}

.monogram {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  width: min(290px, 100%);
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  line-height: .78;
}

.monogram i {
  height: 1px;
  background: #d7c3b3;
  transform: rotate(-48deg);
}

.monogram span:last-child {
  color: var(--accent);
}

.logo-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.26rem;
  font-weight: 400;
  letter-spacing: .16em;
}

.logo-card small {
  margin-top: 10px;
  color: var(--accent);
  font-size: .72rem;
  letter-spacing: .42em;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 78px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 900;
}

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

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.55rem, 6.8vw, 6.6rem);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 400;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 5.2vw, 5rem);
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 400;
}

.hero-content p,
.treatment-copy p,
.service-row p,
.vip-copy p,
.touch-copy p,
.booking p {
  color: var(--muted);
  font-size: 1.06rem;
}

.button {
  width: fit-content;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 13px 21px;
  border: 0;
  border-radius: 999px;
  color: #fff8f2;
  background: var(--accent);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(198,109,49,.18);
}

.button:hover { background: var(--accent-dark); }
.button.outline {
  color: var(--brown);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  box-shadow: none;
}

.section {
  padding: 78px 0;
}

.treatment-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: center;
}

.treatment-grid.reverse {
  grid-template-columns: 1.12fr .88fr;
}

.treatment-grid.reverse .treatment-image {
  order: 2;
}

.treatment-grid.reverse .treatment-copy {
  order: 1;
}

.treatment-image,
.vip-image,
.touch-image,
.about-grid > div:first-child {
  min-height: 520px;
  box-shadow: var(--shadow);
}

.treatment-image img,
.vip-image img,
.touch-image img,
.about-grid img {
  border-radius: 0;
}

.treatment-copy {
  padding: 16px 12px;
}

.treatment-copy a,
.service-row a {
  color: var(--accent);
  font-weight: 900;
}

.compact {
  padding-top: 26px;
}

.service-stack {
  display: grid;
  gap: 42px;
}

.service-row {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: center;
}

.service-row.mirrored {
  grid-template-columns: 1.12fr .88fr;
}

.service-row.mirrored img {
  order: 2;
}

.service-row.mirrored div {
  order: 1;
}

.service-row img {
  min-height: 440px;
  box-shadow: var(--shadow);
}

.service-row div {
  padding: 18px 12px;
}

.vip-grid,
.touch-grid,
.about-grid,
.booking-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.vip-image {
  position: relative;
}

.vip-image p {
  position: absolute;
  left: 24px;
  bottom: 20px;
  margin: 0;
  color: #fff8f2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  text-shadow: 0 8px 28px rgba(0,0,0,.24);
}

.touch-copy,
.vip-copy,
.about-copy {
  padding: 18px 12px;
}

.touch-copy .subhead {
  margin-top: -10px;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.address {
  display: grid;
  gap: 5px;
  margin: 22px 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.touch-copy blockquote {
  margin: 34px 0 0;
  padding-left: 18px;
  border-left: 2px solid rgba(198,109,49,.35);
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.2;
}

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

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.footer-columns strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brown);
}

.footer-columns span,
.footer-columns a {
  display: block;
  color: var(--muted);
  margin-bottom: 5px;
}

.booking {
  padding-top: 46px;
}

.booking-grid {
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  background: rgba(251,246,240,.75);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(71,54,45,.14);
  border-radius: 0;
  padding: 14px 15px;
  color: var(--brown);
  background: rgba(255,255,255,.7);
}

.site-footer {
  padding: 22px max(22px, calc((100vw - var(--container)) / 2)) 34px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: .92rem;
}

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

  .brand {
    justify-self: center;
  }

  .nav {
    position: fixed;
    inset: calc(var(--header-h) + 10px) 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    background: rgba(244,237,229,.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 1001;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 11px 14px;
    background: rgba(255,255,255,.62);
  }

  .hero-panel,
  .treatment-grid,
  .treatment-grid.reverse,
  .service-row,
  .service-row.mirrored,
  .vip-grid,
  .touch-grid,
  .about-grid,
  .booking-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .treatment-grid.reverse .treatment-image,
  .treatment-grid.reverse .treatment-copy,
  .service-row.mirrored img,
  .service-row.mirrored div {
    order: initial;
  }

  .image-collage {
    min-height: 560px;
  }

  .hero-content {
    padding: 38px 30px 48px;
  }
}

@media (max-width: 620px) {
  :root { --header-h: 74px; }

  body {
    padding-top: var(--header-h);
  }

  .site-header {
    min-height: var(--header-h);
    padding: 12px 15px;
  }

  .brand {
    font-size: 1.35rem;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-panel {
    width: calc(100% - 12px);
    min-height: auto;
  }

  .image-collage {
    min-height: 420px;
  }

  .logo-card {
    width: 78%;
    min-height: 162px;
    padding: 18px;
  }

  .monogram {
    grid-template-columns: 1fr 42px 1fr;
    font-size: 3.05rem;
    margin-bottom: 8px;
  }

  .logo-card strong {
    font-size: 1.28rem;
    letter-spacing: .10em;
  }

  .logo-card small {
    font-size: .55rem;
    letter-spacing: .20em;
  }

  .hero-content {
    padding: 30px 20px 36px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2.3rem, 10vw, 3rem);
  }

  .hero-content p,
  .treatment-copy p,
  .service-row p,
  .vip-copy p,
  .touch-copy p,
  .booking p {
    font-size: 1rem;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 62px 0;
  }

  .treatment-image,
  .vip-image,
  .touch-image,
  .about-grid > div:first-child,
  .service-row img {
    min-height: 330px;
  }

  .booking-form {
    padding: 22px;
  }

  .site-footer {
    padding-inline: 14px;
    flex-direction: column;
  }
}
