:root {
  --ink: #17211d;
  --paper: #f5f7f3;
  --white: #fff;
  --muted: #626c66;
  --line: #d9dfd9;
  --accent: #c4ed73;
  --accent-ink: #28451d;
  --display: Arial, Helvetica, sans-serif;
  --max: 1200px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.6 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
body.salon {
  --ink: #2b2028;
  --paper: #fbf7f9;
  --muted: #786971;
  --line: #e7dce2;
  --accent: #efbad0;
  --accent-ink: #713d54;
  --display: Georgia, "Times New Roman", serif;
}
body.cafe {
  --ink: #153d34;
  --paper: #f7f9f5;
  --muted: #64756b;
  --line: #d4ded4;
  --accent: #e9ef8c;
  --accent-ink: #42561c;
  --display: Georgia, "Times New Roman", serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
img {
  display: block;
  max-width: 100%;
}
button svg,
a svg {
  width: 18px;
  height: 18px;
  flex: none;
}
button {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent-ink);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.shell {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}
.concept-note {
  min-height: 34px;
  padding: 7px 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
}
.concept-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
}
.brand-symbol {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 4px;
}
.brand-symbol svg {
  width: 24px;
  height: 24px;
}
.site-brand small {
  display: block;
  margin-top: 5px;
  font:
    10px/1.2 -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  text-transform: uppercase;
}
.site-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}
.site-links > a:hover {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 6px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--accent-ink);
}
.button.accent {
  background: var(--accent);
  color: var(--ink);
}
.button.outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.button.ghost {
  background: transparent;
  border-color: #ffffff80;
  color: #fff;
}
.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 4px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  height: min(690px, calc(100svh - 166px));
  color: #fff;
  display: flex;
  align-items: center;
}
.hero-photo {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 22, 16, 0.83),
    rgba(8, 22, 16, 0.25) 66%,
    rgba(8, 22, 16, 0.03)
  );
}
.hero-inner {
  padding-block: 62px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.eyebrow {
  color: var(--accent);
}
.hero h1 {
  font: 700 84px/0.99 var(--display);
  max-width: 770px;
  margin: 0;
  text-wrap: balance;
}
.hero h1 span {
  display: block;
}
.salon .hero h1,
.cafe .hero h1 {
  font-weight: 400;
}
.hero-tagline {
  font: 400 24px/1.4 var(--display);
  margin: 20px 0 0;
}
.hero-copy {
  font-size: 16px;
  max-width: 440px;
  line-height: 1.7;
  margin: 18px 0 0;
  color: #fff;
  opacity: 0.9;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-caption {
  position: absolute;
  right: 32px;
  bottom: 24px;
  font-size: 10px;
  color: #fff;
}
.salon .hero::after {
  background: linear-gradient(
    90deg,
    rgba(31, 17, 26, 0.78),
    rgba(31, 17, 26, 0.18) 72%
  );
}
.salon .hero-photo {
  object-position: 65% center;
}
.cafe .hero-photo {
  object-position: 70% center;
}
.proof-strip {
  background: var(--accent);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 84px;
  align-items: center;
}
.proof-grid > div {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid #0002;
  font-size: 12px;
  font-weight: 650;
}
.proof-grid > div:last-child {
  border: 0;
}
.proof-grid svg {
  width: 19px;
}
.section {
  padding: 100px 0;
}
.section-white {
  background: #fff;
}
.section-dark {
  background: var(--ink);
  color: #fff;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 44px;
}
.section-kicker {
  color: var(--accent-ink);
}
.section-dark .section-kicker {
  color: var(--accent);
}
.section-heading h2,
.split-copy h2 {
  font: 600 48px/1.09 var(--display);
  margin: 0;
  text-wrap: balance;
}
.salon .section-heading h2,
.cafe .section-heading h2 {
  font-weight: 400;
}
.section-heading > p {
  margin: 0;
  color: var(--muted);
  max-width: 430px;
  font-size: 15px;
}
.section-dark .section-heading > p {
  color: #d2d9d4;
}
.section-number {
  color: var(--accent-ink);
  font-size: 11px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.service-card {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.service-card > svg {
  height: 28px;
  width: 28px;
  margin: 20px 0;
  color: var(--accent-ink);
}
.service-card h3 {
  font: 600 24px/1.2 var(--display);
  margin: 12px 0;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 18px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 600;
}
.text-link svg {
  width: 16px;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}
.filter-bar button {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 4px;
  font-size: 13px;
}
.filter-bar button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.gallery-card {
  min-width: 0;
}
.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--line);
  overflow: hidden;
  aspect-ratio: 4/3;
  text-align: left;
}
.gallery-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.gallery-trigger:hover img {
  transform: scale(1.035);
}
.gallery-trigger .enlarge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
}
.gallery-trigger .enlarge svg {
  width: 18px;
}
.gallery-caption {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
}
.gallery-caption h3 {
  margin: 0;
  font: 600 23px/1.2 var(--display);
}
.gallery-caption p {
  color: var(--muted);
  font-size: 12px;
  margin: 7px 0 0;
}
.gallery-caption > span {
  font-size: 11px;
  color: var(--accent-ink);
}
.salon .gallery-trigger {
  aspect-ratio: 4/5;
}
.salon .gallery-caption h3 {
  font-weight: 400;
}
.tool-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.tool-copy h2 {
  font: 600 44px/1.1 var(--display);
  margin: 0 0 24px;
}
.tool-copy p {
  font-size: 15px;
  max-width: 440px;
  color: #d2d9d4;
}
.choice-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.choice-list button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  border: 1px solid #ffffff40;
  color: #fff;
  background: transparent;
  border-radius: 4px;
  text-align: left;
  font-size: 14px;
}
.choice-list button svg {
  width: 20px;
  height: 20px;
}
.choice-list button[aria-pressed="true"] {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.recommendation {
  border-top: 1px solid #ffffff40;
  padding-top: 24px;
}
.recommendation h3 {
  font-size: 24px;
  margin: 0 0 12px;
}
.recommendation p {
  font-size: 14px;
  color: #d2d9d4;
}
.recommendation .button {
  margin-top: 12px;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.split-photo {
  width: 100%;
  height: 100%;
  max-height: 650px;
  object-fit: cover;
}
.split-copy {
  padding: 70px;
  align-self: center;
}
.split-copy > p:not(.section-kicker) {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
}
.detail-list {
  padding: 0;
  margin: 28px 0;
  list-style: none;
}
.detail-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.detail-list svg {
  width: 18px;
  flex: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}
.steps article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.steps span {
  color: var(--accent-ink);
  font-size: 12px;
}
.steps h3 {
  font-size: 21px;
  margin: 22px 0 12px;
}
.steps p {
  font-size: 14px;
  color: var(--muted);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.faq-layout h2 {
  font: 600 42px/1.1 var(--display);
  margin: 0;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary svg {
  width: 18px;
  flex: none;
  transition: transform 0.2s;
}
details[open] summary svg {
  transform: rotate(45deg);
}
details p {
  margin: 0 30px 24px 0;
  color: var(--muted);
  font-size: 14px;
}
.cta-section {
  padding: 74px 0;
  background: var(--accent);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-inner h2 {
  font: 600 42px/1.1 var(--display);
  margin: 0;
}
.cta-inner p {
  margin: 14px 0 0;
  font-size: 14px;
}
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
}
.footer-inner p {
  color: #cad3cb;
  font-size: 12px;
}
.footer-inner > a {
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-note {
  border-top: 1px solid #ffffff30;
  margin-top: 28px;
  padding-top: 20px;
  font-size: 10px;
  color: #bbc7bc;
}
.footer-note a { text-decoration: underline; text-underline-offset: 3px; }
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.menu-item {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 24px;
}
.menu-item h3 {
  margin: 0;
  font: 400 25px/1.2 var(--display);
}
.menu-item p {
  margin: 8px 0 10px;
  color: var(--muted);
  font-size: 13px;
}
.menu-item small {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.menu-price {
  font-size: 15px;
  font-weight: 600;
}
.menu-add {
  grid-column: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  border: 0;
}
.menu-add svg {
  width: 17px;
}
.menu-count {
  font-size: 12px;
  color: var(--muted);
  margin: -8px 0 26px;
}
.order-button {
  position: relative;
}
.order-badge {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  font-size: 11px;
}
.hours {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.hours > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  font-size: 13px;
}
.service-menu {
  display: grid;
  gap: 0;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 25px 0;
}
.service-row:last-child {
  border-bottom: 1px solid var(--line);
}
.service-row h3 {
  font: 400 28px/1.2 var(--display);
  margin: 0;
}
.service-row p {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 0;
}
.service-row > div:nth-child(2) {
  min-width: 95px;
  text-align: right;
}
.service-row small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}
.service-row strong {
  font-size: 15px;
}
.service-row .icon-button {
  border-radius: 50%;
  background: var(--accent);
  border: 0;
}
.appointment-summary {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  margin: 20px 0;
}
.appointment-summary p {
  margin: 5px 0;
  font-size: 14px;
}
.modal {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100svh - 40px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 100px #0004;
  overflow: auto;
}
.modal::backdrop {
  background: #101915c9;
  backdrop-filter: blur(5px);
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.modal-head h2 {
  font: 600 26px/1.2 var(--display);
  margin: 0;
}
.modal-body {
  padding: 24px 28px;
}
.modal .section-kicker {
  margin-bottom: 8px;
}
.modal-intro {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .wide {
  grid-column: 1/-1;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  min-width: 0;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 16px;
  color: var(--ink);
}
.field textarea {
  min-height: 90px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  margin-top: 24px;
}
.form-status {
  font-size: 13px;
  color: var(--accent-ink);
  margin-top: 16px;
  line-height: 1.6;
}
.form-status:empty {
  display: none;
}
.photo-modal {
  width: min(1080px, calc(100% - 32px));
  background: var(--paper);
}
.lightbox-image {
  width: 100%;
  max-height: 68svh;
  object-fit: contain;
  background: var(--ink);
}
.lightbox-footer {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.lightbox-footer p {
  margin: 0;
  font-size: 13px;
}
.lightbox-actions {
  display: flex;
  gap: 8px;
}
.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cart-row h3 {
  font-size: 15px;
  margin: 0;
}
.cart-row p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}
.quantity .icon-button {
  width: 32px;
  height: 32px;
}
.quantity output {
  min-width: 20px;
  text-align: center;
  font-size: 13px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin: 24px 0;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border: 1px solid #ffffff40;
  border-radius: 4px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  max-width: calc(100% - 32px);
  text-align: center;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  height: 3px;
  width: 0;
  background: var(--accent-ink);
}
.reveal {
  opacity: 1;
}
.reveal.ready {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s,
    transform 0.55s;
}
.reveal.ready.visible {
  opacity: 1;
  transform: none;
}
@media (min-width: 1600px) {
  .hero {
    height: 740px;
    max-height: calc(100svh - 200px);
  }
  .hero h1 {
    font-size: 96px;
  }
}
@media (max-width: 1000px) {
  .site-links {
    gap: 18px;
  }
  .site-nav {
    gap: 20px;
  }
  .site-brand {
    font-size: 23px;
  }
  .section-heading {
    gap: 40px;
  }
  .tool-layout {
    gap: 40px;
  }
  .split-copy {
    padding: 40px;
  }
  .hero h1 {
    font-size: 72px;
  }
  .faq-layout {
    gap: 40px;
  }
}
@media (max-width: 800px) {
  .shell {
    width: calc(100% - 40px);
  }
  .site-nav {
    min-height: 72px;
  }
  .site-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px #0001;
  }
  .site-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .site-links a {
    padding: 10px;
  }
  .menu-toggle {
    display: grid;
  }
  .header-actions > .button {
    padding: 12px;
    font-size: 12px;
  }
  .hero {
    height: auto;
    min-height: 590px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-inner {
    padding-block: 80px;
  }
  .hero-caption {
    display: none;
  }
  .section {
    padding: 72px 0;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .tool-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split-section {
    grid-template-columns: 1fr;
  }
  .split-photo {
    height: 440px;
  }
  .split-copy {
    padding: 52px 24px;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .service-grid {
    gap: 20px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .proof-grid > div {
    padding: 12px;
    gap: 8px;
    font-size: 11px;
  }
  .menu-grid {
    gap: 0 30px;
  }
  .footer-inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 540px) {
  .shell {
    width: calc(100% - 36px);
  }
  .concept-note {
    font-size: 9px;
    gap: 10px;
    padding-inline: 12px;
  }
  .site-nav {
    min-height: 68px;
    gap: 10px;
  }
  .site-brand {
    font-size: 22px;
    gap: 8px;
  }
  .brand-symbol {
    width: 30px;
    height: 34px;
  }
  .site-brand small {
    font-size: 8px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions > .button {
    min-height: 40px;
    padding: 10px;
    font-size: 11px;
  }
  .header-actions > .button svg {
    display: none;
  }
  .icon-button {
    width: 40px;
    height: 40px;
  }
  .hero {
    min-height: 580px;
  }
  .hero h1 {
    font-size: 52px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero-tagline {
    font-size: 23px;
    max-width: 290px;
  }
  .hero-copy {
    font-size: 14px;
    max-width: 300px;
  }
  .hero-inner {
    padding-block: 70px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 12px 16px;
  }
  .hero::after {
    background: linear-gradient(90deg, #091b12d9, #091b1266);
  }
  .salon .hero::after {
    background: linear-gradient(90deg, #281520cf, #28152055);
  }
  .salon .hero-photo {
    object-position: 70% center;
  }
  .proof-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 8px 0;
  }
  .proof-grid > div {
    justify-content: flex-start;
    min-height: 42px;
    border-right: 0;
    border-bottom: 1px solid #0002;
    font-size: 12px;
  }
  .section {
    padding: 60px 0;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading h2,
  .tool-copy h2,
  .split-copy h2,
  .faq-layout h2,
  .cta-inner h2 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }
  .service-grid,
  .steps,
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 22px 0;
  }
  .service-card > svg {
    margin: 12px 0;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .gallery-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .gallery-caption h3 {
    font-size: 24px;
  }
  .gallery-trigger {
    aspect-ratio: 4/3;
  }
  .salon .gallery-trigger {
    aspect-ratio: 4/5;
  }
  .tool-layout {
    gap: 24px;
  }
  .split-photo {
    height: 330px;
  }
  .steps {
    gap: 24px;
  }
  .steps h3 {
    margin-top: 15px;
  }
  .service-row {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .service-row h3 {
    font-size: 23px;
  }
  .service-row > div:nth-child(2) {
    text-align: left;
    grid-row: 2;
  }
  .service-row .icon-button {
    grid-column: 2;
    grid-row: 1/3;
  }
  .service-row small {
    display: inline;
    margin-left: 8px;
  }
  .filter-bar button {
    padding: 10px 14px;
    font-size: 12px;
  }
  .footer-inner {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .footer-inner p {
    margin: 0;
  }
  .modal-head,
  .modal-body {
    padding: 20px;
  }
  .modal-head h2 {
    font-size: 23px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .form-grid .wide {
    grid-column: auto;
  }
  .lightbox-footer {
    align-items: start;
  }
  .lightbox-footer p {
    max-width: 190px;
  }
  .cta-section {
    padding: 54px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.ready {
    opacity: 1;
    transform: none;
  }
}
.site-nav {
  padding-block: 12px;
}
.site-brand {
  min-width: 0;
  max-width: 380px;
  overflow-wrap: anywhere;
}
.site-brand > span:not(.brand-symbol) {
  min-width: 0;
}
.brand-symbol {
  flex: none;
}
.hero h1.custom-name {
  font-size: 68px;
  max-width: 840px;
  overflow-wrap: anywhere;
}
@media (max-width: 800px) {
  .site-brand {
    max-width: 300px;
  }
  .hero h1.custom-name {
    font-size: 56px;
  }
}
@media (max-width: 540px) {
  .site-brand {
    max-width: 180px;
    font-size: 19px;
  }
  .hero h1.custom-name {
    font-size: 44px;
  }
  .header-actions {
    flex: none;
  }
  .site-brand small {
    font-size: 8px;
  }
}
