/* ============ EmGlowSkin — recreation ============ */
:root {
  --ink: #1a1a1a;
  --body: #4a4a4a;
  --muted: #8a8a8a;
  --line: #e4e4e4;
  --btn: #bdbdbd;
  --btn-hover: #a9a9a9;
  --soft: #efefef;
  --dark: #121212;
  /* specials theme */
  --navy: #1c3a63;
  --cream: #fbf6ea;
  --leaf: #b7c98a;
  --maxw: 1240px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Mulish", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--body);
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: min(var(--maxw), 100vw); margin: 0 auto; padding: 0 32px; }

/* ---------- Headings ---------- */
h1, h2, h3 { font-family: var(--serif); color: var(--ink); font-weight: 500; }
.script-serif { font-variant: small-caps; letter-spacing: .02em; }

.section-label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  font-weight: 700;
  padding: 16px 34px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  font-family: var(--sans);
  line-height: 1.2;
  text-align: center;
}
.btn:hover { background: var(--btn-hover); }
.btn-block { display: flex; width: 100%; padding: 18px 24px; }
.btn-dark { background: #b9b9b9; }

.page-heading { margin: 54px 0 34px; }
.page-heading h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: .98;
  font-variant: small-caps;
  margin-top: 10px;
}
.page-heading > p:not(.section-label) {
  max-width: 620px;
  margin-top: 18px;
  font-size: 1.08rem;
}

/* ---------- Header ---------- */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: min(var(--maxw), 100vw); margin: 0 auto; padding: 28px 32px;
}
.logo {
  font-family: "Oswald", "Archivo Narrow", var(--sans);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: .04em;
  color: var(--ink);
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
}
.nav a.active { border-bottom: 1px solid var(--ink); }
.nav .has-drop { position: relative; }
.nav .has-drop > a::after { content: " \25BE"; font-size: .7em; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line);
  min-width: 170px; padding: 8px 0; display: none; z-index: 30;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.has-drop:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 22px; letter-spacing: .12em; }
.dropdown a:hover { background: var(--soft); }

.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero { max-width: var(--maxw); margin: 8px auto 0; padding: 0 32px; }
.hero-inner { display: grid; grid-template-columns: 1.7fr 1fr; min-height: 420px; }
.hero-left {
  background: #e9e9e9; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-left img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-right {
  background: #f4f4f4; padding: 60px 48px; display: flex; flex-direction: column; justify-content: center;
}
.hero-right h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.1; font-variant: small-caps; }
.hero-right p { margin: 18px 0 26px; color: var(--body); }

/* ---------- Welcome / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 90px 0; }
.split .ph { background: #ddd; aspect-ratio: 1/1; }
.split .welcome-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.split h2 { font-size: 2.4rem; font-variant: small-caps; margin-bottom: 22px; }
.split p { margin-bottom: 16px; }

/* ---------- Reviews ---------- */
.reviews { padding: 38px 32px 86px; }
.review-top {
  display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px;
}
.review-top h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-variant: small-caps; margin-top: 8px; line-height: 1.04;
}
.review-controls { display: flex; gap: 10px; flex: 0 0 auto; }
.review-arrow {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%;
  background: #fff; color: var(--ink); cursor: pointer; font-size: 1rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.review-arrow:hover { background: var(--soft); border-color: #d0d0d0; transform: translateY(-1px); }
.review-carousel { position: relative; }
.review-viewport {
  overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; scroll-snap-type: x mandatory; padding: 4px 0 10px;
  scrollbar-width: none;
}
.review-viewport::-webkit-scrollbar { display: none; }
.review-track { display: flex; gap: 24px; align-items: stretch; }
.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: linear-gradient(180deg, #f7f7f7 0%, #eeeeee 100%);
  border: 1px solid rgba(26,26,26,.06);
  border-radius: 8px;
  padding: 30px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  box-shadow: 0 16px 34px rgba(0,0,0,.05);
}
.review-card h3 { font-family: var(--sans); font-size: 1.12rem; color: var(--ink); font-weight: 800; }
.review-head { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.review-sub {
  color: #333; margin: 10px 0 16px; font-size: .82rem; line-height: 1.35;
  text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
}
.stars { color: #e6a93b; font-size: 1.15rem; letter-spacing: 3px; margin-bottom: 18px; }
.review-text { font-size: 1rem; color: #333; line-height: 1.65; }
.review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.review-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; background: #d2d2d2; cursor: pointer;
  transition: width .2s, background .2s;
}
.review-dots button.active { width: 24px; border-radius: 999px; background: var(--ink); }
.review-social {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px;
}
.review-social a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 150px; min-height: 46px; padding: 12px 22px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 800;
  transition: background .2s, border-color .2s, transform .2s;
}
.review-social a:hover { background: var(--soft); border-color: #d0d0d0; transform: translateY(-1px); }

/* ---------- Gallery carousel ---------- */
.gallery { padding: 20px 0 60px; }
.gallery-heading { margin-bottom: 24px; }
.gallery-heading h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  font-variant: small-caps;
  margin-top: 8px;
}
.carousel { position: relative; display: flex; align-items: center; gap: 14px; }
.car-viewport { overflow: hidden; flex: 1; }
.car-track { display: flex; transition: transform .45s ease; }
.car-slide { min-width: 100%; }
.car-slide img {
  width: 100%; height: 620px; object-fit: contain; background: #fff; display: block;
}
.car-arrow {
  flex: 0 0 auto; width: 46px; height: 46px; border: none; cursor: pointer;
  background: rgba(255,255,255,.85); color: #2a2a2a; font-size: 1.1rem; border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,.12); transition: background .2s; z-index: 2;
}
.car-arrow:hover { background: #fff; }
.car-thumbs { display: flex; gap: 8px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.car-thumbs button { border: 2px solid transparent; padding: 0; cursor: pointer; background: none; line-height: 0; }
.car-thumbs img { width: 78px; height: 60px; object-fit: cover; display: block; }
.car-thumbs button.active { border-color: #6f6f6f; }

/* ---------- Newsletter ---------- */
.newsletter { text-align: center; padding: 80px 0; }
.newsletter h2 { font-size: 2.9rem; font-variant: small-caps; font-weight: 500; }
.newsletter p { max-width: 620px; margin: 18px auto 34px; color: var(--body); }
.news-form { display: flex; gap: 16px; max-width: 880px; margin: 0 auto; align-items: center; }
.news-form input {
  flex: 1; border: none; border-bottom: 1px solid var(--ink);
  padding: 12px 4px; font-size: 1.1rem; font-family: var(--sans); background: transparent;
}
.news-form input:focus { outline: none; border-color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: #c8c8c8; text-align: center; padding: 56px 20px; color: #2a2a2a; }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 18px 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-nav a {
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
}
.footer-nav a:hover { text-decoration: underline; text-underline-offset: 5px; }
.social { display: flex; gap: 12px; justify-content: center; margin-bottom: 26px; flex-wrap: wrap; }
.social a {
  color: #2a2a2a; border: 1px solid rgba(42,42,42,.28); padding: 9px 14px;
  text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 800;
  transition: background .2s, border-color .2s;
}
.social a:hover { background: rgba(255,255,255,.22); border-color: rgba(42,42,42,.55); }
.site-footer .fname { font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .9rem; }
.site-footer p { margin: 14px 0; letter-spacing: .08em; font-size: .92rem; text-transform: uppercase; }
.footer-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.site-footer .copyright { font-size: .78rem; color: #555; }

/* ---------- Service page banner ---------- */
.service-hero {
  position: relative; min-height: 300px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; color: #fff;
  background: linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.45)), #555;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.service-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); font-variant: small-caps; letter-spacing: .05em; }
.service-hero .btn { margin-top: 22px; }
.service-hero-facials { background-image: linear-gradient(rgba(0,0,0,.24), rgba(0,0,0,.34)), url("../img/service-hero-facials.jpg"); }
.service-hero-waxing { background-image: linear-gradient(rgba(0,0,0,.22), rgba(0,0,0,.32)), url("../img/service-hero-waxing.jpg"); }
.service-hero-beauty { background-image: linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.38)), url("../img/service-hero-beauty.jpg"); }
.service-intro { background: var(--cream); color: var(--navy); text-align: center; padding: 54px 20px; border-bottom: 1px solid rgba(28,58,99,.12); }
.service-intro h2 { color: var(--navy); font-family: var(--serif); font-weight: 600; font-variant: small-caps; letter-spacing: .02em; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.service-intro p { max-width: 740px; margin: 0 auto; color: rgba(28,58,99,.85); }

/* ---------- Price menu ---------- */
.menu-section { padding: 70px 0; }
.menu-section + .menu-section { margin-top: 28px; }
.menu-section > h2 { font-size: 2.4rem; font-variant: small-caps; margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.menu-section .desc { color: var(--body); max-width: 760px; margin-bottom: 36px; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 70px; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.menu-item h3 { font-family: var(--sans); font-weight: 400; font-size: 1.35rem; color: var(--ink); }
.menu-item .price { font-family: var(--sans); font-weight: 300; font-size: 1.35rem; color: var(--ink); white-space: nowrap; }
.menu-item p { grid-column: 1 / -1; color: var(--body); margin-top: 2px; }
.menu-item p b { color: #333; }
.menu-item .note { font-style: italic; color: var(--muted); }
hr.rule { border: none; border-top: 1px solid var(--line); margin: 10px 0; }

/* ---------- Beauty cards ---------- */
.beauty-page { padding-top: 74px; padding-bottom: 32px; }
.beauty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.beauty-card {
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fbf8f3 100%);
  border: 1px solid rgba(26,26,26,.08);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 24px 58px rgba(0,0,0,.08);
}
.beauty-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; margin: 18px 0 20px; }
.beauty-card .title {
  font-size: 1.06rem;
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.beauty-card p { color: var(--body); max-width: 440px; margin: 0 auto; font-size: .94rem; }
.beauty-card p b { color: #333; }

/* ---------- Booking CTA ---------- */
.booking-cta {
  text-align: center;
  padding: 34px 32px 76px;
}
.booking-cta h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.02;
  font-variant: small-caps;
  margin: 8px auto 12px;
}
.booking-cta p:not(.section-label) {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--body);
}
.booking-cta .btn-block { max-width: 820px; margin: 0 auto; }

/* ---------- About ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; }
.about-text { background: #f2f2f2; padding: 70px 60px; }
.about-text h2 { font-family: var(--sans); font-weight: 400; font-size: 1.55rem; text-align: center; margin: 30px 0 14px; color: var(--ink); }
.about-text h2:first-of-type { margin-top: 0; }
.about-text p { text-align: center; margin-bottom: 10px; }
.about-img { min-height: 600px; background: #ddd; overflow: hidden; }
.about-img img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; object-position: center top; }
.certifications {
  padding: 72px 0 90px;
  background:
    radial-gradient(circle at 8% 12%, rgba(183, 201, 138, .16), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fbf8f3 100%);
}
.cert-heading { text-align: center; max-width: 980px; margin: 0 auto 42px; }
.cert-heading h2 {
  font-size: clamp(2.5rem, 5.4vw, 4.7rem);
  line-height: 1;
  margin: 10px 0 16px;
}
.cert-heading p:not(.section-label) { font-size: 1.2rem; max-width: 820px; margin: 0 auto; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cert-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(26,26,26,.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
}
.cert-card img { width: 100%; aspect-ratio: 4/2.7; object-fit: contain; background: #fff; padding: 12px; border-bottom: 1px solid var(--line); }
.cert-card div { padding: 24px; }
.cert-card h3 { font-size: 1.7rem; line-height: 1.08; }
.cert-source {
  color: #b77d67;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
  margin: 10px 0 14px;
}
.cert-card a {
  display: inline-block;
  margin-top: 18px;
  color: #a96f5b;
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}
.cert-card a::after { content: " ->"; }

/* ---------- Contact ---------- */
.contact-page { padding-bottom: 70px; }
.contact-heading { margin-bottom: 40px; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 34px; padding: 0 0 34px; align-items: stretch; }
.contact-panel {
  background: #f4f4f4;
  border: 1px solid rgba(26,26,26,.06);
  padding: 38px;
}
.contact-form label {
  display: block;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form input:not([type="checkbox"]), .contact-form textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--line);
  padding: 12px 2px 14px; margin: 8px 0 24px; font-family: var(--sans); font-size: 1rem; background: transparent;
  color: var(--body);
}
.contact-form textarea { border: 1px solid var(--line); min-height: 150px; padding: 12px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--muted); }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 22px; }
.checkbox-row input { margin-top: 4px; flex: 0 0 auto; }
.checkbox-row label { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--body); font-size: 1rem; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 14px; }
.contact-info { display: flex; flex-direction: column; }
.contact-info h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.02; color: var(--ink); margin: 10px 0 18px; font-variant: small-caps; }
.contact-info p { margin-bottom: 16px; }
.contact-info a { color: var(--ink); }
.contact-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.contact-list span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.map { height: 300px; background: linear-gradient(135deg, #dfe8d8, #cfe0e6); }
.directions-section { padding: 0 32px 80px; }
.map-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
  background: #f4f4f4;
  border: 1px solid rgba(26,26,26,.06);
  padding: 28px;
}
.map-card h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.02; margin: 10px 0 14px; font-variant: small-caps; }
.map-card .btn { margin-top: 12px; }
.map-embed { width: 100%; min-height: 360px; border: 0; filter: grayscale(.18); }

/* ---------- FAQ ---------- */
.faq-page { padding-bottom: 72px; }
.faq-heading h1 span { display: inline; }
.faq-heading a { display: inline-block; margin-top: 14px; color: var(--ink); border-bottom: 1px solid currentColor; }
.faq-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.faq-category {
  background: #f4f4f4;
  border: 1px solid rgba(26,26,26,.06);
  padding: 30px;
}
.faq-category:nth-child(3) { grid-column: 1 / -1; max-width: calc(50% - 14px); }
.faq-category > .section-label { margin-bottom: 12px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  font-family: var(--sans); font-size: 1.02rem; color: var(--ink); padding: 20px 30px 20px 0;
  position: relative;
}
.faq-q::after { content: "\25BE"; position: absolute; right: 0; top: 22px; color: var(--muted); transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--body); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 0 22px; }

/* ---------- Specials ---------- */
.specials { padding: 34px 32px 60px; }
.specials-heading { text-align: center; margin-bottom: 32px; }
.specials-flyer { display: block; width: 100%; max-width: 820px; margin: 0 auto; border-radius: 2px; box-shadow: 0 18px 44px rgba(0,0,0,.10); }
.summer-card {
  background: var(--cream); position: relative; overflow: hidden;
  padding: 70px 60px; border-radius: 2px; max-width: 1000px; margin: 0 auto;
}
.summer-card h2 {
  font-family: var(--serif); color: var(--navy); font-weight: 600;
  font-size: clamp(3rem, 8vw, 6rem); line-height: .95; text-align: right; letter-spacing: .02em;
}
.summer-item { text-align: right; margin-top: 44px; }
.summer-item h3 { font-family: var(--serif); color: var(--navy); font-size: 2.4rem; font-weight: 600; }
.summer-item p { color: var(--navy); font-family: var(--serif); font-size: 1.4rem; line-height: 1.4; max-width: 520px; margin-left: auto; }
.summer-item p b { font-weight: 700; }
.leaf { position: absolute; color: var(--leaf); opacity: .55; font-size: 8rem; }
.leaf.tr { top: 10px; right: 30px; }
.leaf.bl { bottom: 10px; left: 30px; }
.handle { font-family: var(--serif); font-style: italic; color: var(--navy); text-align: center; margin-top: 30px; font-size: 1.3rem; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; right: 22px; bottom: 22px; width: 330px; background: #cfcfcf;
  padding: 24px; z-index: 90; box-shadow: 0 14px 40px rgba(0,0,0,.18);
}
.cookie h4 { font-family: var(--sans); font-size: 1.3rem; color: var(--ink); font-weight: 600; margin-bottom: 10px; }
.cookie p { font-size: .92rem; color: #333; margin-bottom: 18px; }
.cookie .row { display: flex; gap: 12px; }
.cookie button { flex: 1; background: var(--ink); color: #fff; border: none; padding: 14px;
  text-transform: uppercase; letter-spacing: .15em; font-size: .8rem; font-weight: 700; cursor: pointer; }
.cookie button:hover { background: #000; }
.cookie.hide { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .review-card { flex-basis: calc((100% - 24px) / 2); }
}

@media (max-width: 880px) {
  html, body { width: 100%; max-width: 100vw; }
  .site-header { padding: 28px 22px; }
  .nav { display: none; position: absolute; top: 84px; left: 0; right: 0; background: #fff;
    flex-direction: column; gap: 0; padding: 10px 0; border-top: 1px solid var(--line); z-index: 40; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 32px; }
  .dropdown { position: static; transform: none; border: none; box-shadow: none; display: block; padding-left: 20px; }
  .menu-toggle { display: block; margin-left: auto; }
  .hero-inner, .split, .menu-grid, .beauty-grid, .about-split, .contact-grid { grid-template-columns: 1fr; }
  .menu-section + .menu-section { margin-top: 44px; }
  .split { gap: 30px; padding: 50px 0; }
  .wrap { padding: 0 22px; }
  .page-heading,
  .faq-category,
  .faq-q { min-width: 0; }
  .page-heading { margin: 38px 0 26px; }
  .page-heading h1 { font-size: clamp(2.45rem, 12vw, 3.35rem); overflow-wrap: anywhere; }
  .faq-heading h1 span { display: block; }
  .faq-page { max-width: 100vw; overflow: hidden; }
  .faq-heading > p:not(.section-label),
  .faq-categories { max-width: calc(100vw - 44px); }
  .reviews { padding: 34px 22px 66px; }
  .review-top { align-items: start; flex-direction: column; }
  .review-controls { align-self: flex-end; }
  .review-card { flex-basis: 100%; min-height: 0; padding: 26px; }
  .review-head { align-items: start; flex-direction: column; gap: 6px; }
  .review-social { justify-content: center; }
  .review-social a { min-width: 132px; }
  .gallery { padding: 10px 22px 56px; }
  .gallery-heading { text-align: center; margin-bottom: 18px; }
  .car-slide img { height: 300px; }
  .car-arrow { width: 38px; height: 38px; }
  .car-thumbs img { width: 56px; height: 44px; }
  .news-form { flex-direction: column; align-items: center; }
  .news-form input { width: 100%; }
  .news-form .btn { width: auto; min-width: 170px; }
  .btn-block { width: min(100%, 320px); margin-inline: auto; }
  .form-row, .contact-grid { grid-template-columns: 1fr; }
  .contact-panel { padding: 28px 22px; }
  .contact-page { padding-bottom: 46px; }
  .about-text { padding: 48px 28px; }
  .about-img,
  .about-img img { min-height: 520px; }
  .certifications { padding: 54px 0 64px; }
  .cert-heading { margin-bottom: 28px; }
  .cert-heading p:not(.section-label) { font-size: 1rem; }
  .cert-grid { grid-template-columns: 1fr; }
  .cert-card div { padding: 22px; }
  .beauty-page { padding-top: 24px; }
  .beauty-grid { gap: 30px; }
  .beauty-card { padding: 18px; }
  .booking-cta { padding: 26px 22px 58px; }
  .service-hero { min-height: 250px; }
  .directions-section { padding: 0 22px 56px; }
  .map-card { grid-template-columns: 1fr; padding: 22px; }
  .map-embed { min-height: 280px; }
  .faq-categories { grid-template-columns: 1fr; }
  .faq-category,
  .faq-category:nth-child(3) { grid-column: auto; max-width: none; padding: 24px 20px; }
  .faq-category { width: 100%; overflow: hidden; }
  .faq-q { display: block; white-space: normal; overflow-wrap: anywhere; line-height: 1.45; padding-right: 26px; }
  .footer-nav { gap: 12px 18px; margin-bottom: 22px; }
  .footer-nav a { font-size: .68rem; }
  .summer-card h2, .summer-item, .summer-item p { text-align: center; }
  .specials { padding: 20px 22px 48px; }
  .cookie { left: 22px; width: auto; }
}
