@font-face {
  font-family:Anton;
  src:url('../fonts/Anton-Regular-latin.woff2') format('woff2');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
:root {
  --paper:#f7f0dc;
  --chalk:#fffcf4;
  --ink:#302029;
  --red:#b93e2d;
  --line:#b5a99f;
  --mist:#c6d4d6;
  --muted:#65575b;
  --page:1240px;
  --gutter:48px;
  color-scheme:light;
}
*,*::before,*::after {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:100px;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Hiragino Kaku Gothic ProN','Hiragino Sans','Yu Gothic',Meiryo,Arial,sans-serif;
  font-weight:500;
  line-height:1.85;
  -webkit-font-smoothing:antialiased;
}
body:has(.mobile-menu[open]) {
  isolation:isolate;
}
button,a,summary {
  -webkit-tap-highlight-color:transparent;
}
button,input {
  font:inherit;
}
a {
  color:inherit;
  text-decoration-thickness:1px;
  text-underline-offset:5px;
}
button,summary,a {
  touch-action:manipulation;
}
a:hover {
  text-decoration-color:var(--red);
}
a:focus-visible,button:focus-visible,summary:focus-visible {
  outline:3px solid var(--red);
  outline-offset:5px;
}
img {
  display:block;
  max-width:100%;
  height:auto;
}
figure {
  margin:0;
}
h1,h2,h3,p {
  margin:0;
}
h2 {
  font-size:clamp(28px,3.1vw,46px);
  line-height:1.35;
  letter-spacing:-.04em;
  font-weight:800;
}
h3 {
  font-size:21px;
  line-height:1.5;
}
p+p {
  margin-top:16px;
}
address {
  font-style:normal;
}
small {
  font-size:.75em;
}
dl,dd {
  margin:0;
}
ul {
  padding-left:1.3em;
}
button {
  cursor:pointer;
}
section {
  position:relative;
}
.wrap {
  max-width:var(--page);
  margin-inline:auto;
  width:calc(100% - var(--gutter)*2);
}
.section {
  padding-block:76px;
}
.eyebrow {
  font-size:11px;
  font-weight:700;
  letter-spacing:.15em;
  line-height:1.7;
  margin-bottom:18px;
}
.fine {
  font-size:12px;
  line-height:1.8;
  color:var(--muted);
}
.text-link {
  display:inline-flex;
  gap:22px;
  align-items:center;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  border-bottom:1px solid currentColor;
  padding:12px 0;
  line-height:1.6;
}
.text-link>span:last-child {
  font-size:20px;
  margin-left:auto;
}
.actions {
  display:flex;
  gap:10px;
  align-items:stretch;
}
.button {
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  padding:12px 22px;
  line-height:1.45;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  border:1px solid transparent;
  transition:background-color .2s,color .2s;
}
.button>span {
  font-size:20px;
  line-height:1;
}
.button-red {
  background:var(--red);
  color:var(--chalk);
}
.button-red:hover {
  background:#952d22;
}
.button-outline {
  border-color:var(--ink);
  background:transparent;
  color:var(--ink);
}
.button-outline:hover {
  background:var(--ink);
  color:var(--chalk);
}
.skip-link {
  position:fixed;
  top:-100px;
  left:16px;
  z-index:100;
  background:var(--paper);
  padding:12px;
}
.skip-link:focus {
  top:8px;
}
[hidden] {
  display:none!important;
}
.anchor-alias {
  position:absolute;
  top:0;
  scroll-margin-top:90px;
}
.site-header {
  height:88px;
  padding-inline:var(--gutter);
  display:flex;
  align-items:center;
  gap:26px;
  position:sticky;
  top:0;
  z-index:30;
  background:var(--paper);
  border-bottom:1px solid rgba(48,32,41,.08);
}
.brand {
  display:flex;
  align-items:center;
  gap:0;
  text-decoration:none;
  white-space:nowrap;
}
.wordmark {
  font-family:Anton,Impact,sans-serif;
  font-weight:400;
  font-size:39px;
  line-height:1;
  letter-spacing:-1px;
  transform:scaleX(.8);
  transform-origin:left center;
  margin-right:-27px;
}
.brand-place {
  font-size:8px;
  letter-spacing:.29em;
  font-weight:800;
  margin-left:6px;
}
.desktop-nav {
  display:flex;
  gap:25px;
  margin-left:auto;
  font-size:12px;
  font-weight:700;
}
.desktop-nav a {
  text-decoration:none;
  white-space:nowrap;
}
.header-tools {
  display:flex;
  align-items:center;
  gap:22px;
}
.language-link {
  font-size:12px;
  white-space:nowrap;
  text-decoration:none;
}
.header-tools>.language-link {
  padding-left:20px;
  border-left:1px solid var(--line);
}
.header-reserve .button {
  min-height:40px;
  background:var(--ink);
  font-size:12px;
  padding:9px 17px;
  gap:15px;
}
.header-reserve .button:hover {
  background:var(--red);
}
.mobile-menu {
  display:none;
}
.hero {
  background:var(--mist);
  min-height:430px;
  height:clamp(430px,34vw,500px);
  overflow:hidden;
}
.hero-photo {
  -webkit-mask-image:linear-gradient(to right,transparent,#000 22%);
  mask-image:linear-gradient(to right,transparent,#000 22%);
  position:absolute;
  height:100%;
  width:auto;
  max-width:none;
  right:0;
  top:0;
}
.hero-wash {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,var(--mist) 0%,var(--mist) 26%,rgba(198,212,214,.9) 34%,rgba(198,212,214,0) 53%);
  pointer-events:none;
}
.hero-copy {
  position:relative;
  z-index:1;
  max-width:1336px;
  margin:auto;
  padding:76px var(--gutter) 50px;
}
.hero .eyebrow {
  font-size:14px;
  letter-spacing:.07em;
  margin-bottom:20px;
}
.hero-headline {
  font-size:clamp(50px,5.7vw,82px);
  font-weight:850;
  letter-spacing:-.065em;
  line-height:1.19;
}
.hero-lead {
  font-size:19px;
  letter-spacing:.035em;
  margin-top:20px;
  line-height:1.65;
}
.service-strip {
  background:var(--chalk);
  border-bottom:1px solid var(--line);
}
.service-inner {
  max-width:1336px;
  margin:auto;
  padding:24px var(--gutter);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}
.selection {
  font-size:15px;
  font-weight:700;
  line-height:1.6;
}
.selection strong {
  font-size:28px;
  letter-spacing:-.05em;
  margin-inline:3px;
}
.quick-price {
  border-inline:1px solid var(--line);
  padding-inline:28px;
  line-height:1.5;
}
.quick-price>p:first-child {
  font-size:15px;
  font-weight:700;
  white-space:nowrap;
}
.quick-price strong {
  font-size:28px;
  letter-spacing:-.035em;
}
.quick-price .fine {
  font-size:10px;
  margin-top:3px;
}
.service-inner .actions {
  flex-shrink:0;
}
.experience {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:50px;
  align-items:center;
  padding-bottom:70px;
}
.experience-image {
  display:grid;
  grid-template-columns:105px 1fr;
  align-items:stretch;
  gap:25px;
}
.floor-mark {
  font-family:Anton,Impact,sans-serif;
  font-size:138px;
  font-weight:400;
  line-height:1;
  letter-spacing:-.04em;
  display:block;
}
.experience-image .floor-mark {
  align-self:center;
}
.experience-image img {
  width:100%;
  aspect-ratio:1.08;
  object-fit:cover;
}
.experience-copy .intro {
  font-size:20px;
  font-weight:700;
  line-height:1.6;
  margin-top:14px;
}
.experience-copy>p:not(.eyebrow):not(.intro):not(.welcome) {
  font-size:14px;
  max-width:440px;
  margin-top:22px;
}
.welcome {
  font-size:12px;
  border-top:1px solid var(--line);
  padding-top:17px;
  margin-top:25px;
}
.pricing,.courses {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:90px;
  border-top:1px solid var(--line);
}
.section-intro>p:not(.eyebrow) {
  font-size:14px;
  margin-top:20px;
}
.price-table {
  border-top:2px solid var(--ink);
}
.price-table>div {
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  padding:20px 0;
  border-bottom:1px solid var(--line);
}
.price-table dt {
  font-weight:700;
  font-size:17px;
}
.price-table dt small {
  display:block;
  font-weight:500;
}
.price-table dd {
  font-size:40px;
  font-weight:750;
  letter-spacing:-.04em;
  line-height:1.2;
}
.price-detail>.fine {
  margin-top:12px;
}
.price-detail>p:not(.fine) {
  font-size:14px;
  margin-top:25px;
}
.price-detail .inline-actions {
  margin-top:28px;
}
.food {
  display:grid;
  grid-template-columns:.85fr 1.2fr;
  gap:95px;
  align-items:center;
  padding-top:0;
}
.food-copy p:not(.eyebrow) {
  margin-top:25px;
}
.food figure {
  position:relative;
}
.food img {
  aspect-ratio:1.4;
  width:100%;
  object-fit:cover;
}
.food figcaption {
  font-size:9px;
  letter-spacing:.16em;
  text-align:right;
  margin-top:8px;
}
.courses {
  gap:70px;
  padding-top:55px;
}
.course+.course {
  margin-top:32px;
}
.course-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.course h3 {
  display:flex;
  gap:17px;
  align-items:center;
  font-size:15px;
}
.course-number {
  font-size:50px;
  line-height:1.2;
  white-space:nowrap;
  font-weight:800;
  letter-spacing:-.05em;
}
.course-number span {
  font-size:18px;
  letter-spacing:0;
  margin-left:5px;
}
.course-price {
  font-size:30px;
  font-weight:750;
  line-height:1.2;
  white-space:nowrap;
  letter-spacing:-.03em;
}
.course-price small {
  display:block;
  font-size:10px;
  font-weight:500;
  letter-spacing:0;
  margin-top:7px;
  text-align:right;
}
.course-terms {
  font-size:12px;
  margin-block:17px 10px;
  font-weight:650;
}
.course-list>.fine {
  margin-top:24px;
}
.course-list>.button {
  margin-top:25px;
}
.course-list>.destination-note {
  margin-top:7px;
}
.course details {
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
summary {
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:17px 0;
  font-size:13px;
  font-weight:700;
  line-height:1.65;
}
summary::-webkit-details-marker {
  display:none;
}
.toggle {
  flex:0 0 14px;
  height:14px;
  position:relative;
}
.toggle::before,.toggle::after {
  content:'';
  position:absolute;
  background:currentColor;
  top:6px;
  left:1px;
  width:12px;
  height:1px;
}
.toggle::after {
  transform:rotate(90deg);
}
details[open]>summary .toggle::after {
  transform:rotate(0deg);
}
.details-content {
  padding:0 0 20px;
}
.details-content>p {
  font-size:13px;
  line-height:1.9;
}
.details-content>.fine {
  font-size:12px;
}
.food-list {
  font-size:13px;
  margin:0 0 15px;
}
.food-list li+li {
  margin-top:6px;
}
.house {
  background:var(--ink);
  color:var(--paper);
  padding-block:45px;
}
.house-inner {
  display:flex;
  align-items:center;
  gap:55px;
}
.house .floor-mark {
  font-size:115px;
}
.house .eyebrow {
  margin-bottom:12px;
  font-size:10px;
}
.house h2 {
  font-size:31px;
}
.house p:not(.eyebrow) {
  font-size:13px;
  margin-top:16px;
}
.house-return {
  margin-left:auto;
  font-size:13px;
  text-decoration:none;
  white-space:nowrap;
  border-bottom:1px solid currentColor;
  padding:10px 0;
}
.visit {
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:75px;
  row-gap:30px;
  padding-top:95px;
}
.visit-heading {
  grid-column:1;
  grid-row:1;
}
.alley {
  grid-column:1;
  grid-row:2;
}
.alley img {
  width:100%;
}
.alley figcaption {
  font-size:11px;
  margin-top:10px;
}
.visit-details {
  grid-column:2;
  grid-row:1 / 3;
  align-self:start;
  padding-top:15px;
}
.visit-details h3 {
  font-size:23px;
  margin-bottom:22px;
}
.visit-details h3 span {
  display:block;
  font-size:11px;
  font-weight:500;
  letter-spacing:.06em;
  margin-top:4px;
}
.visit-details address {
  font-size:15px;
}
.visit-details>p {
  font-size:13px;
  margin-top:15px;
}
.visit-details>.fine {
  font-size:11px;
}
.visit-details .text-link {
  margin-block:8px 18px;
}
.hours {
  border-block:1px solid var(--line);
  padding-block:12px;
}
.hours>div {
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding-block:7px;
  font-size:14px;
}
.hours dd small {
  font-size:10px;
  margin-left:12px;
}
.phone {
  display:inline-block;
  margin-top:18px;
  font-size:23px;
  font-weight:700;
  letter-spacing:.04em;
  text-decoration:none;
}
.hotel-routes {
  grid-column:1 / -1;
  border-block:1px solid var(--line);
  margin-top:14px;
}
.hotel-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 30px;
  padding-bottom:20px;
}
.hotel-link {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
  font-size:12px;
  gap:12px;
  text-decoration:none;
  border-bottom:1px solid rgba(48,32,41,.15);
}
.booking {
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:75px;
  margin-top:30px;
  padding-top:35px;
}
.booking h3 {
  font-size:25px;
}
.booking>div>p:not(.eyebrow) {
  font-size:13px;
  margin-top:15px;
}
.booking .actions {
  margin-top:25px;
}
.booking-help details {
  border-block:1px solid var(--line);
}
.booking-help>.fine {
  font-size:11px!important;
  margin-top:18px!important;
}
.copy-button {
  background:var(--ink);
  color:var(--paper);
  border:0;
  font-size:12px;
  padding:12px 18px;
  margin-top:15px;
}
.copy-status:empty {
  display:none;
}
.faq {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:90px;
  border-top:1px solid var(--line);
  padding-top:60px;
}
.faq .text-link {
  margin-top:22px;
  font-size:11px;
  gap:14px;
}
.faq-list details {
  border-top:1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom:1px solid var(--line);
}
.faq-list summary {
  padding-block:20px;
  font-size:13px;
}
.discover {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:center;
  border-top:1px solid var(--line);
  padding-block:90px;
}
.label-art {
  display:block;
  max-width:310px;
  width:75%;
  margin:auto;
  transition:transform .3s;
}
.label-art:hover {
  transform:rotate(-2deg);
}
.label-art img {
  width:100%;
}
.discover-copy>p:not(.eyebrow) {
  font-size:14px;
  margin-top:24px;
}
.discover-copy>.fine {
  font-size:11px;
  margin-top:8px!important;
}
.discover-copy>.text-link {
  margin-top:25px;
}
.field {
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:70px;
  padding-block:65px 70px;
}
.field>.eyebrow {
  grid-column:1 / -1;
}
.field h2 {
  font-size:34px;
}
.field>div {
  align-self:center;
}
.field>div>p {
  font-size:13px;
}
.field>div>.fine {
  font-size:11px;
  margin-top:12px;
}
.field-line {
  grid-column:1 / -1;
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:35px;
}
.field-line span {
  color:var(--red);
}
.playground {
  background:var(--ink);
  color:var(--paper);
  padding-block:70px;
}
.playground-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}
.playground .eyebrow {
  font-size:10px;
}
.playground h2 {
  font-size:34px;
}
.playground p:not(.eyebrow) {
  font-size:13px;
  margin-top:22px;
}
.play-link {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  text-decoration:none;
  border-top:1px solid #7b6773;
  padding:18px 0;
  font-size:19px;
  font-weight:700;
  line-height:1.55;
}
.play-link:nth-child(2) {
  border-bottom:1px solid #7b6773;
}
.play-link small {
  display:block;
  font-size:9px;
  letter-spacing:.15em;
  font-weight:500;
  margin-bottom:8px;
}
.play-link>span:last-child {
  font-size:28px;
  font-weight:400;
}
.playground .fine {
  color:#d1c3c6;
  font-size:11px!important;
}
.return {
  text-align:center;
  padding-block:90px 70px;
}
.return h2 {
  font-size:42px;
}
.return .actions {
  justify-content:center;
  margin-top:30px;
}
.return>.fine {
  margin-top:22px;
}
.site-footer {
  border-top:1px solid var(--line);
  padding-block:32px 25px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
}
.footer-brand {
  margin-bottom:22px;
}
.site-footer nav {
  justify-self:end;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:5px;
}
.site-footer nav .text-link {
  font-size:10px;
  padding:6px 0;
  border:0;
}
.site-footer nav .language-link {
  padding:7px 0;
}
.site-footer .fine {
  font-size:11px;
}
.copyright {
  grid-column:1 / -1;
  font-size:9px;
  letter-spacing:.12em;
  margin-top:20px;
}
.sticky-actions {
  position:fixed;
  z-index:25;
  bottom:0;
  left:0;
  right:0;
  background:var(--paper);
  border-top:1px solid var(--line);
  padding:10px 16px max(10px,env(safe-area-inset-bottom));
  display:flex;
  gap:8px;
  box-shadow:0 -2px 12px #3020290d;
}
.sticky-actions .reservation-link {
  flex:1;
}
.sticky-actions .button {
  font-size:12px;
  min-height:45px;
}
.not-found {
  padding-block:15vh;
}
.not-found h1 {
  font-size:clamp(30px,5vw,64px);
  line-height:1.4;
}
.not-found p,.not-found .actions {
  margin-top:30px;
}
html[lang=en] .hero-headline {
  font-family:Arial,Helvetica,sans-serif;
  font-size:clamp(44px,4.55vw,66px);
  letter-spacing:-.065em;
  line-height:1.14;
  font-weight:800;
}
html[lang=en] .hero-lead {
  font-size:16px;
}
html[lang=en] .hero-copy {
  padding-top:90px;
}
html[lang=en] .quick-price {
  padding-inline:20px;
}
html[lang=en] .selection {
  font-size:13px;
}
html[lang=en] .course h3 {
  font-size:13px;
}
html[lang=en] .course-number {
  font-size:48px;
}
html[lang=en] .course-price {
  font-size:29px;
}
html[lang=en] .course-terms {
  font-size:11px;
}
html[lang=en] .house h2 {
  font-size:34px;
}
@media(min-width:1500px) {
  .site-header {
    padding-inline:max(var(--gutter),calc((100vw - 1240px)/2));
  }
}
@media(max-width:1150px) {
  :root {
    --gutter:32px;
  }
  .site-header {
    gap:18px;
  }
  .desktop-nav {
    gap:18px;
    font-size:11px;
  }
  .header-tools {
    gap:16px;
  }
  .header-reserve .button {
    padding-inline:13px;
    font-size:11px;
  }
  .wordmark {
    font-size:35px;
    margin-right:-24px;
  }
  .brand-place {
    font-size:7px;
  }
  .service-inner {
    gap:18px;
  }
  .service-inner .selection {
    font-size:12px;
  }
  .quick-price {
    padding-inline:18px;
  }
  .quick-price>p:first-child {
    font-size:12px;
  }
  .quick-price strong {
    font-size:25px;
  }
  .service-inner .button {
    padding-inline:16px;
    font-size:11px;
    gap:12px;
  }
  .experience {
    gap:35px;
  }
  .experience-image {
    grid-template-columns:75px 1fr;
    gap:18px;
  }
  .experience-image .floor-mark {
    font-size:112px;
  }
  .experience-copy h2 {
    font-size:35px;
  }
  .experience-copy .intro {
    font-size:16px;
  }
  .pricing,.courses,.faq {
    gap:55px;
  }
  .food,.visit,.booking {
    column-gap:50px;
  }
  .discover {
    gap:60px;
  }
  .course-heading {
    gap:12px;
  }
  .course h3 {
    gap:10px;
  }
  .course-price {
    font-size:26px;
  }
  .course h3>span:last-child {
    max-width:120px;
  }
  .playground-inner {
    gap:50px;
  }
  .header-reserve {
    display:none;
  }
  html[lang=en] .service-inner {
    flex-wrap:wrap;
  }
  html[lang=en] .service-inner>.actions {
    margin-left:auto;
  }
  html[lang=en] .quick-price {
    border-right:0;
  }
  html[lang=en] .hero-copy {
    padding-top:85px;
  }
  html[lang=en] .course-price {
    font-size:25px;
  }
}
@media(max-width:900px) {
  .site-header {
    height:72px;
    justify-content:space-between;
  }
  .desktop-nav {
    display:none;
  }
  .header-tools {
    gap:18px;
  }
  .mobile-menu {
    display:block;
    position:static;
    border:0;
  }
  .mobile-menu>summary {
    width:44px;
    height:44px;
    justify-content:center;
    padding:0;
  }
  .menu-icon {
    display:block;
    position:relative;
    width:22px;
    height:16px;
    border-block:1px solid var(--ink);
  }
  .menu-icon::after {
    content:'';
    position:absolute;
    left:0;
    right:0;
    top:6px;
    height:1px;
    background:var(--ink);
  }
  .mobile-menu[open] .menu-icon {
    border:0;
    transform:rotate(45deg);
  }
  .mobile-menu[open] .menu-icon::before {
    content:'';
    position:absolute;
    top:6px;
    left:0;
    right:0;
    height:1px;
    background:var(--ink);
    transform:rotate(90deg);
  }
  .mobile-menu nav {
    position:absolute;
    top:100%;
    right:0;
    left:0;
    background:var(--paper);
    padding:18px var(--gutter) 26px;
    border-block:1px solid var(--line);
    box-shadow:0 12px 20px #3020290d;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:0;
  }
  .mobile-menu nav>a:not(.button) {
    padding:14px 0;
    text-decoration:none;
    font-size:14px;
    border-bottom:1px solid var(--line);
  }
  .mobile-menu nav>.button {
    margin-top:20px;
  }
  .hero {
    height:480px;
  }
  .hero-copy {
    padding-top:78px;
  }
  .hero-headline {
    font-size:58px;
  }
  .hero-lead {
    font-size:17px;
  }
  .hero-photo {
    right:-80px;
  }
  .hero-wash {
    background:linear-gradient(90deg,var(--mist),rgba(198,212,214,.9) 28%,rgba(198,212,214,0) 63%);
  }
  .service-inner {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
  .service-inner>.actions {
    justify-content:flex-end;
    grid-column:2;
    grid-row:1 / 3;
  }
  .service-inner>.selection {
    font-size:14px;
    grid-column:1;
  }
  .quick-price {
    border:0;
    padding:0;
    grid-column:1;
  }
  .quick-price>p:first-child {
    font-size:13px;
  }
  .service-inner>.selection strong {
    font-size:22px;
  }
  .service-inner .button {
    min-height:49px;
    font-size:12px;
  }
  .experience {
    grid-template-columns:1fr 1fr;
    gap:28px;
  }
  .experience-image {
    grid-template-columns:65px 1fr;
    gap:15px;
  }
  .experience-image .floor-mark {
    font-size:95px;
  }
  .experience-image img {
    aspect-ratio:.7;
  }
  .experience-copy h2 {
    font-size:30px;
  }
  .experience-copy>p:not(.eyebrow):not(.intro):not(.welcome) {
    font-size:13px;
  }
  .experience-copy .intro {
    font-size:15px;
  }
  .section {
    padding-block:60px;
  }
  .pricing,.courses,.faq {
    grid-template-columns:.8fr 1.2fr;
    gap:35px;
  }
  .price-table dd {
    font-size:32px;
  }
  .price-table dt {
    font-size:14px;
  }
  .food {
    gap:35px;
    padding-top:0;
  }
  .food h2 {
    font-size:32px;
  }
  .food p {
    font-size:13px;
  }
  .food img {
    aspect-ratio:1;
  }
  .course h3 {
    flex-wrap:wrap;
    gap:5px;
  }
  .course h3>span:last-child {
    max-width:none;
    flex-basis:100%;
  }
  .house-inner {
    gap:30px;
  }
  .house h2 {
    font-size:27px;
  }
  .house .floor-mark {
    font-size:95px;
  }
  .house-return {
    display:none;
  }
  .visit {
    gap:30px;
  }
  .visit-details {
    padding-top:0;
  }
  .visit-details h3 {
    font-size:19px;
  }
  .visit-details address {
    font-size:13px;
  }
  .hours>div {
    font-size:12px;
  }
  .hours dd small {
    display:block;
    margin-left:0;
  }
  .booking {
    gap:30px;
  }
  .booking h3 {
    font-size:22px;
  }
  .booking .actions {
    flex-wrap:wrap;
  }
  .discover {
    gap:35px;
  }
  .field {
    gap:25px;
  }
  .field h2 {
    font-size:28px;
  }
  .playground h2 {
    font-size:30px;
  }
  .playground-inner {
    gap:35px;
  }
  .site-footer {
    padding-bottom:110px;
  }
  .sticky-actions[hidden] {
    display:none!important;
  }
  html[lang=en] .service-inner {
    display:grid;
  }
  html[lang=en] .quick-price {
    padding:0;
  }
  html[lang=en] .hero-headline {
    font-size:49px;
  }
  html[lang=en] .hero-copy {
    padding-top:86px;
  }
  html[lang=en] .service-inner .selection {
    font-size:13px;
  }
}
@media(max-width:600px) {
  :root {
    --gutter:22px;
  }
  html {
    scroll-padding-top:88px;
  }
  .site-header {
    height:68px;
    padding-inline:20px;
    gap:10px;
  }
  .wordmark {
    font-size:33px;
    margin-right:-22px;
  }
  .brand-place {
    font-size:6px;
    letter-spacing:.22em;
    margin-left:5px;
  }
  .header-tools {
    gap:7px;
  }
  .header-tools>.language-link {
    font-size:11px;
    padding-left:12px;
  }
  .mobile-menu>summary {
    width:40px;
  }
  .hero {
    height:420px;
    min-height:0;
  }
  .hero-photo {
    width:450px;
    height:450px;
    top:auto;
    bottom:0;
    right:-110px;
  }
  .hero-wash {
    background:linear-gradient(90deg,var(--mist),rgba(198,212,214,.86) 12%,rgba(198,212,214,0) 65%);
  }
  .hero-copy {
    padding:58px 22px 25px;
  }
  .hero .eyebrow {
    font-size:10px;
    letter-spacing:.03em;
    margin-bottom:15px;
    max-width:240px;
    line-height:1.7;
  }
  .hero-headline {
    font-size:45px;
    letter-spacing:-.065em;
    line-height:1.2;
  }
  .hero-lead {
    font-size:13px;
    line-height:1.7;
    letter-spacing:0;
    margin-top:16px;
    max-width:190px;
  }
  .service-inner {
    display:flex;
    flex-direction:column;
    gap:10px;
    padding:18px 22px 20px;
    text-align:center;
  }
  .service-inner>.selection {
    font-size:13px;
    line-height:1.5;
  }
  .service-inner>.selection strong {
    font-size:20px;
  }
  .quick-price>p:first-child {
    display:flex;
    justify-content:center;
    align-items:baseline;
    gap:5px;
    flex-wrap:wrap;
    font-size:12px;
  }
  .quick-price strong {
    font-size:30px;
    line-height:1.2;
  }
  .quick-price .fine {
    font-size:10px;
    margin-top:5px;
  }
  .service-inner>.actions {
    width:100%;
    margin-top:5px;
  }
  .service-inner .reservation-link {
    flex:1;
  }
  .service-inner .button {
    min-height:46px;
    font-size:12px;
    padding:10px 14px;
    gap:12px;
  }
  .section {
    padding-block:46px;
  }
  h2 {
    font-size:29px;
    line-height:1.4;
  }
  .eyebrow {
    font-size:9px;
    margin-bottom:14px;
  }
  .experience {
    grid-template-columns:1fr;
    gap:25px;
    padding-top:35px;
    padding-bottom:45px;
  }
  .experience-image {
    grid-template-columns:62px 1fr;
    gap:20px;
  }
  .experience-image .floor-mark {
    font-size:95px;
    align-self:center;
  }
  .experience-image img {
    aspect-ratio:1.55;
    max-height:245px;
    object-position:50% 48%;
  }
  .experience-copy .eyebrow {
    margin-bottom:10px;
  }
  .experience-copy h2 {
    font-size:32px;
  }
  .experience-copy .intro {
    font-size:16px;
    margin-top:10px;
  }
  .experience-copy>p:not(.eyebrow):not(.intro):not(.welcome) {
    font-size:13px;
    margin-top:16px;
  }
  .welcome {
    font-size:11px;
    margin-top:20px;
    padding-top:14px;
  }
  .pricing,.courses {
    grid-template-columns:1fr;
    gap:26px;
  }
  .section-intro>p:not(.eyebrow) {
    font-size:13px;
    margin-top:12px;
  }
  .pricing .section-intro h2 {
    font-size:27px;
  }
  .price-table>div {
    padding:19px 0;
    gap:15px;
  }
  .price-table dt {
    font-size:14px;
  }
  .price-table dd {
    font-size:33px;
  }
  .price-detail>.fine {
    font-size:11px;
  }
  .price-detail>p:not(.fine) {
    font-size:13px;
    margin-top:22px;
  }
  .price-detail .inline-actions {
    margin-top:24px;
  }
  .food {
    display:flex;
    flex-direction:column;
    gap:23px;
    padding-top:4px;
    align-items:stretch;
  }
  .food-copy h2 {
    font-size:32px;
  }
  .food-copy p:not(.eyebrow) {
    margin-top:18px;
    font-size:13px;
  }
  .food-copy .fine {
    font-size:11px!important;
  }
  .food img {
    aspect-ratio:1.22;
  }
  .food figcaption {
    font-size:8px;
  }
  .courses {
    padding-top:40px;
  }
  .courses h2 br {
    display:none;
  }
  .courses h2 {
    font-size:27px;
  }
  .course-heading {
    gap:16px;
    align-items:center;
  }
  .course h3 {
    display:flex;
    flex-wrap:nowrap;
    gap:14px;
    font-size:13px;
  }
  .course h3>span:last-child {
    max-width:98px;
    flex-basis:auto;
  }
  .course-number {
    font-size:49px;
  }
  .course-number span {
    font-size:16px;
  }
  .course-price {
    font-size:29px;
  }
  .course-price small {
    font-size:9px;
    margin-top:6px;
  }
  .course-terms {
    font-size:11px;
    line-height:1.8;
    margin-top:17px;
  }
  .course+.course {
    margin-top:30px;
  }
  .course-list>.fine {
    font-size:11px;
  }
  .course-list>.button {
    width:100%;
  }
  .course-list>.destination-note {
    text-align:center;
    font-size:10px;
  }
  .house {
    padding-block:32px;
  }
  .house-inner {
    gap:23px;
    align-items:flex-start;
  }
  .house .floor-mark {
    font-size:76px;
    margin-top:4px;
  }
  .house h2 {
    font-size:23px;
    line-height:1.5;
  }
  .house .eyebrow {
    font-size:8px;
    letter-spacing:.1em;
    line-height:1.6;
    margin-bottom:10px;
  }
  .house p:not(.eyebrow) {
    font-size:11px;
    margin-top:14px;
  }
  .house p br {
    display:none;
  }
  .visit {
    grid-template-columns:1fr;
    gap:25px;
    padding-top:52px;
  }
  .visit-heading {
    grid-row:auto;
    grid-column:auto;
  }
  .visit h2 {
    font-size:32px;
  }
  .alley {
    grid-row:auto;
    grid-column:auto;
  }
  .alley figcaption {
    font-size:10px;
  }
  .visit-details {
    grid-column:auto;
    grid-row:auto;
  }
  .visit-details h3 {
    font-size:23px;
    margin-bottom:18px;
  }
  .visit-details address {
    font-size:14px;
  }
  .visit-details>p {
    font-size:13px;
  }
  .visit-details>.fine {
    font-size:11px;
  }
  .hours>div {
    font-size:13px;
  }
  .hours dd small {
    display:inline;
    margin-left:12px;
    font-size:10px;
  }
  .visit-details .phone {
    font-size:23px;
  }
  .hotel-routes {
    margin-top:0;
  }
  .hotel-routes>summary {
    font-size:12px;
  }
  .hotel-grid {
    grid-template-columns:1fr;
    padding-bottom:15px;
  }
  .hotel-link {
    font-size:12px;
  }
  .booking {
    grid-template-columns:1fr;
    gap:27px;
    margin-top:0;
    padding-top:15px;
  }
  .booking h3 {
    font-size:23px;
  }
  .booking>div>p:not(.eyebrow) {
    font-size:13px;
  }
  .booking .actions {
    flex-wrap:nowrap;
    gap:8px;
    margin-top:20px;
  }
  .booking .actions .reservation-link {
    flex:1;
  }
  .booking .actions .button {
    font-size:11px;
    padding-inline:14px;
    gap:12px;
  }
  .faq {
    grid-template-columns:1fr;
    gap:25px;
    padding-top:38px;
  }
  .faq h2 br {
    display:none;
  }
  .faq .text-link {
    font-size:11px;
    margin-top:14px;
  }
  .faq-list summary {
    font-size:13px;
    padding-block:18px;
  }
  .discover {
    grid-template-columns:1fr;
    gap:32px;
    padding-block:47px;
  }
  .label-art {
    width:60%;
    max-width:240px;
  }
  .discover-copy h2 {
    font-size:33px;
  }
  .discover-copy>p:not(.eyebrow) {
    font-size:13px;
    margin-top:18px;
  }
  .discover-copy>.text-link {
    margin-top:15px;
  }
  .field {
    grid-template-columns:1fr;
    gap:0;
    padding-block:40px;
  }
  .field h2 {
    font-size:29px;
  }
  .field>div {
    margin-top:20px;
  }
  .field>div>p {
    font-size:13px;
  }
  .field>div>p br {
    display:none;
  }
  .field-line {
    font-size:8px;
    letter-spacing:.07em;
    gap:8px;
    line-height:2;
    margin-top:24px;
  }
  .playground {
    padding-block:43px;
  }
  .playground-inner {
    grid-template-columns:1fr;
    gap:28px;
  }
  .playground .eyebrow {
    font-size:8px;
  }
  .playground h2 {
    font-size:30px;
  }
  .playground p:not(.eyebrow) {
    font-size:12px;
    margin-top:16px;
  }
  .play-link {
    font-size:19px;
    padding-block:18px;
  }
  .play-link small {
    font-size:8px;
  }
  .play-link>span:last-child {
    font-size:24px;
  }
  .return {
    padding-block:50px;
  }
  .return h2 {
    font-size:28px;
  }
  .return .actions {
    margin-top:23px;
    gap:8px;
  }
  .return .actions .reservation-link {
    flex:1;
  }
  .return .button {
    font-size:11px;
    gap:12px;
    padding-inline:14px;
  }
  .return>.fine {
    font-size:10px;
  }
  .site-footer {
    grid-template-columns:1fr;
    gap:25px;
    padding-top:28px;
    padding-bottom:105px;
  }
  .site-footer nav {
    justify-self:start;
    gap:6px;
  }
  .footer-brand .wordmark {
    font-size:42px;
    margin-right:-29px;
  }
  .site-footer .fine {
    font-size:11px;
  }
  .site-footer .copyright {
    margin-top:0;
    font-size:8px;
  }
  .sticky-actions {
    padding:9px 14px max(9px,env(safe-area-inset-bottom));
  }
  .sticky-actions .button {
    font-size:11px;
    gap:14px;
  }
  .fine {
    font-size:11px;
  }
  .text-link {
    font-size:12px;
  }
  html[lang=en] .hero-copy {
    padding-top:57px;
  }
  html[lang=en] .hero .eyebrow {
    font-size:9px;
    max-width:250px;
  }
  html[lang=en] .hero-headline {
    font-size:36px;
    line-height:1.13;
    max-width:300px;
    letter-spacing:-.055em;
  }
  html[lang=en] .hero-lead {
    font-size:12px;
    max-width:215px;
    line-height:1.65;
  }
  html[lang=en] .service-inner {
    display:flex;
  }
  html[lang=en] .service-inner>.selection {
    font-size:13px;
  }
  html[lang=en] .experience-copy h2 {
    font-size:33px;
  }
  html[lang=en] .course h3 {
    font-size:12px;
    gap:10px;
  }
  html[lang=en] .course-number {
    font-size:47px;
  }
  html[lang=en] .course-price {
    font-size:28px;
  }
  html[lang=en] .course-terms {
    font-size:10px;
  }
  html[lang=en] .house h2 {
    font-size:26px;
  }
  html[lang=en] .booking h3 {
    font-size:23px;
  }
  html[lang=en] .play-link {
    font-size:19px;
  }
  html[lang=en] .return h2 {
    font-size:28px;
  }
}
@media(max-width:360px) {
  :root {
    --gutter:18px;
  }
  .site-header {
    padding-inline:16px;
  }
  .brand-place {
    font-size:5px;
  }
  .wordmark {
    font-size:30px;
    margin-right:-20px;
  }
  .hero-copy {
    padding-inline:18px;
  }
  .hero-headline {
    font-size:39px;
  }
  .hero .eyebrow {
    font-size:9px;
  }
  .hero-photo {
    right:-137px;
  }
  .hero-lead {
    font-size:12px;
    max-width:160px;
  }
  .service-inner {
    padding-inline:18px;
  }
  .service-inner .button {
    font-size:10px;
  }
  .experience-image {
    grid-template-columns:50px 1fr;
    gap:17px;
  }
  .experience-image .floor-mark {
    font-size:80px;
  }
  .course h3 {
    gap:8px;
    font-size:12px;
  }
  .course-price {
    font-size:25px;
  }
  .course-number {
    font-size:43px;
  }
  .course-number span {
    font-size:14px;
  }
  .course h3>span:last-child {
    max-width:80px;
  }
  .house-inner {
    gap:18px;
  }
  .house .floor-mark {
    font-size:63px;
  }
  .house h2 {
    font-size:20px;
  }
  .booking .actions .button,.return .button {
    font-size:10px;
    padding-inline:11px;
    gap:8px;
  }
  .hours dd small {
    margin-left:8px;
  }
  .sticky-actions .button {
    font-size:10px;
    padding-inline:12px;
  }
  html[lang=en] .hero-headline {
    font-size:32px;
  }
  html[lang=en] .hero .eyebrow {
    font-size:8px;
  }
  html[lang=en] .course-price {
    font-size:24px;
  }
  html[lang=en] .course-number {
    font-size:42px;
  }
  html[lang=en] .course h3 {
    font-size:11px;
  }
  html[lang=en] .house h2 {
    font-size:23px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important;
  }
}
/* Keep content usable when visitors enlarge text independently of the viewport. */
body {
  overflow-wrap:break-word;
}
.wrap>* {
  min-width:0;
}
.site-header {
  height:auto;
  min-height:88px;
  padding-block:15px;
  flex-wrap:wrap;
}
.header-tools {
  margin-left:auto;
}
.price-table>div,.course-heading,.hours>div {
  flex-wrap:wrap;
}
.price-table dd,.course-price,.hours dd {
  margin-left:auto;
  max-width:100%;
}
.course h3,.course-list,.price-detail,.faq-list,.play-links {
  min-width:0;
}
.course-price {
  white-space:normal;
}
.hero {
  height:auto;
  min-height:clamp(430px,34vw,500px);
}
.hero-copy {
  min-height:inherit;
}
.hero-photo {
  height:100%;
  width:auto;
  aspect-ratio:1;
  object-fit:cover;
}
@media(max-width:900px) {
  .site-header {
    min-height:72px;
    padding-block:12px;
  }
  .hero {
    min-height:480px;
  }
  .experience-image {
    grid-template-columns:max-content minmax(0,1fr);
  }
}
@media(max-width:600px) {
  .site-header {
    min-height:68px;
    padding-block:10px;
  }
  .hero {
    min-height:420px;
  }
  .hero-photo {
    height:450px;
    width:450px;
  }
  .actions,.booking .actions,.sticky-actions {
    flex-wrap:wrap;
  }
  .actions>.button,.sticky-actions>.button {
    max-width:100%;
  }
  .house-inner {
    flex-wrap:wrap;
  }
  .house .floor-mark {
    flex-shrink:0;
  }
  .house-inner>div {
    flex:1;
    min-width:min(180px,100%);
  }
  .site-footer {
    padding-bottom:170px;
  }
}
.brand {
  flex-wrap:wrap;
  max-width:100%;
  row-gap:8px;
}
.wordmark,.footer-brand .wordmark {
  margin-right:-.68em;
}
