:root {
  --paper: #f8f5ee;
  --cream: #f0e9de;
  --ink: #3e352e;
  --muted: #75695d;
  --line: #d8c9b4;
  --white: #fffcf7;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 14px/1.8 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.locked {
  overflow: hidden;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a {
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
button:active,
.button:active {
  transform: translateY(1px);
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}
a:hover {
  color: var(--gold);
}
button {
  border: 0;
  background: none;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
figure,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0;
  text-wrap: balance;
}
h2 {
  font-size: clamp(48px, 5.2vw, 76px);
}
h3 {
  font-size: 38px;
}
em {
  font-weight: 400;
  color: var(--gold);
}
.wrap {
  width: min(1320px, calc(100% - 112px));
  margin: auto;
}
.section-space {
  padding-top: 112px;
  padding-bottom: 112px;
}
.eyebrow,
.number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow {
  margin-bottom: 24px;
}
.text-link {
  font-weight: 600;
  font-size: 12px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 7px;
  display: inline-block;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  font-size: 12px;
  border: 1px solid var(--ink);
}
.button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}
.frame {
  padding: 7px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.announcement {
  text-align: center;
  background: #eae1d2;
  letter-spacing: 0.06em;
}
.announcement span {
  padding: 0 16px;
}
.announcement a {
  font-weight: 700;
}
.page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #f8f5eef5;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  object-fit: contain;
}
.brand > span {
  font: 500 32px/0.92 var(--serif);
}
.brand small {
  display: block;
  font: 600 8px/1 var(--sans);
}
.nav-links {
  display: flex;
  align-items: center;
}
.nav-call {
  border: 1px solid var(--line);
}
.nav-call span {
  margin-left: 20px;
}
.menu-toggle {
  display: none;
}
h1 {
  font-size: clamp(68px, 7.6vw, 110px);
  line-height: 0.91;
  letter-spacing: -0.06em;
}
h1 em {
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 28px;
}
.material-services {
  background: var(--cream);
  border-block: 1px solid var(--line);
}
.section-heading {
  text-align: center;
}
.section-heading > p:last-child {
  color: var(--muted);
  margin-top: 25px;
  font-size: 12px;
}
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.category-card {
  display: grid;
  grid-template-columns: 30px 1fr 20px;
  text-align: left;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  min-height: 125px;
  align-items: start;
  padding: 31px 27px;
}
.category-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.category-card:hover {
  background: #e5d8c4;
}
.category-card strong {
  font: 36px/1.05 var(--serif);
  letter-spacing: -0.025em;
  display: block;
}
.category-card small {
  display: block;
  margin-top: 13px;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--gold);
}
.category-card .number {
  padding-top: 7px;
}
.category-card > span:last-child {
  color: var(--gold);
}
[hidden] {
  display: none !important;
}
.menu-browser {
  display: grid;
  grid-template-columns: 270px 1fr;
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 640px;
}
.menu-sidebar {
  background: var(--paper);
  border-right: 1px solid var(--line);
  padding-top: 25px;
}
.menu-sidebar > .eyebrow {
  padding: 0 23px;
}
.menu-sidebar nav {
  max-height: 630px;
  overflow-y: auto;
  scrollbar-color: var(--line) transparent;
  scrollbar-width: thin;
}
.menu-sidebar button {
  width: 100%;
  display: grid;
  grid-template-columns: 21px 1fr 15px;
  gap: 13px;
  align-items: center;
  text-align: left;
  border-top: 1px solid var(--line);
  padding: 20px 15px;
  font: 23px var(--serif);
}
.menu-sidebar button small {
  display: block;
  font: 10px var(--sans);
  color: var(--muted);
  margin-top: 7px;
}
.menu-sidebar button[aria-current="true"],
.menu-sidebar button:hover {
  background: #e9dcc8;
}
.menu-content {
  padding: 30px 38px;
}
.back-services {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0;
  margin-bottom: 30px;
  color: var(--gold);
}
.service-panel .eyebrow {
  margin-bottom: 12px;
}
.service-panel h3 {
  font-size: 58px;
  outline: none;
}
.menu-description {
  font-size: 12px;
  color: var(--muted);
  margin: 17px 0 26px;
}
.service-panel ol {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 20px 1fr 75px 82px 52px;
  align-items: center;
  gap: 15px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.service-name {
  font: 25px/1.12 var(--serif);
  letter-spacing: -0.01em;
}
.service-name small {
  display: block;
  font: 10px/1.7 var(--sans);
  color: var(--muted);
  margin-top: 9px;
}
.duration {
  font-size: 10px;
  color: var(--muted);
}
.price {
  font-size: 12px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.service-book {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
}
.booking-link[aria-disabled="true"] {
  opacity: 0.48;
  cursor: not-allowed;
}
.booking-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 27px;
}
.booking-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.gallery-heading > div:last-child {
  color: var(--muted);
  font-size: 12px;
}
.photo-tile {
  position: relative;
  border: 1px solid var(--line);
  padding: 7px;
  overflow: hidden;
  background: var(--paper);
}
.photo-tile img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
}
.photo-tile:first-child {
  grid-row: span 2;
  border-radius: 180px 180px 0 0;
}
.photo-tile:first-child img {
  border-radius: 175px 175px 0 0;
}
.photo-tile:nth-child(3) {
  grid-row: span 2;
}
.photo-tile:nth-child(5) {
  grid-column: span 2;
}
.photo-tile > span {
  position: absolute;
  background: var(--paper);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.contact-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.contact-heading {
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.65fr;
  border-top: 1px solid var(--line);
  padding-top: 40px;
  gap: 45px;
}
.contact-info h3,
.hours h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
.contact-info address {
  font-style: normal;
  color: var(--muted);
  font-size: 13px;
}
.contact-info > .text-link {
  margin-top: 20px;
}
.contact-phone {
  display: block;
  font: 30px var(--serif);
  margin: 28px 0 22px;
  letter-spacing: -0.02em;
}
.online-book {
  display: block;
  font-size: 10px;
  margin-top: 15px;
}
.hours dl {
  font-size: 11px;
}
.hours dl > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 10px;
}
.hours dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.contact-photo {
  height: 370px;
  border-radius: 120px 120px 0 0;
}
.contact-photo img {
  height: 100%;
  width: 100%;
  border-radius: 115px 115px 0 0;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 0;
}
.footer-top > p {
  font: italic 25px var(--serif);
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 20px 0 30px;
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
}
.mobile-actions {
  display: none;
}
.skip-link {
  position: fixed;
  left: 15px;
  top: -100px;
  z-index: 60;
  background: var(--ink);
  color: white;
  padding: 10px;
}
.skip-link:focus {
  top: 10px;
}
dialog {
  position: fixed;
  border: 0;
  padding: 45px;
  background: #302920;
  width: min(1000px, 95vw);
  height: min(900px, 94dvh);
  color: white;
}
dialog::backdrop {
  background: #241e18db;
}
dialog img {
  width: 100%;
  height: calc(100% - 30px);
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: white;
  font-size: 30px;
  z-index: 1;
  width: 44px;
  height: 44px;
  background: #302920a0;
}
.lightbox-close {
  right: 0;
  top: 0;
}
.lightbox-prev {
  left: 0;
  top: 48%;
}
.lightbox-next {
  right: 0;
  top: 48%;
}
.lightbox-caption {
  text-align: center;
  font-size: 11px;
  margin-top: 10px;
}
.legal-page {
  max-width: 780px;
  padding-block: 80px;
}
.legal-page h1 {
  font-size: 64px;
}
.legal-page h2 {
  font-size: 32px;
  margin-top: 36px;
}
.legal-page p {
  margin-top: 20px;
}
.legal-page .text-link {
  margin-top: 35px;
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    gap: 15px;
    padding: 15px;
  }
  .menu-browser {
    grid-template-columns: 220px 1fr;
  }
  .menu-content {
    padding: 26px;
  }
  .service-row {
    grid-template-columns: 15px 1fr 55px 72px;
    gap: 12px;
  }
  .service-book {
    grid-column: 4;
  }
  .service-name {
    font-size: 23px;
  }
  .contact-grid {
    gap: 25px;
    grid-template-columns: 1fr 1.1fr;
  }
  .contact-photo {
    display: none;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 38px);
  }
  .announcement {
    letter-spacing: 0;
  }
  .announcement span {
    padding: 0 7px;
  }
  .menu-toggle {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 11px;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 14px 10px;
  }
  .nav-call {
    margin-top: 10px;
  }
  h1 {
    line-height: 0.91;
  }
  .hero-actions {
    margin-top: 23px;
  }
  .hero-actions .button {
    padding: 15px 19px;
    font-size: 11px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  h2 {
    font-size: 49px;
  }
  .section-heading > p:last-child {
    font-size: 11px;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .category-card {
    min-height: 105px;
    gap: 13px;
    padding: 24px 12px;
    grid-template-columns: 25px 1fr 18px;
  }
  .category-card:nth-child(odd) {
    border-right: 0;
  }
  .category-card strong {
    font-size: 32px;
  }
  .category-card small {
    font-size: 8px;
    margin-top: 10px;
  }
  .menu-browser {
    display: block;
  }
  .menu-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-top: 17px;
  }
  .menu-sidebar > .eyebrow {
    margin-bottom: 15px;
    padding-left: 17px;
  }
  .menu-sidebar nav {
    display: flex;
    overflow-x: auto;
    max-height: none;
    padding-bottom: 0;
  }
  .menu-sidebar button {
    width: auto;
    white-space: nowrap;
    display: block;
    font: 19px var(--serif);
    padding: 14px 18px;
    border-right: 1px solid var(--line);
  }
  .menu-sidebar button > .number,
  .menu-sidebar button > span:last-child {
    display: none;
  }
  .menu-sidebar button small {
    font-size: 8px;
  }
  .menu-content {
    padding: 24px 17px;
  }
  .service-panel h3 {
    font-size: 43px;
  }
  .service-row {
    grid-template-columns: 1fr 78px;
    gap: 10px;
    padding: 20px 0;
  }
  .service-row > .number {
    display: none;
  }
  .service-name {
    font-size: 23px;
    grid-column: 1;
  }
  .service-row .price {
    grid-column: 2;
    font-size: 11px;
  }
  .duration {
    grid-column: 1;
    grid-row: auto;
    font-size: 9px;
  }
  .service-row .service-name {
    grid-row: span 1;
  }
  .service-row .duration {
    grid-row: 2;
  }
  .service-row .price {
    grid-row: 1;
  }
  .service-row .service-book {
    grid-column: 2;
    grid-row: 2;
    font-size: 8px;
  }
  .booking-note {
    font-size: 10px;
  }
  .gallery-heading {
    display: block;
  }
  .gallery-heading > div:last-child {
    margin-top: 24px;
    font-size: 12px;
  }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }
  .photo-tile {
    padding: 5px;
  }
  .photo-tile:first-child {
    grid-row: span 2;
    border-radius: 100px 100px 0 0;
  }
  .photo-tile:first-child img {
    border-radius: 95px 95px 0 0;
  }
  .photo-tile:nth-child(3) {
    grid-row: auto;
  }
  .photo-tile:nth-child(5) {
    grid-column: auto;
  }
  .photo-tile:nth-child(6) {
    grid-column: span 2;
    height: 260px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 30px;
  }
  .contact-info {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
  }
  .contact-phone {
    font-size: 32px;
  }
  .contact-info .button {
    min-width: 200px;
  }
  .hours dl {
    max-width: 400px;
  }
  .contact-photo {
    display: block;
    height: 260px;
    border-radius: 140px 140px 0 0;
  }
  .contact-photo img {
    border-radius: 135px 135px 0 0;
    object-position: center 44%;
  }
  .footer-top {
    padding: 32px 0;
    flex-wrap: wrap;
    gap: 28px;
  }
  .footer-top > p {
    font-size: 21px;
    order: 3;
    width: 100%;
  }
  .footer-top > .text-link {
    font-size: 10px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 90px;
  }
  .footer-bottom > span:last-child {
    width: 100%;
  }
  .mobile-actions {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 25;
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 9px 15px calc(9px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .mobile-actions a {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid var(--ink);
  }
  .mobile-actions a:last-child {
    background: var(--ink);
    color: var(--paper);
  }
  dialog {
    padding: 40px 25px;
    height: 80dvh;
  }
  .lightbox-caption {
    font-size: 9px;
  }
  .legal-page h1 {
    font-size: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media (max-width: 700px) {
  h1 {
    font-size: clamp(54px, 17vw, 90px);
  }
  h1 em {
    margin-right: 0;
  }
  .service-name {
    overflow-wrap: anywhere;
  }
  .menu-content,
  .service-panel {
    min-width: 0;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .button {
    gap: 16px;
  }
}
.menu-sidebar {
  align-self: start;
  position: sticky;
}
.menu-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
}
.page-summary {
  font-size: 10px;
  color: var(--muted);
}
.page-buttons {
  display: flex;
  gap: 5px;
}
.page-buttons button {
  font-size: 10px;
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--line);
}
.page-buttons button[aria-current="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}
.page-buttons button:hover {
  background: var(--cream);
  color: var(--ink);
}
@media (max-width: 700px) {
  .menu-sidebar {
    z-index: 10;
  }
  .menu-pagination {
    align-items: start;
    flex-direction: column;
  }
  .page-buttons button {
    min-width: 40px;
    height: 40px;
  }
}
@font-face {
  font-family: CoCoScript;
  src: url("../fonts/eyesome-script.otf") format("opentype");
  font-display: swap;
}
.navbar {
  height: 116px;
}
.brand img {
  width: 55px;
  height: 70px;
}
.brand > span {
  font-size: 39px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.brand small {
  font-size: 9px;
  letter-spacing: 0.36em;
  margin-top: 12px;
}
.nav-links {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  gap: 29px;
}
.nav-call {
  padding: 16px 25px;
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.announcement {
  padding: 11px 18px;
  font-size: 11px;
}
.eyebrow {
  font-weight: 700;
  letter-spacing: 0.2em;
}
.button {
  padding: 19px 28px;
  letter-spacing: 0.08em;
}
.text-link {
  letter-spacing: 0.03em;
}
.stack-hero {
  height: calc(100svh + 400px);
  width: 100%;
  position: relative;
}
.hero-sticky {
  position: sticky;
  top: 116px;
  height: calc(100svh - 116px);
  min-height: 710px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, #fffdf8 0, transparent 60%),
    radial-gradient(ellipse at 88% 65%, #e6dfd2 0, transparent 60%),
    var(--paper);
}
.hero-centered {
  text-align: center;
  padding-top: 45px;
  position: relative;
  z-index: 8;
}
.hero-centered .eyebrow {
  margin-bottom: 16px;
  font-size: 11px;
}
.hero-centered .eyebrow span {
  margin: 0 18px;
}
.hero-centered h1 {
  font-size: clamp(76px, 7.2vw, 114px);
  letter-spacing: -0.045em;
  line-height: 1.03;
  font-weight: 500;
}
.dynamic-line {
  display: block;
  line-height: 1.2;
  margin-top: 5px;
}
.dynamic-line em {
  display: inline-block;
  font:
    normal clamp(62px, 6vw, 96px)/1.1 CoCoScript,
    var(--serif);
  padding: 0 20px 13px;
  border-bottom: 1px solid var(--line);
  transition:
    opacity 0.25s,
    transform 0.4s;
  min-width: 350px;
  letter-spacing: 0;
}
.dynamic-line em.is-leaving {
  opacity: 0;
  transform: translateY(-12px);
}
.dynamic-line em.is-entering {
  opacity: 0;
  transform: translateY(12px);
}
.hero-centered .hero-actions {
  justify-content: center;
  margin-top: 23px;
  gap: 30px;
}
.atelier-gallery {
  height: 340px;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.stack-card {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 205px;
  padding: 7px;
  background: var(--paper);
  border: 1px solid #c5b499;
  box-shadow: 0 15px 35px #51432a20;
  will-change: transform;
  transform: translate(-50%, -50%);
}
.stack-card img {
  width: 100%;
  object-fit: cover;
}
.stack-card[data-side="0"] {
  z-index: 7;
}
.stack-card[data-side="-1"],
.stack-card[data-side="1"] {
  z-index: 6;
}
.stack-card[data-side="-2"],
.stack-card[data-side="2"] {
  z-index: 5;
}
.stack-card[data-side="-3"],
.stack-card[data-side="3"] {
  z-index: 4;
}
.stack-footer {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  z-index: 9;
  font-size: 8px;
  letter-spacing: 0.16em;
  color: var(--muted);
  pointer-events: none;
}
.stack-footer a {
  pointer-events: auto;
  background: var(--paper);
  padding: 7px 12px;
}
.space-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 45px;
  margin-bottom: 50px;
}
.space-heading > div:last-child {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.space-heading .text-link {
  margin-top: 20px;
}
.space-overall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}
.space-photo {
  grid-column: span 2;
  min-width: 0;
}
.space-photo:nth-child(-n + 2) {
  grid-column: span 3;
}
.space-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.space-photo:nth-child(n + 3) img {
  height: 390px;
  object-position: center;
}
.space-photo figcaption {
  padding: 12px 1px 3px;
  font: italic 20px var(--serif);
}
.space-photo figcaption span {
  font: 9px var(--sans);
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-right: 14px;
}
.gallery-single {
  margin: auto;
}
.photo-tile,
.photo-tile:first-child,
.photo-tile:nth-child(6) {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--cream);
}
.photo-tile img,
.photo-tile:first-child img {
  width: 100%;
}
.photo-tile:hover img {
  transform: none;
}
.photo-tile > span {
  right: 20px;
  bottom: 20px;
}
.gallery-controls,
.review-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  padding: 18px;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
}
.gallery-controls button,
.review-controls button {
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  font-size: 18px;
}
.gallery-controls button:hover,
.review-controls button:hover {
  background: var(--ink);
  color: var(--paper);
}
.reviews-section {
  text-align: center;
  border-block: 1px solid var(--line);
  background: var(--cream);
}
.review-disclosure {
  font-size: 10px;
  color: var(--muted);
}
.review-slider {
  margin: 34px auto 0;
}
.review-slider blockquote {
  font: 400 37px/1.3 var(--serif);
  letter-spacing: -0.015em;
  margin: 10px 0 29px;
  min-height: 150px;
  text-wrap: balance;
}
.review-controls {
  margin-top: 15px;
}
.menu-sidebar {
  top: 116px;
}
html {
  scroll-padding-top: 135px;
}
@media (min-width: 701px) and (max-height: 850px) {
  .hero-sticky {
    min-height: 620px;
  }
  .hero-centered {
    padding-top: 24px;
  }
  .hero-centered h1 {
    font-size: 78px;
  }
  .dynamic-line em {
    font-size: 67px;
  }
  .hero-centered .hero-actions {
    margin-top: 15px;
  }
  .hero-centered .button {
    padding: 14px 24px;
  }
  .atelier-gallery {
    height: 250px;
    bottom: -5px;
  }
  .stack-card {
    width: 167px;
  }
  .stack-card img {
    height: 180px;
  }
}
@media (max-width: 1100px) {
  .nav-links {
    gap: 15px;
    font-size: 9px;
  }
  .space-heading {
    gap: 30px;
  }
  .space-photo img {
    height: 260px;
  }
  .space-photo:nth-child(n + 3) img {
    height: 320px;
  }
}
@media (max-width: 700px) {
  .navbar {
    height: 90px;
  }
  .brand img {
    height: 56px;
    width: 43px;
  }
  .brand > span {
    font-size: 32px;
  }
  .brand small {
    font-size: 8px;
    margin-top: 9px;
  }
  .nav-links {
    top: 90px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .announcement {
    font-size: 8px;
    padding: 8px 10px;
  }
  .hero-sticky {
    top: 90px;
  }
  .hero-centered .eyebrow {
    font-size: 8px;
    letter-spacing: 0.15em;
  }
  .hero-centered .eyebrow span {
    margin: 0 10px;
  }
  .hero-centered h1 {
    font-size: clamp(49px, 12vw, 78px);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }
  .dynamic-line {
    margin-top: 8px;
  }
  .dynamic-line em {
    font-size: 64px;
    min-width: 260px;
    padding-inline: 8px;
  }
  .hero-centered .hero-actions {
    gap: 20px;
  }
  .hero-centered .button {
    font-size: 9px;
    padding: 14px 16px;
    letter-spacing: 0.025em;
    gap: 12px;
  }
  .hero-centered .text-link {
    font-size: 10px;
  }
  .stack-footer {
    justify-content: center;
    font-size: 7px;
  }
  .stack-footer > span {
    display: none;
  }
  .space-heading {
    display: block;
  }
  .space-heading h2 {
    font-size: 46px;
  }
  .space-heading > div:last-child {
    margin-top: 24px;
    font-size: 12px;
  }
  .space-overall {
    padding: 10px;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
  }
  .space-photo,
  .space-photo:nth-child(-n + 2) {
    grid-column: span 1;
  }
  .space-photo:first-child {
    grid-column: span 2;
  }
  .space-photo img,
  .space-photo:nth-child(n + 3) img {
    height: 215px;
  }
  .space-photo:first-child img {
    height: 230px;
  }
  .space-photo:nth-child(2) {
    grid-column: span 2;
  }
  .space-photo:nth-child(2) img {
    height: 215px;
  }
  .space-photo:last-child {
    grid-column: span 2;
  }
  .space-photo:last-child img {
    height: 320px;
  }
  .space-photo figcaption {
    font-size: 17px;
  }
  .space-photo figcaption span {
    font-size: 8px;
    margin-right: 6px;
  }
  .gallery-single {
    padding: 9px 9px 0;
  }
  .photo-grid {
    height: 420px;
  }
  .gallery-controls {
    padding: 12px;
    gap: 28px;
  }
  .review-slider blockquote {
    font-size: 29px;
    min-height: 190px;
  }
  .review-disclosure {
    font-size: 9px;
    max-width: 290px;
    margin: 20px auto;
  }
  .review-controls {
    margin-top: 10px;
  }
  .menu-sidebar {
    top: 90px;
  }
  html {
    scroll-padding-top: 105px;
  }
  .menu-content {
    scroll-margin-top: 205px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-sticky {
    position: relative;
    top: 0;
  }
  .stack-card {
    will-change: auto;
  }
}
.dynamic-line {
  height: 139px;
}
@media (min-width: 701px) and (max-height: 850px) {
  .dynamic-line {
    height: 108px;
  }
}
@media (max-width: 700px) {
  .dynamic-line {
    height: 86px;
  }
}
.gallery-single {
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  height: auto;
}
.photo-tile,
.photo-tile:first-child,
.photo-tile:nth-child(3) {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 4/5;
  height: auto;
  border-radius: 0;
}
.photo-tile img,
.photo-tile:first-child img {
  object-fit: cover;
  aspect-ratio: 4/5;
  height: 100%;
  border-radius: 0;
}
.review-slider {
  max-width: none;
  margin-top: 40px;
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
  border-block: 1px solid var(--line);
}
.review-card {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.review-card + .review-card {
  border-left: 1px solid var(--line);
}
.review-card blockquote {
  font-size: 29px;
  line-height: 1.4;
  margin: 22px 0 30px;
  min-height: 0;
  flex: 1;
  text-wrap: pretty;
}
.review-card mark {
  background: transparent;
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}
.review-author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.google-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  margin-top: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
}
.google-map-link svg {
  flex-shrink: 0;
}
@media (max-width: 1000px) {
  .review-card {
    padding: 25px 19px;
  }
  .review-card blockquote {
    font-size: 25px;
  }
}
@media (max-width: 700px) {
  .photo-tile,
  .photo-tile:first-child,
  .photo-tile:nth-child(3) {
    aspect-ratio: 3/5;
  }
  .photo-tile img,
  .photo-tile:first-child img {
    aspect-ratio: 3/5;
  }
  .photo-tile > span {
    width: 21px;
    height: 21px;
    font-size: 11px;
    right: 6px;
    bottom: 6px;
  }
  .review-cards {
    grid-template-columns: 1fr;
  }
  .review-card {
    padding: 26px 8px;
  }
  .review-card + .review-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .review-card blockquote {
    font-size: 27px;
    margin: 17px 0 20px;
    min-height: 0;
  }
  .review-slider {
    margin-top: 30px;
  }
}
.photo-grid {
  grid-auto-rows: auto;
  align-items: start;
}
.photo-grid .photo-tile {
  min-height: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  position: relative;
}
.photo-grid .photo-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-controls {
  position: relative;
  z-index: 1;
}
.contact-map {
  margin-top: 48px;
  border: 1px solid var(--line);
  padding: 9px;
  background: var(--paper);
}
.contact-map iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 440px;
}
.map-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 10px 7px;
  font-size: 10px;
  color: var(--muted);
}
.map-caption a {
  font-weight: 600;
  color: var(--gold);
}
@media (max-width: 700px) {
  .contact-map {
    margin-top: 30px;
    padding: 6px;
  }
  .contact-map iframe {
    height: 340px;
  }
  .map-caption {
    display: block;
    padding: 12px 6px;
    font-size: 9px;
  }
  .map-caption a {
    display: block;
    margin-top: 9px;
  }
}
:root {
  --gold: #8b754b;
  --metal-gold: linear-gradient(
    174deg,
    #685536 0%,
    #8e7850 31%,
    #b29b6d 44%,
    #c1ac82 48%,
    #998158 54%,
    #79623e 77%,
    #927a50 100%
  );
}
@supports (background-clip: text) {
  h1 em,
  h2 em,
  .review-card mark,
  .footer-top > p {
    background-image: var(--metal-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
.review-card blockquote {
  margin-top: 0;
}
.gallery-heading > div:empty {
  display: none;
}
.gallery-heading {
  margin-bottom: 32px;
}
.gallery-controls #gallery-toggle {
  width: auto;
  min-width: 158px;
  padding: 0 25px;
  font-size: 11px;
  letter-spacing: 0.06em;
  height: 46px;
}
.photo-grid .photo-tile {
  grid-column: auto !important;
  grid-row: auto !important;
}
.hours dl {
  margin-top: 15px;
}
.hours dl > div {
  padding: 10px 0;
}
.stack-card img {
  height: 100%;
}
.stack-card {
  height: 258px;
}
.mobile-actions .booking-link[aria-disabled="true"] {
  opacity: 0.65;
}
.contact-heading {
  margin-bottom: 42px;
}
.section-heading {
  margin-bottom: 45px;
}
.review-disclosure {
  margin-top: 18px;
}
@media (min-width: 701px) and (max-height: 850px) {
  .stack-card {
    height: 212px;
  }
}
@media (max-width: 700px) {
  .stack-hero {
    --hero-chrome: 185px;
    --mobile-hero-height: max(560px, calc(100svh - var(--hero-chrome)));
    height: calc(var(--mobile-hero-height) + 135px);
  }
  .hero-sticky {
    height: var(--mobile-hero-height);
    min-height: 0;
  }
  .stack-card {
    width: 136px;
    height: 180px;
    padding: 5px;
  }
  .stack-card img {
    height: 100%;
  }
  .section-space {
    padding-block: 52px;
  }
  .space-heading {
    margin-bottom: 25px;
  }
  .gallery-heading {
    margin-bottom: 24px;
  }
  .review-card blockquote {
    margin-top: 0;
  }
  .contact-heading {
    margin-bottom: 30px;
  }
  .photo-grid {
    gap: 9px;
  }
  .photo-grid .photo-tile {
    aspect-ratio: 3/4;
  }
  .gallery-controls {
    padding-top: 22px;
  }
  .hero-centered .hero-actions {
    margin-top: 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .stack-hero {
    height: auto;
  }
}
@supports (background-clip: text) {
  h1 em,
  h2 em,
  .review-card mark,
  .footer-top > p {
    filter: drop-shadow(0 0.45px 0.2px rgba(75, 55, 28, 0.14));
  }
}

@media (max-width: 700px) {
  .hero-sticky {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding-bottom: 32px;
  }
  .hero-centered {
    padding-top: 0;
    flex: 0 0 auto;
  }
  .atelier-gallery {
    position: relative;
    bottom: auto;
    left: auto;
    flex: 0 0 210px;
    height: 210px;
  }
  .stack-footer {
    bottom: 10px;
  }
}
@media (max-width: 700px) {
  .hero-centered {
    margin: 0 auto;
  }
}
@media (max-width: 700px) {
  .menu-toggle {
    border: 1px solid var(--line);
    padding: 11px 13px;
    font: 500 11px var(--sans);
    letter-spacing: 0.04em;
    min-width: 78px;
    justify-content: space-between;
  }
  .menu-toggle[aria-expanded="true"] {
    background: var(--cream);
    border-color: var(--gold);
  }
  .nav-links {
    padding: 18px 26px 26px;
    gap: 0;
    max-height: calc(100dvh - 155px);
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 16px 22px #493d2710;
  }
  .nav-links > a:not(.nav-call) {
    font: 500 30px/1.2 var(--serif);
    letter-spacing: -0.025em;
    text-transform: none;
    padding: 17px 5px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links > a:not(.nav-call)::after {
    content: "↗";
    font: 400 16px var(--sans);
    color: var(--gold);
  }
  .nav-links > a:not(.nav-call):hover {
    background: var(--cream);
    padding-left: 12px;
  }
  .nav-links .nav-call {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    padding: 17px 20px;
    font: 600 12px var(--sans);
    letter-spacing: 0.08em;
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
  }
}
@media (min-width: 701px) {
  .nav-links {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.015em;
  }
  .nav-links > a:not(.nav-call) {
    padding: 12px 0;
  }
}
@media (min-width: 701px) and (max-width: 1000px) {
  .nav-links {
    font-size: 11px;
  }
}
@media (min-width: 701px) {
  .nav-links > a:not(.nav-call) {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.015em;
  }
  .nav-links {
    gap: 30px;
  }
  .nav-call {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.025em;
  }
}
@media (min-width: 701px) and (max-width: 1000px) {
  .nav-links > a:not(.nav-call) {
    font-size: 19px;
  }
  .nav-links {
    gap: 17px;
  }
  .nav-call {
    padding: 13px 15px;
  }
}
