@charset "UTF-8";
/*


      ___|         |
     |       _ \   |   _ \    __|  __|
     |      (   |  |  (   |  |   \__ \
    \____| \___/  _| \___/  _|   ____/



*/
/* Grays
-------------------------------------------------- */
/* Colors
-------------------------------------------------- */
:root {
  --dark-gray: hsl(0, 0%, 35%);
}

/* General
-------------------------------------------------- */
/* Color Application
-------------------------------------------------- */
/*
    Dimensions for easier responsive styling
*/
/* Breakpoints
* mainly from http://callmenick.com/post/maintainable-responsive-web-design-with-sass
* usage:
    @include break(0, sm) { // break
    @include break(sm) { // use this for min width declarations
    @include break(sm, lg) { // use this for min and max-width declarations
-------------------------------------------------- */
:root {
  --gutterInt: 10;
  --columnInt: 85;
  --pageWidthInt: 400;
  --gutter: calc(
    var(--gutterInt) / var(--pageWidthInt) * 100vw
  );
  --column: calc(
    var(--columnInt) / var(--pageWidthInt) * 100vw
  );
}
@media (min-width: 48em) {
  :root {
    --gutterInt: 40;
    --columnInt: 85;
    --pageWidthInt: 1620;
  }
}

/* Gutters
-------------------------------------------------- */
/* Columns
-------------------------------------------------- */
/* Sizes
-------------------------------------------------- */
/* Core
-------------------------------------------------- */
.core {
  padding: 0 calc(var(--gutter) * 2);
}

.sm-grid {
  display: grid;
  grid-column: core;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: var(--gutter);
       column-gap: var(--gutter);
}
@media (min-width: 48em) {
  .sm-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

body, .content-page p, .serif-type p, .story-text p, .error-intro p, .intro-text p {
  font-family: "Archer A", "Archer B", serif;
}

.marker-div, .intro-heading, #google-map[data-zoom-level="15"] .circle-label, #google-map[data-zoom-level="15"] .text-label, .circle-label, .text-label, .footer-credits, .infobox-title, .legal-text p, blockquote footer, figcaption, footer, .gallery-notice, .nav-email, footer .nav-link,
footer .sub-nav-link, .map-filter-label, .nav-info, blockquote, .residence-title, .contact-text p, .content-section ul:not(.swiper-wrapper),
.residence-details-section ul:not(.swiper-wrapper), p, h3, .nav-item,
.sub-nav-item, .intro-arrow, h2, .home-title {
  font-family: "Decimal A", "Decimal B", sans-serif;
}

/* Fonts
* underlying structure from https://www.smashingmagazine.com/2015/06/responsive-typography-with-sass-maps/
-------------------------------------------------- */
/* build sizes
-------------------------------------------------- */
/* build font sizes
* start with style, then greek size group name, then two sizes for mobile and desktop
-------------------------------------------------- */
.home-title {
  font-size: 10.1612903226vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .home-title {
    font-size: 5.2469135802vw;
  }
}

.intro-arrow, h2 {
  font-size: 8.064516129vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .intro-arrow, h2 {
    font-size: 4.9382716049vw;
  }
}

.nav-item,
.sub-nav-item {
  font-size: 10vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .nav-item,
  .sub-nav-item {
    font-size: 3.8271604938vw;
  }
}

h3 {
  font-size: 6.4516129032vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  h3 {
    font-size: 3.0864197531vw;
  }
}

blockquote, .residence-title, .contact-text p, .content-section ul:not(.swiper-wrapper),
.residence-details-section ul:not(.swiper-wrapper), p {
  font-size: 4.8387096774vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  blockquote, .residence-title, .contact-text p, .content-section ul:not(.swiper-wrapper),
  .residence-details-section ul:not(.swiper-wrapper), p {
    font-size: 2.2222222222vw;
  }
}

.nav-info {
  font-size: 4.6774193548vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .nav-info {
    font-size: 1.975308642vw;
  }
}

.gallery-notice, .nav-email, footer .nav-link,
footer .sub-nav-link, .map-filter-label {
  font-size: 4.5161290323vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .gallery-notice, .nav-email, footer .nav-link,
  footer .sub-nav-link, .map-filter-label {
    font-size: 1.7283950617vw;
  }
}

.legal-text p, blockquote footer, figcaption, footer {
  font-size: 4.1935483871vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .legal-text p, blockquote footer, figcaption, footer {
    font-size: 1.4814814815vw;
  }
}

.footer-credits, .infobox-title {
  font-size: 3.5483870968vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .footer-credits, .infobox-title {
    font-size: 1.1111111111vw;
  }
}

.circle-label, .text-label {
  font-size: 3.5483870968vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .circle-label, .text-label {
    font-size: 0.987654321vw;
  }
}

#google-map[data-zoom-level="15"] .circle-label, #google-map[data-zoom-level="15"] .text-label {
  font-size: 2.2580645161vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  #google-map[data-zoom-level="15"] .circle-label, #google-map[data-zoom-level="15"] .text-label {
    font-size: 0.7407407407vw;
  }
}

.intro-text p {
  font-size: 10.4838709677vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .intro-text p {
    font-size: 4.012345679vw;
  }
}

.serif-type p, .story-text p, .error-intro p {
  font-size: 5.1612903226vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .serif-type p, .story-text p, .error-intro p {
    font-size: 2.3456790123vw;
  }
}

.content-page p {
  font-size: 4.6774193548vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .content-page p {
    font-size: 1.8518518519vw;
  }
}

.random,
.another {
  color: brown;
}
.random .another,
.another .another {
  color: red;
}

.text {
  line-height: 1.2;
}
.text p {
  margin-bottom: calc(var(--gutter) * 2);
}
@media (min-width: 48em) {
  .text p {
    margin-bottom: calc(var(--gutter));
  }
}

/*
    Better grid system
    2023
*/
/*
-------------------------------------------------- */
.grid {
  display: grid;
  -moz-column-gap: var(--gutter);
       column-gap: var(--gutter);
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 48em) {
  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

/* Helpers
* at beginning of CSS cascade so can be used in other partials
-------------------------------------------------- */
.visually-hidden,
.gm-style-iw:has(.infobox-content) .gm-style-iw-chr {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/* Links
-------------------------------------------------- */
a {
  text-decoration: underline;
  text-underline-offset: 0.6vw;
  text-decoration-thickness: 0.01vw;
  text-decoration-color: white;
}
a:hover, a:focus, a:focus-visible {
  color: var(--dark-gray);
  text-decoration: underline;
  text-decoration-thickness: 0.01vw;
}
a:focus-visible {
  outline: 2px solid black;
  outline-offset: calc(var(--gutter) / 32);
  box-shadow: 0 0 10px white;
}
@media (min-width: 48em) {
  a {
    text-underline-offset: 0.4vw;
  }
}

a.icon {
  font-weight: 600;
  position: relative;
}
a.icon:hover {
  color: var(--dark-gray);
}
a.icon:hover:after {
  color: var(--dark-gray);
  content: url(/assets/svg/icons/right-arrow-hover.svg);
}
a.icon:after {
  content: " ➮";
  content: url(/assets/svg/icons/right-arrow-yellow.svg);
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
  top: 2px;
  margin-left: 5px;
  color: hsl(0, 0%, 88%);
}

.anchor-link {
  display: block;
  position: absolute;
  top: 0;
  visibility: hidden;
  top: -15vw;
}
@media (min-width: 48em) {
  .anchor-link {
    top: 0;
  }
}
@media (min-width: 85.375em) {
  .anchor-link {
    top: -2rem;
  }
}

/* Mixins
-------------------------------------------------- */
/* smaller, better bullets
    -------------------------------------------------*/
.no-bullets-list li {
  margin: 0;
}
.no-bullets-list li::before {
  content: none;
}

/* allow break emails, from https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
-------------------------------------------------- */
/* Body Element
-------------------------------------------------- */
body {
  color: var(--dark-gray);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Heading Elements
-------------------------------------------------- */
h2,
h3 {
  text-transform: lowercase;
  color: var(--marine-blue);
}

h2 {
  padding: var(--gutter) 0 var(--gutter);
  text-align: center;
}
@media (min-width: 48em) {
  h2 {
    padding: 0 0 var(--gutter);
  }
}
h2 ~ p, h2 ~ .contact-text {
  text-align: center;
}
h2.align-left {
  text-align: left;
}

h3 {
  padding: 0 0 var(--gutter);
}

/* helpers
-------------------------------------------------- */
.align-center {
  text-align: center;
}

/* Main Element
-------------------------------------------------- */
main {
  margin-top: calc(var(--gutter) * 6);
}
@media (min-width: 48em) {
  main {
    margin-top: calc(var(--gutter) * 2.8);
  }
}

/* Paragraph Element
-------------------------------------------------- */
p {
  line-height: 1.4;
  margin-bottom: var(--gutter);
}
@media (min-width: 48em) {
  p:last-child {
    margin-bottom: 0;
  }
}

/* Reset
 * from Kirby @ https://github.com/getkirby/starterkit/blob/master/assets/css/main.css
-------------------------------------------------- */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

* {
  outline: none;
}

a,
a:focus {
  text-decoration: none;
  color: inherit;
}

a {
  outline: none;
}

a[href^=tel] {
  border: none;
}

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

li {
  list-style-type: none;
}

input {
  border-radius: 0;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

.iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.iframe-wrapper iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

video {
  max-width: 100%;
}

@-moz-document url-prefix() {
  fieldset {
    display: table-cell;
  }
}
html {
  font-size: 10px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button {
  border-radius: 0;
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

address {
  font-style: normal;
}

/* List Elements
-------------------------------------------------- */
.content-section ul:not(.swiper-wrapper),
.residence-details-section ul:not(.swiper-wrapper) {
  margin-bottom: var(--gutter);
}
.content-section ul:not(.swiper-wrapper) li,
.residence-details-section ul:not(.swiper-wrapper) li {
  margin-left: calc(var(--gutter) * 1.5);
}
@media (min-width: 48em) {
  .content-section ul:not(.swiper-wrapper) li,
  .residence-details-section ul:not(.swiper-wrapper) li {
    margin-left: calc(var(--gutter) * 0.75);
  }
}
.content-section ul:not(.swiper-wrapper) li:before,
.residence-details-section ul:not(.swiper-wrapper) li:before {
  content: "•";
  position: absolute;
  margin-left: calc(var(--gutter) * -1.5);
}
@media (min-width: 48em) {
  .content-section ul:not(.swiper-wrapper) li:before,
  .residence-details-section ul:not(.swiper-wrapper) li:before {
    transform: scale(1.2);
    margin-right: calc(var(--gutter) / 4);
    margin-left: calc(var(--gutter) * -0.75);
  }
}
.content-section li,
.residence-details-section li {
  position: relative;
  line-height: 1.4;
  padding: 0 0 var(--gutter);
}
.content-section li::before,
.residence-details-section li::before {
  position: absolute;
}
@media (min-width: 48em) {
  .content-section li,
  .residence-details-section li {
    padding: 0 0 calc(var(--gutter) / 2);
  }
}

/* Video Element
-------------------------------------------------- */
.video-controls-wrapper {
  display: none !important;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
  height: 100%;
  top: 0;
  bottom: unset;
  padding-bottom: calc(var(--gutter) / 2);
  display: flex;
  align-items: flex-end;
  height: 100vh;
  max-height: 100vw;
  margin: 0 calc(var(--gutter) / 1.5);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
}
@media (min-width: 48em) {
  .video-controls-wrapper {
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: calc(var(--gutter) / 2);
    max-height: 56.25vw;
  }
}
.video-controls-wrapper svg {
  display: block;
  overflow: visible;
  --icon-scale: 2.5;
  --icon-scale: 3;
  width: calc(var(--gutter) * var(--icon-scale));
  height: calc(var(--gutter) * var(--icon-scale));
  fill: white;
  cursor: pointer;
}
.video-controls-wrapper svg:hover {
  fill: var(--dark-gray);
}
@media (min-width: 48em) {
  .video-controls-wrapper svg {
    --icon-scale: 1.2;
  }
}

.video-controls {
  position: absolute;
  z-index: 2;
  display: block;
  right: 1vw;
  bottom: 1vw;
  display: flex;
  align-items: center;
}
@media (min-width: 32em) {
  .video-controls {
    right: 1vw;
    bottom: 1vw;
  }
}
@media (min-width: 101.25em) {
  .video-controls {
    right: 10px;
    bottom: 10px;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-controls.short-screen-video-controls {
    display: none !important;
  }
}
@media (min-aspect-ratio: 16/9) {
  .video-controls.tall-screen-video-controls {
    display: none !important;
  }
  .video-controls.short-screen-video-controls {
    display: flex;
  }
  .pin-video-controls .video-controls {
    position: fixed;
  }
}
.video-controls use {
  pointer-events: none;
}

.video-volume-icon,
.video-play-icon,
.video-pause-icon,
.video-fullscreen-icon {
  cursor: pointer;
  display: block;
  fill: hsl(0, 0%, 80%);
}
.video-volume-icon:hover,
.video-play-icon:hover,
.video-pause-icon:hover,
.video-fullscreen-icon:hover {
  fill: white;
}

.video-volume-icon {
  width: 8vw;
  height: 8vw;
}
@media (min-width: 32em) {
  .video-volume-icon {
    width: 4vw;
    height: 4vw;
  }
}
@media (min-width: 101.25em) {
  .video-volume-icon {
    width: 40px;
    height: 40px;
  }
}

.video-play-icon,
.video-pause-icon {
  width: 9vw;
  height: 9vw;
}
@media (min-width: 32em) {
  .video-play-icon,
  .video-pause-icon {
    width: 5vw;
    height: 5vw;
  }
}
@media (min-width: 101.25em) {
  .video-play-icon,
  .video-pause-icon {
    width: 50px;
    height: 50px;
  }
}

.video-fullscreen-icon {
  padding: calc(var(--gutter) / 3);
  width: 9vw;
  height: 9vw;
}
@media (min-width: 32em) {
  .video-fullscreen-icon {
    width: 5vw;
    height: 5vw;
  }
}
@media (min-width: 48em) {
  .video-fullscreen-icon {
    display: none;
  }
}

.unmuted .video-unmute-wrapper {
  display: none;
}

.video-mute-wrapper {
  display: none;
}
.unmuted .video-mute-wrapper {
  display: block;
}

.paused .video-pause-wrapper {
  display: none;
}

.video-play-wrapper {
  display: none;
}
.paused .video-play-wrapper {
  display: block;
}

/* Content Page (not home page section)
-------------------------------------------------- */
.content-page main {
  margin-top: calc(var(--gutter) * 13);
}
@media (min-width: 48em) {
  .content-page main {
    margin-top: calc(var(--gutter) * 6);
  }
}
.content-page h1 {
  padding: var(--gutter) 0 calc(var(--gutter) / 2);
}
.content-page p {
  line-height: 1.4;
}

.layout h1 {
  padding-top: 0;
}

/* Error Page
-------------------------------------------------- */
.error-page {
  min-height: 100vh;
}
.error-page header {
  position: relative;
}
.error-page main {
  margin: var(--column) 0 var(--column);
}
.error-page a {
  color: var(--storm-blue);
}

.error-intro {
  margin-bottom: calc(var(--gutter) / 2);
}
.error-intro p {
  line-height: 1.2;
}

/* Home Page
-------------------------------------------------- */
.home-title {
  font-weight: 700;
  letter-spacing: 0.5vw;
  text-align: center;
  color: tomato;
  text-transform: uppercase;
}

/* residence map
-------------------------------------------------- */
/* Content Section
-------------------------------------------------- */
.content-core a,
.content-section a,
.contact-text a {
  color: var(--marine-blue);
}
.content-core a:hover,
.content-section a:hover,
.contact-text a:hover {
  color: var(--dark-gray);
}

.contact-text p {
  line-height: 1.4;
}

.column {
  grid-column: span var(--span);
}

.padding-top {
  padding-top: var(--gutter);
}

.our-neighborhood-section {
  padding-bottom: var(--gutter);
}

/* Plan Your Visit Section
-------------------------------------------------- */
details > summary {
  list-style: none;
}

details > summary::marker,
details > summary::-webkit-details-marker {
  display: none;
}

/* General
-------------------------------------------------- */
section {
  position: relative;
  padding: 0 0 calc(var(--gutter) * 3);
  scroll-margin-top: calc(var(--gutter) * 8);
}
@media (min-width: 48em) {
  section {
    scroll-margin-top: calc(var(--gutter) * 2);
  }
}

.section-title {
  text-align: center;
  padding: calc(var(--gutter) * 2) 0 var(--gutter);
}
@media (min-width: 48em) {
  .section-title {
    padding: var(--column) 0 calc(var(--gutter) / 2);
  }
}

/* Hyphen Section
-------------------------------------------------- */
.hyphen-section {
  padding: 0;
}

/* Intro Section
-------------------------------------------------- */
.intro-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.intro-section .intro-core {
  width: 100%;
  position: relative;
}

.intro-heading {
  font-size: 22vw;
  line-height: 0.9;
  z-index: 1;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

.intro-1 {
  position: relative;
}

.intro-arrow {
  color: var(--shingle-gray);
  position: absolute;
  top: 88vh;
  cursor: pointer;
  left: 50%;
  transform: translateX(-50%);
}

.intro-text {
  padding: calc(var(--gutter) * 1.5) 0 0;
}
.intro-text a:not(.hoverimage-span) {
  color: var(--sky-blue);
}
.intro-text a:hover, .intro-text a:focus, .intro-text a:focus-visible {
  text-decoration-thickness: 0.25vw;
  text-decoration-color: var(--sky-blue);
}
.intro-text p {
  margin-bottom: var(--gutter);
  line-height: 1.1;
}
.intro-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 47.9em) {
  .intro-text p {
    font-size: 5.6451612903vw;
    line-height: 1.4;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .intro-text p {
    font-size: 5.6451612903vw;
    line-height: 1.4;
  }
}

/* Top Video
-------------------------------------------------- */
.top-video {
  width: 100%;
  height: auto;
}
.top-video[poster] {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 47.9em) {
  .top-video {
    aspect-ratio: 1/1;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .top-video {
    aspect-ratio: 1/1;
  }
}

/* Map Sections
-------------------------------------------------- */
.map-section {
  padding-bottom: 0;
}
.map-section.sticky-googlemap {
  position: sticky;
  top: 0;
}
.map-section.hide-googlemap {
  position: static;
}
.map-section h2 {
  padding-bottom: var(--gutter);
}
@media (min-width: 48em) {
  .map-section h2 {
    padding-bottom: calc(var(--gutter) / 4);
  }
}

.map-section img,
.residence-map-section img {
  border-radius: 0;
}

/* Google Map
-------------------------------------------------- */
/* Always set the map height explicitly to define the size of the div
   * element that contains the map. */
#google-map {
  height: 75vh;
}
@media (min-width: 48em) {
  #google-map {
    height: 100vh;
  }
}

/* Map Filter
-------------------------------------------------- */
.map-filter-list {
  display: flex;
  justify-content: center;
  padding: var(--gutter) 0 calc(var(--gutter) * 3);
}
@media (min-width: 48em) {
  .map-filter-list {
    padding: calc(var(--gutter) * 0.75) 0 calc(var(--gutter) * 2);
  }
}

.map-filter-item {
  margin: 0;
}
.map-filter-item::before {
  content: none;
}

.map-filter-label {
  color: white;
  cursor: pointer;
  border-radius: calc(var(--gutter) * 2);
  margin: calc(var(--gutter) / 2) calc(var(--gutter) * 0.75) calc(var(--gutter) * 0.75);
  padding: calc(var(--gutter) / 2) var(--gutter) calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .map-filter-label {
    border-radius: var(--gutter);
    padding: calc(var(--gutter) / 4) calc(var(--gutter) / 2) calc(var(--gutter) / 4);
    margin: calc(var(--gutter) / 4) calc(var(--gutter) / 2) calc(var(--gutter) / 2);
  }
}

input {
  all: unset;
}

/* Buttons and main map dots
-------------------------------------------------- */
.all-filter-button label {
  color: var(--navy-blue);
  border: 1px solid var(--navy-blue);
}
.all-filter-button label:hover {
  color: white;
  background-color: var(--navy-blue);
}
.all-filter-button label:has(input:checked) {
  color: white;
  background-color: var(--navy-blue);
}

.all-poi {
  background-color: var(--navy-blue);
}

.eat-filter-button label {
  color: var(--marine-map-blue);
  border: 1px solid var(--marine-map-blue);
}
.eat-filter-button label:hover {
  color: white;
  background-color: var(--marine-map-blue);
}
.eat-filter-button label:has(input:checked) {
  color: white;
  background-color: var(--marine-map-blue);
}

.eat-poi {
  background-color: var(--marine-map-blue);
}

.shop-filter-button label {
  color: var(--sky-blue);
  border: 1px solid var(--sky-blue);
}
.shop-filter-button label:hover {
  color: white;
  background-color: var(--sky-blue);
}
.shop-filter-button label:has(input:checked) {
  color: white;
  background-color: var(--sky-blue);
}

.shop-poi {
  background-color: var(--sky-blue);
}

.enjoy-filter-button label {
  color: var(--storm-blue);
  border: 1px solid var(--storm-blue);
}
.enjoy-filter-button label:hover {
  color: white;
  background-color: var(--storm-blue);
}
.enjoy-filter-button label:has(input:checked) {
  color: white;
  background-color: var(--storm-blue);
}

.enjoy-poi {
  background-color: var(--storm-blue);
}

.transportation-filter-button label {
  color: dodgerblue;
  border: 1px solid dodgerblue;
}
.transportation-filter-button label:hover {
  color: white;
  background-color: dodgerblue;
}
.transportation-filter-button label:has(input:checked) {
  color: white;
  background-color: dodgerblue;
}

.transportation-poi {
  background-color: dodgerblue;
}

.label-filter-button label {
  color: var(--navy-blue);
  border: 1px solid var(--navy-blue);
}
.label-filter-button label:hover {
  color: white;
  background-color: var(--navy-blue);
}
.label-filter-button label:has(input:checked) {
  color: white;
  background-color: var(--navy-blue);
}

.label-poi {
  background-color: var(--navy-blue);
}

/* double colored dots
-------------------------------------------------- */
.eat-shop-poi,
.shop-eat-poi {
  background: linear-gradient(90deg, var(--marine-blue) 50%, var(--sky-blue) 50%);
}

/* Mile Markers
-------------------------------------------------- */
.circle-label {
  background-color: var(--stone-gray);
  color: white;
  padding: calc(var(--gutter) / 8) calc(var(--gutter) / 4) calc(var(--gutter) / 6);
  text-align: center;
}
/* Map Labels
-------------------------------------------------- */
.poi-dot {
  transform: translateY(10px);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
@media (min-width: 48em) {
  .poi-dot {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 85.375em) {
  .poi-dot {
    width: 20px;
    height: 20px;
  }
}

div[class*=marker-view]:has(.poi-dot) {
  z-index: -1;
}

.text-label {
  text-align: center;
  color: var(--navy-blue);
}
.text-label:has(.label-on-top) {
  transform: translateY(calc(-50% + 15px));
}
.text-label:has(.label-on-top) span {
  transform: translateY(-15px);
}
.text-label:has(.label-on-bottom) {
  transform: translateY(20px);
}
.text-label:has(.label-on-bottom) span {
  transform: translateY(0px);
}
@media (min-width: 48em) {
  .text-label:has(.label-on-bottom) span {
    transform: translateY(22px);
  }
}
.text-label:has(.label-on-right) {
  transform: translate(50%, 50%);
}
.text-label:has(.label-on-right) span {
  transform: translate(7px, 1px);
}
@media (min-width: 48em) {
  .text-label:has(.label-on-right) span {
    transform: translate(17px, 1px);
  }
}
.text-label:has(.label-on-left) {
  transform: translate(-50%, 50%);
}
.text-label:has(.label-on-left) span {
  transform: translate(-10px, -1px);
}
@media (min-width: 85.375em) {
  .text-label:has(.label-on-left) span {
    transform: translate(-17px, -1px);
  }
}
.text-label span {
  display: block;
  pointer-events: none;
}
#google-map[data-zoom-level="15"] .text-label:not(.custom-label) span, #google-map[data-zoom-level="14"] .text-label:not(.custom-label) span, #google-map[data-zoom-level="13"] .text-label:not(.custom-label) span, #google-map[data-zoom-level="12"] .text-label:not(.custom-label) span, #google-map[data-zoom-level="11"] .text-label:not(.custom-label) span, #google-map[data-zoom-level="10"] .text-label:not(.custom-label) span, #google-map[data-zoom-level="9"] .text-label span, #google-map[data-zoom-level="8"] .text-label span, #google-map[data-zoom-level="7"] .text-label span, #google-map[data-zoom-level="6"] .text-label span, #google-map[data-zoom-level="5"] .text-label span, #google-map[data-zoom-level="4"] .text-label span, #google-map[data-zoom-level="3"] .text-label span, #google-map[data-zoom-level="2"] .text-label span, #google-map[data-zoom-level="1"] .text-label span, #google-map[data-zoom-level="0"] .text-label span {
  visibility: hidden;
}

.label-dot {
  position: absolute;
  left: 50%;
  top: calc(100% + var(--gutter) / 4);
  transform: translate(-50%, 0);
}
.label-dot.label-on-top {
  top: 6px;
}
.label-dot.label-on-bottom {
  top: 0px;
}
.label-dot.label-on-right {
  top: 50%;
  transform: translateY(-50%);
  left: -6px;
}
.label-dot.label-on-left {
  top: 50%;
  left: unset;
  transform: translateY(-50%);
  right: -6px;
}

/* Key Markers
-------------------------------------------------- */
.marker-link {
  text-decoration: none;
}

.marker-div {
  font-weight: 600;
  word-spacing: 100vw;
  text-transform: uppercase;
  position: relative;
  font-size: 10px;
  line-height: 1.2;
}
.marker-div:hover svg {
  display: none;
}

.svg-marker {
  fill: white;
}
.svg-marker svg {
  display: block;
}

.svg-marker-background {
  fill: blue;
}

.svg-marker-outline {
  fill: blue;
}

gmp-advanced-marker:has(.svg-marker) {
  pointer-events: none !important;
}
.svg-marker path {
  pointer-events: all;
}
.svg-marker:hover {
  fill: blue;
}
.svg-marker:hover .svg-marker-background {
  fill: white;
}

.pine-marker {
  transform: translate(50%, 50%);
}
.pine-marker svg {
  width: 100px;
  height: 100px;
}
@media (min-width: 48em) {
  .pine-marker svg {
    width: 132px;
    height: 132px;
  }
}

.chase-marker {
  transform: translate(50%, 100%);
}
.chase-marker svg {
  width: 82px;
  height: 82px;
}
@media (min-width: 48em) {
  .chase-marker svg {
    width: 112px;
    height: 112px;
  }
}

.newton-marker {
  transform: translate(-50%, 100%);
}
.newton-marker svg {
  width: 94px;
  height: 94px;
}
@media (min-width: 48em) {
  .newton-marker svg {
    width: 132px;
    height: 132px;
  }
}

.south-marker {
  transform: translate(-50%, 0%);
}
.south-marker svg {
  width: 82px;
  height: 82px;
}
@media (min-width: 48em) {
  .south-marker svg {
    width: 115px;
    height: 115px;
  }
}

.marker-south-st {
  top: -15px;
}
@media (min-width: 48em) {
  .marker-south-st {
    top: -25px;
  }
}

.marker-newton-st {
  top: 70px;
}
@media (min-width: 48em) {
  .marker-newton-st {
    top: 120px;
  }
  .google-map[data-zoom-level="15"] .marker-newton-st {
    top: 90px;
  }
}

.marker-chase-st {
  top: 0px;
}
@media (min-width: 48em) {
  .marker-chase-st {
    top: 45px;
    right: 70px;
  }
  .google-map[data-zoom-level="15"] .marker-chase-st {
    top: 32px;
    right: 50px;
  }
}

.marker-pine-ave {
  transform: translate(calc(50% + 20px), 50%);
}
@media (min-width: 48em) {
  .marker-pine-ave {
    transform: translate(calc(50% + 30px), 50%);
  }
}

/* Google's InfoWindow Reset
-------------------------------------------------- */
.gm-style-iw:has(.infobox-content) {
  padding-top: 12px !important;
}
.infobox-title {
  line-height: 1.3;
  text-align: center;
  overflow: hidden;
}
.infobox-title a {
  overflow: hidden;
  display: block;
  border-bottom: 1px solid white;
  line-height: 1.4;
}
.infobox-title a:focus {
  color: unset;
}
.infobox-title a:hover {
  border-color: var(--dark-gray);
}

/* T Stations
-------------------------------------------------- */
.map-tstation {
  display: none;
  color: var(--slate-gray);
  text-align: center;
  line-height: 1.1;
}
.map-tstation.zoom-19, .map-tstation.zoom-18, .map-tstation.zoom-17, .map-tstation.zoom-16 {
  display: block;
}

.station-label {
  font-weight: 700;
  z-index: 0;
}

/* Google Map UI Fix
-------------------------------------------------- */
/* Always on labels
-------------------------------------------------- */
/* Overview Section
-------------------------------------------------- */
/* Partners Section
-------------------------------------------------- */
.partners-section img {
  border-radius: unset;
}

/* Residences Section
-------------------------------------------------- */
.residence-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--gutter) * 2);
}
@media (min-width: 48em) {
  .residence-list {
    gap: var(--gutter);
  }
}

.residence-item a {
  display: block;
}
.residence-item a:hover {
  color: var(--buoy-red);
}

.residence-picture {
  display: block;
  margin: 0 0 calc(var(--gutter) / 2);
}

.residence-picture,
.other-residence-picture {
  overflow: hidden;
  border-radius: calc(var(--gutter) / 2);
}
.residence-picture img,
.other-residence-picture img {
  transition: 1s;
}
.residence-picture img:hover,
.other-residence-picture img:hover {
  transform: scale(1.05);
}

/* Plan Your Visit Section
-------------------------------------------------- */
.recognition-pagination {
  text-align: center;
  padding: calc(var(--gutter) * 2) 0;
  --swiper-pagination-color: white;
  --swiper-pagination-bullet-size: calc(var(--gutter));
  --swiper-pagination-bullet-horizontal-gap: calc(var(--gutter) / 2);
  --swiper-pagination-bullet-inactive-color: var(--blue4);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bottom: calc(var(--gutter) / -2);
}
@media (min-width: 48em) {
  .recognition-pagination {
    display: none;
  }
}

/* Footer
-------------------------------------------------- */
footer {
  background-color: var(--navy-blue);
  color: white;
  padding-bottom: calc(var(--gutter) * 2);
}
@media (min-width: 48em) {
  footer {
    padding-bottom: var(--gutter);
  }
}
footer .social-icon {
  fill: white;
}
@media (min-width: 48em) {
  footer .social-icon {
    width: calc(var(--gutter) * 0.75);
    margin: 0 calc(var(--gutter) / 4);
  }
}
footer a {
  text-decoration: none;
}
footer .nav-item,
footer .sub-nav-item {
  padding-bottom: 0;
  line-height: 1;
}
footer .nav-link:hover,
footer .sub-nav-link:hover {
  color: var(--hydrangea-blue);
}

.footer-logo-wrapper {
  grid-column: 1/3;
  margin-bottom: var(--gutter);
  margin-left: calc(var(--column) / -9);
}
@media (min-width: 48em) {
  .footer-logo-wrapper {
    grid-column: 1/4;
    margin-bottom: calc(var(--gutter) / 4);
    margin-left: calc(var(--column) / -4.3);
  }
}
.footer-logo-wrapper svg.header-logo {
  opacity: 1;
  pointer-events: all;
}

.footer-credits {
  grid-column: 1/-1;
  padding: calc(var(--gutter) * 2) 0 0;
}
@media (min-width: 48em) {
  .footer-credits {
    padding: calc(var(--gutter) / 2) 0 0;
  }
}

/* Our Story
-------------------------------------------------- */
.footer-story {
  background-color: var(--hyphen-blue);
  color: var(--dark-gray);
}
.footer-story a {
  color: var(--navy-blue);
}
.footer-story h2 {
  color: var(--marine-blue);
}

.story-text p {
  line-height: 1.4;
}

/* Contact
-------------------------------------------------- */
.footer-contact {
  background-color: var(--sky-blue);
  margin-bottom: calc(var(--gutter) * 4);
}
@media (min-width: 48em) {
  .footer-contact {
    margin-bottom: var(--gutter);
  }
}
.footer-contact a {
  color: var(--navy-blue);
}

.contact-heading {
  text-align: left;
  color: white;
}

.contact-text {
  padding: 0 0 calc(var(--gutter) / 2);
}

/* Mobile nav
-------------------------------------------------- */
.mobile-nav-wrapper {
  grid-column: span 4;
}
@media (max-width: 47.9em) {
  .mobile-nav-wrapper .column {
    grid-column: span 2;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .mobile-nav-wrapper .column {
    grid-column: span 2;
  }
}
@media (min-width: 48em) {
  .mobile-nav-wrapper {
    display: contents;
  }
}

/* Header
-------------------------------------------------- */
header {
  padding: var(--gutter) 0;
  color: var(--marine-blue);
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 11;
}
@media (min-width: 48em) {
  header {
    padding: calc(var(--gutter) / 2) 0;
  }
}
.open-nav header {
  overflow: scroll;
  height: 100%;
  backdrop-filter: blur(50px);
  background: color-mix(in srgb, var(--hydrangea-blue) 80%, transparent);
  pointer-events: all;
}

.header-logo-wrapper {
  grid-column: 1/3;
  margin-left: calc(var(--column) / -9);
}
@media (min-width: 48em) {
  .header-logo-wrapper {
    grid-column: 1/4;
    margin-left: calc(var(--column) / -4.3);
  }
}

.header-logo-link {
  pointer-events: all;
}

.header-logo {
  transform-origin: 0% 50%;
}
.scrolled-header .header-logo {
  opacity: 0;
  transform: scaleX(0.5);
}

.top-header-wrapper {
  padding: 0 calc(var(--gutter) * 2);
}
@media (min-width: 48em) {
  .top-header-wrapper {
    padding: 0 calc(var(--gutter) / 2);
  }
}

.scroll-header-logo,
.header-logo {
  transition: all 0.5s;
  opacity: 100%;
}

.scroll-header-logo {
  position: absolute;
  top: var(--gutter);
  left: calc(var(--gutter) * 1.73);
  width: calc(var(--gutter) * 6);
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 48em) {
  .scroll-header-logo {
    width: calc(var(--gutter) * 3);
  }
}
.scrolled-header .scroll-header-logo {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 47.9em) {
  .open-nav .header-logo {
    opacity: 0;
    transform: scaleX(0.5);
  }
  .open-nav .scroll-header-logo {
    opacity: 1;
    pointer-events: all;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .open-nav .header-logo {
    opacity: 0;
    transform: scaleX(0.5);
  }
  .open-nav .scroll-header-logo {
    opacity: 1;
    pointer-events: all;
  }
}
/* Hover image effect, from The Ad Club
-------------------------------------------------- */
.hoverimage-span {
  position: relative;
  text-decoration: underline;
}
.hoverimage-span:hover {
  color: var(--dark-gray);
}
.hoverimage-span:hover img {
  display: block;
}

.hoverimage-marine-blue {
  color: var(--marine-blue);
}

.hoverimage-sky-blue {
  color: var(--sky-blue);
}

.hoverimage-storm-blue {
  color: var(--storm-blue);
}

.hoverimage-img {
  background: white;
  display: none;
  position: absolute;
  width: calc(var(--column) * 4 + var(--gutter) * 3);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  max-width: unset;
}

/* Layouts
-------------------------------------------------- */
.layout {
  scroll-margin-top: calc(var(--gutter) * 2);
}
@media (min-width: 48em) {
  .layout {
    scroll-margin-top: 0;
  }
}
.layout[class*=-background] {
  color: white;
}
.layout.padding-top {
  padding-top: calc(var(--gutter) * 4);
}
@media (min-width: 48em) {
  .layout.padding-top {
    padding-top: calc(var(--gutter) * 2);
  }
}
.layout.padding-bottom {
  padding-bottom: calc(var(--gutter) * 4);
}
@media (min-width: 48em) {
  .layout.padding-bottom {
    padding-bottom: calc(var(--gutter) * 2);
  }
}

.layout.storm-blue-background {
  background-color: var(--storm-blue);
}
.layout.storm-blue-background h3 {
  color: white;
}

.layout.hydrangea-blue-background {
  background-color: var(--hydrangea-blue);
}

.layout.hyphen-blue-background {
  background-color: var(--hyphen-blue);
  color: var(--dark-gray);
}
.layout.hyphen-blue-background h3 {
  color: var(--dark-gray);
}

.layout.cloud-blue-background {
  background-color: var(--cloud-blue);
  color: var(--dark-gray);
}

.layout.marine-blue-background {
  background-color: var(--marine-blue);
}
.layout.marine-blue-background h2,
.layout.marine-blue-background .swiper-button-prev,
.layout.marine-blue-background .swiper-button-next {
  color: white;
}

/* Nav
-------------------------------------------------- */
.nav-wrapper {
  width: calc(var(--gutter) * 2.5);
  justify-self: flex-end;
  grid-column: 4/5;
  cursor: pointer;
  pointer-events: all;
  fill: var(--dark-gray);
  margin-top: calc(var(--gutter) / 2);
  margin-right: calc(var(--gutter) / -1);
}
.nav-wrapper:hover {
  fill: var(--buoy-red);
}
@media (min-width: 48em) {
  .nav-wrapper {
    width: var(--column);
    grid-column: 12/13;
    margin-top: 0;
    margin-right: calc(var(--column) / -1);
    padding: calc(var(--gutter) / 2);
  }
}

.open-nav .hamburger-icon {
  display: none;
}

.close-icon {
  display: none;
}
.open-nav .close-icon {
  display: block;
}

/* header nav
-------------------------------------------------- */
.header-nav {
  display: none;
  padding-top: 0;
  padding-bottom: calc(var(--gutter) * 2);
}
@media (min-width: 48em) {
  .header-nav {
    padding-top: calc(var(--gutter) * 2);
  }
}
.open-nav .header-nav {
  display: grid;
}
.header-nav a {
  text-decoration: none;
}
.header-nav a:hover {
  color: var(--dark-gray);
}

.nav-residences-list {
  grid-column: 1/-1;
}
@media (min-width: 48em) {
  .nav-residences-list {
    grid-column: 1/6;
  }
}

.nav-list {
  grid-column: 1/-1;
}
@media (min-width: 48em) {
  .nav-list {
    grid-column: 7/13;
  }
}

.nav-link {
  text-transform: lowercase;
}

.nav-item,
.sub-nav-item {
  padding-bottom: var(--gutter);
}
@media (max-width: 47.9em) {
  .nav-item,
  .sub-nav-item {
    font-size: 7.7419354839vw;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .nav-item,
  .sub-nav-item {
    font-size: 7.7419354839vw;
  }
}
@media (min-width: 48em) {
  .nav-item,
  .sub-nav-item {
    padding-bottom: calc(var(--gutter) * 0.75);
  }
}

.sub-nav-link {
  font-weight: 700;
}

.nav-inner {
  grid-column: 1/-1;
  padding: var(--gutter) 0 0;
}

/* Parallax feature
-------------------------------------------------- */
.parallax {
  transition: all 0.7s ease-in;
  opacity: 0;
  will-change: opacity, top;
  position: relative;
  top: calc(var(--gutter) / 4);
}
.parallax.fade-in {
  top: 0;
  opacity: 1;
}
@media (min-width: 48em) {
  .parallax {
    top: var(--gutter);
  }
}

/* Gallery Block
-------------------------------------------------- */
.logos-swiper .gallery-img {
  filter: brightness(0%) invert(60%);
  opacity: var(--opacity);
}
.logos-swiper .gallery-img:hover {
  filter: unset;
}

.gallery-img {
  filter: saturate(110%);
}

.swiper-wrapper {
  align-items: center;
  margin: 0;
}

@media (max-width: 47.9em) {
  .swiper-show-2 .swiper-wrapper,
  .swiper-show-3 .swiper-wrapper,
  .swiper-show-4 .swiper-wrapper {
    margin: 0 var(--gutter);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .swiper-show-2 .swiper-wrapper,
  .swiper-show-3 .swiper-wrapper,
  .swiper-show-4 .swiper-wrapper {
    margin: 0 var(--gutter);
  }
}

.swiper-outer {
  position: relative;
}

.popup-thumbnail-swiper .swiper-slide {
  cursor: pointer;
}

.swiper-slide {
  padding: 0;
  scale: var(--scale);
}
.swiper-slide figure {
  scale: var(--scale);
}

.gallery-pagination {
  --swiper-pagination-color: var(--marine-map-blue);
  --swiper-pagination-bullet-width: calc(var(--gutter));
  --swiper-pagination-bullet-height: calc(var(--gutter));
  --swiper-pagination-bullet-horizontal-gap: calc(var(--gutter) / 2);
  text-align: center;
  padding: calc(var(--gutter) * 2) 0 0;
  position: relative;
}
@media (min-width: 48em) {
  .gallery-pagination {
    --swiper-pagination-bullet-width: calc(var(--gutter) / 3);
    --swiper-pagination-bullet-height: calc(var(--gutter) / 3);
    --swiper-pagination-bullet-horizontal-gap: calc(var(--gutter) / 6);
    padding: var(--gutter) 0 0;
  }
}

@media (max-width: 47.9em) {
  [data-navigation=desktop] ~ .swiper-button-prev, [data-navigation=desktop] ~ .swiper-button-next {
    display: none;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  [data-navigation=desktop] ~ .swiper-button-prev, [data-navigation=desktop] ~ .swiper-button-next {
    display: none;
  }
}

.swiper-pagination {
  line-height: 2;
  position: relative !important;
}

.swiper-outer:has(.swiper-pagination) .swiper-button-prev,
.swiper-outer:has(.swiper-pagination) .swiper-button-next {
  transform: translateY(-50%);
}

.swiper-pagination-bullet {
  background: white;
  opacity: 50%;
}
.residence-page .swiper-pagination-bullet {
  background-color: var(--sky-blue);
}

.swiper-pagination-bullet-active {
  background: white;
  opacity: 100%;
}

/* popup gallery
-------------------------------------------------- */
body.popup-open {
  height: 100%;
  overflow-y: hidden;
}

::backdrop {
  background: black;
  opacity: 0.9;
}

dialog {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: white;
  transform: translate(0);
  padding: 0;
  margin: 0;
}
dialog .core {
  height: 100%;
  width: 100%;
  padding-top: var(--gutter);
  padding-bottom: var(--gutter);
}
@media (min-width: 48em) {
  dialog .core {
    padding-top: var(--column);
    padding-bottom: var(--column);
  }
}
dialog .nav-wrapper {
  position: absolute;
  top: var(--gutter);
  right: calc(var(--gutter) * 2);
  z-index: 10;
}
@media (min-width: 48em) {
  dialog .nav-wrapper {
    margin: 0;
    top: calc(var(--gutter) / 2);
    right: 0;
  }
}
dialog .close-icon {
  display: block;
  fill: white;
}
dialog .close-icon:hover {
  fill: var(--stone-gray);
}
dialog .dialog-inner,
dialog .swiper {
  height: 100%;
}
dialog figure {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
dialog .gallery-img {
  width: auto;
  height: auto;
  max-height: calc(100vh - var(--gutter) * 4);
}
dialog .swiper-button-prev,
dialog .swiper-button-next {
  color: white;
}
dialog .swiper-button-prev:hover,
dialog .swiper-button-next:hover {
  color: var(--stone-gray);
}
dialog .swiper-pagination {
  --swiper-pagination-bottom: calc(var(--gutter) * 6);
}
dialog .swiper-pagination-bullet {
  background-color: white !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--marine-blue);
}
@media (max-width: 47.9em) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

[data-navigation=off] ~ .swiper-button-prev, [data-navigation=off] ~ .swiper-button-next {
  display: none;
}

[data-slidestoshow="1"] ~ .swiper-button-prev, [data-slidestoshow="1"] ~ .swiper-button-next {
  --swiper-navigation-sides-offset: calc(var(--gutter) * -1);
}

[data-slidestoshow="3"] ~ .swiper-button-prev, [data-slidestoshow="3"] ~ .swiper-button-next {
  --swiper-navigation-sides-offset: calc(var(--gutter) * -1.5);
}

[data-slidestoshow="4"] ~ .swiper-button-prev, [data-slidestoshow="4"] ~ .swiper-button-next {
  --swiper-navigation-sides-offset: calc(var(--gutter) * -1.5);
}

.dialog-inner {
  position: relative;
}

.gallery-notice {
  text-align: center;
  margin-bottom: var(--gutter);
  color: var(--stone-gray);
}
@media (min-width: 48em) {
  .gallery-notice {
    margin-bottom: var(--gutter);
  }
}
.heading-block:has(~ .gallery-notice) {
  padding-bottom: 0;
}

/* Heading Block
-------------------------------------------------- */
.heading-block:has(+ p), .heading-block:has(+ ul) {
  padding: 0 0 calc(var(--gutter) / 2);
}
.heading-block + p {
  margin: 0 0 var(--gutter);
}
@media (min-width: 48em) {
  .heading-block + p {
    margin: 0 0 calc(var(--gutter) / 2);
  }
}

/* Image Block
-------------------------------------------------- */
figcaption {
  padding-top: calc(var(--gutter) / 4);
}

.signature-image-block-figure {
  padding-top: var(--gutter);
  width: calc(var(--column) * 2 + var(--gutter) * 1);
}

/* Testimonials Block
-------------------------------------------------- */
blockquote footer {
  padding-top: calc(var(--gutter) / 2);
}

/* Text Block
-------------------------------------------------- */
.legal-text {
  color: var(--dark-gray);
  padding-top: var(--gutter);
}
@media (min-width: 48em) {
  .legal-text {
    padding-top: var(--gutter);
  }
}
.serif-type p {
  line-height: 1.4;
}

/* Helpers
-------------------------------------------------*/
.is-hidden {
  display: none;
}

.is-hidden-important {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  height: 0;
}

@media (min-width: 48em) {
  .mobile-only {
    display: none;
  }
}

.no-mobile {
  display: none;
}
@media (min-width: 48em) {
  .no-mobile {
    display: inline-block;
  }
}

.no-mobile-block {
  display: none !important;
}
@media (min-width: 48em) {
  .no-mobile-block {
    display: block !important;
  }
}

.no-mobile-flex {
  display: none !important;
}
@media (min-width: 48em) {
  .no-mobile-flex {
    display: flex !important;
  }
}

.no-mobile-grid {
  display: none !important;
}
@media (min-width: 48em) {
  .no-mobile-grid {
    display: grid !important;
  }
}

@media (min-width: 101.25em) {
  .tablet-only {
    display: none;
  }
}

.no-tablet-block {
  display: none;
}
@media (min-width: 101.25em) {
  .no-tablet-block {
    display: block;
  }
}

.is-frozen {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
}

/**
 * Visually hide an element, but leave it available for screen readers
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 * @link http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.screen-reader {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/**
 * Extends the .screen-reader class to allow the element to be focusable when navigated to via the keyboard
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 * @link https://www.drupal.org/node/897638
 */
.screen-reader-focusable:active,
.screen-reader-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: normal;
  width: auto;
}

/* Utilities
-------------------------------------------------- */
img,
video {
  border-radius: calc(var(--gutter) / 2);
}
