@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600&family=Newsreader:opsz,wght@6..72,300;6..72,400;6..72,500&display=swap");

:root {
  --ink: #252822;
  --canvas: #f3f0e8;
  --paper: #fbfaf6;
  --accent: #bb5f3c;
  --sage: #aab3a0;
  --heading: #252822;
  --hero-heading: #ffffff;
  --line: rgba(37, 40, 34, 0.16);
  --muted: #6f716b;
  --radius: 4px;
  --display: "Newsreader", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
  --shadow: 0 24px 80px rgba(27, 31, 25, 0.15);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #deddd8;
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  color: inherit;
}
button {
  cursor: pointer;
}
a {
  text-decoration: none;
}
svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.editor-bar {
  height: 64px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid #ddd;
}
.editor-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.editor-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 19px;
}
.preview-switcher {
  display: flex;
  padding: 3px;
  background: #f0f0ed;
  border-radius: 8px;
  gap: 2px;
}
.icon-button {
  width: 38px;
  height: 34px;
  border: 0;
  background: transparent;
  border-radius: 6px;
  display: grid;
  place-items: center;
}
.icon-button.is-active {
  background: #fff;
  box-shadow: 0 1px 5px #0001;
}
.editor-action {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d6d6d1;
  background: #fff;
  border-radius: 8px;
  padding: 9px 14px;
  font-weight: 600;
}
.preview-stage {
  padding: 24px;
  min-height: calc(100vh - 64px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.site-shell {
  width: 100%;
  max-width: 1540px;
  background: var(--canvas);
  box-shadow: 0 8px 40px #0002;
  overflow: hidden;
  transition: max-width 0.4s ease;
  border-radius: 3px;
}
.site-shell.preview-tablet {
  max-width: 820px;
}
.site-shell.preview-mobile {
  max-width: 390px;
}
.announcement {
  min-height: 34px;
  background: var(--ink);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.announcement p {
  margin: 0;
}
.announcement a {
  color: #d5a48f;
  border-bottom: 1px solid currentColor;
}
.site-header {
  height: 82px;
  padding: 0 4.5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 17px;
}
.wordmark-dot {
  width: 17px;
  height: 17px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.wordmark-dot:after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.site-nav {
  display: flex;
  gap: 30px;
  font-size: 12px;
}
.site-nav a {
  position: relative;
}
.site-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--accent);
  transition: 0.25s;
}
.site-nav a:hover:after {
  right: 0;
}

.mobile-nav-book {
  display: none;
}
.header-book {
  justify-self: end;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 42px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 6px;
}
.button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: 13px 21px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: 0.2s;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.button:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.button-small {
  padding: 10px 16px;
}
.button-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.button-light:hover {
  color: #fff;
}
.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  padding-bottom: 3px;
}
.text-link-light {
  color: #fff;
}
.hero {
  height: min(710px, 72vw);
  min-height: 580px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/hero-studio.png") center/cover no-repeat;
  transform: scale(1.02);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(25, 27, 23, 0.68),
    rgba(25, 27, 23, 0.08) 58%,
    rgba(25, 27, 23, 0.08)
  );
}
.hero-content {
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  width: min(590px, 48%);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 10px;
  font-weight: 600;
  margin: 0 0 22px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(58px, 6.6vw, 108px);
  line-height: 0.87;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  color: var(--hero-heading);
}
.hero-copy {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.45;
  max-width: 480px;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 6px;
}
.availability-card {
  position: absolute;
  right: 3%;
  bottom: 30px;
  padding: 16px 20px;
  background: rgba(245, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  color: var(--ink);
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: var(--radius);
  font-size: 11px;
}
.availability-card strong,
.availability-card span {
  display: block;
}
.availability-card span {
  color: var(--muted);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #689263;
  box-shadow: 0 0 0 5px #68926322;
}
.section-pad {
  padding: 110px 7%;
}
.section-label {
  margin: 0;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.19em;
}
.section-label span {
  color: var(--accent);
  margin-right: 13px;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 8%;
  position: relative;
}
.intro-copy h2,
.section-heading h2,
.booking-cta h2 {
  font-family: var(--display);
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}

.intro-copy h2,
.section-heading h2,
.service-body h3,
.review-card blockquote,
.booking-success h3,
.panel-header h2,
.style-preview-heading h3 {
  color: var(--heading);
}

.booking-cta h2 {
  color: #fff;
}
.intro-copy > p {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.5;
  color: #54574f;
  max-width: 630px;
}
.intro-stats {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 55px;
  padding-top: 27px;
}
.intro-stats div {
  display: flex;
  flex-direction: column;
}
.intro-stats strong {
  font-family: var(--display);
  font-size: 33px;
  font-weight: 400;
}
.intro-stats span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}
.services {
  background: var(--paper);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 65px;
}
.section-heading h2 {
  margin: 22px 0 0;
}
.section-heading > p {
  max-width: 390px;
  color: var(--muted);
  margin: 0;
}
.service-list {
  border-top: 1px solid var(--line);
}

.service-group {
  border-bottom: 1px solid var(--line);
}

.service-group-toggle {
  width: 100%;
  min-height: 108px;
  display: grid;
  grid-template-columns: 72px 1fr auto 48px;
  gap: 20px;
  align-items: center;
  padding: 24px 8px 24px 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.service-group-title {
  display: grid;
  gap: 5px;
}

.service-group-title small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-group-title strong {
  color: var(--heading);
  font-family: var(--display);
  font-size: 33px;
  font-weight: 400;
  line-height: 1;
}

.service-count {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-toggle-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 300;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.service-group.is-open .service-toggle-icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: #fff;
}

.service-group-panel {
  padding: 0 0 26px 92px;
}

.bookable-service {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 75px 105px 72px;
  gap: 18px;
  align-items: center;
  min-height: 94px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.bookable-service h3 {
  margin: 0 0 3px;
  color: var(--heading);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
}

.bookable-service p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.bookable-service > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bookable-service > button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  font-size: 10px;
  font-weight: 600;
}

.bookable-service > button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.bookable-service i {
  margin-left: 5px;
  font-style: normal;
}
.service-card {
  display: grid;
  grid-template-columns: 90px 1fr 54px;
  gap: 20px;
  align-items: center;
  padding: 34px 15px 34px 0;
  border-bottom: 1px solid var(--line);
  transition: 0.25s;
}
.service-card:hover {
  padding-left: 15px;
  background: var(--canvas);
}
.service-number {
  font-family: var(--display);
  color: var(--accent);
}
.service-body {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 0.8fr;
  align-items: center;
  gap: 28px;
}
.service-body h3 {
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
  margin: 0;
}
.service-body p {
  color: var(--muted);
  margin: 0;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.circle-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.circle-button:hover {
  background: var(--ink);
  color: #fff;
}
.circle-button span {
  font-size: 18px;
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 670px;
}
.story-panel {
  background: #aeb4a3;
  padding: 11%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-quote blockquote {
  font-family: var(--display);
  font-size: clamp(45px, 5.3vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 55px 0 30px;
}
.story-quote > p:last-child {
  max-width: 430px;
}
.story-image {
  background:
    linear-gradient(#2d302833, #2d302833),
    url("assets/hero-studio.png") 72% center/cover;
  filter: saturate(0.65);
  position: relative;
}
.story-image:after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid #fff7;
}
.reviews {
  overflow: hidden;
}
.review-controls {
  display: flex;
  gap: 8px;
}
.review-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
}
.review-card {
  flex: 0 0 calc(50% - 10px);
  margin: 0;
  background: var(--paper);
  padding: 45px;
  border: 1px solid var(--line);
  min-height: 330px;
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 4px;
}
.review-card blockquote {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.3;
  margin: 35px 0;
  flex: 1;
}
.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card figcaption > span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage);
  display: grid;
  place-items: center;
  font-size: 10px;
}
.review-card strong,
.review-card small {
  display: block;
}
.review-card small {
  color: var(--muted);
}
.booking-cta {
  min-height: 510px;
  background: var(--accent);
  color: #fff;
  padding: 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.booking-cta > div:first-child {
  max-width: 740px;
  z-index: 2;
}
.booking-cta h2 {
  font-size: clamp(55px, 6vw, 90px);
}
.cta-orbit {
  width: 320px;
  height: 320px;
  border: 1px solid #fff5;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.cta-orbit:before,
.cta-orbit:after {
  content: "";
  position: absolute;
  border: 1px solid #fff3;
  border-radius: 50%;
  width: 210px;
  height: 210px;
}
.cta-orbit:after {
  width: 85px;
  height: 85px;
  background: #fff1;
}
footer {
  padding: 70px 7% 25px;
  background: var(--ink);
  color: #eae9e2;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  font-size: 12px;
}
footer h3 {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #aaa;
  margin: 0 0 18px;
}
footer p {
  color: #aaa;
}
footer > div > a {
  display: block;
  margin: 5px 0;
}
.footer-brand p {
  font-family: var(--display);
  font-size: 20px;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid #fff2;
  padding-top: 20px;
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 10px;
}
.customizer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(430px, 94vw);
  background: #fff;
  z-index: 100;
  box-shadow: -30px 0 80px #0002;
  transform: translateX(105%);
  transition: 0.35s ease;
  padding: 28px;
  overflow: auto;
}
.customizer.is-open {
  transform: none;
}
.panel-backdrop {
  position: fixed;
  inset: 0;
  background: #1e211c66;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.panel-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.panel-header small {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888;
}
.panel-header h2 {
  font-family: var(--display);
  font-size: 35px;
  margin: 3px 0;
}
.customizer fieldset {
  border: 0;
  border-bottom: 1px solid #ddd;
  padding: 26px 0;
  margin: 0;
}
.customizer legend {
  font-weight: 600;
  margin-bottom: 15px;
}
.customizer label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin: 13px 0;
}
.customizer input[type="text"],
.customizer input[type="url"],
.customizer textarea,
.customizer select {
  width: 100%;
  border: 1px solid #ddd;
  background: #fafaf8;
  border-radius: 5px;
  padding: 10px;
  margin-top: 6px;
}
.color-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.color-grid input {
  display: block;
  width: 100%;
  height: 42px;
  border: 1px solid #ddd;
  padding: 3px;
  background: #fff;
  margin-top: 6px;
}
.field-note {
  font-size: 11px;
  color: #777;
}
.panel-actions {
  display: flex;
  gap: 10px;
  padding-top: 25px;
}
.panel-actions .button {
  flex: 1;
}
.booking-dialog {
  padding: 0;
  border: 0;
  width: min(1050px, 94vw);
  max-height: 92vh;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: auto;
}
.booking-dialog::backdrop {
  background: rgba(26, 29, 24, 0.75);
  backdrop-filter: blur(4px);
}
.dialog-close {
  position: absolute;
  right: 16px;
  top: 12px;
  z-index: 3;
  border: 0;
  background: transparent;
  font-size: 28px;
}
.booking-layout {
  min-height: 650px;
  display: grid;
  grid-template-columns: 38% 62%;
}
.booking-aside {
  background: var(--ink);
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booking-aside h2 {
  font-family: var(--display);
  font-size: 47px;
  line-height: 1;
  margin: 12px 0;
}
.booking-aside p {
  color: #bbb;
}
.booking-summary {
  border-top: 1px solid #fff3;
  padding-top: 22px;
  font-size: 12px;
}
.booking-summary strong,
.booking-summary span {
  display: block;
}
.booking-summary strong {
  font-family: var(--display);
  font-size: 24px;
}
.booking-main {
  padding: 50px;
  display: flex;
  flex-direction: column;
}
.booking-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 42px;
}
.booking-progress span {
  flex: 1;
  padding-bottom: 9px;
  border-bottom: 2px solid #ddd;
  color: #999;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.booking-progress span.is-active {
  border-color: var(--accent);
  color: var(--ink);
}
.booking-step {
  display: none;
  flex: 1;
}
.booking-step.is-active {
  display: block;
}
.booking-options {
  display: grid;
  gap: 12px;
}

.booking-option-group {
  display: grid;
  gap: 9px;
}

.booking-option-group + .booking-option-group {
  margin-top: 14px;
}

.booking-option-group > p {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.booking-option {
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  cursor: pointer;
}
.booking-option:has(input:checked) {
  border-color: var(--accent);
  box-shadow: inset 3px 0 var(--accent);
}
.booking-option input {
  margin-right: 16px;
  accent-color: var(--accent);
}
.booking-option span {
  flex: 1;
}
.booking-option strong,
.booking-option small {
  display: block;
}
.booking-option small {
  color: var(--muted);
}
.booking-option i {
  font-style: normal;
}
.date-label,
.form-grid label {
  font-size: 11px;
  font-weight: 600;
}
.date-label input,
.form-grid input,
.form-grid textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px;
  background: #fff;
  margin-top: 7px;
  border-radius: var(--radius);
}
.input-label {
  font-size: 11px;
  font-weight: 600;
  margin: 25px 0 8px;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.time-grid input {
  position: absolute;
  opacity: 0;
}
.time-grid span {
  display: block;
  padding: 11px;
  border: 1px solid var(--line);
  text-align: center;
  border-radius: var(--radius);
  font-size: 12px;
  cursor: pointer;
}
.time-grid input:checked + span {
  background: var(--ink);
  color: #fff;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.full-width {
  grid-column: 1/-1;
}
.form-grid label span {
  color: #999;
  font-weight: 400;
}
.booking-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.booking-success {
  text-align: center;
  padding-top: 45px;
}
.booking-success h3 {
  font-family: var(--display);
  font-size: 42px;
  margin: 16px;
}
.success-mark {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--sage);
  display: grid;
  place-items: center;
  margin: auto;
  font-size: 25px;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 30px);
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  font-size: 12px;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
body.font-modern {
  --display: "Manrope", Arial, sans-serif;
}
body.font-soft {
  --display: "DM Sans", Arial, sans-serif;
}
body.radius-square {
  --radius: 0;
}
body.radius-round {
  --radius: 18px;
}

.date-label small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  margin-top: 7px;
}

/* Desktop appointment calendar */
.scheduler-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(175px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.mobile-date-picker {
  display: none;
}

.desktop-calendar {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.calendar-header {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  margin-bottom: 18px;
}

.calendar-header strong {
  text-align: center;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
}

.calendar-header button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.calendar-header button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-weekdays {
  margin-bottom: 6px;
}

.calendar-weekdays span {
  color: var(--muted);
  text-align: center;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calendar-days button,
.calendar-empty {
  aspect-ratio: 1;
  min-width: 0;
}

.calendar-days button {
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.calendar-days button:hover:not(:disabled) {
  background: var(--canvas);
}

.calendar-days button.is-selected {
  background: var(--ink);
  color: #fff;
}

.calendar-days button.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 1px var(--accent);
}

.calendar-days button:disabled {
  color: #c9c9c4;
  text-decoration: line-through;
  cursor: not-allowed;
}

.time-column .input-label {
  margin-top: 0;
}

.time-column .time-grid {
  grid-template-columns: 1fr 1fr;
}

.date-label small.is-error {
  color: #a33;
}

.time-grid input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.availability-message {
  grid-column: 1/-1;
  color: var(--muted);
  font-size: 12px;
  padding: 18px;
  border: 1px dashed var(--line);
  margin: 0;
  text-align: center;
}

/* Template sales-demo annotations */
.template-note {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.template-note-dark {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
  backdrop-filter: none;
}

.reviews-direction {
  max-width: 620px;
  margin: -38px 0 42px;
  color: var(--muted);
}

.square-requirement {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 55px 7%;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--ink);
  color: #fff;
}

.square-icon {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 42px;
  line-height: 1;
}

.square-requirement .eyebrow {
  margin-bottom: 10px;
  color: #c4c5be;
}

.square-requirement h2 {
  max-width: 680px;
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 300;
  line-height: 1.05;
}

.square-requirement p:last-child {
  max-width: 720px;
  margin: 0;
  color: #b9bbb4;
}

.square-requirement .button-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.info-intro {
  margin: 28px 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.45;
}

.style-preview {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #faf9f5;
}

.style-preview-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.style-preview-heading small {
  color: var(--accent);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.style-preview-heading h3 {
  margin: 3px 0 0;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.style-preview-heading button {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.style-preview > p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 11px;
}

.style-preview .color-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 15px;
}

.style-selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.style-preview label {
  margin: 0;
}

.included-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.included-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
}

.included-list span {
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.square-panel-notice {
  margin-top: 28px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.square-panel-notice strong {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
}

.square-panel-notice p {
  margin: 8px 0 0;
  color: #b9bbb4;
  font-size: 11px;
}

.square-demo-notice {
  display: grid;
  gap: 2px;
  margin: -18px 0 28px;
  padding: 13px 15px;
  border-left: 3px solid var(--accent);
  background: #eeeae0;
  font-size: 10px;
}

.square-demo-notice strong {
  font-size: 11px;
}

.square-demo-notice span {
  color: var(--muted);
}
