/* Visual clone of Squarespace 7.0 (Bedford / enable-nav-button overlay). */

:root {
  --serif: "Cormorant Garamond", "adobe-garamond-pro", "EB Garamond", "Minion Pro", Georgia, serif;
  --sans: "Nunito Sans", "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --futura: "Jost", "futura-pt", "Helvetica Neue", Arial, sans-serif;
  --sidecar: 260px;
  --panel: #212121;
  --ink: #181818;
  --muted: #525252;
  --pill: #5c5c5c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  top: 0 !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #3d4a63;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: #111;
  color: #fff;
  padding: 0.4rem 0.7rem;
  z-index: 10000;
}

.skip-link:focus {
  top: 0.75rem;
}

#siteWrapper {
  position: relative;
  background: #fff;
  min-height: 100vh;
  transition: transform 0.14s ease-in-out;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open #siteWrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  transform: translate3d(calc(var(--sidecar) * -1), 0, 0);
}

body.mobile-nav-open .body-overlay {
  display: block;
}

.body-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  cursor: e-resize;
}

/* ----- Overlay header ----- */

#header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  -webkit-font-smoothing: antialiased;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  width: 100%;
}

#siteTitle {
  margin: 0;
  max-width: 425px;
}

#siteTitle a {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  line-height: 1.15;
}

body.has-banner #siteTitle a {
  color: #fff;
}

body.no-banner #header {
  position: relative;
  background: var(--panel);
}

.mobile-nav-toggle {
  appearance: none;
  background: none;
  border: 0;
  width: 22px;
  height: 22px;
  padding: 0;
  position: relative;
  cursor: pointer;
  z-index: 201;
}

.mobile-nav-toggle span {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: #fff;
  transition: transform 0.1s ease-in-out, top 0.1s ease-in-out, opacity 0s 0.15s linear;
}

.mobile-nav-toggle .top-bar { top: 3px; }
.mobile-nav-toggle .middle-bar { top: 10px; }
.mobile-nav-toggle .bottom-bar { top: 17px; }

body.mobile-nav-open .mobile-nav-toggle .top-bar {
  transform: rotate(45deg);
  top: 10px;
}

body.mobile-nav-open .mobile-nav-toggle .middle-bar {
  opacity: 0;
}

body.mobile-nav-open .mobile-nav-toggle .bottom-bar {
  transform: rotate(-45deg);
  top: 10px;
}

/* ----- Sidecar overlay ----- */

#sidecarNav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--sidecar);
  background: var(--panel);
  z-index: 80;
  visibility: hidden;
  overflow: auto;
  -webkit-font-smoothing: antialiased;
}

body.mobile-nav-open #sidecarNav {
  visibility: visible;
  z-index: 150;
}

#sidecarNav nav {
  padding: 24px 36px 72px;
}

#sidecarNav a,
#sidecarNav .folder-toggle {
  display: block;
  padding: 0.75em 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1em;
  background: none;
  border: 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

#sidecarNav a:hover,
#sidecarNav .folder-toggle:hover,
#sidecarNav .active > a,
#sidecarNav .active > .folder-toggle {
  color: #d6d6d6;
}

#sidecarNav .folder-toggle::before {
  content: "+";
  display: inline-block;
  width: 0.85em;
  padding-right: 0.25em;
}

#sidecarNav .folder-toggle.active::before {
  content: "–";
}

#sidecarNav .subnav {
  display: none;
  padding: 0.25em 0 0.5em 1em;
}

#sidecarNav .folder-toggle.active + .subnav {
  display: block;
}

#sidecarNav .subnav a {
  padding: 0.45em 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: none;
  font-weight: 600;
}

#sidecarNav .nav-cta {
  display: inline-block;
  width: auto;
  margin: 1em 0 0;
  padding: 1em 1.5em !important;
  border: 2px solid #fff;
  border-radius: 300px;
  color: #fff;
  background: transparent;
}

#sidecarNav .nav-cta:hover {
  background: #fff;
  color: #181818;
}

/* ----- Hero / banner ----- */

.banner {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c1a16 center / cover no-repeat;
  padding: 180px 24px 155px;
}

.banner .color-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.desc-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 956px;
  margin: 0 auto;
  padding: 32px;
  text-align: center;
}

.desc-wrapper p {
  margin: 20px auto;
}

.desc-wrapper strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 68px);
  letter-spacing: 0.04em;
  line-height: 1em;
  color: #fff;
}

.desc-wrapper p:last-child a {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 1.75em;
  margin: 10px 8px;
  color: #fff;
  background: var(--pill);
  border-radius: 300px;
  border: none;
}

.desc-wrapper p:last-child a:hover {
  background: rgba(92, 92, 92, 0.8);
}

/* ----- Page content ----- */

#content {
  background: #fff;
}

.page {
  padding: 64px 24px 80px;
}

.page-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-wide {
  max-width: 960px;
}

.lede-art {
  display: flex;
  justify-content: center;
  margin: 0 0 1.4rem;
}

.lede-art img {
  width: 88px;
}

.prose h1,
.prose h2,
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  text-align: center;
  line-height: 1.25;
  margin: 0 0 1.2rem;
}

.prose h1 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.prose h2,
.section-title {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}

.prose h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 1.6rem 0 0.6rem;
}

.prose p,
.prose li {
  text-align: justify;
  hyphens: auto;
}

.prose p {
  margin: 0 0 1rem;
}

.portrait {
  display: block;
  margin: 0 auto 1.3rem;
  max-width: min(100%, 22rem);
}

.signature {
  display: block;
  margin: 0.4rem auto 1.4rem;
  width: 11rem;
}

.figure-center {
  display: flex;
  justify-content: center;
  margin: 1.4rem 0;
}

.btn,
.prose a.btn,
.form .btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  padding: 0.85em 1.4em;
  border-radius: 300px;
  cursor: pointer;
}

.btn:hover,
.prose a.btn:hover {
  background: var(--ink);
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin: 1.4rem 0 2rem;
}

.book-block {
  margin: 1.1rem 0 1.6rem;
  overflow: hidden;
}

.book-block iframe,
.sb-widget-iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
  /* SimplyBook’s Google Translate plugin sits in the iframe header
     (min-height 52px + padding + margin). Live screenshots start at the
     Time stepper; clip that chrome only. */
  margin-top: -5.4rem;
}

.booking-intro {
  margin: 0 0 0.4rem;
}

.page-booking .page-inner {
  max-width: 1020px;
}

/* SimplyBook / Google Website Translator chrome must not sit above the stepper */
.goog-te-gadget,
.goog-te-banner-frame,
.goog-te-menu-frame,
#google_translate_element,
.skiptranslate,
iframe.goog-te-banner-frame,
iframe.goog-te-menu-frame {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
}

html {
  top: 0 !important;
}

.video-stack {
  display: grid;
  gap: 1.75rem;
}

.embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.embed iframe,
.embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.caption {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.5rem 0 0;
}

.pub-list {
  display: grid;
  gap: 2rem;
}

.pub {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1.1rem;
  align-items: start;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #e5e5e5;
}

.pub img {
  width: 100%;
  border: 1px solid #e5e5e5;
}

.pub h2 {
  font-size: 1.15rem;
  text-align: left;
  margin: 0 0 0.5rem;
}

.pub p {
  margin: 0 0 0.7rem;
  text-align: left;
}

.contact-page .page-inner {
  max-width: 1020px;
}

.contact-page .prose h1,
.secretary-note h1 {
  text-align: left;
  font-weight: 500;
  font-size: clamp(1.85rem, 3.1vw, 2.45rem);
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.contact-intro {
  display: grid;
  gap: 1.5rem 2rem;
  align-items: center;
}

.contact-intro-action {
  display: flex;
  justify-content: center;
}

.contact-split {
  display: grid;
  gap: 1.5rem 2.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  .contact-intro,
  .contact-split {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.rule {
  border: 0;
  border-top: 1px solid #e4e4e4;
  margin: 2.4rem 0;
}

.secretary-note {
  margin: 0 0 2.2rem;
}

.secretary-note p {
  margin: 0;
  text-align: justify;
  color: var(--ink);
}

.form {
  background: transparent;
  padding: 0;
}

.form .field {
  margin: 0 0 1.15rem;
}

.form label {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin: 0 0 0.2rem;
}

.form .req {
  color: var(--muted);
  font-size: 13px;
}

.field-desc {
  margin: 0 0 0.45rem;
  font-size: 13px;
  color: var(--muted);
  text-align: left;
}

.form input,
.form textarea {
  width: 100%;
  border: 0;
  background: #f2f2f2;
  padding: 0.85rem 0.9rem;
  font: inherit;
  color: var(--ink);
  border-radius: 2px;
}

.form textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form input:focus,
.form textarea:focus {
  outline: 1px solid #c8c8c8;
  background: #efefef;
}

.form-submit {
  display: flex;
  justify-content: center;
  margin: 1.4rem 0 0;
}

.btn-solid,
.form .btn-solid {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-solid:hover,
.form .btn-solid:hover,
.prose a.btn-solid:hover {
  background: #000;
  color: #fff;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-status {
  margin: 0.8rem 0 0;
  font-size: 0.95rem;
  text-align: center;
}

.form-status[data-state="ok"] { color: #215c38; }
.form-status[data-state="err"] { color: #8a1f1f; }

.direct-contact p {
  text-align: left;
  margin: 0 0 0.35rem;
}

#footer {
  border-top: 1px solid #eee;
  padding: 64px 32px;
  text-align: center;
  background: #fff;
  color: var(--muted);
}

#footer a {
  color: inherit;
}

.back-to-top {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer-phone {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--ink);
  margin: 0.4rem 0 0;
}

.redirect-card {
  max-width: 36rem;
  margin: 4rem auto;
  padding: 0 1.25rem;
  text-align: center;
}

/* ----- Language splash ----- */

body.splash-page {
  background: #fff;
}

.splash {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}

.splash-photo {
  min-height: 42vh;
  background: #111 center / cover no-repeat;
}

.splash-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: #fff;
}

.splash-copy-inner {
  width: min(100%, 34rem);
  text-align: center;
}

.splash-logo {
  margin: 0 0 2.4rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #444;
}

.splash-title {
  margin: 0 0 2.6rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0;
  color: #444;
}

.splash-langs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 1.4rem;
}

.splash-langs a {
  font-family: var(--futura);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #444;
}

.splash-langs a:hover {
  color: rgba(68, 68, 68, 0.6);
}

@media (min-width: 880px) {
  .splash {
    grid-template-columns: 1fr 1fr;
  }

  .splash-photo {
    min-height: 100vh;
  }

  .splash-title {
    font-size: clamp(3.2rem, 5vw, 5.4rem);
  }
}

@media (max-width: 799px) {
  .pub {
    grid-template-columns: 1fr;
  }

  .pub img {
    max-width: 10rem;
  }

  .banner {
    min-height: 70vh;
    padding: 140px 16px 100px;
  }

  #siteTitle a {
    font-size: 13px;
    letter-spacing: 0.1em;
  }
}
