:root {
  --bl-gray: #979797;
  --bl-sand: #dfceba;
  --bl-mauve: #c4b6b6;
  --bl-blush: #ead0cf;
  --bl-ink: #211d1c;
  --bl-ink-soft: #4c4542;
  --bl-cream: #f8f4ef;
  --bl-white: #fffdfb;
  --bl-line: rgba(33, 29, 28, .12);
  --bl-radius: 28px;
  --bl-shadow: 0 22px 70px rgba(65, 49, 44, .13);
  --bl-shell: min(1180px, calc(100vw - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bl-cream);
  color: var(--bl-ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.bl-lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.bl-shell { width: var(--bl-shell); margin-inline: auto; }

.bl-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bl-blush);
  overflow: hidden;
  transition: transform 1s cubic-bezier(.77, 0, .18, 1) .35s;
}
.bl-intro::before,
.bl-intro::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}
.bl-intro::before { width: 70vw; height: 70vw; background: rgba(223, 206, 186, .72); top: -32vw; right: -24vw; }
.bl-intro::after { width: 68vw; height: 68vw; background: rgba(196, 182, 182, .48); left: -28vw; bottom: -36vw; }
.bl-intro__mark { position: relative; z-index: 2; text-align: center; }
.bl-intro__mark p {
  margin: 0;
  font-family: "Italiana", serif;
  font-size: clamp(58px, 16vw, 120px);
  letter-spacing: -.055em;
  line-height: .9;
  opacity: 0;
  transform: translateY(32px);
  animation: blIntroName .8s cubic-bezier(.2,.8,.2,1) .15s forwards;
}
.bl-intro__mark small {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  opacity: 0;
  animation: blIntroSmall .7s ease .5s forwards;
}
.bl-intro__line { display: block; width: 0; height: 1px; background: var(--bl-ink); margin: 0 auto 20px; animation: blIntroLine .75s ease .2s forwards; }
.bl-intro.is-done { transform: translateY(-105%); }
@keyframes blIntroName { to { opacity: 1; transform: translateY(0); } }
@keyframes blIntroSmall { to { opacity: .74; } }
@keyframes blIntroLine { to { width: 88px; } }

.bl-site { opacity: 0; transition: opacity .35s ease; }
.bl-site.is-ready { opacity: 1; }

.bl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}
.bl-header.is-scrolled {
  background: rgba(248, 244, 239, .86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(33,29,28,.08);
}
.bl-header__inner { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.bl-brand { display: inline-flex; flex-direction: column; line-height: 1; }
.bl-brand span { font-family: "Italiana", serif; font-size: 26px; letter-spacing: .045em; }
.bl-brand small { margin-top: 5px; font-size: 7px; letter-spacing: .27em; text-transform: uppercase; }
.bl-nav { display: none; align-items: center; gap: 30px; font-size: 13px; }
.bl-nav a { position: relative; }
.bl-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--bl-ink); transform: scaleX(0); transform-origin: right; transition: transform .3s ease; }
.bl-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.bl-header__cta { display: none !important; }

.bl-menu-btn { width: 46px; height: 46px; border: 1px solid var(--bl-line); background: rgba(255,255,255,.34); border-radius: 50%; display: grid; place-content: center; gap: 6px; cursor: pointer; }
.bl-menu-btn span { display: block; width: 18px; height: 1px; background: var(--bl-ink); transition: transform .25s ease; }
.bl-menu-btn[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.bl-menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.bl-mobile-menu { position: fixed; inset: 86px 16px auto 16px; z-index: 90; background: var(--bl-white); border: 1px solid var(--bl-line); border-radius: 24px; padding: 20px; box-shadow: var(--bl-shadow); display: grid; gap: 2px; opacity: 0; transform: translateY(-10px) scale(.98); pointer-events: none; transition: .25s ease; }
.bl-mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
.bl-mobile-menu > a:not(.bl-button) { padding: 14px 4px; border-bottom: 1px solid var(--bl-line); }
.bl-mobile-menu .bl-button { margin-top: 12px; }

.bl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--bl-ink);
  color: var(--bl-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.bl-button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(33,29,28,.16); }
.bl-button--small { min-height: 44px; padding-inline: 20px; }
.bl-button--dark { background: var(--bl-ink); }
.bl-text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 4px; border-bottom: 1px solid rgba(33,29,28,.35); font-weight: 600; font-size: 13px; }
.bl-text-link span { transition: transform .25s ease; }
.bl-text-link:hover span { transform: translate(2px,-2px); }
.bl-kicker, .bl-eyebrow { margin: 0 0 18px; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; font-weight: 700; }
.bl-status { display: inline-flex; align-items: center; gap: 9px; letter-spacing: .18em; }
.bl-status__dot { width: 7px; height: 7px; border-radius: 50%; background: #4f7c5d; box-shadow: 0 0 0 5px rgba(79,124,93,.12); }
.bl-status.is-closed .bl-status__dot { background: #9b6767; box-shadow: 0 0 0 5px rgba(155,103,103,.12); }

.bl-hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 118px 0 74px; background: linear-gradient(140deg, var(--bl-cream) 5%, var(--bl-blush) 58%, var(--bl-sand) 125%); }
.bl-hero__grid { display: grid; gap: 52px; align-items: center; position: relative; z-index: 2; }
.bl-hero__copy h1 { margin: 0; max-width: 770px; font-family: "Italiana", serif; font-weight: 400; font-size: clamp(54px, 14vw, 112px); line-height: .9; letter-spacing: -.04em; }
.bl-hero__copy h1 em { font-style: italic; color: #6f5d59; }
.bl-hero__lead { max-width: 620px; margin: 26px 0 0; color: var(--bl-ink-soft); font-size: 16px; line-height: 1.72; }
.bl-hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 30px; }
.bl-hero__meta { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-top: 36px; max-width: 520px; padding-top: 22px; border-top: 1px solid rgba(33,29,28,.15); }
.bl-hero__meta div { display: flex; flex-direction: column; gap: 5px; }
.bl-hero__meta span { font-size: 10px; text-transform: uppercase; letter-spacing: .16em; color: #695f5c; }
.bl-hero__meta strong { font-size: 12px; font-weight: 600; }

.bl-hero__visual { position: relative; min-height: 410px; display: grid; place-items: center; }
.bl-hero__frame { position: relative; width: min(82vw, 420px); aspect-ratio: .78; border-radius: 220px 220px 28px 28px; background: linear-gradient(160deg, rgba(255,255,255,.7), rgba(196,182,182,.76)); box-shadow: var(--bl-shadow); overflow: hidden; border: 1px solid rgba(255,255,255,.6); }
.bl-hero__frame::before { content: ""; position: absolute; width: 76%; aspect-ratio: 1; border-radius: 50%; background: rgba(234,208,207,.86); left: -22%; top: 20%; box-shadow: 160px 120px 0 rgba(223,206,186,.72); }
.bl-hero__frame::after { content: ""; position: absolute; inset: 10%; border: 1px solid rgba(33,29,28,.13); border-radius: 999px 999px 34px 34px; }
.bl-hero__monogram { position: absolute; inset: 0; display: grid; place-items: center; font-family: "Italiana", serif; font-size: clamp(180px, 55vw, 300px); color: rgba(255,255,255,.45); z-index: 1; transform: translateY(-1%); }
.bl-hero__glass { position: absolute; z-index: 3; left: 22px; right: 22px; bottom: 22px; padding: 18px 20px; border-radius: 18px; background: rgba(255,255,255,.36); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.55); }
.bl-hero__glass span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 5px; }
.bl-hero__glass strong { font-family: "Italiana", serif; font-size: 30px; font-weight: 400; }
.bl-hero__floating { position: absolute; z-index: 4; padding: 12px 15px; border-radius: 999px; background: var(--bl-white); box-shadow: 0 10px 28px rgba(45,37,34,.12); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
.bl-hero__floating--top { right: 0; top: 8%; }
.bl-hero__floating--bottom { left: 0; bottom: 9%; border-radius: 18px; line-height: 1.5; text-transform: none; letter-spacing: 0; font-weight: 500; }
.bl-hero__orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.bl-hero__orb--one { width: 300px; height: 300px; background: rgba(196,182,182,.32); right: -160px; top: 5%; }
.bl-hero__orb--two { width: 260px; height: 260px; background: rgba(223,206,186,.56); left: -150px; bottom: 6%; }
.bl-scroll-cue { display: none; }

.bl-statement { padding: 92px 0; background: var(--bl-white); }
.bl-statement__grid { display: grid; gap: 28px; }
.bl-statement h2 { margin: 0; max-width: 900px; font-family: "Italiana", serif; font-size: clamp(42px, 10vw, 76px); line-height: 1.02; font-weight: 400; letter-spacing: -.025em; }
.bl-statement__grid > div > p { max-width: 680px; color: var(--bl-ink-soft); line-height: 1.8; margin: 28px 0 0; }

.bl-services { padding: 92px 0 100px; }
.bl-section-head { display: grid; gap: 20px; margin-bottom: 34px; }
.bl-section-head h2 { margin: 0; font-family: "Italiana", serif; font-size: clamp(48px, 12vw, 86px); line-height: .95; font-weight: 400; letter-spacing: -.03em; }
.bl-section-head > p { max-width: 560px; margin: 0; color: var(--bl-ink-soft); line-height: 1.7; }
.bl-filter { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 4px 0 18px; margin-bottom: 12px; }
.bl-filter::-webkit-scrollbar { display: none; }
.bl-filter button { flex: 0 0 auto; border: 1px solid var(--bl-line); border-radius: 999px; background: transparent; padding: 11px 16px; font-size: 12px; cursor: pointer; transition: .22s ease; }
.bl-filter button.is-active, .bl-filter button:hover { background: var(--bl-ink); color: var(--bl-white); border-color: var(--bl-ink); }
.bl-service-grid { display: grid; gap: 14px; }
.bl-service-card { min-width: 0; display: flex; flex-direction: column; min-height: 286px; padding: 22px; border-radius: 24px; border: 1px solid rgba(33,29,28,.1); background: rgba(255,253,251,.76); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background .35s ease, opacity .25s ease; }
.bl-service-card:hover { transform: translateY(-7px); box-shadow: var(--bl-shadow); background: var(--bl-white); }
.bl-service-card.is-hidden { display: none; }
.bl-service-card__top { display: flex; justify-content: space-between; gap: 12px; color: #786e69; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.bl-service-card h3 { margin: 32px 0 12px; font-family: "Italiana", serif; font-weight: 400; font-size: 29px; line-height: 1.05; }
.bl-service-card > p { margin: 0; color: var(--bl-ink-soft); line-height: 1.62; font-size: 13px; }
.bl-service-card__bottom { margin-top: auto; padding-top: 24px; display: flex; align-items: end; justify-content: space-between; gap: 14px; }
.bl-service-card__bottom strong { font-family: "Italiana", serif; font-size: 28px; font-weight: 400; }
.bl-service-card__bottom a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 12px; border-bottom: 1px solid rgba(33,29,28,.3); padding-bottom: 3px; }
.bl-service-card__bottom a span { transition: transform .25s ease; }
.bl-service-card__bottom a:hover span { transform: translate(2px,-2px); }

.bl-process { padding: 92px 0; background: var(--bl-ink); color: var(--bl-white); }
.bl-section-head--light .bl-kicker { color: var(--bl-sand); }
.bl-process__grid { display: grid; gap: 12px; }
.bl-process article { min-height: 250px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; padding: 24px; background: linear-gradient(155deg, rgba(255,255,255,.06), rgba(255,255,255,.01)); }
.bl-process article > span { font-family: "Italiana", serif; font-size: 24px; color: var(--bl-blush); }
.bl-process article h3 { margin: auto 0 10px; font-family: "Italiana", serif; font-size: 34px; font-weight: 400; }
.bl-process article p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.65; }

.bl-hours { padding: 96px 0; background: var(--bl-sand); }
.bl-hours__grid { display: grid; gap: 36px; }
.bl-hours__intro h2 { margin: 0 0 24px; font-family: "Italiana", serif; font-size: clamp(48px, 12vw, 82px); line-height: .95; font-weight: 400; }
.bl-hours__intro > p { line-height: 1.7; color: var(--bl-ink-soft); }
.bl-hours__card { background: rgba(255,253,251,.58); border: 1px solid rgba(255,255,255,.45); border-radius: 28px; padding: 10px 22px; box-shadow: 0 24px 55px rgba(82,62,53,.1); }
.bl-hours__card div { display: flex; justify-content: space-between; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(33,29,28,.11); font-size: 12px; }
.bl-hours__card div:last-child { border-bottom: 0; }
.bl-hours__card strong { font-weight: 600; text-align: right; }

.bl-contact { position: relative; overflow: hidden; padding: 105px 0; background: var(--bl-blush); }
.bl-contact__inner { position: relative; z-index: 2; text-align: center; }
.bl-contact h2 { margin: 0; font-family: "Italiana", serif; font-size: clamp(56px, 14vw, 110px); line-height: .9; font-weight: 400; letter-spacing: -.04em; }
.bl-contact__actions { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 16px; font-size: 13px; }
.bl-contact__actions > a:not(.bl-button) { border-bottom: 1px solid rgba(33,29,28,.35); padding-bottom: 3px; }
.bl-contact__orb { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(223,206,186,.54); left: 50%; top: 50%; transform: translate(-50%,-50%); }

.bl-footer { padding: 40px 0 100px; background: var(--bl-ink); color: rgba(255,255,255,.75); }
.bl-footer__grid { display: grid; gap: 24px; font-size: 11px; line-height: 1.5; }
.bl-brand--footer { color: var(--bl-white); }
.bl-brand--footer small { color: rgba(255,255,255,.54); }

.bl-mobile-book { position: fixed; z-index: 80; left: 16px; right: 16px; bottom: calc(12px + env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: space-between; padding: 0 22px; min-height: 58px; border-radius: 999px; background: var(--bl-ink); color: var(--bl-white); box-shadow: 0 18px 45px rgba(33,29,28,.28); font-size: 13px; font-weight: 700; transition: transform .3s ease, opacity .3s ease; }
.bl-mobile-book.is-hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .85s cubic-bezier(.2,.8,.2,1); transition-delay: calc(var(--reveal-delay, 0) * 90ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { --reveal-delay: 1; }
[data-delay="2"] { --reveal-delay: 2; }
[data-delay="3"] { --reveal-delay: 3; }
[data-delay="4"] { --reveal-delay: 4; }
.bl-service-card[data-reveal] { transition-delay: calc(var(--i, 0) * 55ms); }

.bl-simple-page { padding: 140px 0 80px; min-height: 100vh; }
.bl-simple-page__inner { max-width: 820px; }

@media (min-width: 700px) {
  :root { --bl-shell: min(1180px, calc(100vw - 64px)); }
  .bl-hero__actions { flex-direction: row; align-items: center; }
  .bl-service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .bl-process__grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .bl-footer__grid { grid-template-columns: 1.1fr 1fr 1fr; align-items: end; }
  .bl-footer__grid p:last-child { text-align: right; }
}

@media (min-width: 960px) {
  .bl-header { padding: 18px 0; }
  .bl-nav { display: flex; }
  .bl-header__cta { display: inline-flex !important; }
  .bl-menu-btn, .bl-mobile-menu { display: none; }
  .bl-hero { padding: 120px 0 70px; }
  .bl-hero__grid { grid-template-columns: 1.08fr .72fr; gap: 70px; }
  .bl-hero__visual { min-height: 620px; }
  .bl-hero__frame { width: 440px; }
  .bl-hero__floating--top { right: -10%; top: 13%; }
  .bl-hero__floating--bottom { left: -9%; bottom: 12%; }
  .bl-scroll-cue { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 9px; left: 50%; bottom: 20px; transform: translateX(-50%); font-size: 8px; text-transform: uppercase; letter-spacing: .18em; }
  .bl-scroll-cue span { width: 1px; height: 34px; background: var(--bl-ink); transform-origin: top; animation: blScroll 1.8s ease-in-out infinite; }
  @keyframes blScroll { 0%,100% { transform: scaleY(.35); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
  .bl-statement { padding: 132px 0; }
  .bl-statement__grid { grid-template-columns: .34fr 1fr; gap: 70px; align-items: start; }
  .bl-section-head { grid-template-columns: 1fr .65fr; align-items: end; gap: 70px; margin-bottom: 44px; }
  .bl-service-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
  .bl-services { padding: 130px 0 140px; }
  .bl-process { padding: 120px 0; }
  .bl-process article { min-height: 330px; padding: 30px; }
  .bl-hours { padding: 130px 0; }
  .bl-hours__grid { grid-template-columns: .8fr 1fr; gap: 100px; align-items: center; }
  .bl-hours__card { padding: 16px 34px; }
  .bl-hours__card div { padding: 21px 0; font-size: 13px; }
  .bl-contact { padding: 150px 0; }
  .bl-contact__actions { flex-direction: row; justify-content: center; gap: 30px; }
  .bl-footer { padding-bottom: 46px; }
  .bl-mobile-book { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .bl-intro { display: none !important; }
  .bl-site { opacity: 1 !important; }
}
