:root {
  --ink: #151513;
  --ink-soft: #272622;
  --paper: #f6f5f1;
  --paper-deep: #e8e5de;
  --acid: #c9ad73;
  --orange: #d8d3ca;
  --line: rgba(17, 17, 15, 0.13);
  --white-line: rgba(255, 255, 255, 0.16);
  --radius: 22px;
  --display: "Manrope", "Arial Black", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

[hidden] { display: none !important; }

button, a, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.022;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 78px);
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.brand { display: inline-flex; align-items: center; gap: 11px; }

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #d6bd86;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.04em;
  transform: rotate(-8deg);
}

.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.13em;
}

.desktop-nav { display: flex; gap: 38px; }
.desktop-nav a { font-size: 13px; opacity: .68; transition: opacity .2s ease; }
.desktop-nav a:hover { opacity: 1; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
}

.header-cta svg, .primary-button svg, .continue-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s ease;
}

.header-cta:hover svg, .primary-button:hover svg, .continue-button:hover svg { transform: translateX(4px); }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px clamp(28px, 5.5vw, 86px) 82px;
}

.eyebrow {
  margin: 0 0 23px;
  color: #77746a;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero .eyebrow { color: var(--acid); }

.hero h1, .section-heading h2, .experience-intro h2, .location-section h2, .time-modal h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.2vw, 94px);
  line-height: .91;
  letter-spacing: -.068em;
  font-weight: 800;
}

.hero h1 span {
  color: #d6bd86;
  -webkit-text-stroke: 0;
}

.hero-intro {
  max-width: 465px;
  margin: 31px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 15px;
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }

.primary-button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 23px;
  color: var(--ink);
  background: #d6bd86;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
}

.primary-button:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(214,189,134,.18); }
.text-link { padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.38); font-size: 13px; }

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 50px;
  color: rgba(255,255,255,.52);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-meta > span { display: flex; align-items: center; gap: 8px; }
.hero-meta i { width: 7px; height: 7px; background: #d6bd86; border-radius: 50%; box-shadow: 0 0 0 5px rgba(214,189,134,.1); }
.stars { color: #d6bd86; letter-spacing: .12em; }

.hero-art {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: #292824;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12,12,11,.16), transparent 42%, rgba(12,12,11,.58));
}

.hero-art > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.85) contrast(1.02) brightness(1.05);
  transform: scale(1.015);
  animation: imageSettle 1.4s cubic-bezier(.22,1,.36,1) both;
}

.photo-label {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #fff;
}

.photo-label span {
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.photo-label strong {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -.02em;
}

.photo-label-top { top: 112px; right: 36px; align-items: flex-end; }
.photo-label-bottom { left: 34px; bottom: 34px; padding-left: 16px; border-left: 2px solid #d6bd86; }

.hero-art-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(17,17,15,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(17,17,15,.09) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.art-word {
  position: absolute;
  left: -22px;
  bottom: -40px;
  margin: 0;
  color: rgba(17,17,15,.15);
  font-family: var(--display);
  font-size: clamp(250px, 28vw, 490px);
  line-height: .7;
  font-weight: 800;
  letter-spacing: -.14em;
}

.orbit { position: absolute; border: 1px solid rgba(17,17,15,.55); border-radius: 50%; }
.orbit-one { width: 540px; height: 540px; right: -140px; top: 80px; animation: float 8s ease-in-out infinite; }
.orbit-two { width: 300px; height: 300px; right: -20px; top: 200px; border-style: dashed; animation: spin 28s linear infinite; }

.cutout { position: absolute; background: var(--ink); }
.cutout-one { width: 260px; height: 120%; left: 38%; top: -10%; transform: rotate(18deg); clip-path: polygon(34% 0,100% 0,64% 100%,0 100%); opacity: .92; }
.cutout-two { width: 34px; height: 110%; left: 29%; top: -5%; transform: rotate(18deg); background: var(--acid); }

.art-card {
  position: absolute;
  top: 26%;
  left: 11%;
  width: 230px;
  padding: 24px;
  color: #fff;
  background: rgba(17,17,15,.9);
  border: 1px solid rgba(255,255,255,.12);
  transform: rotate(-4deg);
  box-shadow: 0 22px 50px rgba(17,17,15,.22);
  animation: cardFloat 6s ease-in-out infinite;
}

.art-card span { display: block; margin-bottom: 45px; color: var(--acid); font-size: 9px; letter-spacing: .16em; }
.art-card strong { font-family: var(--display); font-size: 24px; line-height: 1.05; letter-spacing: -.05em; }

.roundel {
  position: absolute;
  right: 8%;
  top: 15%;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(17,17,15,.45);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}

.roundel span { max-width: 98px; text-align: center; font-size: 9px; font-weight: 700; line-height: 2.5; letter-spacing: .13em; }
.roundel b { position: absolute; font-size: 18px; animation: spinReverse 24s linear infinite; }
.art-index { position: absolute; right: 40px; bottom: 34px; margin: 0; color: rgba(17,17,15,.6); font-size: 9px; font-weight: 700; letter-spacing: .17em; }

.marquee { overflow: hidden; color: var(--ink); background: var(--acid); border-block: 1px solid var(--ink); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 35px; padding: 15px 0; animation: marquee 24s linear infinite; }
.marquee span { font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .13em; }
.marquee i { font-style: normal; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(24px, 6vw, 100px);
  color: rgba(255,255,255,.72);
  background: var(--ink);
  border-top: 1px solid var(--white-line);
}

.proof-strip > div {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 76px;
  padding: 0 28px;
  border-left: 1px solid var(--white-line);
}

.proof-strip > div:last-child { border-right: 1px solid var(--white-line); }
.proof-strip span { color: #d6bd86; font-size: 9px; letter-spacing: .12em; }
.proof-strip strong { font-size: 11px; font-weight: 500; letter-spacing: .04em; }

.booking-section {
  position: relative;
  overflow: hidden;
  padding: 104px clamp(24px, 6vw, 100px) 118px;
  background: #cfc4b2;
  border-top: 1px solid rgba(21,21,19,.16);
}

.booking-section::before {
  content: "BOOK";
  position: absolute;
  top: 14px;
  right: -18px;
  color: rgba(21,21,19,.045);
  font-family: var(--display);
  font-size: clamp(150px, 20vw, 310px);
  line-height: .8;
  font-weight: 800;
  letter-spacing: -.09em;
  pointer-events: none;
}

.booking-section > * { position: relative; z-index: 1; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 46px;
}

.section-heading h2, .portfolio-heading h2, .experience-intro h2, .location-section h2, .reviews-heading h2, .time-modal h2 { font-size: clamp(48px, 5.1vw, 72px); line-height: .95; }
.section-heading .eyebrow, .portfolio-heading .eyebrow, .experience-intro .eyebrow, .location-section .eyebrow, .reviews-heading .eyebrow, .time-modal .eyebrow { color: #716e65; }

.steps { display: flex; align-items: center; margin-bottom: 9px; color: #878279; font-size: 11px; font-weight: 600; }
.step { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.step b { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid #aaa49a; border-radius: 50%; font-size: 10px; }
.step.active { color: var(--ink); }
.step.active b { color: #e4ca91; background: var(--ink); border-color: var(--ink); }
.step-line { width: 34px; height: 1px; margin: 0 10px; background: #c9c3b7; }

.booking-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; align-items: start; gap: clamp(28px, 4vw, 56px); }

.service-panel {
  padding: 26px 28px 18px;
  background: rgba(246,245,241,.46);
  border: 1px solid rgba(21,21,19,.13);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(55,47,35,.08);
}

.service-panel-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #77746c;
  font-size: 12px;
}
.service-panel-top p { margin: 0; }
.service-panel-top span { text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }

.service-list { border-top: 1px solid var(--line); }

.service-card { border-bottom: 1px solid var(--line); transition: background .3s ease; }
.service-card.selected { background: #eadfce; box-shadow: 0 15px 40px rgba(41,37,28,.07); }

.service-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 46px minmax(0,1fr) auto 34px;
  align-items: center;
  gap: 18px;
  padding: 24px 14px 24px 5px;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.service-trigger:focus { outline: none; }
.service-trigger:focus-visible {
  border-radius: 12px;
  box-shadow: inset 0 0 0 2px #9f7f46;
}

.service-index { align-self: start; padding-top: 7px; color: #918b80; font-family: var(--display); font-size: 10px; font-weight: 700; }
.service-title-row { display: flex; align-items: center; gap: 10px; }
.service-title-row h3 { margin: 0; font-family: var(--display); font-size: clamp(20px, 2vw, 28px); line-height: 1.05; letter-spacing: -.045em; }
.service-badge { padding: 5px 7px; color: var(--ink); background: #e2ca96; border-radius: 999px; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-description { max-width: 530px; margin: 9px 0 0; color: #716e66; font-size: 13px; line-height: 1.5; }

.service-meta { min-width: 98px; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.service-meta strong { font-family: var(--display); font-size: 18px; letter-spacing: -.03em; }
.service-meta small { color: #817c72; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }

.service-toggle {
  width: 32px;
  height: 32px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid #bdb7aa;
  border-radius: 50%;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.service-toggle::before, .service-toggle::after { content: ""; position: absolute; width: 10px; height: 1.5px; background: currentColor; }
.service-toggle::after { transform: rotate(90deg); transition: transform .25s ease; }
.service-card.selected .service-toggle { color: #dec58e; background: var(--ink); border-color: var(--ink); transform: rotate(180deg); }
.service-card.selected .service-toggle::after { transform: rotate(0); }

.addons-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .42s cubic-bezier(.22,1,.36,1); }
.service-card.selected .addons-wrap { grid-template-rows: 1fr; }
.addons-inner { overflow: hidden; }
.addons-content { padding: 0 14px 27px 69px; }
.addons-intro { display: flex; justify-content: space-between; align-items: center; margin: 0 0 15px; padding-top: 3px; }
.addons-intro p { margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.addons-intro span { color: #8a857b; font-size: 10px; }
.addon-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-items: stretch; gap: 10px; }

.addon-option { min-width: 0; position: relative; display: block; cursor: pointer; }
.addon-option input { position: absolute; opacity: 0; pointer-events: none; }
.addon-shell { width: 100%; height: 100%; min-height: 67px; display: flex; align-items: center; gap: 12px; box-sizing: border-box; padding: 11px 12px; background: #ddd6ca; border: 1px solid #c8bfb0; border-radius: 13px; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.addon-option:hover .addon-shell { transform: translateY(-1px); border-color: #9e988e; }
.addon-check { flex: 0 0 auto; width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid #aaa397; border-radius: 6px; color: transparent; background: transparent; transition: .2s ease; }
.addon-check svg { width: 12px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.addon-copy { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.addon-copy strong { font-size: 12px; }
.addon-copy small { color: #7e796f; font-size: 10px; }
.addon-price { font-family: var(--display); font-size: 11px; font-weight: 700; }
.addon-option input:checked + .addon-shell { background: #f0eadf; border-color: var(--ink); }
.addon-option input:checked + .addon-shell .addon-check { color: var(--ink); background: #d9bf86; border-color: #d9bf86; }
.addon-option input:focus-visible + .addon-shell { outline: 2px solid var(--orange); outline-offset: 2px; }

.booking-summary {
  position: sticky;
  top: 24px;
  padding: 26px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(38,34,24,.13);
}

.summary-heading { display: flex; align-items: center; justify-content: space-between; padding-bottom: 19px; border-bottom: 1px solid var(--white-line); }
.summary-heading > span { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.clear-button { padding: 0; color: rgba(255,255,255,.55); border: 0; background: transparent; font-size: 10px; text-decoration: underline; cursor: pointer; }

.empty-summary { padding: 45px 7px 48px; text-align: center; }
.empty-icon { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 18px; color: #d6bd86; border: 1px solid rgba(214,189,134,.28); border-radius: 50%; }
.empty-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; }
.empty-summary h3 { margin: 0; font-family: var(--display); font-size: 18px; }
.empty-summary p { max-width: 220px; margin: 8px auto 0; color: rgba(255,255,255,.47); font-size: 12px; line-height: 1.5; }

.filled-summary { padding-top: 26px; }
.summary-service { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 20px; }
.summary-service small, .summary-total-row small { display: block; margin-bottom: 6px; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.summary-service h3 { margin: 0; font-family: var(--display); font-size: 20px; line-height: 1.05; letter-spacing: -.04em; }
.summary-service > strong { font-family: var(--display); font-size: 15px; }
.summary-addons { display: grid; gap: 9px; padding: 15px 0; border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
.summary-addon, .no-addons { display: flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.67); font-size: 11px; }
.no-addons { font-style: italic; }
.summary-total-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 21px 0 24px; }
.summary-total-row > div:last-child { text-align: right; }
.summary-total-row strong { font-family: var(--display); font-size: 22px; letter-spacing: -.04em; }

.continue-button {
  width: 100%;
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: #d6bd86;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease;
}
.continue-button:not(:disabled):hover { filter: brightness(.94); transform: translateY(-1px); }
.continue-button:disabled { color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); cursor: not-allowed; }
.summary-note { margin: 12px 0 0; color: rgba(255,255,255,.34); font-size: 9px; text-align: center; }

.portfolio-section { padding: 120px clamp(24px, 6vw, 100px) 135px; background: #d6bd86; }
.portfolio-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 55px; }
.portfolio-heading h2 { margin-top: 15px; }
.portfolio-note { max-width: 330px; padding-bottom: 7px; }
.portfolio-note p { margin: 0 0 22px; color: rgba(17,17,15,.66); font-size: 13px; line-height: 1.65; }
.portfolio-note a { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 5px; border-bottom: 1px solid rgba(17,17,15,.38); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: 260px 220px; gap: 14px; }
.portfolio-card { position: relative; margin: 0; overflow: hidden; background: #b6a172; }
.portfolio-card-tall { grid-row: span 2; }
.portfolio-card-wide { grid-column: span 2; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.86) contrast(1.02); transition: transform .7s cubic-bezier(.22,1,.36,1), filter .35s ease; }
.portfolio-card:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.02); }
.portfolio-card::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(transparent, rgba(10,10,9,.72)); pointer-events: none; }
.portfolio-card figcaption { position: absolute; z-index: 1; left: 18px; right: 18px; bottom: 16px; display: flex; align-items: center; gap: 10px; color: #fff; font-size: 11px; font-weight: 700; }
.portfolio-card figcaption span { color: #e4ca91; font-size: 8px; letter-spacing: .13em; }

.experience-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; padding: 120px clamp(24px, 6vw, 100px); color: #fff; background: var(--ink); }
.experience-intro h2 { font-size: clamp(48px, 5vw, 76px); }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.experience-grid article { min-height: 335px; position: relative; display: flex; flex-direction: column; padding: 22px; border-left: 1px solid var(--white-line); }
.experience-grid article > span { color: rgba(255,255,255,.32); font-size: 9px; letter-spacing: .12em; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; margin: 74px 0 35px; color: #d6bd86; border: 1px solid rgba(214,189,134,.26); border-radius: 50%; font-size: 18px; }
.experience-grid h3 { margin: 0 0 11px; font-family: var(--display); font-size: 19px; letter-spacing: -.03em; }
.experience-grid p { margin: 0; color: rgba(255,255,255,.47); font-size: 12px; line-height: 1.65; }

.location-section { position: relative; display: grid; grid-template-columns: 1fr .62fr 180px; align-items: center; gap: 65px; padding: 110px clamp(24px, 6vw, 100px); background: var(--paper-deep); overflow: hidden; }
.location-section::before { content: ""; position: absolute; width: 480px; height: 480px; right: -120px; top: -200px; border: 1px solid rgba(17,17,15,.22); border-radius: 50%; }
.location-details { color: rgba(17,17,15,.67); font-size: 12px; line-height: 1.5; }
.location-details p { margin: 0; max-width: 300px; }
.location-rule { height: 1px; margin: 28px 0 18px; background: rgba(17,17,15,.25); }
.location-details span { display: inline-block; margin-right: 25px; color: var(--ink); font-weight: 600; }
.circle-link { position: relative; z-index: 1; width: 140px; height: 140px; display: flex; align-items: center; justify-content: center; gap: 15px; color: #dec58e; background: var(--ink); border-radius: 50%; transition: transform .3s ease; }
.circle-link:hover { transform: rotate(-7deg) scale(1.03); }
.circle-link span { font-family: var(--display); font-size: 17px; font-weight: 800; line-height: .95; }
.circle-link svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.reviews-section { padding: 125px clamp(24px, 6vw, 100px) 120px; color: #fff; background: var(--ink); }
.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 58px; }
.reviews-heading .eyebrow { color: rgba(255,255,255,.48); }
.reviews-heading h2 { margin-top: 15px; }
.reviews-score { display: flex; align-items: center; gap: 20px; padding-bottom: 5px; }
.reviews-score > strong { font-family: var(--display); font-size: 74px; line-height: .8; letter-spacing: -.075em; }
.reviews-score > div { display: flex; flex-direction: column; gap: 7px; }
.reviews-score small { color: rgba(255,255,255,.45); font-size: 9px; line-height: 1.5; text-transform: uppercase; letter-spacing: .09em; }
.reviews-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
.review-card { min-height: 300px; display: flex; flex-direction: column; padding: 30px 28px; border-left: 1px solid var(--white-line); }
.review-card:first-child { border-left: 0; }
.review-card-featured { background: rgba(214,189,134,.09); }
.review-stars { color: #d6bd86; font-size: 11px; letter-spacing: .16em; }
.review-card blockquote { flex: 1; margin: 48px 0 38px; font-family: var(--display); font-size: clamp(20px, 2vw, 28px); line-height: 1.18; letter-spacing: -.04em; }
.review-card footer { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; padding: 0; color: inherit; background: transparent; border: 0; }
.review-card footer strong { font-size: 11px; }
.review-card footer span { color: rgba(255,255,255,.39); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.reviews-link { width: fit-content; display: flex; gap: 13px; margin-top: 35px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.32); color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 38px clamp(24px, 6vw, 100px); color: rgba(255,255,255,.45); background: var(--ink); border-top: 1px solid var(--white-line); font-size: 10px; }
.footer-brand { color: #fff; }
footer p { margin: 0; }

.mobile-checkout { display: none; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17,17,15,.72);
  backdrop-filter: blur(8px);
  animation: fadeIn .2s ease;
}

.modal-backdrop[hidden], .mobile-checkout[hidden], .toast:not(.show) { display: none; }

.time-modal {
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  padding: 42px;
  background: var(--paper);
  border-radius: 24px;
  box-shadow: 0 35px 90px rgba(0,0,0,.3);
  animation: modalUp .4s cubic-bezier(.22,1,.36,1);
}
.booking-panel-scroll { min-width: 0; }
.time-modal h2 { font-size: clamp(42px, 7vw, 68px); }
.modal-close { position: absolute; top: 22px; right: 22px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 24px; line-height: 1; cursor: pointer; }
.modal-subtitle { margin: 17px 0 30px; color: #716e66; font-size: 13px; }
.modal-step-heading { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 24px; padding-right: 40px; }
.modal-step-heading .modal-subtitle { margin-bottom: 0; }
.modal-step-heading .square-flow-assurances { max-width: 265px; }
.calendar-date-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 11px; }
.calendar-date-heading > p { margin: 0; color: #716e66; font-size: 10px; font-weight: 700; letter-spacing: .035em; }
.date-scroll-controls { display: flex; gap: 7px; }
.date-scroll-controls button { width: 32px; height: 32px; display: grid; place-items: center; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.date-scroll-controls button:hover { border-color: var(--ink); }
.date-scroll-arrow { width: 8px; height: 8px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; }
.date-scroll-arrow.is-previous { transform: rotate(-135deg) translate(-1px,1px); }
.date-scroll-arrow.is-next { transform: rotate(45deg) translate(-1px,1px); }
.date-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(88px, 1fr); gap: 8px; overflow-x: auto; padding-bottom: 5px; scroll-behavior: smooth; scroll-snap-type: x proximity; scrollbar-color: #c5bcab transparent; scrollbar-width: thin; }
.date-button { padding: 13px 7px; display: flex; flex-direction: column; align-items: center; gap: 4px; border: 1px solid var(--line); border-radius: 12px; background: transparent; cursor: pointer; }
.date-button { scroll-snap-align: start; }
.date-button small { color: #77736a; font-size: 9px; text-transform: uppercase; }
.date-button strong { font-family: var(--display); font-size: 17px; }
.date-button.selected { color: #dec58e; background: var(--ink); border-color: var(--ink); }
.date-button.selected small { color: rgba(255,255,255,.55); }
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin: 24px 0 30px; }
.time-button { min-height: 45px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 11px; font-weight: 700; cursor: pointer; transition: .2s ease; }
.time-button:hover { border-color: var(--ink); }
.time-button.selected { background: #dec58e; border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.time-button:disabled { opacity: .28; text-decoration: line-through; cursor: not-allowed; }
.modal-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.modal-footer > div { display: flex; flex-direction: column; gap: 4px; }
.modal-footer small { color: #716e66; font-size: 10px; }
.modal-footer strong { font-family: var(--display); font-size: 20px; }
.modal-footer .continue-button { width: 210px; }
.modal-footer .continue-button:disabled { color: #817b70; background: #ddd7cb; }

.booking-loader { min-height: 185px; display: flex; align-items: center; justify-content: center; gap: 12px; color: #716e66; font-size: 12px; }
.booking-loader > span { width: 18px; height: 18px; border: 2px solid #d6cfbf; border-top-color: var(--ink); border-radius: 50%; animation: spin .8s linear infinite; }
.availability-results { min-height: 215px; }
.availability-empty { margin: 35px 0; color: #716e66; text-align: center; font-size: 12px; line-height: 1.6; }
.booking-error { padding: 25px; margin: 10px 0 25px; background: #efe8da; border: 1px solid #d7cbb7; border-radius: 15px; }
.booking-error strong { font-family: var(--display); font-size: 16px; }
.booking-error p { margin: 8px 0 18px; color: #716e66; font-size: 12px; line-height: 1.55; }
.secondary-button { min-height: 42px; padding: 0 18px; color: #fff; background: var(--ink); border: 0; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.details-grid label { display: flex; flex-direction: column; gap: 7px; }
.details-grid label > span { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.details-grid label small { color: #888278; font-size: 9px; font-weight: 500; text-transform: none; }
.details-grid input { width: 100%; min-height: 49px; padding: 0 14px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 11px; font: inherit; font-size: 13px; outline: 0; }
.details-grid input:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(17,17,15,.08); }
.field-wide { grid-column: 1 / -1; }
.consent-row { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 20px 0 5px; color: #625e56; font-size: 10px; line-height: 1.5; cursor: pointer; }
.consent-row input { width: 17px; height: 17px; margin: 0; accent-color: var(--ink); }
.booking-payment-note { margin: 13px 0 0; color: #716e66; font-size: 10px; }
.form-error { margin: 13px 0 0; color: #a23f31; font-size: 11px; }
.text-button { padding: 10px 0; color: var(--ink); background: transparent; border: 0; font-size: 11px; font-weight: 700; cursor: pointer; }
.manage-login-actions .text-button,
.appointments-header .text-button {
  -webkit-appearance: none;
  appearance: none;
}
.manage-login-actions .text-button:focus,
.appointments-header .text-button:focus { outline: none; }
.manage-login-actions .text-button:focus-visible,
.appointments-header .text-button:focus-visible {
  box-shadow: inset 0 -2px 0 #9c7b3e;
}
.booking-success { padding: 28px 4px 5px; text-align: center; }
.booking-success .success-mark { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 24px; color: var(--ink); background: #d6bd86; border-radius: 50%; font-size: 25px; font-weight: 800; }
.booking-success h2 { margin-top: 8px; }
.booking-success > p:not(.eyebrow) { max-width: 440px; margin: 18px auto 28px; color: #716e66; font-size: 13px; line-height: 1.65; }
.booking-success .continue-button { width: min(260px, 100%); margin: 0 auto; }
body.modal-open { overflow: hidden; }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 60; min-width: 330px; display: flex; align-items: center; gap: 13px; padding: 16px 18px; color: #fff; background: var(--ink); border: 1px solid rgba(214,189,134,.34); border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,.24); animation: toastIn .35s ease; }
.toast > span { width: 27px; height: 27px; display: grid; place-items: center; color: var(--ink); background: #d6bd86; border-radius: 50%; font-weight: 800; }
.toast div { display: flex; flex-direction: column; gap: 3px; }
.toast strong { font-size: 12px; }
.toast small { color: rgba(255,255,255,.48); font-size: 9px; }

.booking-assurances { max-width: 470px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.booking-assurances span { padding: 9px 12px; color: #5f5a50; background: rgba(255,255,255,.48); border: 1px solid rgba(17,17,15,.13); border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.square-booking-shell { max-width: 1120px; margin: 46px auto 0; overflow: hidden; background: rgba(255,255,255,.7); border: 1px solid rgba(17,17,15,.12); border-radius: 26px; box-shadow: 0 28px 80px rgba(49,39,20,.14); }
.square-booking-intro { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.7fr); align-items: end; gap: 40px; padding: 30px 34px; border-bottom: 1px solid rgba(17,17,15,.1); }
.square-booking-intro .eyebrow { margin-bottom: 8px; color: #716e65; }
.square-booking-intro h3 { margin: 0; font-family: var(--display); font-size: clamp(26px,3vw,40px); line-height: 1; letter-spacing: -.045em; }
.square-booking-intro > p { max-width: 470px; margin: 0; color: #69645b; font-size: 12px; line-height: 1.65; }
.square-booking-embed { width: 100%; height: 760px; min-width: 280px; position: relative; overflow: hidden; background: #fff; }
.square-booking-embed iframe { width: 100% !important; height: 100% !important; min-height: 760px !important; display: block; border: 0 !important; }
.square-booking-status { min-height: 100%; display: flex; align-items: center; justify-content: center; gap: 12px; color: #716e66; font-size: 12px; }
.square-booking-status > span { width: 18px; height: 18px; border: 2px solid #d6cfbf; border-top-color: var(--ink); border-radius: 50%; animation: spin .8s linear infinite; }
.square-booking-status-error { padding: 30px; color: #8c4036; text-align: center; }
.square-booking-embed noscript { display: block; padding: 30px; text-align: center; }
.square-booking-embed noscript a { color: var(--ink); font-weight: 800; text-decoration: underline; }

.square-flow-modal { width: min(980px, 100%); height: min(840px, calc(100dvh - 48px)); display: flex; flex-direction: column; overflow: hidden; padding: 30px; }
.square-flow-heading { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 28px; padding-right: 48px; }
.square-flow-heading h2 { font-size: clamp(36px, 5vw, 58px); }
.square-flow-heading .modal-subtitle { margin: 12px 0 0; }
.square-flow-assurances { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; padding-bottom: 3px; }
.square-flow-assurances span { padding: 8px 10px; color: #615d54; background: #e8e2d7; border: 1px solid #d0c8ba; border-radius: 999px; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.square-flow-instruction { margin: 19px 0 13px; color: #625e55; font-size: 11px; line-height: 1.5; }
.square-flow-frame-wrap { width: 100%; min-width: 280px; min-height: 0; flex: 1; position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 17px; }
.square-flow-frame-wrap iframe { width: 100%; height: 100%; display: block; border: 0; }
.square-flow-loading { position: absolute; z-index: 2; inset: 0; display: flex; align-items: center; justify-content: center; gap: 11px; padding: 25px; color: #716e66; background: #fff; font-size: 12px; }
.square-flow-loading[hidden] { display: none; }
.square-flow-loading > span { width: 18px; height: 18px; border: 2px solid #d6cfbf; border-top-color: var(--ink); border-radius: 50%; animation: spin .8s linear infinite; }
.square-flow-fallback { width: fit-content; display: flex; align-items: center; gap: 9px; margin: 14px 2px 0 auto; color: #656158; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.reveal { animation: revealUp .75s cubic-bezier(.22,1,.36,1) both; }
.reveal-delay-1 { animation-delay: .1s; }
.reveal-delay-2 { animation-delay: .2s; }
.reveal-delay-3 { animation-delay: .3s; }

@keyframes revealUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes float { 50% { transform: translate(-10px, 15px); } }
@keyframes cardFloat { 50% { transform: rotate(-2deg) translateY(-12px); } }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes modalUp { from { opacity: 0; transform: translateY(25px) scale(.97); } }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } }
@keyframes imageSettle { from { opacity: 0; transform: scale(1.07); } to { opacity: 1; transform: scale(1.015); } }

@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr .82fr; }
  .booking-layout { grid-template-columns: minmax(0,1fr) 310px; gap: 28px; }
  .experience-section { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 310px 240px 280px; }
  .portfolio-card-tall { grid-row: span 2; }
  .portfolio-card-wide { grid-column: span 2; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card:last-child { grid-column: span 2; border-left: 0; border-top: 1px solid var(--white-line); }
  .location-section { grid-template-columns: 1fr .7fr 140px; gap: 35px; }
}

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .modal-step-heading { grid-template-columns: 1fr; gap: 14px; padding-right: 48px; }
  .modal-step-heading .square-flow-assurances { max-width: none; justify-content: flex-start; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 700px; padding-top: 150px; }
  .hero-art { min-height: 560px; }
  .proof-strip { padding-inline: 22px; }
  .proof-strip > div { padding-inline: 16px; }
  .section-heading { align-items: start; flex-direction: column; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-grid article { min-height: auto; padding: 28px 10px 35px; border-left: 0; border-top: 1px solid var(--white-line); }
  .feature-icon { margin: 35px 0 23px; }
  .location-section { grid-template-columns: 1fr 1fr; }
  .circle-link { position: absolute; right: 35px; bottom: 35px; width: 110px; height: 110px; }
  footer { padding-bottom: 110px; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: calc(78px + env(safe-area-inset-top)); }
  .site-header {
    position: fixed;
    height: calc(68px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 19px 0;
    background: rgba(21,21,19,.96);
    backdrop-filter: blur(12px);
  }
  .brand-name { font-size: 13px; }
  .brand-mark { width: 34px; height: 34px; }
  .header-cta { min-height: 44px; padding: 10px 15px; color: var(--ink); background: #fff; border-radius: 999px; }
  .header-cta svg { display: none; }
  .hero-copy { min-height: 575px; padding: calc(112px + env(safe-area-inset-top)) 22px 44px; }
  .hero h1 { font-size: clamp(52px, 16.4vw, 72px); }
  .hero-intro { margin-top: 26px; font-size: 14px; }
  .hero-actions { gap: 20px; margin-top: 30px; }
  .text-link { min-height: 44px; display: inline-flex; align-items: center; }
  .hero-meta { flex-direction: column; gap: 11px; margin-top: 29px; }
  .hero-art { min-height: 435px; }
  .hero-art > img { object-position: 48% 48%; }
  .photo-label-top { top: 26px; right: 22px; }
  .photo-label-bottom { left: 22px; bottom: 24px; }
  .proof-strip { grid-template-columns: 1fr; padding: 0 22px; }
  .proof-strip > div { min-height: 52px; padding: 0; border-left: 0; border-bottom: 1px solid var(--white-line); }
  .proof-strip > div:last-child { border-right: 0; border-bottom: 0; }
  .booking-section { padding: 62px 16px 60px; }
  body:has(.mobile-checkout:not([hidden])) .booking-section { padding-bottom: 112px; }
  .booking-section::before { top: 28px; right: -8px; font-size: 116px; }
  .service-panel { padding: 18px 15px 8px; border-radius: 18px; }
  .section-heading { gap: 24px; margin-bottom: 30px; }
  .section-heading h2, .experience-intro h2, .location-section h2 { font-size: clamp(43px, 12.5vw, 48px); }
  .steps { width: 100%; }
  .step-line { flex: 1; }
  .service-panel-top span { display: none; }
  .service-trigger { grid-template-columns: 30px minmax(0,1fr) 34px; gap: 9px; padding: 19px 5px; }
  .service-card { scroll-margin-top: calc(80px + env(safe-area-inset-top)); }
  .service-meta { grid-column: 2; grid-row: 2; flex-direction: row; align-items: center; justify-content: flex-start; gap: 11px; margin-top: -5px; }
  .service-toggle { grid-column: 3; grid-row: 1 / span 2; }
  .service-title-row { flex-wrap: wrap; }
  .service-title-row h3 { font-size: 22px; }
  .service-description { margin-top: 7px; font-size: 12px; line-height: 1.45; }
  .addons-content { padding: 0 5px 24px; }
  .addon-list { grid-template-columns: minmax(0,1fr); gap: 9px; }
  .booking-summary { display: none; }
  body.modal-open .mobile-checkout { display: none !important; }
  .mobile-checkout:not([hidden]) { position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 30; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 11px 11px 11px 17px; color: #fff; background: var(--ink); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; box-shadow: 0 16px 45px rgba(0,0,0,.26); animation: modalUp .35s ease; }
  .mobile-checkout > div { min-width: 0; display: flex; flex-direction: column; }
  .mobile-checkout small { max-width: 150px; overflow: hidden; color: rgba(255,255,255,.48); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-checkout strong { font-family: var(--display); font-size: 18px; }
  .mobile-checkout button { min-height: 44px; padding: 0 17px; color: var(--ink); background: #d6bd86; border: 0; border-radius: 999px; font-size: 11px; font-weight: 700; }
  .experience-section { padding: 68px 22px 72px; gap: 32px; }
  .experience-grid article { padding: 22px 5px 26px; }
  .experience-grid p { color: rgba(255,255,255,.62); }
  .feature-icon { margin: 24px 0 18px; }
  .portfolio-section { padding: 68px 22px 76px; }
  .portfolio-heading, .reviews-heading { align-items: flex-start; flex-direction: column; gap: 24px; margin-bottom: 32px; }
  .portfolio-heading h2, .reviews-heading h2 { font-size: clamp(40px, 12vw, 48px); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 185px 235px; gap: 8px; }
  .portfolio-card-tall { grid-column: span 2; grid-row: auto; }
  .portfolio-card-wide { grid-column: span 2; }
  .portfolio-card figcaption { left: 13px; right: 13px; bottom: 12px; }
  .location-section { grid-template-columns: 1fr; gap: 32px; padding: 68px 22px 72px; }
  .circle-link { position: relative; left: auto; right: auto; bottom: auto; width: 104px; height: 104px; margin-top: 3px; }
  .reviews-section { padding: 68px 22px 76px; overflow: hidden; }
  .reviews-score > strong { font-size: 60px; }
  .reviews-grid { display: flex; gap: 12px; margin-right: -22px; padding-right: 22px; overflow-x: auto; border: 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card, .review-card:last-child { min-height: 300px; flex: 0 0 min(82vw, 330px); grid-column: auto; padding: 25px 24px 26px; border: 1px solid var(--white-line); border-radius: 18px; scroll-snap-align: start; }
  .review-card:first-child { border: 1px solid rgba(214,189,134,.28); }
  .review-card blockquote { margin: 29px 0 27px; font-size: 23px; }
  .reviews-link { min-height: 44px; align-items: center; margin-top: 24px; }
  footer { align-items: flex-start; flex-direction: column; padding: 34px 22px calc(44px + env(safe-area-inset-bottom)); }
  body:has(.mobile-checkout:not([hidden])) > footer { padding-bottom: calc(112px + env(safe-area-inset-bottom)); }
  .modal-backdrop {
    inset: auto;
    top: var(--booking-viewport-top, 0px);
    left: var(--booking-viewport-left, 0px);
    width: var(--booking-viewport-width, 100vw);
    height: var(--booking-viewport-height, 100dvh);
    place-items: end center;
    padding: max(8px, env(safe-area-inset-top)) 0 0;
  }
  .time-modal {
    width: 100%;
    height: 100%;
    max-height: none;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    overflow: hidden;
    padding: 0;
    border-radius: 24px 24px 0 0;
    overscroll-behavior: contain;
  }
  .booking-flow-panel:not([hidden]) {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
  }
  .booking-panel-scroll {
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 58px 18px 24px;
    scroll-padding-block: 18px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .booking-success:not([hidden]) {
    height: 100%;
    overflow-y: auto;
    padding: 58px 18px max(24px, env(safe-area-inset-bottom));
  }
  .time-modal h2 { font-size: 44px; }
  .modal-close { position: absolute; top: 10px; right: 14px; z-index: 6; float: none; width: 44px; height: 44px; margin: 0; background: rgba(246,245,241,.92); backdrop-filter: blur(8px); }
  .date-row { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 3px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .date-row::-webkit-scrollbar { display: none; }
  .date-button { min-height: 62px; flex: 0 0 58px; padding: 11px 4px; scroll-snap-align: start; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .modal-footer { align-items: stretch; flex-direction: column; gap: 18px; }
  .modal-footer .continue-button { width: 100%; }
  .details-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .toast { left: 14px; right: 14px; bottom: 15px; min-width: 0; }
}

@media (max-width: 360px) {
  .site-header { padding-inline: 14px; }
  .brand { gap: 8px; }
  .brand-name { font-size: 12px; }
  .header-cta { padding-inline: 13px; }
  .hero-copy { padding-inline: 18px; }
  .hero h1 { font-size: 50px; }
  .hero-actions { gap: 14px; }
  .primary-button { gap: 14px; padding-inline: 19px; }
  .booking-section { padding-inline: 12px; }
  .step { gap: 6px; font-size: 10px; }
  .step-line { margin-inline: 6px; }
  .service-panel { padding-inline: 12px; }
  .service-trigger { grid-template-columns: 25px minmax(0,1fr) 32px; }
  .addons-content { padding-inline: 3px; }
  .time-modal { padding-inline: 16px; }
}

@media (max-width: 820px) {
  .booking-assurances { justify-content: flex-start; margin-top: 18px; }
  .square-booking-shell { margin-top: 30px; border-radius: 20px; }
  .square-booking-intro { grid-template-columns: 1fr; gap: 12px; padding: 23px 20px; }
  .square-booking-embed { height: 720px; }
  .square-booking-embed iframe { min-height: 720px !important; }
  .square-flow-heading { grid-template-columns: 1fr; gap: 13px; padding-right: 42px; }
  .square-flow-assurances { justify-content: flex-start; }
  .square-flow-modal { height: calc(100dvh - max(8px, env(safe-area-inset-top))); }
  .square-flow-frame-wrap { height: auto; min-height: 0; border-radius: 14px; }
  .square-flow-fallback { margin-left: 0; }
}

@media (max-width: 360px) {
  .booking-assurances span { padding-inline: 10px; }
  .square-booking-shell { margin-inline: -2px; }
  .square-booking-intro { padding-inline: 16px; }
  .square-flow-assurances span { padding-inline: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Version 1.2 — image-first, booking-focused direction */
.tiktok-section {
  padding: 110px clamp(24px, 6vw, 100px) 120px;
  color: #fff;
  background: #1b1b18;
  overflow: hidden;
}

.tiktok-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 46px;
}

.tiktok-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.1vw, 72px);
  line-height: .95;
  letter-spacing: -.068em;
}

.tiktok-heading .eyebrow { color: rgba(255,255,255,.48); }
.tiktok-heading-copy { max-width: 270px; padding-bottom: 5px; }
.tiktok-heading-copy p { margin: 0 0 20px; color: rgba(255,255,255,.58); font-size: 13px; }
.tiktok-heading-copy a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.34);
  color: rgba(255,255,255,.8);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tiktok-card {
  min-width: 0;
  padding: 10px;
  background: #272722;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
}

.tiktok-frame {
  aspect-ratio: 9 / 16;
  margin-bottom: 0;
  overflow: hidden;
  background: #080807;
  border-radius: 15px;
}

.tiktok-frame iframe { width: 100%; height: 100%; display: block; border: 0; }
.reviews-grid { grid-template-columns: 1.2fr 1fr; }
.reviews-grid .review-card:last-child { grid-column: auto; border-top: 0; border-left: 1px solid var(--white-line); }
.version-label { color: rgba(255,255,255,.38); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.hero-work-stack { display: none; }
.booking-location { display: none; }

/* Version 1.3 — Codex cut */
html[data-version="1.3"] .tiktok-grid { grid-template-columns: 1.32fr .84fr .84fr; align-items: start; }
html[data-version="1.3"] .tiktok-card-featured { background: rgba(214,189,134,.11); border-color: rgba(214,189,134,.28); }

/* Version 1.4 — show the work before asking visitors to choose a service */
html[data-version="1.4"] main { display: flex; flex-direction: column; }
html[data-version="1.4"] .hero { order: 1; }
html[data-version="1.4"] .proof-strip { order: 2; }
html[data-version="1.4"] .portfolio-section { order: 3; }
html[data-version="1.4"] .tiktok-section { order: 4; }
html[data-version="1.4"] .booking-section { order: 5; }
html[data-version="1.4"] .experience-section { order: 6; }
html[data-version="1.4"] .location-section { order: 7; }
html[data-version="1.4"] .reviews-section { order: 8; }

/* Version 1.5 — layered work showcase, reviews, then booking */
html[data-version="1.5"] main { display: flex; flex-direction: column; background: var(--ink); }
html[data-version="1.5"] .hero { order: 1; }
html[data-version="1.5"] .portfolio-section { order: 2; }
html[data-version="1.5"] .tiktok-section { order: 3; }
html[data-version="1.5"] .location-section { order: 4; }
html[data-version="1.5"] .reviews-section { order: 5; }
html[data-version="1.5"] .booking-section { order: 6; }
html[data-version="1.5"] .experience-section,
html[data-version="1.5"] .proof-strip { display: none; }

html[data-version="1.5"] .hero {
  min-height: 840px;
  position: relative;
  display: block;
  isolation: isolate;
  background: #0f0f0d;
}

html[data-version="1.5"] .hero::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(11,11,10,.68) 56%, rgba(11,11,10,.97));
}

html[data-version="1.5"] .hero-art {
  width: 100%;
  min-height: 0;
  position: absolute;
  inset: 0;
  z-index: 0;
}

html[data-version="1.5"] .hero-art::after {
  background: linear-gradient(90deg, rgba(12,12,11,.88), rgba(12,12,11,.55) 42%, rgba(12,12,11,.18) 75%, rgba(12,12,11,.42));
}

html[data-version="1.5"] .hero-art > img {
  object-position: 12% 46%;
  filter: saturate(.95) contrast(1.04) brightness(.78);
}

html[data-version="1.5"] .hero-copy {
  width: 52%;
  min-height: 840px;
  position: relative;
  z-index: 4;
  justify-content: flex-end;
  padding: 150px clamp(28px, 5.5vw, 86px) 72px;
  background: transparent;
}

html[data-version="1.5"] .hero h1 {
  max-width: 650px;
  font-size: clamp(64px, 7vw, 108px);
  line-height: .88;
}

html[data-version="1.5"] .hero-intro { max-width: 390px; color: rgba(255,255,255,.75); }
html[data-version="1.5"] .hero-meta { margin-top: 30px; }
html[data-version="1.5"] .photo-label { display: none; }

html[data-version="1.5"] .hero-work-stack {
  width: min(54vw, 760px);
  height: 570px;
  position: absolute;
  top: 125px;
  right: 3.5vw;
  z-index: 3;
  display: block;
  perspective: 1200px;
  pointer-events: none;
}

html[data-version="1.5"] .hero-work-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #f0e8d9;
  border: 6px solid #f0e8d9;
  border-radius: 20px;
  box-shadow: 0 36px 80px rgba(0,0,0,.5), 0 8px 20px rgba(0,0,0,.28);
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.22,1,.36,1), box-shadow .55s ease;
}

html[data-version="1.5"] .hero-work-card img {
  width: 100%;
  height: calc(100% - 38px);
  display: block;
  object-fit: cover;
  filter: none;
}

html[data-version="1.5"] .hero-work-card figcaption {
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #27231c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

html[data-version="1.5"] .hero-work-card-a { width: 37%; height: 430px; left: 0; top: 66px; transform: rotateY(7deg) rotateZ(-7deg) translateZ(10px); }
html[data-version="1.5"] .hero-work-card-b { width: 38%; height: 466px; left: 31%; top: 0; z-index: 2; transform: rotateY(-4deg) rotateZ(2.5deg) translateZ(70px); }
html[data-version="1.5"] .hero-work-card-c { width: 35%; height: 412px; right: 0; top: 88px; transform: rotateY(-8deg) rotateZ(7deg) translateZ(20px); }

html[data-version="1.5"] .portfolio-section {
  padding-top: 110px;
  color: var(--ink);
  background: radial-gradient(circle at 85% 8%, rgba(255,255,255,.28), transparent 30%), linear-gradient(145deg, #d6bd86, #c5a96d);
}

html[data-version="1.5"] .portfolio-heading,
html[data-version="1.5"] .portfolio-grid { max-width: 1420px; margin-inline: auto; }
html[data-version="1.5"] .portfolio-heading .eyebrow { color: rgba(21,21,19,.55); }
html[data-version="1.5"] .portfolio-grid { grid-template-columns: 1.05fr .95fr .95fr; grid-template-rows: 310px 310px; gap: 20px; perspective: 1200px; }
html[data-version="1.5"] .portfolio-card {
  border-radius: 24px;
  box-shadow: 0 28px 58px rgba(45,35,16,.25), 0 5px 14px rgba(45,35,16,.16);
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.22,1,.36,1), box-shadow .55s ease;
}
html[data-version="1.5"] .portfolio-card:nth-child(1) { transform: translateY(14px) rotateZ(-1.3deg); }
html[data-version="1.5"] .portfolio-card:nth-child(2) { transform: translateY(-7px) rotateZ(1deg); }
html[data-version="1.5"] .portfolio-card:nth-child(3) { transform: translateY(9px) rotateZ(-.8deg); }
html[data-version="1.5"] .portfolio-card:nth-child(4) { transform: translateY(4px) rotateZ(.55deg); }
html[data-version="1.5"] .portfolio-card:hover { transform: translateY(-8px) rotateZ(0) scale(1.012); box-shadow: 0 36px 75px rgba(45,35,16,.32); }
html[data-version="1.5"] .portfolio-card img { filter: none; }

html[data-version="1.5"] .tiktok-section { background: radial-gradient(circle at 12% 18%, rgba(214,189,134,.09), transparent 32%), #11110f; }
html[data-version="1.5"] .tiktok-grid { grid-template-columns: 1.12fr 1fr 1fr; gap: 22px; perspective: 1200px; }
html[data-version="1.5"] .tiktok-card { box-shadow: 0 28px 65px rgba(0,0,0,.34); transition: transform .5s cubic-bezier(.22,1,.36,1), border-color .3s ease; }
html[data-version="1.5"] .tiktok-card:nth-child(1) { transform: rotateZ(-1deg); }
html[data-version="1.5"] .tiktok-card:nth-child(2) { transform: translateY(22px); }
html[data-version="1.5"] .tiktok-card:nth-child(3) { transform: rotateZ(1deg); }
html[data-version="1.5"] .tiktok-card:hover { transform: translateY(-7px); border-color: rgba(214,189,134,.42); }

html[data-version="1.5"] .location-section { background: linear-gradient(135deg, #e7e2d9, #cec6b8); }

html[data-version="1.5"] .reviews-section { padding-bottom: 115px; }
html[data-version="1.5"] .reviews-grid { gap: 18px; border: 0; }
html[data-version="1.5"] .review-card,
html[data-version="1.5"] .reviews-grid .review-card:last-child {
  min-height: 280px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}
html[data-version="1.5"] .review-card-featured { background: linear-gradient(145deg, rgba(214,189,134,.15), rgba(214,189,134,.05)); }

html[data-version="1.5"] .booking-section {
  padding-top: 115px;
  background: radial-gradient(circle at 88% 5%, rgba(255,255,255,.34), transparent 27%), linear-gradient(145deg, #d6bd86, #e5d0a3);
}
html[data-version="1.5"] .booking-section::before { color: rgba(21,21,19,.07); }
html[data-version="1.5"] .section-heading .eyebrow { color: rgba(21,21,19,.55); }
html[data-version="1.5"] .service-panel { background: rgba(248,243,232,.86); border: 1px solid rgba(21,21,19,.1); box-shadow: 0 30px 70px rgba(73,52,17,.18); backdrop-filter: blur(12px); }
html[data-version="1.5"] .booking-summary { box-shadow: 0 30px 70px rgba(54,38,11,.27); }

@media (max-width: 820px) {
  .hero {
    min-height: max(690px, 100svh);
    grid-template: 1fr / 1fr;
  }

  .hero-copy,
  .hero-art {
    grid-area: 1 / 1;
    min-height: max(690px, 100svh);
  }

  .hero-art { z-index: 0; }
  .hero-art::after { background: linear-gradient(180deg, rgba(12,12,11,.18), rgba(12,12,11,.04) 35%, rgba(12,12,11,.78) 78%, rgba(12,12,11,.98)); }
  .hero-art > img { object-position: 51% center; filter: saturate(.9) contrast(1.02) brightness(.95); }

  .hero-copy {
    position: relative;
    z-index: 2;
    justify-content: flex-end;
    padding: calc(110px + env(safe-area-inset-top)) 22px 38px;
    background: linear-gradient(to top, rgba(13,13,12,.98), rgba(13,13,12,.62) 38%, transparent 70%);
  }

  .hero .eyebrow { margin-bottom: 15px; }
  .hero h1 { max-width: 360px; font-size: clamp(48px, 13.8vw, 62px); line-height: .9; }
  .hero-intro { max-width: 330px; margin-top: 18px; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.45; }
  .hero-actions { margin-top: 23px; }
  .hero-actions .text-link { display: none; }
  .hero-meta { flex-direction: row; margin-top: 19px; }
  .hero-meta > span:first-child { display: none; }
  .photo-label { display: none; }
  .proof-strip { display: none; }

  html[data-version="1.3"] .hero-copy {
    width: calc(100% - 28px);
    min-height: 0;
    align-self: end;
    margin: 0 14px 18px;
    padding: 24px 20px 21px;
    background: rgba(15,15,13,.84);
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
  }

  html[data-version="1.3"] .hero h1 { font-size: clamp(42px, 12vw, 54px); }
  html[data-version="1.3"] .hero-meta { display: none; }
  html[data-version="1.3"] .hero-actions, html[data-version="1.3"] .primary-button { width: 100%; }

  .tiktok-heading { align-items: start; flex-direction: column; gap: 22px; }
  .tiktok-heading-copy { max-width: none; }
}

@media (max-width: 620px) {
  .primary-button { min-height: 52px; }
  .booking-section { padding-top: 56px; }
  .service-panel-top p { font-size: 12px; }
  .experience-section { display: none; }

  .tiktok-section { padding: 66px 0 72px 22px; }
  .tiktok-heading { margin-bottom: 30px; padding-right: 22px; }
  .tiktok-heading h2 { font-size: clamp(40px, 12vw, 48px); }
  .tiktok-heading-copy p { margin-bottom: 14px; }
  .tiktok-grid {
    display: flex;
    gap: 12px;
    padding-right: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .tiktok-grid::-webkit-scrollbar { display: none; }
  .tiktok-card { flex: 0 0 min(78vw, 294px); scroll-snap-align: start; }

  html[data-version="1.3"] .portfolio-grid { grid-template-rows: 300px; }
  html[data-version="1.3"] .portfolio-card:nth-child(n+3) { display: none; }
  html[data-version="1.3"] .portfolio-card-tall { grid-column: 1; }
  html[data-version="1.3"] .portfolio-card:nth-child(2) { grid-column: 2; }
  html[data-version="1.3"] .tiktok-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
  html[data-version="1.3"] .tiktok-card { min-width: 0; flex: none; }
  html[data-version="1.3"] .tiktok-card-featured { grid-column: 1 / -1; }

  .reviews-grid { grid-template-columns: none; }
  .reviews-grid .review-card:last-child { border: 1px solid var(--white-line); }
  .review-card blockquote { font-size: 21px; }
  footer .version-label { order: 4; }
}

@media (max-width: 360px) {
  .hero, .hero-art, .hero-copy { min-height: max(620px, 100svh); }
  .hero-copy { padding-bottom: 56px; }
  .hero h1 { font-size: 42px; }
  .hero-intro { margin-top: 13px; font-size: 12.5px; }
  .hero-actions { margin-top: 17px; }
  .hero-meta { display: none; }
  html[data-version="1.3"] .hero-copy { min-height: 0; padding-bottom: 21px; }
  html[data-version="1.3"] .hero h1 { font-size: 40px; }
}

@media (max-width: 360px) and (max-height: 650px) {
  html[data-version="1.3"] .hero-copy { margin-bottom: 52px; }
}

@media (max-width: 820px) {
  html[data-version="1.5"] .hero,
  html[data-version="1.5"] .hero-art,
  html[data-version="1.5"] .hero-copy { min-height: max(780px, 100svh); }

  html[data-version="1.5"] .hero-art { grid-area: auto; }
  html[data-version="1.5"] .hero-art::after { background: linear-gradient(180deg, rgba(12,12,11,.24), rgba(12,12,11,.08) 42%, rgba(12,12,11,.75)); }
  html[data-version="1.5"] .hero-art > img { object-position: 36% center; filter: saturate(.98) contrast(1.04) brightness(.72); }
  html[data-version="1.5"] .hero::after { inset: 42% 0 0; }

  html[data-version="1.5"] .hero-copy {
    width: 100%;
    grid-area: auto;
    padding: calc(108px + env(safe-area-inset-top)) 22px 38px;
    background: transparent;
  }

  html[data-version="1.5"] .hero h1 { max-width: 370px; font-size: clamp(50px, 13vw, 66px); }
  html[data-version="1.5"] .hero-intro { max-width: 335px; margin-top: 17px; }
  html[data-version="1.5"] .hero-actions { margin-top: 23px; }
  html[data-version="1.5"] .hero-meta { margin-top: 19px; }

  html[data-version="1.5"] .hero-work-stack {
    width: min(74vw, 520px);
    height: 365px;
    top: calc(98px + env(safe-area-inset-top));
    right: 2vw;
  }

  html[data-version="1.5"] .hero-work-card { border-width: 4px; border-radius: 15px; box-shadow: 0 22px 48px rgba(0,0,0,.48), 0 5px 15px rgba(0,0,0,.27); }
  html[data-version="1.5"] .hero-work-card img { height: calc(100% - 29px); }
  html[data-version="1.5"] .hero-work-card figcaption { height: 29px; padding-inline: 8px; font-size: 7px; }
  html[data-version="1.5"] .hero-work-card-a { width: 43%; height: 265px; top: 46px; }
  html[data-version="1.5"] .hero-work-card-b { width: 44%; height: 292px; left: 29%; }
  html[data-version="1.5"] .hero-work-card-c { width: 41%; height: 255px; top: 59px; }

  html[data-version="1.5"] .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 330px 215px 265px; gap: 12px; }
  html[data-version="1.5"] .portfolio-card-tall { grid-column: span 2; grid-row: auto; }
  html[data-version="1.5"] .portfolio-card-wide { grid-column: span 2; }
  html[data-version="1.5"] .portfolio-card { border-radius: 20px; }
}

@media (max-width: 620px) {
  html[data-version="1.5"] .hero,
  html[data-version="1.5"] .hero-art,
  html[data-version="1.5"] .hero-copy { min-height: max(760px, 100svh); }

  html[data-version="1.5"] .hero-copy { padding: calc(102px + env(safe-area-inset-top)) 20px 36px; }
  html[data-version="1.5"] .hero h1 { font-size: clamp(46px, 13.2vw, 56px); }
  html[data-version="1.5"] .hero-intro { font-size: 13px; line-height: 1.45; }
  html[data-version="1.5"] .hero-work-stack { width: 92vw; height: 330px; top: calc(88px + env(safe-area-inset-top)); right: -4vw; }
  html[data-version="1.5"] .hero-work-card-a { width: 39%; height: 238px; top: 42px; left: 2%; }
  html[data-version="1.5"] .hero-work-card-b { width: 40%; height: 260px; left: 30%; }
  html[data-version="1.5"] .hero-work-card-c { width: 37%; height: 228px; top: 54px; right: 1%; }

  html[data-version="1.5"] .portfolio-section { padding: 70px 18px 82px; }
  html[data-version="1.5"] .portfolio-heading { margin-bottom: 34px; }
  html[data-version="1.5"] .portfolio-card { box-shadow: 0 20px 42px rgba(45,35,16,.25); }
  html[data-version="1.5"] .portfolio-card:nth-child(1) { transform: rotateZ(-.7deg); }
  html[data-version="1.5"] .portfolio-card:nth-child(2) { transform: translateY(-4px) rotateZ(.7deg); }
  html[data-version="1.5"] .portfolio-card:nth-child(3) { transform: translateY(5px) rotateZ(-.55deg); }
  html[data-version="1.5"] .portfolio-card:nth-child(4) { transform: rotateZ(.35deg); }

  html[data-version="1.5"] .tiktok-card,
  html[data-version="1.5"] .tiktok-card:nth-child(n) { transform: none; }
  html[data-version="1.5"] .tiktok-card { box-shadow: 0 20px 46px rgba(0,0,0,.35); }

  html[data-version="1.5"] .location-section { padding-top: 72px; padding-bottom: 76px; }
  html[data-version="1.5"] .reviews-section { padding-top: 76px; padding-bottom: 82px; }
  html[data-version="1.5"] .review-card,
  html[data-version="1.5"] .reviews-grid .review-card:last-child { min-height: 280px; box-shadow: 0 18px 44px rgba(0,0,0,.24); }

  html[data-version="1.5"] .booking-section { padding: 74px 14px 72px; }
  html[data-version="1.5"] .service-panel { border-radius: 20px; box-shadow: 0 22px 52px rgba(73,52,17,.18); }
}

@media (max-width: 360px) {
  html[data-version="1.5"] .hero,
  html[data-version="1.5"] .hero-art,
  html[data-version="1.5"] .hero-copy { min-height: max(720px, 100svh); }
  html[data-version="1.5"] .hero-copy { padding-bottom: 42px; }
  html[data-version="1.5"] .hero h1 { font-size: 40px; }
  html[data-version="1.5"] .hero-intro { margin-top: 12px; font-size: 12px; }
  html[data-version="1.5"] .hero-actions { margin-top: 17px; }
  html[data-version="1.5"] .hero-meta { display: none; }
  html[data-version="1.5"] .hero-work-stack { width: 96vw; height: 286px; top: calc(84px + env(safe-area-inset-top)); right: -6vw; }
  html[data-version="1.5"] .hero-work-card-a { height: 204px; top: 37px; }
  html[data-version="1.5"] .hero-work-card-b { height: 224px; }
  html[data-version="1.5"] .hero-work-card-c { height: 196px; top: 48px; }
}

/* v1.5 clarity pass: central finished cut, complete gallery, booking last */
html[data-version="1.5"] .location-section { display: none; }
html[data-version="1.5"] .desktop-nav a:last-child { display: none; }
html[data-version="1.5"] .booking-location {
  max-width: 560px;
  display: block;
  margin: 18px 0 0;
  color: rgba(21,21,19,.62);
  font-size: 12px;
  line-height: 1.5;
}

html[data-version="1.5"] .hero-work-card-a { width: 31%; height: 440px; left: 2%; top: 88px; transform: rotateY(10deg) rotateZ(-6deg) translateZ(8px); }
html[data-version="1.5"] .hero-work-card-b { width: 42%; height: 510px; left: 50%; top: 0; transform: translateX(-50%) rotateZ(.8deg) translateZ(78px); }
html[data-version="1.5"] .hero-work-card-c { width: 31%; height: 430px; right: 2%; top: 104px; transform: rotateY(-10deg) rotateZ(6deg) translateZ(16px); }

html[data-version="1.5"] .portfolio-grid {
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: auto;
  gap: 16px;
}
html[data-version="1.5"] .portfolio-card,
html[data-version="1.5"] .portfolio-card-tall,
html[data-version="1.5"] .portfolio-card-wide {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
}
html[data-version="1.5"] .portfolio-card::after { height: 30%; }

@media (max-width: 820px) {
  html[data-version="1.5"] .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding-top: calc(68px + env(safe-area-inset-top));
  }
  html[data-version="1.5"] .hero::after { display: none; }
  html[data-version="1.5"] .hero-art {
    min-height: 510px;
    position: relative;
    inset: auto;
    order: 1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 42%, rgba(214,189,134,.2), transparent 48%), #171714;
  }
  html[data-version="1.5"] .hero-art::after { background: linear-gradient(180deg, rgba(12,12,11,.18), rgba(12,12,11,.56)); }
  html[data-version="1.5"] .hero-art > img { opacity: .18; object-position: center; filter: saturate(.8) contrast(1.05); }
  html[data-version="1.5"] .hero-copy {
    min-height: auto;
    order: 2;
    justify-content: flex-start;
    padding: 26px 22px 40px;
    background: var(--ink);
  }
  html[data-version="1.5"] .hero h1 { max-width: 350px; font-size: clamp(46px, 12.8vw, 58px); }
  html[data-version="1.5"] .hero-intro { margin-top: 14px; }
  html[data-version="1.5"] .hero-actions { margin-top: 21px; }
  html[data-version="1.5"] .hero-meta { display: none; }
  html[data-version="1.5"] .hero-work-stack {
    width: 100%;
    height: 510px;
    top: calc(68px + env(safe-area-inset-top));
    right: 0;
    perspective: 900px;
  }
  html[data-version="1.5"] .hero-work-card { height: auto; aspect-ratio: 3 / 4; }
  html[data-version="1.5"] .hero-work-card-a { width: min(43vw, 168px); left: -3%; top: 116px; transform: rotateZ(-6deg); }
  html[data-version="1.5"] .hero-work-card-b { width: min(64vw, 250px); left: 50%; top: 27px; transform: translateX(-50%) rotateZ(.8deg); }
  html[data-version="1.5"] .hero-work-card-c { width: min(43vw, 168px); right: -3%; top: 138px; transform: rotateZ(6deg); }
}

@media (max-width: 620px) {
  html[data-version="1.5"] .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 10px;
  }
  html[data-version="1.5"] .portfolio-card,
  html[data-version="1.5"] .portfolio-card-tall,
  html[data-version="1.5"] .portfolio-card-wide { grid-column: auto; grid-row: auto; aspect-ratio: 9 / 16; border-radius: 14px; }
  html[data-version="1.5"] .booking-location { margin-top: 14px; font-size: 11px; }
}

@media (max-width: 360px) {
  html[data-version="1.5"] .hero-art { min-height: 450px; }
  html[data-version="1.5"] .hero-work-stack { height: 450px; }
  html[data-version="1.5"] .hero-work-card-a { width: 42vw; top: 111px; }
  html[data-version="1.5"] .hero-work-card-b { width: 63vw; top: 24px; }
  html[data-version="1.5"] .hero-work-card-c { width: 42vw; top: 131px; }
  html[data-version="1.5"] .hero-copy { padding-bottom: 36px; }
  html[data-version="1.5"] .hero h1 { font-size: 40px; }
}

/* Version 1.6 — classic content flow with a compact location divider */
html[data-version="1.6"] main {
  display: flex;
  flex-direction: column;
  background: var(--ink);
}

html[data-version="1.6"] .hero { order: 1; }
html[data-version="1.6"] .portfolio-section { order: 2; }
html[data-version="1.6"] .location-section { order: 3; }
html[data-version="1.6"] .tiktok-section { order: 4; }
html[data-version="1.6"] .booking-section { order: 5; }
html[data-version="1.6"] .reviews-section { order: 6; }
html[data-version="1.6"] .experience-section,
html[data-version="1.6"] .proof-strip { display: none; }

html[data-version="1.6"] .hero {
  min-height: 820px;
  position: relative;
  display: block;
  isolation: isolate;
  background: #11110f;
}

html[data-version="1.6"] .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10,10,9,.64) 0%, rgba(10,10,9,.42) 35%, rgba(10,10,9,.08) 68%, rgba(10,10,9,.03));
}

html[data-version="1.6"] .hero-art {
  width: 100%;
  min-height: 0;
  position: absolute;
  inset: 0;
  z-index: 0;
}

html[data-version="1.6"] .hero-art::after {
  background: linear-gradient(180deg, rgba(12,12,11,.03), transparent 62%, rgba(12,12,11,.18));
}

html[data-version="1.6"] .hero-art > img {
  object-position: 50% 44%;
  filter: saturate(.96) contrast(1.02) brightness(1.1);
}

html[data-version="1.6"] .hero-copy {
  width: min(720px, 58%);
  min-height: 820px;
  position: relative;
  z-index: 2;
  padding: 160px clamp(28px, 6vw, 100px) 88px;
  background: transparent;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}

html[data-version="1.6"] .hero-intro { color: rgba(255,255,255,.72); }

html[data-version="1.6"] .hero-work-button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

html[data-version="1.6"] .hero-work-button:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

html[data-version="1.6"] .portfolio-section {
  background: linear-gradient(160deg, #eee9df, #d8d0c2);
}

html[data-version="1.6"] .portfolio-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: none;
  align-items: start;
  gap: clamp(12px, 1.5vw, 22px);
}

html[data-version="1.6"] .portfolio-card,
html[data-version="1.6"] .portfolio-card-tall,
html[data-version="1.6"] .portfolio-card-wide {
  grid-column: auto;
  grid-row: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f7f3ea;
  border: 1px solid rgba(17,17,15,.3);
  border-radius: 2px;
  box-shadow: 0 16px 34px rgba(51,42,24,.12);
}

html[data-version="1.6"] .portfolio-card::after { display: none; }

html[data-version="1.6"] .portfolio-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #151513;
  filter: none;
  transform: none;
}

html[data-version="1.6"] .portfolio-card:hover img {
  filter: none;
  transform: none;
}

html[data-version="1.6"] .portfolio-card figcaption {
  min-height: 52px;
  position: static;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: var(--ink);
  background: #f7f3ea;
  border-top: 1px solid rgba(17,17,15,.16);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

html[data-version="1.6"] .portfolio-card figcaption span { color: #8b7040; }

html[data-version="1.6"] .tiktok-section {
  background: radial-gradient(circle at 12% 18%, rgba(214,189,134,.09), transparent 32%), #11110f;
}

html[data-version="1.6"] .location-divider {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(300px, 1.3fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: 34px clamp(24px, 6vw, 100px);
  color: #fff;
  background: #191916;
  border-top: 1px solid rgba(214,189,134,.28);
  border-bottom: 1px solid rgba(214,189,134,.28);
}

html[data-version="1.6"] .location-divider::before { display: none; }
html[data-version="1.6"] .location-divider .eyebrow { margin: 0 0 9px; color: #d6bd86; }

html[data-version="1.6"] .location-divider h2 {
  margin: 0;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1;
  letter-spacing: -.045em;
}

html[data-version="1.6"] .location-divider-address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: clamp(20px, 3vw, 46px);
  border-left: 1px solid rgba(255,255,255,.18);
}

html[data-version="1.6"] .location-divider-address strong {
  color: #fff;
  font-size: 13px;
  letter-spacing: .04em;
}

html[data-version="1.6"] .location-divider-address span {
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

html[data-version="1.6"] .location-divider-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  color: var(--ink);
  background: #d6bd86;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
}

html[data-version="1.6"] .location-divider-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(214,189,134,.16);
}

html[data-version="1.6"] .location-divider-cta svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

html[data-version="1.6"] .booking-section {
  background: radial-gradient(circle at 88% 5%, rgba(214,189,134,.2), transparent 26%), var(--paper);
}

html[data-version="1.6"] .reviews-section { padding-bottom: 115px; }

@media (max-width: 820px) {
  html[data-version="1.6"] .hero {
    min-height: max(720px, 100svh);
    display: block;
  }

  html[data-version="1.6"] .hero::after {
    background: linear-gradient(180deg, rgba(10,10,9,.06), rgba(10,10,9,.03) 44%, rgba(10,10,9,.46) 72%, rgba(10,10,9,.78));
  }

  html[data-version="1.6"] .hero-art {
    min-height: 0;
    position: absolute;
    inset: 0;
  }

  html[data-version="1.6"] .hero-art::after {
    background: linear-gradient(180deg, rgba(12,12,11,.02), transparent 68%, rgba(12,12,11,.16));
  }

  html[data-version="1.6"] .hero-art > img {
    object-position: 49% 43%;
    filter: saturate(.98) contrast(1.01) brightness(1.08);
  }

  html[data-version="1.6"] .hero-copy {
    width: 100%;
    min-height: max(720px, 100svh);
    justify-content: flex-end;
    padding: calc(110px + env(safe-area-inset-top)) 22px 42px;
    background: transparent;
  }

  html[data-version="1.6"] .hero-actions { gap: 10px; }
  html[data-version="1.6"] .hero-actions .primary-button,
  html[data-version="1.6"] .hero-work-button { min-width: 0; }

  html[data-version="1.6"] .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 12px;
  }

  html[data-version="1.6"] .portfolio-card,
  html[data-version="1.6"] .portfolio-card-tall,
  html[data-version="1.6"] .portfolio-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  html[data-version="1.6"] .portfolio-card figcaption {
    min-height: 48px;
    padding: 12px;
  }

  html[data-version="1.6"] .location-divider {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    padding-block: 28px;
  }

  html[data-version="1.6"] .location-divider-address {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255,255,255,.14);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  html[data-version="1.6"] .hero-actions .primary-button,
  html[data-version="1.6"] .hero-work-button { flex: 1; padding-inline: 17px; }

  html[data-version="1.6"] .location-divider {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 25px 20px 28px;
  }

  html[data-version="1.6"] .location-divider-address,
  html[data-version="1.6"] .location-divider-cta {
    grid-column: auto;
    grid-row: auto;
  }

  html[data-version="1.6"] .location-divider-cta { width: 100%; }

  html[data-version="1.6"] .portfolio-section { padding-inline: 16px; }
  html[data-version="1.6"] .portfolio-grid { gap: 9px; }
  html[data-version="1.6"] .portfolio-card figcaption { font-size: 9px; }
}

@media (max-width: 360px) {
  html[data-version="1.6"] .hero-actions { flex-direction: column; align-items: stretch; }
  html[data-version="1.6"] .hero-actions .primary-button,
  html[data-version="1.6"] .hero-work-button { width: 100%; }
}

/* v1.6 interaction and content pass */
html[data-version="1.6"] .noise { opacity: .007; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #d6bd86, #fff1c7);
  box-shadow: 0 0 14px rgba(214,189,134,.55);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

html[data-version="1.6"] .desktop-nav a { position: relative; }
html[data-version="1.6"] .desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: #d6bd86;
  transform: scaleX(0);
  transition: transform .28s ease;
}
html[data-version="1.6"] .desktop-nav a:hover::after,
html[data-version="1.6"] .desktop-nav a.active::after { transform: scaleX(1); }
html[data-version="1.6"] .desktop-nav a.active { opacity: 1; }

html[data-version="1.6"] .primary-button,
html[data-version="1.6"] .hero-work-button,
html[data-version="1.6"] .header-cta,
html[data-version="1.6"] .location-divider-cta,
html[data-version="1.6"] .continue-button {
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease, border-color .25s ease;
}

html[data-version="1.6"] .primary-button:active,
html[data-version="1.6"] .hero-work-button:active,
html[data-version="1.6"] .header-cta:active,
html[data-version="1.6"] .location-divider-cta:active,
html[data-version="1.6"] .continue-button:active { transform: translateY(1px) scale(.98); }

html[data-version="1.6"] .brand-mark { transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease; }
html[data-version="1.6"] .brand:hover .brand-mark { transform: rotate(0) scale(1.08); box-shadow: 0 0 0 7px rgba(214,189,134,.12); }

html[data-version="1.6"] .portfolio-note { max-width: 390px; }
html[data-version="1.6"] .portfolio-note p { max-width: 350px; }

html[data-version="1.6"] .portfolio-card {
  cursor: zoom-in;
  transition: transform .38s cubic-bezier(.22,1,.36,1), box-shadow .38s ease, border-color .28s ease;
}

html[data-version="1.6"] .portfolio-card:hover {
  transform: translateY(-7px);
  border-color: rgba(122,93,39,.72);
  box-shadow: 0 24px 50px rgba(51,42,24,.2);
}

html[data-version="1.6"] .portfolio-card:focus-visible {
  outline: 3px solid #9f7f46;
  outline-offset: 4px;
}

html[data-version="1.6"] .portfolio-card figcaption strong { flex: 1; }
html[data-version="1.6"] .portfolio-card figcaption em {
  color: #6c5935;
  font-size: 8px;
  font-style: normal;
  letter-spacing: .1em;
  opacity: .62;
  transition: opacity .25s ease, transform .25s ease;
}
html[data-version="1.6"] .portfolio-card:hover figcaption em { opacity: 1; transform: translateX(2px); }

html[data-version="1.6"] .work-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(36px, 5vw, 68px);
  background: rgba(17,17,15,.18);
  border: 1px solid rgba(17,17,15,.18);
}

html[data-version="1.6"] .work-notes article {
  min-height: 190px;
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: rgba(247,243,234,.78);
  transition: background .3s ease, transform .35s cubic-bezier(.22,1,.36,1);
}

html[data-version="1.6"] .work-notes article::after {
  content: "";
  width: 110px;
  height: 110px;
  position: absolute;
  right: -72px;
  bottom: -72px;
  border: 1px solid rgba(139,112,64,.34);
  border-radius: 50%;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}

html[data-version="1.6"] .work-notes article:hover { background: #fffaf0; transform: translateY(-4px); }
html[data-version="1.6"] .work-notes article:hover::after { transform: translate(-30px,-30px) scale(1.5); }
html[data-version="1.6"] .work-notes article > span { color: #9a7b45; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
html[data-version="1.6"] .work-notes h3 { margin: 38px 0 10px; font-family: var(--display); font-size: 21px; letter-spacing: -.04em; }
html[data-version="1.6"] .work-notes p { max-width: 310px; margin: 0; color: rgba(17,17,15,.6); font-size: 12px; line-height: 1.65; }
html[data-version="1.6"] .work-notes:focus-visible { outline: 2px solid #9a7b45; outline-offset: 5px; }
html[data-version="1.6"] .work-notes-hint { display: none; }

html[data-version="1.6"] .tiktok-heading-copy { max-width: 390px; }
html[data-version="1.6"] .tiktok-heading-copy > p { margin-bottom: 16px; line-height: 1.7; }

html[data-version="1.6"] .watch-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 20px;
}

html[data-version="1.6"] .watch-badges span {
  padding: 6px 9px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

html[data-version="1.6"] .tiktok-card {
  position: relative;
  transition: transform .42s cubic-bezier(.22,1,.36,1), border-color .3s ease, box-shadow .3s ease;
}
html[data-version="1.6"] .tiktok-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214,189,134,.46);
  box-shadow: 0 28px 58px rgba(0,0,0,.3);
}
html[data-version="1.6"] .tiktok-frame { transition: box-shadow .3s ease; }
html[data-version="1.6"] .tiktok-card:hover .tiktok-frame { box-shadow: 0 0 0 1px rgba(214,189,134,.24); }

html[data-version="1.6"] .tiktok-footer {
  display: grid;
  grid-template-columns: .8fr 1.35fr auto;
  align-items: center;
  gap: clamp(25px, 4vw, 64px);
  margin-top: clamp(42px, 6vw, 72px);
  padding: 28px 30px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.12);
}

html[data-version="1.6"] .tiktok-footer .eyebrow { margin-bottom: 8px; color: #d6bd86; }
html[data-version="1.6"] .tiktok-footer strong { font-family: var(--display); font-size: 18px; letter-spacing: -.035em; }
html[data-version="1.6"] .tiktok-footer ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
html[data-version="1.6"] .tiktok-footer li { color: rgba(255,255,255,.53); font-size: 10px; line-height: 1.45; }
html[data-version="1.6"] .tiktok-footer li span { display: block; margin-bottom: 5px; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
html[data-version="1.6"] .tiktok-footer > a { display: inline-flex; flex-direction: column; align-items: flex-end; gap: 6px; color: rgba(255,255,255,.58); font-size: 10px; white-space: nowrap; }
html[data-version="1.6"] .tiktok-footer > a span { color: #d6bd86; font-size: 12px; font-weight: 800; transition: transform .25s ease; }
html[data-version="1.6"] .tiktok-footer > a:hover span { transform: translateX(4px); }

.motion-ready .scroll-reveal {
  opacity: 0;
  translate: 0 28px;
  transition: opacity .72s ease, translate .72s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .scroll-reveal.is-visible { opacity: 1; translate: 0 0; }

.work-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8,8,7,.9);
  backdrop-filter: blur(18px);
  animation: fadeIn .25s ease both;
}

.work-lightbox-dialog {
  width: min(1100px, calc(100vw - 40px));
  min-height: 0;
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0,1fr) 54px;
  align-items: center;
  gap: 16px;
  padding: 46px 20px 20px;
  color: #fff;
  background: #151513;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 35px 100px rgba(0,0,0,.55);
  animation: modalUp .35s cubic-bezier(.22,1,.36,1) both;
}

.work-lightbox-dialog figure { min-width: 0; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 22px; margin: 0; }
.work-lightbox-dialog figure img { width: 100%; max-height: 76vh; display: block; object-fit: contain; background: #0b0b0a; }
.work-lightbox-dialog figcaption { min-width: 150px; padding-bottom: 4px; }
.work-lightbox-dialog figcaption span { display: block; margin-bottom: 8px; color: #d6bd86; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.work-lightbox-dialog figcaption strong { display: block; font-family: var(--display); font-size: clamp(25px, 3vw, 42px); line-height: .94; letter-spacing: -.055em; }

.work-lightbox-close,
.work-lightbox-nav {
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.work-lightbox-close { width: 38px; height: 38px; position: absolute; top: 12px; right: 12px; z-index: 2; font-size: 24px; }
.work-lightbox-nav { width: 48px; height: 48px; font-size: 20px; }
.work-lightbox-close:hover,
.work-lightbox-nav:hover { color: var(--ink); background: #d6bd86; border-color: #d6bd86; transform: scale(1.06); }
.work-lightbox-close:focus-visible,
.work-lightbox-nav:focus-visible { outline: 2px solid #d6bd86; outline-offset: 3px; }

@media (max-width: 820px) {
  html[data-version="1.6"] .work-notes article { min-height: 170px; padding: 22px; }
  html[data-version="1.6"] .work-notes h3 { margin-top: 30px; }
  html[data-version="1.6"] .tiktok-footer { grid-template-columns: 1fr; align-items: start; }
  html[data-version="1.6"] .tiktok-footer > a { align-items: flex-start; }
  .work-lightbox-dialog { grid-template-columns: 44px minmax(0,1fr) 44px; gap: 8px; padding-inline: 8px; }
  .work-lightbox-dialog figure { grid-template-columns: 1fr; gap: 14px; }
  .work-lightbox-dialog figcaption { min-width: 0; padding: 0 6px 6px; }
  .work-lightbox-nav { width: 40px; height: 40px; }
}

@media (max-width: 620px) {
  html[data-version="1.6"] .work-notes {
    display: flex;
    gap: 10px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    background: transparent;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  html[data-version="1.6"] .work-notes::-webkit-scrollbar { display: none; }
  html[data-version="1.6"] .work-notes article { flex: 0 0 min(82vw, 310px); border: 1px solid rgba(17,17,15,.18); scroll-snap-align: start; }
  html[data-version="1.6"] .work-notes-hint { display: flex; align-items: center; justify-content: space-between; margin: 12px 22px 0; color: rgba(17,17,15,.58); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  html[data-version="1.6"] .work-notes-hint span { color: #8b7040; font-size: 16px; }
  html[data-version="1.6"] .portfolio-card figcaption em { display: none; }
  html[data-version="1.6"] .tiktok-footer { margin-right: 22px; padding: 24px 20px; }
  html[data-version="1.6"] .tiktok-footer ul { grid-template-columns: 1fr; gap: 14px; }
  html[data-version="1.6"] .tiktok-footer li { display: grid; grid-template-columns: 76px 1fr; align-items: baseline; }
  html[data-version="1.6"] .tiktok-footer li span { margin: 0; }
  .motion-ready .scroll-reveal { translate: 0 18px; }
  .work-lightbox { padding: 8px; }
  .work-lightbox-dialog { width: calc(100vw - 16px); grid-template-columns: 44px minmax(0,1fr) 44px; }
  .work-lightbox-dialog figure img { max-height: 68svh; }
  .work-lightbox-close { width: 44px; height: 44px; top: 8px; right: 8px; }
  .work-lightbox-nav { width: 44px; height: 44px; }
  html[data-version="1.6"] .portfolio-note a,
  html[data-version="1.6"] .tiktok-heading-copy > a,
html[data-version="1.6"] .reviews-link { min-height: 44px; display: inline-flex; align-items: center; }
}

/* v1.8 — preserves the v1.7 full-screen Tate banner and offline install states */
html[data-release="1.10"] .hero {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  background: #11110f;
}

html[data-release="1.10"] .hero-art {
  width: 100%;
  height: 100%;
  min-height: 100%;
  inset: 0;
}

html[data-release="1.10"] .hero-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  opacity: 1;
  filter: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

html[data-release="1.10"] .hero::after {
  background: linear-gradient(90deg, rgba(8,8,7,.56) 0%, rgba(8,8,7,.32) 38%, rgba(8,8,7,.06) 72%, transparent);
}

html[data-release="1.10"] .hero-art::after {
  background: linear-gradient(180deg, rgba(8,8,7,.02), transparent 68%, rgba(8,8,7,.16));
}

html[data-release="1.10"] .hero-copy {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}

html[data-release="1.10"] .photo-label { display: none; }

.network-status {
  position: fixed;
  top: calc(76px + env(safe-area-inset-top));
  left: 50%;
  z-index: 116;
  width: min(calc(100% - 32px), 620px);
  padding: 11px 16px;
  color: #171611;
  background: #d6bd86;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
  transform: translateX(-50%);
}

.network-status[hidden] { display: none; }

body.is-offline #continue-button:disabled,
body.is-offline #mobile-continue:disabled {
  cursor: not-allowed;
  opacity: .58;
}

@media (max-width: 820px) {
  html[data-release="1.10"] .hero,
  html[data-release="1.10"] .hero-copy {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
  }

  html[data-release="1.10"] .hero-art {
    height: 100%;
    min-height: 100%;
  }

  html[data-release="1.10"] .hero-art > img {
    object-position: 52% 50%;
    filter: none;
  }

  html[data-release="1.10"] .hero::after {
    background: linear-gradient(180deg, rgba(8,8,7,.03) 0%, rgba(8,8,7,.05) 43%, rgba(8,8,7,.32) 66%, rgba(8,8,7,.68) 100%);
  }

  html[data-release="1.10"] .hero-art::after {
    background: linear-gradient(180deg, transparent 65%, rgba(8,8,7,.08));
  }

  html[data-release="1.10"] .hero-copy {
    padding-top: calc(104px + env(safe-area-inset-top));
    padding-bottom: max(38px, calc(22px + env(safe-area-inset-bottom)));
    text-shadow: 0 2px 18px rgba(0,0,0,.64);
  }

  .network-status {
    top: calc(70px + env(safe-area-inset-top));
    width: calc(100% - 24px);
    border-radius: 14px;
    font-size: 10px;
  }
}

/* v1.8 — stronger work frames and font-independent arrows */
.ui-arrow {
  --arrow-angle: 0deg;
  width: 1.08em;
  height: 1.08em;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  font-style: normal;
  transform: rotate(var(--arrow-angle));
  transform-origin: center;
  transition: transform .22s ease;
}

.ui-arrow::before {
  content: "";
  width: 72%;
  height: 1.5px;
  position: absolute;
  left: 10%;
  top: 50%;
  background: currentColor;
  border-radius: 999px;
  transform: translateY(-50%);
}

.ui-arrow::after {
  content: "";
  width: 38%;
  height: 38%;
  position: absolute;
  right: 12%;
  top: 50%;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
}

.ui-arrow-external { --arrow-angle: -45deg; }
.ui-arrow-back { --arrow-angle: 180deg; }

a:hover .ui-arrow,
button:not(:disabled):hover .ui-arrow { transform: translateX(3px) rotate(var(--arrow-angle)); }
a:hover .ui-arrow-external { transform: translate(2px,-2px) rotate(var(--arrow-angle)); }
button:not(:disabled):hover .ui-arrow-back,
a:hover .ui-arrow-back { transform: translateX(-3px) rotate(var(--arrow-angle)); }

.text-button,
#mobile-continue,
html[data-version="1.6"] .portfolio-card figcaption em,
html[data-version="1.6"] .tiktok-footer > a span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.94), transparent 28%),
    linear-gradient(155deg, #eee9df 0%, #d8d0c2 62%, #c9b98f 100%);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-grid {
  gap: clamp(16px, 1.8vw, 26px);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card,
html[data-release="1.10"][data-version="1.6"] .portfolio-card-tall,
html[data-release="1.10"][data-version="1.6"] .portfolio-card-wide {
  position: relative;
  padding: 7px 7px 0;
  overflow: hidden;
  background: #11110f;
  border: 1px solid rgba(17,17,15,.88);
  border-radius: 3px;
  box-shadow: 0 22px 46px rgba(38,31,17,.2), 0 3px 0 rgba(122,93,39,.18);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card::before {
  content: "";
  height: 3px;
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  display: block;
  background: linear-gradient(90deg, #8f7040, #e3ca91 48%, #806331);
  pointer-events: none;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card img,
html[data-release="1.10"][data-version="1.6"] .portfolio-card:hover img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center;
  background: radial-gradient(circle at 50% 32%, #292823 0%, #11110f 70%);
  border: 1px solid rgba(255,255,255,.1);
  filter: saturate(1.07) contrast(1.05) brightness(1.02);
  transform: none;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card figcaption {
  min-height: 60px;
  padding: 14px 12px 13px;
  color: #f8f4ea;
  background: #11110f;
  border-top: 1px solid rgba(214,189,134,.36);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card figcaption > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #e3ca91;
  border: 1px solid rgba(227,202,145,.44);
  border-radius: 50%;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card figcaption em {
  color: #e3ca91;
  opacity: .82;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card:hover {
  transform: translateY(-9px);
  border-color: rgba(122,93,39,.92);
  box-shadow: 0 32px 64px rgba(38,31,17,.3), 0 3px 0 rgba(122,93,39,.28);
}

html[data-release="1.10"] .work-lightbox-nav .ui-arrow { width: 19px; height: 19px; }

@media (max-width: 620px) {
  html[data-release="1.10"][data-version="1.6"] .portfolio-grid { gap: 11px; }
  html[data-release="1.10"][data-version="1.6"] .portfolio-card,
  html[data-release="1.10"][data-version="1.6"] .portfolio-card-tall,
  html[data-release="1.10"][data-version="1.6"] .portfolio-card-wide {
    padding: 4px 4px 0;
    box-shadow: 0 14px 28px rgba(38,31,17,.18), 0 2px 0 rgba(122,93,39,.16);
  }
  html[data-release="1.10"][data-version="1.6"] .portfolio-card figcaption {
    min-height: 52px;
    gap: 8px;
    padding: 10px 8px;
  }
  html[data-release="1.10"][data-version="1.6"] .portfolio-card figcaption > span {
    width: 23px;
    height: 23px;
  }
}

@media (hover: none) {
  html[data-release="1.10"][data-version="1.6"] .portfolio-card:hover {
    transform: none;
    border-color: rgba(17,17,15,.88);
  }
}

/* Social profile controls and the full-width footer brand bar */
html[data-release="1.10"][data-version="1.6"] .social-profile-link {
  width: fit-content;
  min-height: 52px;
  display: inline-grid;
  grid-template-columns: 34px auto 14px;
  align-items: center;
  gap: 11px;
  padding: 8px 13px 8px 8px;
  color: #fff;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

html[data-release="1.10"][data-version="1.6"] .social-profile-link:hover {
  color: #fff;
  background: rgba(214,189,134,.12);
  border-color: rgba(214,189,134,.52);
  transform: translateY(-2px);
}

html[data-release="1.10"][data-version="1.6"] .social-profile-link:focus-visible,
.footer-socials a:focus-visible,
.footer-brand-bar:focus-visible {
  outline: 2px solid #d6bd86;
  outline-offset: 4px;
}

.social-logo {
  width: 34px;
  height: 34px;
  position: relative;
  flex: 0 0 34px;
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
}

.social-logo-instagram {
  background:
    radial-gradient(circle at 30% 108%, #ffd600 0 21%, #ff7a00 22% 39%, #ff0169 40% 61%, #d300c5 62% 77%, #7638fa 78% 100%);
}

.social-logo-instagram::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  inset: 0;
  margin: auto;
  border: 2px solid #fff;
  border-radius: 6px;
}

.social-logo-instagram::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 14px;
  left: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 7px -7px 0 -2px #fff;
}

.social-logo-tiktok {
  color: #fff;
  background: #050505;
}

.social-logo-tiktok::before {
  content: "♪";
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  text-shadow: -2px 0 #25f4ee, 2px 0 #fe2c55;
  transform: translate(-50%,-55%);
}

.social-profile-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.social-profile-copy small {
  color: rgba(255,255,255,.5);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.social-profile-copy strong {
  color: #fff;
  font-size: 11px;
  letter-spacing: .01em;
  line-height: 1.15;
}

body > footer.site-footer {
  display: block;
  gap: 0;
  padding: 0;
  color: rgba(255,255,255,.55);
  background: var(--ink);
}

.footer-meta {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(18px,3vw,42px);
  padding: 24px clamp(24px,6vw,100px);
}

.footer-socials {
  display: flex;
  justify-self: center;
  gap: 9px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.footer-socials a:hover {
  background: rgba(214,189,134,.12);
  border-color: rgba(214,189,134,.5);
  transform: translateY(-2px);
}

.footer-socials .social-logo {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  border-radius: 8px;
}

.footer-socials .social-logo-instagram::before {
  width: 14px;
  height: 14px;
  border-radius: 5px;
}

.footer-socials .social-logo-instagram::after {
  width: 5px;
  height: 5px;
  top: 11.5px;
  left: 11.5px;
  box-shadow: 6px -6px 0 -2px #fff;
}

.footer-socials .social-logo-tiktok::before { font-size: 22px; }

.site-footer .footer-brand-bar {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  justify-content: start;
  gap: 14px;
  padding: 18px clamp(24px,6vw,100px) max(18px,env(safe-area-inset-bottom));
  color: var(--ink);
  background: #d6bd86;
  border-top: 1px solid rgba(255,255,255,.16);
}

.site-footer .footer-brand-bar .brand-mark {
  width: 48px;
  height: 48px;
  color: #d6bd86;
  background: var(--ink);
}

.site-footer .footer-brand-bar .brand-name {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px,3.2vw,42px);
  letter-spacing: -.055em;
}

.footer-brand-tagline {
  justify-self: end;
  color: rgba(17,17,15,.63);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .footer-meta {
    grid-template-columns: 1fr auto;
  }

  .footer-socials { grid-column: 2; grid-row: 1 / span 2; }
  .footer-meta .version-label { justify-self: start; }
  .footer-meta > span { justify-self: end; }
}

@media (max-width: 620px) {
  html[data-release="1.10"][data-version="1.6"] .social-profile-link {
    width: 100%;
    max-width: 300px;
  }

  html[data-release="1.10"][data-version="1.6"] .social-profile-link .ui-arrow {
    justify-self: end;
  }

  .footer-meta {
    grid-template-columns: 1fr auto;
    gap: 12px 18px;
    padding: 24px 22px;
  }

  .footer-meta p { align-self: center; }
  .footer-socials { grid-column: 2; grid-row: 1 / span 3; align-self: center; }
  .footer-meta .version-label,
  .footer-meta > span { justify-self: start; }

  .site-footer .footer-brand-bar {
    min-height: 86px;
    grid-template-columns: auto 1fr;
    gap: 11px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-footer .footer-brand-bar .brand-mark {
    width: 44px;
    height: 44px;
  }

  .site-footer .footer-brand-bar .brand-name {
    font-size: clamp(25px,8.5vw,34px);
  }

  .footer-brand-tagline {
    grid-column: 2;
    justify-self: start;
    margin-top: -7px;
    font-size: 7px;
  }
}

@media (hover: none) {
  html[data-release="1.10"][data-version="1.6"] .social-profile-link:hover,
  .footer-socials a:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress span,
  .motion-ready .scroll-reveal,
  .work-lightbox,
  .work-lightbox-dialog { animation: none !important; transition: none !important; }
  .motion-ready .scroll-reveal { opacity: 1; translate: none; }
}

/* Version 1.10 — preserve the v1.9 hero and review refinements */
html[data-release="1.10"][data-version="1.6"] .portfolio-heading {
  max-width: 1180px;
  margin-inline: auto;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-note {
  max-width: 430px;
  padding: 3px 0 3px 22px;
  border-left: 2px solid #9f7f46;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-note p {
  max-width: 390px;
  color: #565248;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.55;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-note a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #51452e;
  border-bottom: 1px solid rgba(81,69,46,.42);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-shrine {
  max-width: 1180px;
  position: relative;
  isolation: isolate;
  margin: 0 auto;
  padding: 96px clamp(12px,1.6vw,20px) clamp(12px,1.6vw,20px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -12%, rgba(214,189,134,.2), transparent 34%),
    linear-gradient(155deg, #1c1c18, #0f0f0e 74%);
  border: 1px solid rgba(214,189,134,.55);
  border-radius: 220px 220px 22px 22px;
  box-shadow: 0 34px 76px rgba(49,41,26,.23), inset 0 0 0 9px rgba(255,255,255,.018);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-shrine::after {
  content: "";
  height: 1px;
  position: absolute;
  z-index: 1;
  top: 47px;
  left: 50%;
  width: min(370px,46%);
  background: linear-gradient(90deg, transparent, rgba(214,189,134,.7) 36%, transparent 36% 64%, rgba(214,189,134,.7) 64%, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-shrine-crest {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e3ca91;
  transform: translateX(-50%);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-shrine-crest span {
  width: clamp(30px,4vw,54px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,202,145,.74));
}

html[data-release="1.10"][data-version="1.6"] .portfolio-shrine-crest span:last-child {
  background: linear-gradient(90deg, rgba(227,202,145,.74), transparent);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-shrine-crest i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #11110f;
  background: #d6bd86;
  border: 1px solid #f2dfa9;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(214,189,134,.1), 0 9px 25px rgba(0,0,0,.22);
  font-family: var(--display);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -.04em;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(12px,1.5vw,18px);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card,
html[data-release="1.10"][data-version="1.6"] .portfolio-card-tall,
html[data-release="1.10"][data-version="1.6"] .portfolio-card-wide {
  border-color: rgba(255,255,255,.15);
  border-radius: 9px;
  box-shadow: none;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card img,
html[data-release="1.10"][data-version="1.6"] .portfolio-card:hover img {
  aspect-ratio: 4 / 5;
  background: radial-gradient(circle at 50% 34%, #302e28 0%, #11110f 70%);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card figcaption {
  min-height: 68px;
  padding: 16px 18px;
  border-top-color: rgba(214,189,134,.3);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card figcaption strong {
  font-size: 12px;
  letter-spacing: .055em;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214,189,134,.74);
  box-shadow: 0 24px 48px rgba(0,0,0,.28);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-mobile-hint {
  display: none;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-source {
  max-width: 1180px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 20px auto 0;
  color: rgba(17,17,15,.58);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .04em;
}

html[data-release="1.10"][data-version="1.6"] .work-notes {
  max-width: 1180px;
  margin-inline: auto;
}

html[data-release="1.10"][data-version="1.6"] .reviews-score {
  min-width: 320px;
  position: relative;
  padding: 20px 22px 20px 25px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(214,189,134,.075));
  border: 1px solid rgba(214,189,134,.42);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

html[data-release="1.10"][data-version="1.6"] .reviews-score::before {
  content: "";
  width: 3px;
  position: absolute;
  inset: 0 auto 0 0;
  background: #d6bd86;
}

html[data-release="1.10"][data-version="1.6"] .reviews-score .stars {
  display: inline-block;
  color: #e3ca91;
  font-family: Arial, sans-serif;
  font-size: clamp(18px,1.35vw,21px);
  line-height: 1;
  letter-spacing: .09em;
  text-shadow: 0 0 18px rgba(227,202,145,.24);
  white-space: nowrap;
}

html[data-release="1.10"][data-version="1.6"] .reviews-score small {
  color: rgba(255,255,255,.58);
  font-size: 10px;
}

html[data-release="1.10"][data-version="1.6"] .reviews-grid {
  gap: 14px;
  border: 0;
}

html[data-release="1.10"][data-version="1.6"] .review-card,
html[data-release="1.10"][data-version="1.6"] .reviews-grid .review-card:last-child {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
}

html[data-release="1.10"][data-version="1.6"] .review-card::before {
  content: "“";
  position: absolute;
  right: 18px;
  bottom: -70px;
  color: rgba(214,189,134,.055);
  font-family: Georgia, serif;
  font-size: 210px;
  line-height: 1;
  pointer-events: none;
}

html[data-release="1.10"][data-version="1.6"] .review-card-featured {
  background: linear-gradient(145deg, rgba(214,189,134,.17), rgba(255,255,255,.035));
  border-color: rgba(214,189,134,.34);
}

html[data-release="1.10"][data-version="1.6"] .review-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

html[data-release="1.10"][data-version="1.6"] .review-stars {
  display: inline-block;
  color: #e3ca91;
  font-family: Arial, sans-serif;
  font-size: clamp(20px,1.6vw,24px);
  line-height: 1;
  letter-spacing: .085em;
  text-shadow: 0 0 18px rgba(227,202,145,.2);
  white-space: nowrap;
}

html[data-release="1.10"][data-version="1.6"] .review-verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.56);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

html[data-release="1.10"][data-version="1.6"] .review-verified i {
  width: 6px;
  height: 6px;
  background: #d6bd86;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(214,189,134,.12);
}

html[data-release="1.10"][data-version="1.6"] .review-card blockquote {
  position: relative;
  z-index: 1;
  margin-top: 42px;
}

html[data-release="1.10"][data-version="1.6"] .review-card footer {
  position: relative;
  z-index: 1;
}

html[data-release="1.10"][data-version="1.6"] .review-card footer strong {
  font-size: 12px;
}

html[data-release="1.10"][data-version="1.6"] .review-card footer span {
  color: rgba(255,255,255,.55);
  font-size: 10px;
}

html[data-release="1.10"][data-version="1.6"] .reviews-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.82);
  border-color: rgba(214,189,134,.48);
  transition: color .2s ease, border-color .2s ease;
}

html[data-release="1.10"][data-version="1.6"] .reviews-link:hover {
  color: #e3ca91;
  border-color: #e3ca91;
}

html[data-release="1.10"][data-version="1.6"] .reviews-link:focus-visible,
html[data-release="1.10"][data-version="1.6"] .location-divider-cta:focus-visible,
html[data-release="1.10"][data-version="1.6"] .portfolio-card:focus-visible {
  outline: 2px solid #e3ca91;
  outline-offset: 4px;
}

html[data-release="1.10"][data-version="1.6"] .location-divider-address {
  border-color: rgba(214,189,134,.2);
}

html[data-release="1.10"][data-version="1.6"] .location-divider-address span {
  color: rgba(255,255,255,.68);
}

@media (max-width: 980px) {
  html[data-release="1.10"][data-version="1.6"] .portfolio-shrine {
    border-radius: 170px 170px 22px 22px;
  }
}

@media (max-width: 820px) {
  html[data-release="1.10"][data-version="1.6"] .portfolio-note {
    max-width: 390px;
    padding-left: 18px;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-note p {
    font-size: 14px;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-shrine {
    padding: 82px 10px 12px;
    border-radius: 120px 120px 20px 20px;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-shrine-crest {
    top: 18px;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-shrine-crest i {
    width: 40px;
    height: 40px;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-shrine::after {
    top: 39px;
    width: 62%;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-grid {
    display: flex;
    gap: 11px;
    padding: 0 4px 3px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-grid::-webkit-scrollbar {
    display: none;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-card,
  html[data-release="1.10"][data-version="1.6"] .portfolio-card-tall,
  html[data-release="1.10"][data-version="1.6"] .portfolio-card-wide {
    flex: 0 0 min(80vw,350px);
    padding: 5px 5px 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-card figcaption {
    min-height: 60px;
    padding: 13px 12px;
    font-size: 10px;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-card figcaption em {
    display: inline-flex;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-mobile-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0;
    padding: 13px 8px 1px;
    color: rgba(255,255,255,.52);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-mobile-hint i {
    width: 38px;
    height: 1px;
    position: relative;
    background: rgba(214,189,134,.68);
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-mobile-hint i::after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: -3px;
    right: 0;
    border-top: 1px solid #d6bd86;
    border-right: 1px solid #d6bd86;
    transform: rotate(45deg);
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-source {
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
  }

  html[data-release="1.10"][data-version="1.6"] .reviews-score {
    width: 100%;
    min-width: 0;
  }

  html[data-release="1.10"][data-version="1.6"] .reviews-section {
    padding-bottom: 82px;
  }

  html[data-release="1.10"][data-version="1.6"] .review-stars {
    font-size: 20px;
  }

  html[data-release="1.10"][data-version="1.6"] .review-card,
  html[data-release="1.10"][data-version="1.6"] .reviews-grid .review-card:last-child {
    min-height: 300px;
    scroll-snap-stop: always;
  }
}

@media (max-width: 420px) {
  html[data-release="1.10"][data-version="1.6"] .portfolio-shrine {
    border-radius: 94px 94px 18px 18px;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-card,
  html[data-release="1.10"][data-version="1.6"] .portfolio-card-tall,
  html[data-release="1.10"][data-version="1.6"] .portfolio-card-wide {
    flex-basis: min(78vw,320px);
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-source span:last-child {
    display: none;
  }

  html[data-release="1.10"][data-version="1.6"] .review-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
}

@media (hover: none) {
  html[data-release="1.10"][data-version="1.6"] .portfolio-card:hover {
    transform: none;
    border-color: rgba(255,255,255,.15);
    box-shadow: none;
  }
}

/* Appointment management lives inside the booking section. */
.booking-manage-shell {
  max-width: 1120px;
  margin: 30px auto 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 10%, rgba(214,189,134,.12), transparent 34%),
    #1b1b18;
  border: 1px solid rgba(21,21,19,.14);
  border-radius: 24px;
  box-shadow: 0 24px 58px rgba(49,39,20,.12);
  scroll-margin-top: 98px;
}

.booking-manage-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 27px clamp(24px,4vw,38px);
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.booking-manage-copy { display: grid; gap: 6px; }
.booking-manage-copy .eyebrow { margin: 0 0 2px; color: #d6bd86; }
.booking-manage-copy strong { font: 800 clamp(24px,3vw,34px)/1 var(--display); letter-spacing: -.04em; }
.booking-manage-copy > span:last-child { max-width: 620px; color: rgba(255,255,255,.57); font-size: 12px; line-height: 1.55; }
.booking-manage-action { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 14px; padding: 12px 15px 12px 18px; color: var(--ink); background: #d6bd86; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.booking-manage-chevron { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s ease; }
.booking-manage-toggle[aria-expanded="true"] .booking-manage-chevron { transform: rotate(225deg) translate(-2px,-1px); }
.booking-manage-body { padding: clamp(22px,4vw,38px); border-top: 1px solid rgba(255,255,255,.1); }
.booking-manage-body[hidden] { display: none; }

.appointments-layout {
  max-width: 760px;
  margin: 0 auto;
}

.manage-login,
.appointments-panel {
  width: min(100%,760px);
  padding: clamp(24px,4vw,38px);
  color: var(--ink);
  background: #f4f1e9;
  border: 1px solid rgba(214,189,134,.38);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(0,0,0,.2);
}

.manage-login h3,
.appointments-header h3 {
  margin: 0;
  font: 800 clamp(25px,3vw,36px)/1 var(--display);
  letter-spacing: -.045em;
}

.manage-login > label {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.manage-login label > span {
  color: #655f55;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.manage-login input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(21,21,19,.17);
  border-radius: 12px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.manage-login input:focus {
  border-color: #9c7b3e;
  box-shadow: 0 0 0 3px rgba(214,189,134,.25);
}

.manage-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 -5px;
  color: #8d867a;
  font-size: 10px;
  text-transform: uppercase;
}

.manage-or::before,
.manage-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(21,21,19,.12);
}

.manage-login-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.manage-login-actions .continue-button {
  width: auto;
  min-width: 230px;
  padding-inline: 22px;
}

.manage-login-actions .text-button,
.appointments-header .text-button {
  color: #5f594f;
}

.manage-privacy {
  margin: 16px 0 0;
  color: #80786c;
  font-size: 10px;
  line-height: 1.5;
}

.appointments-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(21,21,19,.12);
}

.appointments-header p {
  margin: 9px 0 0;
  color: #746d62;
  font-size: 12px;
}

.appointments-empty,
.appointments-loading {
  margin: 26px 0 4px;
  padding: 22px;
  color: #6f695f;
  background: rgba(214,189,134,.13);
  border: 1px dashed rgba(156,123,62,.35);
  border-radius: 15px;
  font-size: 12px;
  line-height: 1.6;
}

.appointments-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.booking-history {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(21,21,19,.12);
}

.booking-history-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.booking-history-heading .eyebrow {
  margin: 0 0 7px;
  color: #9c7b3e;
}

.booking-history-heading h4 {
  margin: 0;
  font: 800 22px/1.1 var(--display);
  letter-spacing: -.03em;
}

.booking-history-heading > p {
  max-width: 270px;
  margin: 0;
  color: #746d62;
  font-size: 11px;
  line-height: 1.55;
  text-align: right;
}

.appointments-history-list {
  margin-top: 14px;
}

.appointments-history-list:empty {
  margin-top: 0;
}

.appointments-history-toggle {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 0 17px;
  color: #5b513f;
  background: rgba(214,189,134,.14);
  border: 1px solid rgba(156,123,62,.28);
  border-radius: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.appointments-history-toggle:hover {
  background: rgba(214,189,134,.23);
  border-color: rgba(156,123,62,.42);
}

.appointments-history-toggle:focus-visible {
  outline: 2px solid #9c7b3e;
  outline-offset: 3px;
}

.appointments-history-toggle[aria-disabled="true"] {
  opacity: .62;
  cursor: wait;
}

.appointments-history-toggle[hidden] { display: none; }

.appointments-history-chevron {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.appointments-history-toggle[aria-expanded="true"] .appointments-history-chevron {
  transform: rotate(225deg) translate(-2px,-1px);
}

.appointment-card {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(21,21,19,.1);
  border-radius: 17px;
}

.appointment-card.is-history {
  background: rgba(255,255,255,.62);
  border-color: rgba(21,21,19,.08);
}

.appointment-service {
  margin: 0;
  font: 800 17px/1.2 var(--display);
  letter-spacing: -.025em;
}

.appointment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 8px 0 0;
  color: #6f695f;
  font-size: 11px;
}

.appointment-meta span + span::before {
  content: "·";
  margin-right: 14px;
  color: #b3ab9f;
}

.appointment-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 13px 0 0;
  color: #4e694b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.appointment-status::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #6d8b67;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(109,139,103,.14);
}

.appointment-status.is-cancelled {
  color: #9a4a3e;
}

.appointment-status.is-cancelled::before {
  background: #a85749;
  box-shadow: 0 0 0 3px rgba(168,87,73,.12);
}

.appointment-status.is-completed {
  color: #6c5c3e;
}

.appointment-status.is-completed::before {
  background: #b28a45;
  box-shadow: 0 0 0 3px rgba(178,138,69,.14);
}

.appointment-actions {
  display: flex;
  gap: 10px;
}

.appointment-actions .text-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(21,21,19,.14);
  border-radius: 999px;
}

.appointment-actions .text-button:hover {
  background: rgba(21,21,19,.05);
}

.appointment-actions [data-action="cancel"] {
  color: #9a4035;
  border-color: rgba(154,64,53,.25);
}

.appointment-actions button:disabled {
  opacity: .55;
  cursor: wait;
}

.appointments-refresh {
  width: auto;
  margin-top: 22px;
  padding-inline: 22px;
}

#manage-inline-message {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 14px 16px;
  color: #ffb8ac;
  background: rgba(150,52,40,.16);
  border: 1px solid rgba(255,149,133,.22);
  border-radius: 12px;
}

#manage-inline-message.is-success {
  color: #d8edcf;
  background: rgba(93,126,77,.2);
  border-color: rgba(173,209,155,.24);
}

.reschedule-summary {
  margin-top: 22px;
  padding: 17px 18px;
  color: #514b43;
  background: #eee8da;
  border: 1px solid rgba(156,123,62,.22);
  border-radius: 13px;
  font-size: 12px;
  line-height: 1.55;
}

.reschedule-confirm-copy {
  margin: 13px 0 0;
  color: #716a60;
  font-size: 10px;
}

@media (max-width: 820px) {
  .appointment-card {
    grid-template-columns: 1fr;
  }

  .appointment-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .booking-manage-shell { margin-top: 22px; border-radius: 20px; }
  .booking-manage-toggle { align-items: stretch; flex-direction: column; gap: 18px; padding: 24px 20px; }
  .booking-manage-action { min-height: 44px; align-self: flex-start; }
  .booking-manage-body { padding: 16px; }

  /* Keep new-booking actions available while appointment management is open. */
  body.manage-open:has(.mobile-checkout:not([hidden])) .booking-section {
    padding-bottom: 112px;
  }

  .manage-login,
  .appointments-panel {
    min-width: 0;
    padding: 22px 18px;
    border-radius: 19px;
  }

  .manage-login-actions,
  .appointments-header {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-history-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .booking-history-heading > p {
    max-width: none;
    text-align: left;
  }

  .manage-login-actions .continue-button,
  .appointments-history-toggle,
  .appointments-refresh {
    width: 100%;
  }

  .manage-login-actions .text-button,
  .appointments-header .text-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding-inline: 10px;
  }

  .appointments-header > div { min-width: 0; }

  .appointment-card {
    min-width: 0;
    gap: 15px;
    padding: 17px;
  }

  .appointment-card-main { min-width: 0; }

  .appointment-service,
  .appointment-meta span,
  .reschedule-summary {
    overflow-wrap: anywhere;
  }

  .appointment-meta {
    display: grid;
  }

  .appointment-meta span + span::before {
    content: none;
  }

  .appointment-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .appointment-actions .text-button {
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding-inline: 12px;
  }

  #reschedule-panel { min-width: 0; }
  #reschedule-panel .booking-panel-scroll > h2 {
    max-width: calc(100% - 68px);
    font-size: clamp(34px, 10vw, 42px);
    line-height: .96;
    overflow-wrap: anywhere;
  }

  #reschedule-panel .modal-footer .text-button { min-height: 44px; }

  /* Prevent iPhone input zoom and keep focused fields above the action bar. */
  #details-panel-title:focus { outline: none; }
  .details-grid input { font-size: 16px; }
  #details-panel input { scroll-margin-block: 16px; }

  #time-footer,
  #details-panel .modal-footer,
  #reschedule-panel .modal-footer {
    position: static;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
    background: rgba(246,245,241,.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 32px rgba(17,17,15,.12);
    backdrop-filter: blur(12px);
    flex: 0 0 auto;
  }

  #time-footer[hidden] { display: none; }
  #time-footer > div { min-width: 0; }
  #selected-time-copy {
    overflow: hidden;
    font-size: 16px;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  #time-footer .continue-button {
    width: auto;
    min-width: 142px;
    white-space: nowrap;
  }

  #details-panel .modal-footer,
  #reschedule-panel .modal-footer {
    grid-template-columns: auto minmax(0, 1fr);
  }

  #details-panel .modal-footer .continue-button,
  #reschedule-panel .modal-footer .continue-button {
    width: 100%;
  }

  .date-scroll-controls button { width: 44px; height: 44px; }

  .modal-close { display: grid; place-items: center; }
}

@media (max-width: 420px) {
  .booking-manage-body { padding: 12px; }
  .manage-login,
  .appointments-panel { padding: 20px 14px; }
  .appointment-card { padding: 15px 13px; }
  .appointment-actions { grid-template-columns: 1fr; }
}

/* Version 1.10 — Recent Cuts now shares TikTok's media-card system */
html[data-release="1.10"][data-version="1.6"] .portfolio-section {
  padding: 110px clamp(24px,6vw,100px) 120px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(214,189,134,.09), transparent 32%),
    #11110f;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-heading {
  max-width: none;
  align-items: end;
  margin-bottom: 46px;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-heading .eyebrow {
  color: rgba(255,255,255,.48);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-note {
  max-width: 390px;
  padding: 0 0 5px;
  border: 0;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-note p {
  max-width: none;
  margin: 0 0 16px;
  color: rgba(255,255,255,.58);
  font-family: var(--body);
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-badges {
  margin-bottom: 20px;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-note a {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.34);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-grid {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card,
html[data-release="1.10"][data-version="1.6"] .portfolio-card-tall,
html[data-release="1.10"][data-version="1.6"] .portfolio-card-wide {
  min-width: 0;
  padding: 10px 10px 17px;
  overflow: hidden;
  background: #272722;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: none;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card::before {
  display: none;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  margin-bottom: 15px;
  overflow: hidden;
  background: #080807;
  border-radius: 15px;
  transition: box-shadow .3s ease;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card img,
html[data-release="1.10"][data-version="1.6"] .portfolio-card:hover img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: #080807;
  border: 0;
  border-radius: 0;
  filter: saturate(1.02) contrast(1.02);
  transform: none;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card figcaption {
  width: fit-content;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 5px;
  padding: 0 0 5px;
  color: rgba(255,255,255,.8);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.34);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card figcaption strong {
  flex: none;
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214,189,134,.46);
  box-shadow: 0 28px 58px rgba(0,0,0,.3);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card:hover .portfolio-frame {
  box-shadow: 0 0 0 1px rgba(214,189,134,.24);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-card:hover figcaption .ui-arrow {
  transform: translateX(3px);
}

html[data-release="1.10"][data-version="1.6"] .portfolio-source {
  max-width: none;
  margin-top: 16px;
  color: rgba(255,255,255,.48);
}

html[data-release="1.10"][data-version="1.6"] .work-notes {
  max-width: none;
  gap: 1px;
  margin-top: clamp(42px,6vw,72px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.12);
}

html[data-release="1.10"][data-version="1.6"] .work-notes article {
  min-height: 170px;
  background: #1b1b18;
}

html[data-release="1.10"][data-version="1.6"] .work-notes article::after {
  border-color: rgba(214,189,134,.18);
}

html[data-release="1.10"][data-version="1.6"] .work-notes article:hover {
  background: #24241f;
}

html[data-release="1.10"][data-version="1.6"] .work-notes article > span {
  color: #d6bd86;
}

html[data-release="1.10"][data-version="1.6"] .work-notes h3 {
  color: #fff;
}

html[data-release="1.10"][data-version="1.6"] .work-notes p {
  color: rgba(255,255,255,.53);
}

html[data-release="1.10"][data-version="1.6"] .work-notes:focus-visible,
html[data-release="1.10"][data-version="1.6"] .portfolio-card:focus-visible {
  outline-color: #d6bd86;
}

html[data-release="1.10"][data-version="1.6"] .work-notes-hint {
  color: rgba(255,255,255,.55);
}

@media (max-width: 1040px) and (min-width: 621px) {
  html[data-release="1.10"][data-version="1.6"] .portfolio-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 820px) {
  html[data-release="1.10"][data-version="1.6"] .portfolio-heading {
    align-items: start;
  }
}

@media (max-width: 620px) {
  html[data-release="1.10"][data-version="1.6"] .portfolio-section {
    padding: 66px 0 72px 22px;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-heading {
    margin-bottom: 30px;
    padding-right: 22px;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-note {
    padding: 0;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-grid {
    display: flex;
    gap: 12px;
    padding: 0 22px 0 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-grid::-webkit-scrollbar {
    display: none;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-card,
  html[data-release="1.10"][data-version="1.6"] .portfolio-card-tall,
  html[data-release="1.10"][data-version="1.6"] .portfolio-card-wide {
    flex: 0 0 min(78vw,294px);
    padding: 10px 10px 17px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-card figcaption {
    min-height: 0;
    padding: 0 0 5px;
    font-size: 10px;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-source {
    margin-right: 22px;
  }

  html[data-release="1.10"][data-version="1.6"] .work-notes {
    margin-right: 22px;
  }

  html[data-release="1.10"][data-version="1.6"] .work-notes article {
    background: #1b1b18;
    border-color: rgba(255,255,255,.12);
  }

  html[data-release="1.10"][data-version="1.6"] .work-notes-hint {
    margin-right: 22px;
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  html[data-release="1.10"][data-version="1.6"] .portfolio-card,
  html[data-release="1.10"][data-version="1.6"] .portfolio-card-tall,
  html[data-release="1.10"][data-version="1.6"] .portfolio-card-wide {
    flex-basis: min(78vw,294px);
  }
}

@media (hover: none) {
  html[data-release="1.10"][data-version="1.6"] .portfolio-card:hover {
    transform: none;
    border-color: rgba(255,255,255,.12);
    box-shadow: none;
  }

  html[data-release="1.10"][data-version="1.6"] .portfolio-card:hover .portfolio-frame {
    box-shadow: none;
  }
}
