/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {
  --ink: #494542;
  --muted: #77736f;

  --paper: #f7f6f3;
  --paper-strong: #eae9e4;
  --white: #fffdfb;

  --accent: #aeb7a7;
  --accent-dark: #494542;
  --beige: #dcd0c0;
  --grey: #c3c3c3;

  --line: rgba(73, 69, 66, 0.16);
  --shadow: 0 22px 60px rgba(73, 69, 66, 0.10);

  --radius: 22px;

  --heading: Aptos, "Segoe UI", Arial, sans-serif;
  --body: Inter, Aptos, "Segoe UI", Arial, sans-serif;

  --container: min(1160px, calc(100% - 40px));
}


/* =========================================================
   RESET / BASE
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
}

body.dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

p {
  margin: 0 0 18px;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--heading);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 5.4rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}


/* =========================================================
   ACCESSIBILITY / UTILITIES
   ========================================================= */

.skip-link {
  position: fixed;
  top: -80px;
  left: 12px;
  z-index: 1000;

  padding: 10px 14px;

  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  top: 12px;
}

.hidden {
  display: none !important;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 94px 0;
}

.section--soft {
  background: var(--paper-strong);
}

.section--white {
  background: var(--white);
}

.eyebrow {
  margin: 0 0 14px;

  color: var(--accent-dark);

  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

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

.section-heading p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  border-bottom: 1px solid var(--line);

  background: rgba(247, 246, 243, 0.92);
  backdrop-filter: blur(15px);
}

.nav {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  flex: 0 0 auto;

  display: flex;
  align-items: center;

  text-decoration: none;
}

.logo img {
  width: auto;
  height: 50px;
  max-width: 170px;

  object-fit: contain;
}

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

.nav-links a:not(.button) {
  color: var(--muted);

  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.menu-button,
.slider-arrow,
.modal-close {
  width: 48px;
  height: 48px;

  place-items: center;

  border: 1px solid var(--line);
  border-radius: 50%;

  color: var(--ink);
  background: var(--white);

  cursor: pointer;
}

.menu-button {
  display: none;
}

.slider-arrow,
.modal-close {
  display: inline-grid;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  min-height: 48px;
  padding: 12px 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  border: 1px solid var(--accent-dark);
  border-radius: 999px;

  color: var(--white);
  background: var(--accent-dark);

  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;

  cursor: pointer;

  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);

  background: var(--accent);
  border-color: var(--accent);
}

.button--outline {
  color: var(--accent-dark);
  background: transparent;
  border-color: var(--accent-dark);
}

.button--outline:hover {
  color: var(--white);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button--light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--full {
  width: 100%;
}

.button[disabled] {
  opacity: 0.6;
  pointer-events: none;
}

.button:focus-visible,
.slider-arrow:focus-visible,
.modal-close:focus-visible,
.menu-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(174, 183, 167, 0.55);
  outline-offset: 3px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  padding: 58px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.hero-copy {
  padding: 36px 0;
}

.hero-copy .lead {
  max-width: 660px;
}

.hero-actions,
.page-hero-actions {
  margin-top: 32px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-photo {
  min-height: 650px;

  overflow: hidden;

  border-radius: 34px 34px 160px 34px;

  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 650px;

  object-fit: cover;
}


/* =========================================================
   TRUST BAR
   ========================================================= */

.trust-wrap {
  padding-top: 22px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  overflow: hidden;

  color: var(--white);
  background: var(--ink);

  border-radius: var(--radius);

  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 118px;
  padding: 25px 28px;

  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-value {
  display: block;
  margin-bottom: 3px;

  font-family: var(--heading);
  font-size: 1.75rem;
  font-weight: 720;
}

.trust-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.trust-item--experience {
  color: var(--ink);
  background: var(--beige);
}

.trust-item--experience .trust-label {
  color: rgba(40, 34, 31, 0.72);
}


/* =========================================================
   GENERIC LAYOUT
   ========================================================= */

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.split-image {
  height: 460px;

  overflow: hidden;

  border-radius: 120px 28px 28px 28px;

  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.bullet-list {
  margin: 26px 0 30px;
  padding: 0;

  list-style: none;
}

.bullet-list li {
  position: relative;

  margin: 11px 0;
  padding-left: 28px;
}

.bullet-list li::before {
  content: "";

  position: absolute;
  top: 0.62em;
  left: 0;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--accent);
}


/* =========================================================
   BRWI — DOBÓR USŁUGI
   ========================================================= */

.brow-choice-heading {
  margin-bottom: 48px;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
}

.brow-choice-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.brow-choice-heading .lead {
  max-width: 520px;
  margin-bottom: 8px;
}

.brow-choice-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brow-choice-item {
  min-width: 0;
  min-height: 390px;
  padding: 32px 28px 28px;

  display: flex;
  flex-direction: column;

  border-right: 1px solid var(--line);
}

.brow-choice-item:first-child {
  border-left: 1px solid var(--line);
}

.brow-choice-number {
  display: block;
  margin-bottom: 50px;

  color: var(--muted);
  font-size: 0.72rem;
}

.brow-choice-item .small-title {
  min-height: 46px;
  margin-bottom: 24px;
}

.brow-choice-item h3 {
  margin-bottom: 14px;
}

.brow-choice-item > p:not(.small-title) {
  margin-bottom: 24px;
  color: var(--muted);
}

.brow-choice-link {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 4px;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  border-bottom: 1px solid currentColor;

  color: var(--ink);

  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}


/* =========================================================
   EFEKTY
   ========================================================= */

.effects-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.effects-collage {
  height: 470px;

  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.effects-photo {
  margin: 0;

  overflow: hidden;

  border-radius: 18px;
}

.effects-photo--main {
  grid-row: 1 / 3;

  border-radius: 24px 24px 80px 24px;
}

.effects-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.effects-copy {
  max-width: 500px;
}

.effects-copy h2 {
  margin-bottom: 24px;
}


/* =========================================================
   RZĘSY
   ========================================================= */

.lashes-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.lashes-method {
  min-width: 0;
}

.lashes-method-image {
  height: 390px;
  margin: 0 0 26px;

  overflow: hidden;

  border-radius: 24px;

  box-shadow: var(--shadow);
}

.lashes-method:first-child .lashes-method-image {
  border-radius: 80px 24px 24px 24px;
}

.lashes-method:last-child .lashes-method-image {
  border-radius: 24px 24px 80px 24px;
}

.lashes-method-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.lashes-method-copy {
  max-width: 520px;
}

.lashes-method-copy .small-title {
  margin-bottom: 10px;

  color: var(--accent-dark);

  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lashes-method-copy h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.lashes-method-copy > p:not(.small-title) {
  color: var(--muted);
}

.lashes-method-copy .button {
  margin-top: 10px;
}


/* =========================================================
   PAKIET
   ========================================================= */

.package-strip {
  padding: 62px 0;

  background: var(--beige);
}

.package-strip-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}

.package-strip-inner h2 {
  margin-bottom: 0;
}

.package-strip-inner > p {
  max-width: 520px;
  margin: 0;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-header {
  margin-bottom: 34px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
}

.reviews-header .section-heading {
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;

  overflow-x: auto;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);

  min-height: 280px;
  padding: 30px;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  scroll-snap-align: start;
}

.review-stars {
  margin-bottom: 22px;

  color: var(--accent-dark);
  letter-spacing: 0.18em;
}

.review-text {
  color: var(--muted);
  font-size: 1.02rem;
}

.review-author {
  margin-top: auto;
  margin-bottom: 0;

  font-weight: 750;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 24px;

  border: 1px solid var(--line);
  border-radius: 16px;

  background: var(--white);
}

summary {
  cursor: pointer;
  font-weight: 730;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}


/* =========================================================
   MAP
   ========================================================= */

.map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;

  overflow: hidden;

  border-radius: 22px;

  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 100%;

  display: block;

  border: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 68px 0 30px;

  color: rgba(255, 255, 255, 0.75);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  gap: 44px;
}

.footer-grid--simple {
  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(220px, 0.6fr);
}

.footer-brand p {
  max-width: 430px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo img {
  width: 150px;
  height: auto;
}

.footer-title {
  margin-bottom: 16px;

  color: var(--white);

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-booksy {
  margin-top: 22px;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 22px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);

  font-size: 0.82rem;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}


/* =========================================================
   LEAD MODAL / FORM
   ========================================================= */

.modal {
  width: min(650px, calc(100% - 28px));
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);

  padding: 0;

  overflow: auto;

  border: 0;
  border-radius: 26px;

  color: var(--ink);
  background: var(--white);

  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.modal::backdrop {
  background: rgba(30, 24, 21, 0.72);
  backdrop-filter: blur(6px);
}

.modal-inner {
  padding: 38px;
}

.modal-header {
  margin-bottom: 25px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.modal-header h2 {
  margin: 0 0 8px;
  font-size: 2rem;
}

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

.modal-close {
  flex: 0 0 auto;
  font-size: 1.35rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

#lead-form label {
  font-size: 0.88rem;
  font-weight: 720;
}

#lead-form input,
#lead-form select,
#lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;

  border: 1px solid var(--line);
  border-radius: 12px;

  color: var(--ink);
  background: var(--white);
}

#lead-form textarea {
  min-height: 100px;
  resize: vertical;
}

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;

  color: var(--muted);

  font-size: 0.8rem;
  font-weight: 400;
}

#lead-form .checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;

  font-size: 0.9rem;
}

.form-status.is-error {
  color: #a52c2c;
}

.form-status.is-success {
  color: #176b3a;
}

.success-panel {
  padding: 40px 20px;
  text-align: center;
}

.success-panel h2 {
  margin-bottom: 12px;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--white);
  background: #2f7d50;

  font-size: 1.8rem;
}


/* =========================================================
   BROW QUIZ PROMO
   ========================================================= */

.quiz-promo {
  max-width: 760px;
  margin-inline: auto;

  text-align: center;
}

.quiz-promo .lead {
  max-width: 650px;
  margin-inline: auto;
}

.quiz-promo .button {
  margin-top: 14px;
}


/* =========================================================
   BROW QUIZ MODAL
   ========================================================= */

.quiz-modal {
  width: min(680px, calc(100% - 32px));
}

.quiz-modal .modal-header {
  margin-bottom: 28px;
}

.quiz-modal .modal-header h2 {
  max-width: 520px;
}

.quiz-progress-wrap {
  margin-bottom: 30px;
}

.quiz-progress-info {
  margin-bottom: 8px;

  color: var(--muted);

  font-size: 0.8rem;
  font-weight: 700;
}

.quiz-progress {
  width: 100%;
  height: 4px;

  overflow: hidden;

  border-radius: 999px;

  background: var(--paper-strong);
}

#quiz-progress-bar {
  width: 33.333%;
  height: 100%;

  display: block;

  border-radius: inherit;

  background: var(--accent);

  transition: width 0.2s ease;
}


/* Quiz steps */

#brow-quiz .quiz-step {
  min-width: 0;
  margin: 0;
  padding: 0;

  display: none;

  border: 0;
}

#brow-quiz .quiz-step.is-active {
  display: grid;
  gap: 10px;
}

#brow-quiz .quiz-step legend {
  width: 100%;
  margin: 0 0 22px;
  padding: 0;

  font-family: var(--heading);
  font-size: 1.55rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.025em;
}


/* Quiz answers */

#brow-quiz .quiz-option {
  position: relative;

  display: block;

  cursor: pointer;
}

#brow-quiz .quiz-option input[type="radio"] {
  position: absolute;

  width: 1px;
  height: 1px;
  min-height: 0;

  margin: 0;
  padding: 0;

  opacity: 0;

  pointer-events: none;
}

#brow-quiz .quiz-option > span {
  position: relative;

  min-height: 56px;
  padding: 14px 48px 14px 18px;

  display: flex;
  align-items: center;

  border: 1px solid var(--line);
  border-radius: 14px;

  color: var(--ink);
  background: var(--white);

  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;

  transition:
    border-color 0.16s ease,
    background 0.16s ease;
}

#brow-quiz .quiz-option > span::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 18px;

  width: 18px;
  height: 18px;

  border: 1px solid var(--grey);
  border-radius: 50%;

  transform: translateY(-50%);
}

#brow-quiz .quiz-option:hover > span {
  border-color: var(--accent);
}

#brow-quiz .quiz-option input[type="radio"]:checked + span {
  border-color: var(--accent);
  background: rgba(174, 183, 167, 0.15);
}

#brow-quiz .quiz-option input[type="radio"]:checked + span::after {
  border: 5px solid var(--accent-dark);
}

#brow-quiz .quiz-option input[type="radio"]:focus-visible + span {
  outline: 3px solid rgba(174, 183, 167, 0.55);
  outline-offset: 2px;
}


/* Quiz navigation */

.quiz-navigation {
  margin-top: 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quiz-navigation .quiz-next {
  margin-left: auto;
}

.quiz-navigation button[disabled] {
  opacity: 0.4;
  pointer-events: none;
  transform: none;
}


/* Quiz result */

.quiz-result {
  padding-top: 4px;
}

.quiz-result-label {
  margin-bottom: 4px;
  color: var(--muted);
}

.quiz-result h2 {
  margin-bottom: 18px;
}

.quiz-result-description {
  max-width: 580px;

  color: var(--muted);
  font-size: 1.05rem;
}

.quiz-result-note {
  max-width: 580px;
  margin: 26px 0;
  padding-top: 18px;

  border-top: 1px solid var(--line);

  color: var(--muted);
  font-size: 0.82rem;
}

.quiz-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* =========================================================
   MOBILE FLOATING CTA
   ========================================================= */

.mobile-booking-cta {
  display: none;
}


/* =========================================================
   SHARED INNER-PAGE COMPONENTS
   Keep until rzesy.html / makijaz-permanentny.html are audited
   ========================================================= */

.page-hero {
  padding: 82px 0 70px;
}

.page-hero .lead {
  max-width: 720px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-number {
  width: 42px;
  height: 42px;
  margin-bottom: 30px;

  display: inline-grid;
  place-items: center;

  border-radius: 50%;

  color: var(--white);
  background: var(--accent-dark);

  font-weight: 800;
}

.pmu-banner {
  padding: 50px;

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;

  border-radius: 30px;

  color: var(--white);
  background: var(--accent-dark);
}

.pmu-banner h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.pmu-banner p {
  max-width: 700px;
  margin-bottom: 0;

  color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

  /* Navigation */

  .menu-button {
    display: inline-grid;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;

    padding: 22px;

    display: none;
    align-items: stretch;
    flex-direction: column;

    border: 1px solid var(--line);
    border-radius: 18px;

    background: var(--paper);

    box-shadow: var(--shadow);
  }

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

  .nav-links .button {
    width: 100%;
  }


  /* Hero / generic layouts */

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 480px;

    border-radius: 30px 30px 100px 30px;
  }

  .hero-photo img {
    min-height: 480px;
    object-position: center 35%;
  }


  /* Trust */

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }


  /* Brwi */

  .brow-choice-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .brow-choice-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .brow-choice-item:nth-child(3),
  .brow-choice-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }


  /* Effects */

  .effects-layout {
    grid-template-columns: 1fr;
  }

  .effects-copy {
    max-width: 700px;
  }


  /* Package */

  .package-strip-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .package-strip-inner .button {
    width: fit-content;
  }


  /* Reviews */

  .review-card {
    flex-basis: calc((100% - 20px) / 2);
  }


  /* Footer */

  .footer-grid--simple {
    grid-template-columns: 1fr 1fr;
  }


  /* Shared inner pages */

  .pmu-banner {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  :root {
    --container: min(calc(100% - 28px), 1160px);
  }


  /* Global */

  .section {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

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


  /* Header */

  .logo img {
    height: 36px;
    max-width: 145px;
  }


  /* Hero */

  .hero {
    padding-top: 25px;
  }

  .hero-copy {
    padding-bottom: 8px;
  }

  .hero-actions,
  .page-hero-actions {
    display: grid;
  }

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

  .hero-photo,
  .hero-photo img {
    min-height: 430px;
  }


  /* Trust */

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 100px;

    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }


  /* Brwi — swipe */

  .brow-choice-heading {
    margin-bottom: 30px;
  }

  .brow-choice-track {
    display: flex;
    gap: 12px;

    margin-right: -14px;
    padding-right: 14px;

    overflow-x: auto;

    border: 0;

    overscroll-behavior-inline: contain;

    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .brow-choice-track::-webkit-scrollbar {
    display: none;
  }

  .brow-choice-item {
    flex: 0 0 86%;

    min-height: 350px;
    padding: 26px 22px;

    border: 1px solid var(--line);

    scroll-snap-align: start;
  }

  .brow-choice-item:nth-child(3),
  .brow-choice-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .brow-choice-number {
    margin-bottom: 34px;
  }

  .brow-choice-item .small-title {
    min-height: 0;
  }


  /* Effects */

  .effects-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .effects-copy {
    grid-row: 1;
  }

  .effects-collage {
    height: auto;

    grid-row: 2;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 165px;

    gap: 8px;
  }

  .effects-photo--main {
    grid-column: 1 / 3;
    grid-row: 1;

    border-radius: 20px 20px 55px 20px;
  }

  .effects-photo--small {
    grid-row: 2;
  }


  /* Lashes */

  .lashes-methods {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lashes-method-image {
    height: auto;
    aspect-ratio: 3 / 2;
    margin-bottom: 22px;
  }

  .lashes-method:first-child .lashes-method-image,
  .lashes-method:last-child .lashes-method-image {
    border-radius: 20px 20px 55px 20px;
  }

  .lashes-method-copy {
    max-width: none;
  }

  .lashes-method-copy .button {
    width: 100%;
  }


  /* Package */

  .package-strip {
    padding: 48px 0;
  }

  .package-strip-inner .button {
    width: 100%;
  }


  /* Reviews */

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

  .review-card {
    flex-basis: 88%;
  }


  /* Map */

  .map-embed {
    aspect-ratio: 1 / 1;

    border-radius: 18px;
  }


  /* Footer */

  .footer-grid--simple {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-logo img {
    width: 125px;
  }

  .footer-bottom {
    flex-direction: column;
  }


  /* Lead form */

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .modal-inner {
    padding: 26px 20px;
  }


  /* Quiz promo */

  .quiz-promo .button {
    width: 100%;
  }


  /* Quiz modal */

  .quiz-modal {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .quiz-modal .modal-header {
    margin-bottom: 24px;
    gap: 12px;
  }

  .quiz-modal .modal-header h2 {
    font-size: 1.65rem;
  }

  .quiz-progress-wrap {
    margin-bottom: 24px;
  }

  #brow-quiz .quiz-step legend {
    margin-bottom: 18px;
    font-size: 1.25rem;
  }

  #brow-quiz .quiz-option > span {
    min-height: 54px;
    padding: 12px 44px 12px 14px;

    font-size: 0.86rem;
  }

  #brow-quiz .quiz-option > span::after {
    right: 14px;
  }

  .quiz-navigation {
    margin-top: 22px;
  }

  .quiz-navigation .button {
    flex: 1;
  }

  .quiz-result-actions {
    display: grid;
  }

  .quiz-result-actions .button {
    width: 100%;
  }


  /* Floating booking CTA */

  .mobile-booking-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 45;

    min-height: 48px;
    padding: 12px 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--ink);
    border-radius: 999px;

    color: var(--white);
    background: var(--ink);

    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;

    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.9),
      0 12px 30px rgba(73, 69, 66, 0.22);
  }


  /* Shared inner pages */

  .pmu-banner {
    padding: 32px 24px;
  }

  .pmu-banner .button {
    width: 100%;
  }

  .split-image {
    border-radius: 70px 22px 22px 22px;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
