/* =====================================================================
   The Patiala Cuts — static HTML/CSS rebuild of the original Canva site.

   The page is authored on a 1280px-wide canvas and scales proportionally
   with the viewport: one design pixel == var(--u), derived from container
   query units so it stays exact regardless of scrollbar width.
   ===================================================================== */

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

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  overflow-x: hidden;
}

img { border: 0; }

/* ------------------------------------------------------------- top nav */
.header {
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  padding: 15px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: 'Antonio', 'PC Display', sans-serif;
}

.menu { display: flex; gap: 40px; align-items: center; }

.menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
}

.menu a:hover { transform: translateY(-5px); color: #ff6f61; }

.logo { margin: 0 50px; }
.logo img { height: 60px; transition: transform 0.3s ease; display: block; }
.logo img:hover { transform: scale(1.1); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  width: 32px;
  height: 24px;
  flex: none;
}
.hamburger div {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}
.hamburger:hover div { background-color: #ff6f61; }

#mobile-menu {
  display: none;
  flex-direction: column;
  background-color: black;
  position: fixed;
  top: 71px;
  left: 0;
  width: 100%;
  padding: 14px 0;
  text-align: center;
  gap: 16px;
  z-index: 999;
  font-family: 'Antonio', 'PC Display', sans-serif;
}
#mobile-menu.active { display: flex; }

@media (max-width: 1024px) {
  /* border-box here: the desktop header is deliberately content-box to keep the
     original's nav centring, but that overflows the viewport on a phone and
     pushes the hamburger off the right edge. */
  .header {
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
  }
  .header > .menu { display: none; }
  .logo { margin: 0; }
  .logo img { height: 56px; }
  .hamburger { display: flex; }
  #mobile-menu { top: 80px; }
}

/* --------------------------------------------------- proportional stage */
.stage {
  container-type: inline-size;
  width: 100%;
  position: relative;
}

.sec {
  /* One design pixel. Grows with the viewport, then locks at the original's
     1366px canvas (1366/1280 = 1.0671875) exactly as the real site does. */
  --u: min(0.078125cqi, 1.0671875px);
  --canvas: calc(1280 * var(--u));
  --gutter: max(0px, calc((100% - var(--canvas)) / 2));
  position: relative;
  width: 100%;
  overflow: hidden;
  scroll-margin-top: 90px;
}

.sec + .sec { margin-top: calc(-1 * var(--u)); }

/* absolutely positioned artwork and panels */
.ph { position: absolute; display: block; }
.ph > img { width: 100%; height: 100%; object-fit: cover; display: block; }
img.ph { object-fit: fill; }

/* absolutely positioned text, flex-centred inside its measured box */
.tx {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  font-style: normal;
  font-synthesis: none;
}
.tx > a, .tx a { color: inherit; text-decoration: none; }
.tx a:hover { text-decoration: underline; }

/* the gallery title sits over the tall centre photo, as in the original */
.gl-head { z-index: 1; }

/* ----------------------------------------------------- call-us popup --- */
.ab-btn { background: none; padding: 0; font: inherit; }

.pc-modal[hidden] { display: none; }
.pc-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pc-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(2px);
  animation: pc-fade 0.25s ease both;
}
.pc-modal .modal-card {
  position: relative;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #111;
  border: 1px solid #2c2c2c;
  border-radius: 18px;
  padding: 30px 26px 26px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  animation: pc-pop 0.28s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes pc-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pc-pop {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.pc-modal h2 {
  font-family: 'PC Display', 'Antonio', sans-serif;
  font-size: 34px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 6px;
}
.pc-modal .modal-sub {
  font-family: 'PC Sans', sans-serif;
  color: #b9b9b9;
  margin: 0 0 22px;
  font-size: 15px;
}

.pc-modal .branch-list { display: grid; gap: 12px; }
.pc-modal .branch {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: #191919;
  border: 1px solid #2c2c2c;
  border-radius: 13px;
  padding: 14px 16px;
  transition: border-color 0.2s, background 0.2s;
}
.pc-modal .branch:hover { border-color: #ffbe0d; background: #1f1f1f; }
.pc-modal .branch-info { flex: 1; min-width: 0; font-family: 'PC Sans', sans-serif; }
.pc-modal .branch-name {
  font-family: 'PC Display', 'Antonio', sans-serif;
  font-size: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffbe0d;
}
.pc-modal .branch-addr { font-size: 13px; color: #bdbdbd; line-height: 1.45; margin-top: 2px; }
.pc-modal .branch-call {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #000;
  font-family: 'PC Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 11px 15px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.pc-modal .branch-call:hover { background: #ffbe0d; transform: translateY(-1px); }

.pc-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #9a9a9a;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.pc-modal .modal-close:hover { background: #262626; color: #fff; }

@media (max-width: 520px) {
  .pc-modal .branch { flex-direction: column; align-items: stretch; gap: 10px; }
  .pc-modal .branch-call { justify-content: center; }
  .pc-modal h2 { font-size: 27px; }
}

/* ------------------------------------------------- scroll reveal ------- */
/* Matches the original's behaviour: each section's contents fade up as it
   scrolls into view. Only applied once JS marks the document, so the page
   is fully readable if scripting is unavailable. */
.js-anim .rv {
  opacity: 0;
  transform: translateY(30px);
}
.js-anim .sec.in .rv {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--d, 0s);
}

/* the opening statement gets a longer, more deliberate entrance */
.js-anim .s1 .rv { transform: translateY(42px); }
.js-anim .s1.in .rv {
  transition-duration: 0.95s, 0.95s;
}

@media (prefers-reduced-motion: reduce) {
  .js-anim .rv,
  .js-anim .sec.in .rv { opacity: 1; transform: none; transition: none; }
}

.ab-btn, .sv-btn { cursor: pointer; transition: background 0.25s ease; }
.ab-btn:hover { background: rgba(178, 105, 84, 0.15); }
.sv-btn:hover { background: #b57d0a; }
.fo-ico { border: none; background: none; padding: 0; cursor: pointer; }
.fo-ico, .ft-logo { transition: opacity 0.25s ease; }
.fo-ico:hover, .ft-logo:hover { opacity: 0.8; }

/* --------------------------------------------- generated page layout */

.hero-shade {
  left: 0;
  top: calc(-141.54 * var(--u));
  width: 100%;
  height: calc(852.8 * var(--u));
  opacity: 0.36;
}

.hero-logo {
  left: calc(var(--gutter) + calc(517.58 * var(--u)));
  top: calc(83.32 * var(--u));
  width: calc(261.48 * var(--u));
  height: calc(261.48 * var(--u));
}

.hero-l1 {
  left: calc(var(--gutter) + calc(355.96 * var(--u)));
  top: calc(262.25 * var(--u));
  width: calc(568.08 * var(--u));
  height: calc(101.2 * var(--u));
  font-family: 'PC Display';
  font-size: calc(69.051 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(69.341 * var(--u));
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-l2 {
  left: calc(var(--gutter) + calc(381.64 * var(--u)));
  top: calc(331.59 * var(--u));
  width: calc(516.71 * var(--u));
  height: calc(101.2 * var(--u));
  font-family: 'PC Display';
  font-size: calc(69.051 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(69.341 * var(--u));
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.s1 {
  height: calc(613.76 * var(--u));
  background: #000;
}

.ab-photo {
  left: 0;
  top: calc(-147.96 * var(--u));
  width: 100%;
  height: calc(854.4 * var(--u));
}

.ab-panel {
  left: calc(var(--gutter) + calc(725.76 * var(--u)));
  top: calc(0 * var(--u));
  width: calc(554.24 * var(--u));
  height: calc(559.41 * var(--u));
  background: #f5f2ea;
}

.ab-crest {
  left: calc(var(--gutter) + calc(854.42 * var(--u)));
  top: calc(-55.23 * var(--u));
  width: calc(282.69 * var(--u));
  height: calc(282.69 * var(--u));
}

.ab-head {
  left: calc(var(--gutter) + calc(859.2 * var(--u)));
  top: calc(190.54 * var(--u));
  width: calc(296.77 * var(--u));
  height: calc(33.73 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(24.074 * var(--u));
  font-weight: 700;
  color: #000;
  line-height: calc(23.426 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.ab-rule {
  left: calc(var(--gutter) + calc(839.42 * var(--u)));
  top: calc(220.89 * var(--u));
  width: calc(320.85 * var(--u));
  height: calc(13.63 * var(--u));
}

.ab-p1 {
  left: calc(var(--gutter) + calc(756.1 * var(--u)));
  top: calc(250.57 * var(--u));
  width: calc(488.62 * var(--u));
  height: calc(85.27 * var(--u));
  font-family: 'PC Body';
  font-size: calc(14.079 * var(--u));
  font-weight: 400;
  color: #000;
  line-height: calc(16.867 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.ab-p2 {
  left: calc(var(--gutter) + calc(766.43 * var(--u)));
  top: calc(334.9 * var(--u));
  width: calc(467.94 * var(--u));
  height: calc(85.27 * var(--u));
  font-family: 'PC Body';
  font-size: calc(14.079 * var(--u));
  font-weight: 400;
  color: #000;
  line-height: calc(16.867 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.ab-p3 {
  left: calc(var(--gutter) + calc(761.54 * var(--u)));
  top: calc(419.23 * var(--u));
  width: calc(477.72 * var(--u));
  height: calc(34.67 * var(--u));
  font-family: 'PC Body';
  font-size: calc(14.079 * var(--u));
  font-weight: 400;
  color: #000;
  line-height: calc(16.867 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.ab-btn {
  left: calc(var(--gutter) + calc(906.18 * var(--u)));
  top: calc(483.55 * var(--u));
  width: calc(179.16 * var(--u));
  height: calc(54.1 * var(--u));
  border: calc(2.81 * var(--u)) solid #b26954;
}

.ab-btn-t {
  left: calc(var(--gutter) + calc(959.39 * var(--u)));
  top: calc(495.14 * var(--u));
  width: calc(67.74 * var(--u));
  height: calc(26.24 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(18.741 * var(--u));
  font-weight: 400;
  color: #382d26;
  line-height: calc(25.3 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.ab-btn-t {
  pointer-events: none;
}

.s2 {
  height: calc(558.48 * var(--u));
  background: #000;
}

.sv-head {
  left: calc(var(--gutter) + calc(469.62 * var(--u)));
  top: calc(72.66 * var(--u));
  width: calc(356.53 * var(--u));
  height: calc(90.76 * var(--u));
  font-family: 'PC Display';
  font-size: calc(61.93 * var(--u));
  font-weight: 400;
  color: #000;
  line-height: calc(62.19 * var(--u));
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.sv-sub {
  left: calc(var(--gutter) + calc(343.96 * var(--u)));
  top: calc(161.4 * var(--u));
  width: calc(607.84 * var(--u));
  height: calc(35.61 * var(--u));
  font-family: 'PC Body';
  font-size: calc(13.743 * var(--u));
  font-weight: 400;
  color: #000;
  line-height: calc(18.741 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.sv-ico-hair {
  left: calc(var(--gutter) + calc(245.74 * var(--u)));
  top: calc(280.13 * var(--u));
  width: calc(90.72 * var(--u));
  height: calc(73.14 * var(--u));
}

.sv-t-hair {
  left: calc(var(--gutter) + calc(214.43 * var(--u)));
  top: calc(359.95 * var(--u));
  width: calc(153.32 * var(--u));
  height: calc(24.36 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(17.491 * var(--u));
  font-weight: 800;
  color: #000;
  line-height: calc(24.363 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.sv-d-hair {
  left: calc(var(--gutter) + calc(210.58 * var(--u)));
  top: calc(389.07 * var(--u));
  width: calc(161.04 * var(--u));
  height: calc(56.69 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(13.743 * var(--u));
  font-weight: 400;
  color: #000;
  line-height: calc(18.741 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.sv-ico-beard {
  left: calc(var(--gutter) + calc(478.74 * var(--u)));
  top: calc(277.07 * var(--u));
  width: calc(89.69 * var(--u));
  height: calc(79.26 * var(--u));
}

.sv-t-beard {
  left: calc(var(--gutter) + calc(496.52 * var(--u)));
  top: calc(359.41 * var(--u));
  width: calc(54.11 * var(--u));
  height: calc(24.36 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(17.491 * var(--u));
  font-weight: 800;
  color: #000;
  line-height: calc(24.363 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.sv-d-beard {
  left: calc(var(--gutter) + calc(441.73 * var(--u)));
  top: calc(388.52 * var(--u));
  width: calc(163.68 * var(--u));
  height: calc(56.69 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(13.743 * var(--u));
  font-weight: 400;
  color: #000;
  line-height: calc(18.741 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.sv-ico-makeup {
  left: calc(var(--gutter) + calc(714.05 * var(--u)));
  top: calc(266.55 * var(--u));
  width: calc(84.73 * var(--u));
  height: calc(92.73 * var(--u));
}

.sv-t-makeup {
  left: calc(var(--gutter) + calc(719.3 * var(--u)));
  top: calc(361.8 * var(--u));
  width: calc(74.23 * var(--u));
  height: calc(24.36 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(17.491 * var(--u));
  font-weight: 800;
  color: #000;
  line-height: calc(24.363 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.sv-d-makeup {
  left: calc(var(--gutter) + calc(682.55 * var(--u)));
  top: calc(390.91 * var(--u));
  width: calc(147.74 * var(--u));
  height: calc(75.43 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(13.743 * var(--u));
  font-weight: 400;
  color: #000;
  line-height: calc(18.741 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.sv-ico-treat {
  left: calc(var(--gutter) + calc(942.04 * var(--u)));
  top: calc(263.6 * var(--u));
  width: calc(93.72 * var(--u));
  height: calc(93.72 * var(--u));
}

.sv-t-treat {
  left: calc(var(--gutter) + calc(941.96 * var(--u)));
  top: calc(364.01 * var(--u));
  width: calc(97.21 * var(--u));
  height: calc(24.36 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(17.491 * var(--u));
  font-weight: 800;
  color: #000;
  line-height: calc(24.363 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.sv-d-treat {
  left: calc(var(--gutter) + calc(912.18 * var(--u)));
  top: calc(393.12 * var(--u));
  width: calc(153.44 * var(--u));
  height: calc(56.69 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(13.743 * var(--u));
  font-weight: 400;
  color: #000;
  line-height: calc(18.741 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.sv-btn {
  left: calc(var(--gutter) + calc(530 * var(--u)));
  top: calc(535.25 * var(--u));
  width: calc(220.01 * var(--u));
  height: calc(54.1 * var(--u));
  background: #cb8f0d;
}

.sv-btn-t {
  left: calc(var(--gutter) + calc(559.58 * var(--u)));
  top: calc(546.84 * var(--u));
  width: calc(160.83 * var(--u));
  height: calc(26.24 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(18.741 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(25.3 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.sv-btn-t {
  pointer-events: none;
}

.s3 {
  height: calc(619.38 * var(--u));
  background: #fff;
}

.na-photo {
  left: calc(var(--gutter) + calc(778.05 * var(--u)));
  top: calc(13.79 * var(--u));
  width: calc(391.01 * var(--u));
  height: calc(391.01 * var(--u));
}

.na-ico {
  left: calc(var(--gutter) + calc(96.13 * var(--u)));
  top: calc(119.8 * var(--u));
  width: calc(53.45 * var(--u));
  height: calc(53.66 * var(--u));
}

.na-head {
  left: calc(var(--gutter) + calc(161.91 * var(--u)));
  top: calc(101.63 * var(--u));
  width: calc(572.01 * var(--u));
  height: calc(90.53 * var(--u));
  font-family: 'PC Display';
  font-size: calc(61.772 * var(--u));
  font-weight: 400;
  color: #860000;
  line-height: calc(62.031 * var(--u));
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.na-l1 {
  left: calc(var(--gutter) + calc(243.63 * var(--u)));
  top: calc(186.58 * var(--u));
  width: calc(394.54 * var(--u));
  height: calc(45.41 * var(--u));
  font-family: 'PC Display';
  font-size: calc(30.988 * var(--u));
  font-weight: 400;
  color: #000;
  line-height: calc(30.001 * var(--u));
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.na-l2 {
  left: calc(var(--gutter) + calc(316.08 * var(--u)));
  top: calc(216.58 * var(--u));
  width: calc(249.65 * var(--u));
  height: calc(45.41 * var(--u));
  font-family: 'PC Display';
  font-size: calc(30.988 * var(--u));
  font-weight: 400;
  color: #000;
  line-height: calc(30.001 * var(--u));
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.s4 {
  height: calc(404.8 * var(--u));
  background: #ffbe0d;
}

.rv-photo {
  left: calc(var(--gutter) + calc(155.08 * var(--u)));
  top: calc(28.37 * var(--u));
  width: calc(472.43 * var(--u));
  height: calc(709.07 * var(--u));
}

.rv-head {
  left: calc(var(--gutter) + calc(691.72 * var(--u)));
  top: calc(73.17 * var(--u));
  width: calc(433.2 * var(--u));
  height: calc(90.76 * var(--u));
  font-family: 'PC Display';
  font-size: calc(61.93 * var(--u));
  font-weight: 400;
  color: #ffce00;
  line-height: calc(62.19 * var(--u));
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.rv-sub {
  left: calc(var(--gutter) + calc(718.27 * var(--u)));
  top: calc(153.46 * var(--u));
  width: calc(357.8 * var(--u));
  height: calc(37.95 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(13.743 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(18.741 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.rv-n1 {
  left: calc(var(--gutter) + calc(836.41 * var(--u)));
  top: calc(222.95 * var(--u));
  width: calc(143.81 * var(--u));
  height: calc(24.36 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(17.491 * var(--u));
  font-weight: 800;
  color: #fff;
  line-height: calc(24.363 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.rv-s1 {
  left: calc(var(--gutter) + calc(842.53 * var(--u)));
  top: calc(253.91 * var(--u));
  width: calc(131.59 * var(--u));
  height: calc(24.73 * var(--u));
}

.rv-q1 {
  left: calc(var(--gutter) + calc(720.37 * var(--u)));
  top: calc(286.78 * var(--u));
  width: calc(375.89 * var(--u));
  height: calc(94.21 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(13.743 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(18.741 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.rv-n2 {
  left: calc(var(--gutter) + calc(840.2 * var(--u)));
  top: calc(405.02 * var(--u));
  width: calc(152.71 * var(--u));
  height: calc(24.36 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(17.491 * var(--u));
  font-weight: 800;
  color: #fff;
  line-height: calc(24.363 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.rv-s2 {
  left: calc(var(--gutter) + calc(850.76 * var(--u)));
  top: calc(435.98 * var(--u));
  width: calc(131.59 * var(--u));
  height: calc(24.73 * var(--u));
}

.rv-q2 {
  left: calc(var(--gutter) + calc(731.21 * var(--u)));
  top: calc(468.85 * var(--u));
  width: calc(370.67 * var(--u));
  height: calc(56.69 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(13.743 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(18.741 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.rv-n3 {
  left: calc(var(--gutter) + calc(876.62 * var(--u)));
  top: calc(557.53 * var(--u));
  width: calc(79.86 * var(--u));
  height: calc(24.36 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(17.491 * var(--u));
  font-weight: 800;
  color: #fff;
  line-height: calc(24.363 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.rv-s3 {
  left: calc(var(--gutter) + calc(850.76 * var(--u)));
  top: calc(588.49 * var(--u));
  width: calc(131.59 * var(--u));
  height: calc(24.73 * var(--u));
}

.rv-q3 {
  left: calc(var(--gutter) + calc(734.08 * var(--u)));
  top: calc(621.36 * var(--u));
  width: calc(364.94 * var(--u));
  height: calc(37.95 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(13.743 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(18.741 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.s5 {
  height: calc(733.7 * var(--u));
  background: #000;
}

.gl-head {
  left: calc(var(--gutter) + calc(480.48 * var(--u)));
  top: calc(66.29 * var(--u));
  width: calc(295.41 * var(--u));
  height: calc(90.76 * var(--u));
  font-family: 'PC Display';
  font-size: calc(61.93 * var(--u));
  font-weight: 400;
  color: #000;
  line-height: calc(62.19 * var(--u));
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.gl-1 {
  left: calc(var(--gutter) + calc(34 * var(--u)));
  top: calc(161.52 * var(--u));
  width: calc(240 * var(--u));
  height: calc(419.82 * var(--u));
}

.gl-2 {
  left: calc(var(--gutter) + calc(277 * var(--u)));
  top: calc(161.52 * var(--u));
  width: calc(240 * var(--u));
  height: calc(419.82 * var(--u));
}

.gl-3 {
  left: calc(var(--gutter) + calc(520 * var(--u)));
  top: calc(161.52 * var(--u));
  width: calc(240 * var(--u));
  height: calc(419.82 * var(--u));
}

.gl-4 {
  left: calc(var(--gutter) + calc(763 * var(--u)));
  top: calc(161.52 * var(--u));
  width: calc(240 * var(--u));
  height: calc(419.82 * var(--u));
}

.gl-5 {
  left: calc(var(--gutter) + calc(1006 * var(--u)));
  top: calc(161.52 * var(--u));
  width: calc(240 * var(--u));
  height: calc(419.82 * var(--u));
}

.s6 {
  height: calc(649.37 * var(--u));
  background: #ebe7de;
}

.fo-t {
  left: calc(var(--gutter) + calc(516.63 * var(--u)));
  top: calc(30.82 * var(--u));
  width: calc(151.65 * var(--u));
  height: calc(42.58 * var(--u));
  font-family: 'PC Display';
  font-size: calc(28.81 * var(--u));
  font-weight: 400;
  color: #ebe7de;
  line-height: calc(39.402 * var(--u));
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.fo-ico {
  left: calc(var(--gutter) + calc(676 * var(--u)));
  top: calc(10.03 * var(--u));
  width: calc(78.12 * var(--u));
  height: calc(78.43 * var(--u));
}

.s7 {
  height: calc(100.26 * var(--u));
  background: #382d26;
}

.ct-logo {
  left: calc(var(--gutter) + calc(262.63 * var(--u)));
  top: calc(-75.09 * var(--u));
  width: calc(344.95 * var(--u));
  height: calc(344.95 * var(--u));
}

.ct-p1 {
  left: calc(var(--gutter) + calc(89.59 * var(--u)));
  top: calc(184.61 * var(--u));
  width: calc(691.02 * var(--u));
  height: calc(97.45 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(17.491 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(24.363 * var(--u));
  text-align: justify;
  justify-content: flex-start;
}

.ct-p2 {
  left: calc(var(--gutter) + calc(89.59 * var(--u)));
  top: calc(282.05 * var(--u));
  width: calc(691.02 * var(--u));
  height: calc(97.45 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(17.491 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(24.363 * var(--u));
  text-align: justify;
  justify-content: flex-start;
}

.ct-p3 {
  left: calc(var(--gutter) + calc(89.59 * var(--u)));
  top: calc(379.5 * var(--u));
  width: calc(691.02 * var(--u));
  height: calc(48.73 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(17.491 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(24.363 * var(--u));
  text-align: justify;
  justify-content: flex-start;
}

.ct-h {
  left: calc(var(--gutter) + calc(866.54 * var(--u)));
  top: calc(52.99 * var(--u));
  width: calc(147.67 * var(--u));
  height: calc(49.66 * var(--u));
  font-family: 'PC Display';
  font-size: calc(33.733 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(46.852 * var(--u));
  text-align: left;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-l-addr {
  left: calc(var(--gutter) + calc(866.54 * var(--u)));
  top: calc(117.57 * var(--u));
  width: calc(58.36 * var(--u));
  height: calc(25.77 * var(--u));
  font-family: 'PC Display';
  font-size: calc(17.783 * var(--u));
  font-weight: 400;
  color: #ffbe0d;
  line-height: calc(24.363 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-l-addr {
  text-decoration: underline;
}

.ct-b1 {
  left: calc(var(--gutter) + calc(868.5 * var(--u)));
  top: calc(155.2 * var(--u));
  width: calc(6.4 * var(--u));
  height: calc(6.4 * var(--u));
  background: #fff;
  border-radius: 50%;
}

.ct-b2 {
  left: calc(var(--gutter) + calc(868.5 * var(--u)));
  top: calc(184.25 * var(--u));
  width: calc(6.4 * var(--u));
  height: calc(6.4 * var(--u));
  background: #fff;
  border-radius: 50%;
}

.ct-b3 {
  left: calc(var(--gutter) + calc(868.5 * var(--u)));
  top: calc(213.31 * var(--u));
  width: calc(6.4 * var(--u));
  height: calc(6.4 * var(--u));
  background: #fff;
  border-radius: 50%;
}

.ct-a1 {
  left: calc(var(--gutter) + calc(882.2 * var(--u)));
  top: calc(146.36 * var(--u));
  width: calc(254.17 * var(--u));
  height: calc(27.17 * var(--u));
  font-family: 'PC Display';
  font-size: calc(18.68 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(25.3 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-a2 {
  left: calc(var(--gutter) + calc(883.14 * var(--u)));
  top: calc(175.41 * var(--u));
  width: calc(300.51 * var(--u));
  height: calc(27.17 * var(--u));
  font-family: 'PC Display';
  font-size: calc(18.68 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(25.3 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-a3 {
  left: calc(var(--gutter) + calc(883.14 * var(--u)));
  top: calc(204.47 * var(--u));
  width: calc(372 * var(--u));
  height: calc(27.17 * var(--u));
  font-family: 'PC Display';
  font-size: calc(18.68 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(25.3 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-l-ph {
  left: calc(var(--gutter) + calc(866.54 * var(--u)));
  top: calc(235.31 * var(--u));
  width: calc(86.92 * var(--u));
  height: calc(22.49 * var(--u));
  font-family: 'PC Display';
  font-size: calc(15.284 * var(--u));
  font-weight: 400;
  color: #ffbe0d;
  line-height: calc(20.615 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-l-ph {
  text-decoration: underline;
}

.ct-ph1 {
  left: calc(var(--gutter) + calc(866.54 * var(--u)));
  top: calc(258.65 * var(--u));
  width: calc(208.51 * var(--u));
  height: calc(27.17 * var(--u));
  font-family: 'PC Display';
  font-size: calc(18.68 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(25.3 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-ph2 {
  left: calc(var(--gutter) + calc(866.54 * var(--u)));
  top: calc(283.64 * var(--u));
  width: calc(160.94 * var(--u));
  height: calc(27.17 * var(--u));
  font-family: 'PC Display';
  font-size: calc(18.68 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(25.3 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-ph3 {
  left: calc(var(--gutter) + calc(866.54 * var(--u)));
  top: calc(308.62 * var(--u));
  width: calc(224 * var(--u));
  height: calc(27.17 * var(--u));
  font-family: 'PC Display';
  font-size: calc(18.68 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(25.3 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-l-hr {
  left: calc(var(--gutter) + calc(866.54 * var(--u)));
  top: calc(336.54 * var(--u));
  width: calc(87.25 * var(--u));
  height: calc(22.49 * var(--u));
  font-family: 'PC Display';
  font-size: calc(15.284 * var(--u));
  font-weight: 400;
  color: #ffbe0d;
  line-height: calc(20.615 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-l-hr {
  text-decoration: underline;
}

.ct-hr1 {
  left: calc(var(--gutter) + calc(866.54 * var(--u)));
  top: calc(358.78 * var(--u));
  width: calc(166.27 * var(--u));
  height: calc(27.17 * var(--u));
  font-family: 'PC Display';
  font-size: calc(18.68 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(20.615 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-hr2 {
  left: calc(var(--gutter) + calc(866.54 * var(--u)));
  top: calc(379.4 * var(--u));
  width: calc(118.81 * var(--u));
  height: calc(27.17 * var(--u));
  font-family: 'PC Display';
  font-size: calc(18.68 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(20.615 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-hr3 {
  left: calc(var(--gutter) + calc(866.54 * var(--u)));
  top: calc(400.01 * var(--u));
  width: calc(117.46 * var(--u));
  height: calc(27.17 * var(--u));
  font-family: 'PC Display';
  font-size: calc(18.68 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(20.615 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-hr4 {
  left: calc(var(--gutter) + calc(866.54 * var(--u)));
  top: calc(420.63 * var(--u));
  width: calc(118.98 * var(--u));
  height: calc(27.17 * var(--u));
  font-family: 'PC Display';
  font-size: calc(18.68 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(20.615 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-l-em {
  left: calc(var(--gutter) + calc(866.54 * var(--u)));
  top: calc(449.11 * var(--u));
  width: calc(34.65 * var(--u));
  height: calc(22.49 * var(--u));
  font-family: 'PC Display';
  font-size: calc(15.284 * var(--u));
  font-weight: 400;
  color: #ffbe0d;
  line-height: calc(20.615 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.ct-l-em {
  text-decoration: underline;
}

.ct-em {
  left: calc(var(--gutter) + calc(866.54 * var(--u)));
  top: calc(472.44 * var(--u));
  width: calc(250.46 * var(--u));
  height: calc(27.17 * var(--u));
  font-family: 'PC Display';
  font-size: calc(18.68 * var(--u));
  font-weight: 400;
  color: #fff;
  line-height: calc(25.3 * var(--u));
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  white-space: nowrap;
}

.s8 {
  height: calc(500.38 * var(--u));
  background: #000;
}

.ft-t {
  left: calc(var(--gutter) + calc(77.02 * var(--u)));
  top: calc(32.14 * var(--u));
  width: calc(384.54 * var(--u));
  height: calc(13.66 * var(--u));
  font-family: 'PC Sans';
  font-size: calc(9.934 * var(--u));
  font-weight: 500;
  color: #fff;
  line-height: calc(13.246 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.ft-logo {
  left: calc(var(--gutter) + calc(979.25 * var(--u)));
  top: calc(22.73 * var(--u));
  width: calc(145.21 * var(--u));
  height: calc(21.78 * var(--u));
}

.s9 {
  height: calc(89.02 * var(--u));
  background: #000;
}


/* =====================================================================
   Below 1024px the fixed canvas is released and the same content is
   restacked as an ordinary flow document. Sizes here are in real pixels,
   not design units, so everything stays legible on a phone.
   ===================================================================== */
@media (max-width: 1024px) {

  .sec {
    height: auto !important;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 22px;
    scroll-margin-top: 80px;
  }
  .sec + .sec { margin-top: 0; }
  .sec > * { min-width: 0; }

  .ph, .tx {
    position: static;
    left: auto; top: auto;
    width: auto; height: auto;
    max-width: 100%;
  }
  .tx {
    display: block;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
  .tx br { display: none; }
  .ph > img, img.ph { width: 100%; height: auto; object-fit: cover; }

  /* --- 1. hero ------------------------------------------------------ */
  .s1 { position: relative; justify-content: center; padding: 116px 18px 64px; min-height: 480px; }
  .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; opacity: 0.36; }
  .hero-shade img { width: 100%; height: 100%; object-fit: cover; }
  img.hero-logo { position: relative; width: 62%; max-width: 250px; }
  .hero-l1, .hero-l2 { position: relative; font-size: clamp(30px, 9.2vw, 68px); line-height: 1.04; }

  /* --- 2. welcome --------------------------------------------------- */
  .s2 { padding: 0 0 40px; background: #f5f2ea; }
  img.ab-photo { width: 100%; height: 62vw; min-height: 220px; max-height: 400px; }
  .ab-panel { display: none; }
  img.ab-crest { width: 60%; max-width: 230px; margin-top: 26px; }
  .ab-head { font-size: 25px; font-weight: 700; margin-top: 8px; }
  img.ab-rule { width: 72%; max-width: 300px; margin-top: 8px; }
  .ab-p1, .ab-p2, .ab-p3 { font-size: 15px; line-height: 1.5; margin: 14px 22px 0; max-width: 520px; }
  .ab-btn { width: 190px; height: 52px; margin-top: 26px; border-width: 2px; }
  .ab-btn-t {
    display: flex; align-items: center; justify-content: center;
    width: 190px; height: 52px; margin-top: -52px; font-size: 19px;
  }

  /* --- 3. services -------------------------------------------------- */
  .s3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 2px;
    justify-items: center;
    align-items: start;
    padding: 46px 22px 52px;
  }
  .sv-head, .sv-sub, .sv-btn, .sv-btn-t { grid-column: 1 / -1; }
  .sv-head { font-size: clamp(30px, 9.6vw, 70px); line-height: 1; }
  .sv-sub { font-size: 14px; line-height: 1.45; margin-top: 12px; max-width: 460px; }
  .s3 img.ph { width: auto; height: 62px; margin-top: 26px; }
  .sv-t-hair, .sv-t-beard, .sv-t-makeup, .sv-t-treat { font-size: 17px; font-weight: 800; margin-top: 8px; }
  .sv-d-hair, .sv-d-beard, .sv-d-makeup, .sv-d-treat { font-size: 13.5px; line-height: 1.45; margin-top: 4px; }
  .sv-ico-hair   { grid-column: 1; grid-row: 3; }
  .sv-t-hair     { grid-column: 1; grid-row: 4; }
  .sv-d-hair     { grid-column: 1; grid-row: 5; }
  .sv-ico-beard  { grid-column: 2; grid-row: 3; }
  .sv-t-beard    { grid-column: 2; grid-row: 4; }
  .sv-d-beard    { grid-column: 2; grid-row: 5; }
  .sv-ico-makeup { grid-column: 1; grid-row: 6; }
  .sv-t-makeup   { grid-column: 1; grid-row: 7; }
  .sv-d-makeup   { grid-column: 1; grid-row: 8; }
  .sv-ico-treat  { grid-column: 2; grid-row: 6; }
  .sv-t-treat    { grid-column: 2; grid-row: 7; }
  .sv-d-treat    { grid-column: 2; grid-row: 8; }
  .sv-btn { width: 210px; height: 52px; margin-top: 34px; justify-self: center; }
  .sv-btn-t {
    display: flex; align-items: center; justify-content: center;
    width: 210px; height: 52px; margin-top: -52px; font-size: 19px; justify-self: center;
  }

  /* --- 4. no appointment -------------------------------------------- */
  .s4 { padding: 44px 22px 0; }
  img.na-ico { order: 1; width: 34px; height: 34px; }
  .na-head { order: 2; font-size: clamp(28px, 8.8vw, 64px); line-height: 1.04; margin-top: 8px; }
  .na-l1, .na-l2 { order: 3; font-size: clamp(17px, 5.1vw, 34px); line-height: 1.12; margin-top: 6px; }
  img.na-photo { order: 4; width: 80%; max-width: 330px; margin-top: 18px; }

  /* --- 5. reviews ---------------------------------------------------- */
  .s5 { padding: 0 22px 52px; }
  img.rv-photo { width: calc(100% + 44px); max-width: none; margin: 0 -22px 30px; height: 210px; object-position: 50% 30%; }
  .rv-head { font-size: clamp(30px, 9.6vw, 70px); line-height: 1; color: #ffce00; }
  .rv-sub { font-size: 14px; line-height: 1.45; margin-top: 12px; }
  .rv-n1, .rv-n2, .rv-n3 { font-size: 18px; font-weight: 800; margin-top: 30px; }
  img.rv-s1, img.rv-s2, img.rv-s3 { width: 118px; margin-top: 8px; }
  .rv-q1, .rv-q2, .rv-q3 { font-size: 14px; line-height: 1.5; margin-top: 8px; max-width: 460px; }

  /* --- 6. gallery ---------------------------------------------------- */
  .s6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 44px 22px 50px;
    justify-items: stretch;
  }
  .gl-head { grid-column: 1 / -1; font-size: clamp(30px, 9.6vw, 70px); line-height: 1; text-align: center; }
  .s6 img.ph { width: 100%; height: 52vw; max-height: 300px; }
  img.gl-3 { grid-column: 1 / -1; height: 92vw; max-height: 460px; }

  /* --- 7. follow ----------------------------------------------------- */
  .s7 { flex-direction: row; justify-content: center; align-items: center; gap: 14px; padding: 22px; }
  .fo-t { font-size: 22px; }
  .fo-ico { width: 46px; height: 46px; flex: none; }

  /* --- 8. contact ---------------------------------------------------- */
  .s8 { padding: 44px 22px 44px; }
  img.ct-logo { width: 62%; max-width: 240px; }
  .ct-p1, .ct-p2, .ct-p3 { font-size: 15px; line-height: 1.55; text-align: justify; margin-top: 14px; max-width: 560px; }
  .ct-h { font-size: 30px; margin-top: 34px; }
  .ct-b1, .ct-b2, .ct-b3 { display: none; }
  .ct-l-addr, .ct-l-ph, .ct-l-hr, .ct-l-em { font-size: 15px; margin-top: 22px; }
  .ct-a1, .ct-a2, .ct-a3, .ct-ph1, .ct-ph2, .ct-ph3, .ct-em { font-size: 17px; margin-top: 5px; }
  .ct-hr1, .ct-hr2, .ct-hr3, .ct-hr4 { font-size: 17px; margin-top: 3px; }

  /* --- 9. colophon --------------------------------------------------- */
  .s9 { padding: 24px 22px; gap: 14px; }
  .ft-t { font-size: 11px; line-height: 1.5; }
  .ft-logo { width: 145px; height: auto; }
}

@media (max-width: 420px) {
  .s3 .sv-d-hair, .s3 .sv-d-beard, .s3 .sv-d-makeup, .s3 .sv-d-treat { font-size: 12.5px; }
}
