/* Adobe Fonts: Disalina */
@import url("https://use.typekit.net/hlb7lko.css");
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:opsz@17..18&display=swap');
/* Local font: Copperplate Gothic Roman */
@font-face {
  font-family: "Copperplate Gothic Roman";
  src: url("../fonts/copperplate-gothic-roman.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, iframe { max-width: 100%; display: block; }
button { font: inherit; }

:root{
  --pad: 0;
  --radius: 0;
  --border: none;
  --bg: #fff;
  --panel: #fff;
  --text: #000;
  --muted: rgba(255,255,255,.72);
  --font-body: "Copperplate Gothic Roman", serif;
  --font-heading: "disalina", sans-serif;
}

body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85vw;
}

/* Headings: Disalina */
h1, h2, h3, .leftPane__title, .leftPane__subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: normal;
  letter-spacing: .2px;
}

/* Layout */
.landing{
  min-height: 100vh;
  padding: var(--pad);
}

.landing__inner{
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 100vh;
}

/* Mobile: video above */
.landing__media{ order: 0; }
.landing__left{ order: 1; }

@media (min-width: 980px){
  .landing__inner{
    grid-template-columns: 1fr 2fr;
    align-items: stretch;
  }
  .landing__left{ order: 0; }
  .landing__media{ order: 1; }
}

/* Vimeo background */
.landing__media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--border);
}

@media (min-width: 980px){
  .landing__media{ min-height: 100%; }
}

.landing__videoBg{ position: absolute; inset: 0; }
.landing__videoBg iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  transform: scale(1.5);
}

.landing__videoOverlay{
  position: absolute;
  inset: 0;
  background: none;
}

/* Left pane */
.leftPane{
  height: 100%;
  max-height: 100vh;
  border-radius: var(--radius);
  overflow: hidden;
  overflow-y: auto;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-rows: 1fr auto; /* content + persistent footer */
  border-right: 1em solid #0077ae;
}

.leftPane__content{padding: 3.6em 4em 0;display: flex;align-items: center;justify-content: center;width: 100%;margin: 0;}

.leftPane__footer{
  border-top: 1px solid var(--border);
  padding: 14px 16px;
  display: grid;
  gap: 12px;
}

/* Views */
.view{ display: none; }
.view.is-active{ display: block; }

.leftPane__title{
  margin: 0 auto 1.4em;
  font-size: 30px;
  line-height: 1;
  width: 60%;
}

.leftPane__subtitle{
  margin: 0;
  font-size: 20px;
}

.leftPane__lede{
  margin: 0 0 14px;
  color: var(--muted);
}

.leftPane__bullets{
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.leftPane__ctaRow{
  display: block;
  text-align: center;
  flex-wrap: wrap;
  margin-top: 2em;
  margin: 2em auto;
  width: 100%;
}

.leftPane__fineprint{
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.62);
}

.leftPane__topRow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.leftPane__formWrap{padding-top: 1em;}

/* Buttons */
.btn{
  background: rgba(255,255,255,.94);
  color: #0b0f14;
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  text-transform: uppercase;
}

.linkBtn{
  background: transparent;
  border: 0;
  color: #000001;
  cursor: pointer;
  text-decoration: none;
  padding: 6px 0;
  font-family: var(--font-heading);
  position: absolute;
  left: 1.5em;
  top: 1em;
  font-size: 1em;
  font-family: 'Google Sans', sans-serif;
  text-transform: uppercase;
  opacity: .5;
  transition: all .2s ease;
}

/* Gallery tiles */
.thumbs{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.thumb{
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 0;
  overflow: hidden;
  outline: 1px solid rgba(255,255,255,.16);
  opacity: .8;
  transition: all .2s ease;
}

.thumb img{
  width: 100%;
  height: 5em;
  object-fit: cover; /* crops full-size image into tile */
}

/* Social */
.social{
  display: flex;
  gap: 12px;
  align-items: center;
}

.social__link{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.88);
  text-decoration: none;
}

.social__link svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal.is-open{ display: block; }

.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.86);
}

.modal__dialog{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal__figure{
  margin: 0;
  max-width: 80vw;
  max-height: 90vh;
}

.modal__img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 14px;
  display: block;
}

.modal__close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(15, 18, 24, .6);
  color: rgba(255,255,255,.92);
  cursor: pointer;
}

/* Screen-reader only */
.srOnly{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.modal__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(15, 18, 24, .6);
  color: rgba(255,255,255,.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  user-select: none;
}

.modal__nav--prev{ left: 18px; }
.modal__nav--next{ right: 18px; }

.modal__meta{
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(15, 18, 24, .55);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  letter-spacing: .2px;
}

.leftPane p {
    text-align: center;
    font-size: 0.9em;
    font-family: "Google Sans", sans-serif;
    line-height: 1.8;
}

h2 {
    color: #0077ae;
    text-align: center;
}

h2:after {
    content: "";
    display: block;
    width: 50%;
    margin: 1.2em auto;
    border-bottom: 7px dotted #0077ae;
}

button.btn, input.button {
    border: 4px dotted;
    border-radius: 0;
    padding: 1em 3.2em;
    color: #0077ae;
    transition: all .2s ease;
    font-size: 1.2em;
}

.thumb:hover {
    opacity: 1;
}
button.btn:hover {
    color: #0f8dc8;
}
.linkBtn:hover {
    opacity: 1;
}
.view.view--form h1.leftPane__title img {
    width: 10em;
    margin: 0 auto;
}

.gform_wrapper input {text-align: center;border: none;border-bottom: 4px dotted;margin-bottom: 2em !important;outline: none !important;font-family: 'disalina';font-size: 1.2em !important;}

input#gform_submit_button_1 {
    display: block;
    width: 100%;
    background: white;
    border: 4px dotted;
    font-family: 'Copperplate Gothic Roman';
    text-transform: uppercase;
    font-size: 1.5em !important;
    padding: 0.8em;
    cursor: pointer;
}

div#gform_confirmation_message_1 {
    font-family: 'Google Sans';
    text-align: center;
    line-height: 1.8;
    font-size: 1.2em;
}

section.landing__left {
    max-height: 100vh;
}

@media (max-width: 1367px) {
	.leftPane__title {
    margin: 0 auto 1em;
}
}
@media (max-width: 991px) {
	.leftPane__title {
    width: 67%;
}
  body {
    font-size: 2.2vw;
}
	.leftPane {
    max-height: none;
    overflow: visible;
    border-right: none;
	border-top: 1em solid #0077ae;
}
	.landing__videoBg iframe {
    transform: scale(1.6);
}
	.landing__media {
    min-height: 320px;
}
}

@media (max-width: 767px) {
	h2:after {
    border-bottom-width: 4px;
}

body {
    font-size: 3.6vw;
}
	.leftPane__content {
    padding: 1.8em;
}

h2 {
    font-size: 1.2em;
}

button.btn, input.button {font-size: 1.1em;}
}