/* Armie Beauty — palette and type lifted from the live Wix site. */

:root {
  --lilac:   #E2CEDF;
  --ink:     #000000;
  --paper:   #FFFFFF;
  --charcoal:#2F2E2E;
  --mist:    #EFF1F2;
  --rule:    rgba(0, 0, 0, .12);

  --serif:  "Playfair Display", Georgia, "Times New Roman", serif;
  --display:"Syne", "Playfair Display", Georgia, serif;
  --sans:   "Questrial", "Futura", "Century Gothic", system-ui, sans-serif;

  --shell:  1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--lilac);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* The white page card floating on the lilac ground, as on the original. */
.sheet {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--paper);
}

/* ---------- header ---------- */

.masthead {
  background: var(--lilac);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  max-width: 1280px;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img { width: 54px; height: 54px; object-fit: contain; }

.brand span {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: .01em;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
}

.nav a {
  font-family: var(--sans);
  font-size: 16px;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
  transition: border-color .18s ease;
}

.nav a:hover,
.nav a[aria-current="page"] { border-bottom-color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

/* ---------- hero ---------- */

.hero { position: relative; background: var(--lilac); }

.hero-media {
  position: relative;
  min-height: clamp(460px, 72vh, 760px);
  background-size: cover;
  background-position: center 22%;
  display: flex;
  align-items: center;
}

.hero-copy { position: relative; z-index: 2; max-width: 620px; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.08;
  margin: 0 0 34px;
}

.hero .btn { margin-bottom: 30px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  padding: 15px 32px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.btn:hover { background: transparent; color: var(--ink); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ---------- socials ---------- */

.socials { display: flex; gap: 14px; align-items: center; }

.socials a {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .2s ease, color .2s ease;
}

.socials a:hover { background: var(--ink); color: var(--paper); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- sections ---------- */

.section { padding: clamp(64px, 9vw, 116px) 0; }
.section-white { background: var(--paper); }
.section-lilac { background: var(--lilac); }
.section-dark  { background: var(--charcoal); color: var(--paper); }

.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 70px); }

.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 50px);
  margin: 0 0 12px;
}

.eyebrow {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 14px;
  opacity: .75;
}

/* ---------- service cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 3.4vw, 46px);
}

.card { text-align: center; }

.card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--mist);
}

.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.card:hover .card-img img { transform: scale(1.045); }

.card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  margin: 0 0 8px;
}

.card p { margin: 0; font-size: 16px; line-height: 1.55; }

.cards-cta { text-align: center; margin-top: clamp(40px, 5vw, 64px); }

/* ---------- price list ---------- */

.pricelist { max-width: 800px; margin-inline: auto; }

.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}

.price-row:first-child { border-top: 1px solid var(--rule); }

.price-name { font-family: var(--serif); font-size: 22px; }

.price-time {
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .6;
  white-space: nowrap;
}

.price-amount { font-family: var(--display); font-size: 21px; white-space: nowrap; }

.pricelist-cta { text-align: center; margin-top: clamp(44px, 6vw, 72px); }

.price-note {
  text-align: center;
  font-size: 15px;
  opacity: .65;
  margin-top: 20px;
}

/* ---------- testimonials ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(28px, 4vw, 54px);
}

.quote p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.72;
  font-style: italic;
  margin: 0 0 18px;
}

.quote cite {
  font-family: var(--display);
  font-style: normal;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ---------- review form ---------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Bots fill this in; people never see it. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.review-form {
  max-width: 680px;
  margin: clamp(44px, 6vw, 72px) auto 0;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(0, 0, 0, .16);
}

.review-form h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 6px;
  text-align: center;
}

.review-form-intro {
  text-align: center;
  font-size: 16px;
  margin: 0 0 26px;
  opacity: .75;
}

.review-form textarea,
.review-form input[type="text"] {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid rgba(0, 0, 0, .22);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  border-radius: 2px;
}

.review-form textarea { resize: vertical; min-height: 116px; line-height: 1.6; }

.review-form textarea:focus,
.review-form input[type="text"]:focus {
  outline: 2px solid var(--ink);
  outline-offset: -1px;
}

.review-form-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.review-form-row input[type="text"] { flex: 1 1 220px; }
.review-form-row .btn { flex: 0 0 auto; border-radius: 2px; }

.note {
  padding: 14px 18px;
  margin-bottom: 22px;
  font-size: 16px;
  border-left: 4px solid var(--ink);
  background: var(--paper);
}

.note-good { border-left-color: #1f7a44; }
.note-bad  { border-left-color: #b3261e; }

@media (max-width: 560px) {
  .review-form-row .btn { width: 100%; }
}

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.gallery figure { margin: 0; aspect-ratio: 1 / 1; overflow: hidden; background: var(--mist); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.05); }

.gallery-empty {
  text-align: center;
  padding: 56px 20px;
  border: 1px dashed var(--rule);
  opacity: .6;
  font-size: 15px;
}

/* ---------- about ---------- */

.prose { max-width: 720px; margin-inline: auto; text-align: center; }
.prose p { font-size: 18px; line-height: 1.8; }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(34px, 5vw, 70px);
}

.contact-block h3 {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 16px;
  opacity: .7;
}

.contact-block p { margin: 0 0 6px; font-size: 18px; }
.contact-block a { text-decoration: none; border-bottom: 1px solid var(--rule); }

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 16px;
}

.hours-row .closed { opacity: .5; }

/* ---------- footer ---------- */

.footer { background: var(--lilac); padding: clamp(48px, 6vw, 76px) 0 36px; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 42px;
}

.footer h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 14px;
}

.footer a { text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.footer-nav { display: flex; flex-direction: column; gap: 9px; }

.footer-base {
  border-top: 1px solid rgba(0, 0, 0, .12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  opacity: .7;
}

/* ---------- mobile ---------- */

@media (max-width: 820px) {
  .nav-toggle { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--lilac);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 18px;
    border-bottom: 1px solid var(--rule);
    z-index: 40;
  }

  .nav.open { display: flex; }
  .nav a { padding: 13px var(--gutter); width: 100%; border-bottom: 0; }

  .masthead-inner { position: relative; }
  .brand img { width: 44px; height: 44px; }
  .brand span { font-size: 21px; }

  .hero-media { min-height: 78vh; background-position: 68% center; }

  .hero h1 {
    background: rgba(255, 255, 255, .72);
    padding: 16px 18px;
    margin-left: -18px;
    backdrop-filter: blur(2px);
  }

  .price-row { grid-template-columns: 1fr auto; row-gap: 4px; }
  .price-time { grid-column: 1; order: 3; }
  .price-amount { grid-row: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
