@charset "UTF-8";
:root {
  --tan: #dad7cc;
  --tan-hover: #bab4a0;
  --tan-trans: rgba(218, 215, 204, 0.95);
  --tan-darker: #cfcbbd;
  --green: #4b513f;
  --green-hover: #23261e;
  --black: #333132;
  --blacker: #221f20;
  --serif: cooper-bt, serif;
  --handwritten: "IM Fell English", serif;
  --mobile-padding: 1.5rem;
  --desktop-padding: 3rem;
  --max-width: 55rem;
  --mobile-vertical-padding: 5rem;
  --desktop-vertical-padding: 9rem;
  --speed: 0.5s;
  --c7-font-family: var(--serif);
  --c7-font-size: 0.9rem;
  --c7-heading-font-family: var(--serif);
  --c7-heading-font-weight: 500;
  --c7-link-color: var(--green);
  --c7-bg: var(--tan-darker);
  --c7-bg-alt: var(--tan);
  --c7-border-color: rgba(0, 0, 0, 0.2);
  --c7-modal-border-radius: 0;
  --c7-field-border-radius: 0;
  --c7-field-option-selected-color: var(--green);
  --c7-field-option-focus-color: var(--green);
  --c7-primary-button-bg: var(--green);
  --c7-primary-button-bg-hover: var(--green-hover);
  --c7-primary-button-text-color: var(--tan);
  --c7-alt-button-bg: #eeeeee;
  --c7-alt-button-bg-hover: #ffffff;
  --c7-button-border-radius: 0;
  --c7-block-bg: none;
  --c7-block-border-radius: 0;
}

body {
  --background: var(--tan);
  --text: var(--black);
  --link: var(--green);
  --link-hover: var(--green-hover);
  color: var(--text);
}

.page-footer {
  --background: var(--green);
  --text: var(--tan);
  --link: var(--tan);
  --link-hover: var(--tan-hover);
  color: var(--text);
}

@font-face {
  font-family: cooper-bt;
  src: url("/fonts/CooperLtBTWXX-LightItalic/font.woff2") format("woff2"), url("/fonts/CooperLtBTWXX-LightItalic/font.woff") format("woff");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: cooper-bt;
  src: url("/fonts/CooperMdBTWXX-MediumItalic/font.woff2") format("woff2"), url("/fonts/CooperMdBTWXX-MediumItalic/font.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: cooper-bt;
  src: url("/fonts/CooperMdBTWXX-Medium/font.woff2") format("woff2"), url("/fonts/CooperMdBTWXX-Medium/font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.ir {
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.font-smoothing, .page-footer {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.undo-auto-smoothing, .footer-menu, .footer-signup-form .small-print {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-smoothing: auto;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
img.full-width,
svg.full-width {
  width: 100%;
}

.page-wrapper {
  position: relative;
}
@media (min-width: 1131px) {
  .page-wrapper {
    padding-top: 4rem;
  }
}

.page-width,
.page-footer {
  padding-left: var(--mobile-padding);
  padding-right: var(--mobile-padding);
}
@media (min-width: 900px) {
  .page-width,
.page-footer {
    padding-left: var(--desktop-padding);
    padding-right: var(--desktop-padding);
  }
}

.page-width {
  max-width: calc(var(--max-width) + var(--desktop-padding) * 2);
  margin: 0 auto;
}
.page-width > section {
  margin-top: var(--desktop-vertical-padding);
  margin-bottom: var(--desktop-vertical-padding);
}
@media (max-width: 599px) {
  .page-width > section {
    margin-top: var(--mobile-vertical-padding);
    margin-bottom: var(--mobile-vertical-padding);
  }
}

body.mobile-menu-open,
body.credits-open {
  overflow: hidden;
  position: relative;
}

html {
  color: var(--text);
  font-size: 20px;
  font-family: var(--serif);
  line-height: 2;
  letter-spacing: 0.1em;
  font-style: italic;
}
@media (max-width: 599px) {
  html {
    font-size: 18px;
  }
}

body {
  font-size: 0.9rem;
}

a:not(.c7-btn--primary) {
  color: var(--link);
  text-decoration: underline;
}
a:not(.c7-btn--primary):hover, a:not(.c7-btn--primary).active {
  color: var(--link-hover);
}

p, ul, ol, blockquote {
  margin: 1em 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1em 0 0;
  line-height: 1.5;
}

h1, h2 {
  font-size: 2.2rem;
  font-weight: 200;
}
@media (max-width: 599px) {
  h1, h2 {
    font-size: 1.8rem;
  }
}

h3 {
  font-size: 1.2rem;
  font-weight: normal;
}

@media (min-width: 600px) {
  .desktop-break {
    display: block;
  }
}

.center-text {
  text-align: center;
}

.stealth-link {
  color: inherit;
  text-decoration: none;
}
.stealth-link:hover {
  color: var(--link);
  text-decoration: underline;
}

input {
  border-radius: 0;
}

button,
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

.row {
  margin: 0 -1.5rem;
  display: flex;
  flex-wrap: wrap;
}
.row > * {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  flex: 1 0 0%;
}

.reverse {
  flex-direction: row-reverse;
}

.col-1 {
  flex: 0 0 auto;
  width: 10%;
}

.col-2 {
  flex: 0 0 auto;
  width: 20%;
}

.col-3 {
  flex: 0 0 auto;
  width: 30%;
}

.col-4 {
  flex: 0 0 auto;
  width: 40%;
}

.col-5 {
  flex: 0 0 auto;
  width: 50%;
}

.col-6 {
  flex: 0 0 auto;
  width: 60%;
}

.col-7 {
  flex: 0 0 auto;
  width: 70%;
}

.col-8 {
  flex: 0 0 auto;
  width: 80%;
}

.col-9 {
  flex: 0 0 auto;
  width: 90%;
}

.col-10 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-0 {
  margin-left: 0;
}

.offset-1 {
  margin-left: 10%;
}

.offset-2 {
  margin-left: 20%;
}

.offset-3 {
  margin-left: 30%;
}

.offset-4 {
  margin-left: 40%;
}

.offset-5 {
  margin-left: 50%;
}

.offset-6 {
  margin-left: 60%;
}

.offset-7 {
  margin-left: 70%;
}

.offset-8 {
  margin-left: 80%;
}

.offset-9 {
  margin-left: 90%;
}

@media (max-width: 599px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 10%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 20%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 30%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 40%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 60%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 70%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 80%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 90%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 10%;
  }

  .offset-sm-2 {
    margin-left: 20%;
  }

  .offset-sm-3 {
    margin-left: 30%;
  }

  .offset-sm-4 {
    margin-left: 40%;
  }

  .offset-sm-5 {
    margin-left: 50%;
  }

  .offset-sm-6 {
    margin-left: 60%;
  }

  .offset-sm-7 {
    margin-left: 70%;
  }

  .offset-sm-8 {
    margin-left: 80%;
  }

  .offset-sm-9 {
    margin-left: 90%;
  }

  .sm-reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 900px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 10%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 20%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 30%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 40%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 60%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 70%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 80%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 90%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 10%;
  }

  .offset-lg-2 {
    margin-left: 20%;
  }

  .offset-lg-3 {
    margin-left: 30%;
  }

  .offset-lg-4 {
    margin-left: 40%;
  }

  .offset-lg-5 {
    margin-left: 50%;
  }

  .offset-lg-6 {
    margin-left: 60%;
  }

  .offset-lg-7 {
    margin-left: 70%;
  }

  .offset-lg-8 {
    margin-left: 80%;
  }

  .offset-lg-9 {
    margin-left: 90%;
  }

  .lg-reverse {
    flex-direction: row-reverse;
  }
}
.parallax-background-container {
  position: relative;
  overflow: hidden;
}

.parallax-background {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}

body:not(.logged-into-commerce7) .logged-in-only {
  display: none !important;
}

body.logged-into-commerce7 .logged-out-only {
  display: none !important;
}

.commerce7-wrapper {
  padding: 4rem 0 6rem;
  font-size: var(--c7-font-size);
}
.commerce7-wrapper svg {
  display: inline-block;
}

.c7-wrapper {
  padding: 0;
}

.c7-link {
  text-decoration: underline;
}

.login-form {
  text-align: center;
  max-width: 30rem;
  margin: 0 auto;
}
.login-form h1 {
  margin: 0;
}
.login-form .c7-form__buttons {
  margin-top: 1.5rem;
}

.c7-account-login__password-options {
  text-align: center;
}

.c7-subscribe form {
  margin: 0 auto;
}

p.c7-form__error {
  margin: 0;
}

.c7-message svg {
  display: inline-block;
}

.c7-callout p {
  margin: 0;
}

#c7-cart {
  display: inline-block;
}

.c7-user-nav__cart > button.c7-link {
  padding: 0;
}
.c7-user-nav__cart > button.c7-link:hover {
  text-decoration: underline;
}

.c7-user-nav__cart__title svg {
  display: none;
}
.c7-user-nav__cart__title span {
  clip: unset;
  clip-path: unset;
  overflow: unset;
  position: unset;
  white-space: unset;
  height: unset;
  width: unset;
  text-transform: uppercase;
}

.c7-user-nav__cart__count {
  background: unset;
  border-radius: unset;
  box-shadow: unset !important;
  color: unset;
  font-size: unset;
  font-weight: unset;
  padding: unset;
  min-width: unset;
  height: unset;
}
.c7-user-nav__cart__count:before {
  content: " (";
}
.c7-user-nav__cart__count:after {
  content: ")";
}

.c7-side-cart {
  font-style: normal;
}

.c7-order-items {
  font-size: 0.75rem;
}

.c7-order-summary__buttons a {
  font-size: 16px;
  padding-left: 0;
  padding-right: 0;
}

.c7-account__menu {
  background: none;
  box-shadow: none;
}
.c7-account__menu a {
  text-decoration: none;
}
.c7-account__menu a[href="/profile/club-membership"], .c7-account__menu a[href="/profile/allocation"] {
  display: none;
}

.c7-account-block__actions {
  opacity: 0.75;
}

.c7-account-block__details p:first-child {
  margin-top: 0;
}

.page-footer {
  background: var(--background);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-signup-form {
  max-width: 50rem;
  margin: 6rem auto;
}
.footer-signup-form h3 {
  font-style: italic;
  text-align: center;
  margin: 0 0 4rem;
  line-height: 2.3;
}
.footer-signup-form p {
  text-align: center;
}
.footer-signup-form .small-print {
  font-family: var(--handwritten);
  font-style: italic;
  color: var(--blacker);
  font-size: 1.1rem;
}
.footer-signup-form .c7-form input[type=text],
.footer-signup-form .c7-form input[type=email] {
  background: none;
  border-color: var(--tan);
  color: inherit;
}
.footer-signup-form .c7-form__button-row {
  justify-content: center;
}
.footer-signup-form .c7-message--error {
  color: inherit;
}
.footer-signup-form .c7-btn {
  padding: 9px 20px 10px;
}
.footer-signup-form .c7-btn, .footer-signup-form .c7-btn:hover, .footer-signup-form .c7-btn:focus {
  color: var(--green);
  background: var(--tan);
}

.footer-menu {
  text-align: center;
  font-family: var(--handwritten);
  font-style: italic;
  color: var(--blacker);
  font-size: 1.1em;
}
.footer-menu a {
  color: inherit;
  text-decoration: none;
}
.footer-menu a:hover {
  text-decoration: underline;
}

.fixy {
  position: relative;
  min-height: 100%;
}

.flippy > * {
  opacity: 0;
  transition: opacity var(--speed);
}
.flippy > :first-child {
  opacity: 1;
}

.panel-big-text {
  text-align: center;
}

@media (max-width: 899px) {
  .panel-captioned-image > *:first-child,
.panel-press > *:first-child,
.panel-crossfading-images .row > *:first-child {
    margin-bottom: 1rem;
  }
}
@media (min-width: 900px) {
  .panel-captioned-image > :last-child > :first-child,
.panel-press > :last-child > :first-child,
.panel-crossfading-images .row > :last-child > :first-child {
    margin-top: 0;
  }
  .panel-captioned-image > :last-child > :last-child,
.panel-press > :last-child > :last-child,
.panel-crossfading-images .row > :last-child > :last-child {
    margin-bottom: 0;
  }
}

.panel-press {
  align-items: center;
}
.panel-press img {
  mix-blend-mode: multiply;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.panel-press:nth-child(even) {
  flex-direction: row-reverse;
}

.panel-ambient-video video {
  width: 100%;
  height: auto;
}

.panel-crossfading-images {
  padding-bottom: 800px;
  position: relative;
}
.panel-crossfading-images .images {
  position: relative;
}
.panel-crossfading-images .images img {
  opacity: 0;
  transition: opacity 0.5s;
}
.panel-crossfading-images .images .active {
  opacity: 1;
}
.panel-crossfading-images .images img + img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.site-menu {
  padding: 1rem 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--tan-trans);
  z-index: 2;
}
.site-menu .inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.site-menu .menu-link,
.site-menu .c7-user-nav__cart > button {
  color: var(--black);
  text-decoration: none;
  font-style: normal;
  text-transform: uppercase;
  font-size: 0.8rem;
}
@media (max-width: 1260px) {
  .site-menu .menu-link,
.site-menu .c7-user-nav__cart > button {
    font-size: 0.6rem;
  }
}
.site-menu .menu-link:hover,
.site-menu .c7-user-nav__cart > button:hover {
  color: var(--blacker);
}
.site-menu .left, .site-menu .right {
  flex: 1 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-menu .left {
  padding-right: 1em;
}
.site-menu .right {
  padding-left: 1em;
}
.site-menu .logo svg {
  width: 12em;
  height: auto;
}
.site-menu .main > a {
  display: inline-block;
  position: relative;
}
.site-menu .main > a:hover, .site-menu .main > a.active {
  text-decoration: none;
}
.site-menu .main > a:hover:after, .site-menu .main > a.active:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  height: 0.25rem;
  width: 1.5rem;
  background: var(--green);
  left: 50%;
  transform: translateX(-50%);
}
.site-menu .side a {
  font-size: 0.8em;
  font-family: var(--handwritten);
  font-style: italic;
}
@media (max-width: 1100px) {
  .site-menu {
    font-size: 0.75rem;
  }
}
@media (max-width: 1130px) {
  .site-menu {
    display: none;
  }
}

.site-mobile-menu {
  position: relative;
  margin-top: 1.5em;
}
@media (min-width: 1131px) {
  .site-mobile-menu {
    display: none;
  }
}
.site-mobile-menu .open-menu {
  position: absolute;
  left: var(--mobile-padding);
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  cursor: pointer;
}
.site-mobile-menu .logo {
  display: block;
  width: 8rem;
  margin: 0 auto;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--background);
  text-align: center;
  justify-content: center;
  align-items: center;
}
.mobile-menu-overlay a {
  text-decoration: none;
  color: var(--back);
}
.mobile-menu-overlay a:hover {
  color: var(--blacker);
}
.mobile-menu-overlay ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-menu-overlay li {
  margin: 0.75em 0;
  padding: 0;
}
.mobile-menu-overlay .close-menu {
  position: absolute;
  left: var(--mobile-padding);
  top: var(--mobile-padding);
  width: 1rem;
  cursor: pointer;
}

body.mobile-menu-open .mobile-menu-overlay {
  display: flex;
}

.credits-overlay {
  position: fixed;
  background: var(--tan-trans);
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  flex-direction: column;
  color: #474747;
}
.credits-overlay ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.credits-overlay li {
  margin: 0.8rem;
  padding: 0;
}
.credits-overlay .close-credits {
  font-size: 0.6rem;
  text-decoration: none;
}
.credits-overlay .close-credits:hover {
  text-decoration: underline;
}

body.credits-open .credits-overlay {
  display: flex;
}

body.homepage .page-wrapper {
  margin-top: 2rem;
}

body.scroll-menu .site-menu {
  position: absolute;
}

.homepage-header {
  padding: 15vh var(--mobile-padding) 6rem;
  min-height: 90vh;
}
.homepage-header svg {
  display: block;
  margin: 0 auto;
  height: auto;
}
.homepage-header .logo {
  width: 26rem;
}
.homepage-header .years {
  width: 9.25rem;
}
.homepage-header h3 {
  text-transform: uppercase;
  text-align: center;
  margin: 2.75em 0 1em;
}

section.panel-contact {
  margin-top: 6rem;
}
section.panel-contact svg {
  margin: 2rem auto 4rem;
}

@media (min-width: 900px) {
  .vineyard-opening-quote {
    padding-left: 3rem;
  }
}

@media (max-width: 599px) {
  .release-page-header {
    margin-top: 1.3rem;
  }
}

.release-page-content {
  max-width: 50rem;
  padding: 0 var(--mobile-padding);
  margin: 0 auto;
  text-align: center;
}
.release-page-content section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.release-page-content h1 {
  margin: 4rem 0;
}
.release-page-content .wine-text {
  text-align: left;
}
.release-page-content h3 {
  font-size: 0.9rem;
  margin-top: 0;
}
.release-page-content h2 {
  font-size: 1.2rem;
  margin: 1.2em 0;
  font-weight: bold;
}
.release-page-content .c7-product-collection__product-list {
  display: block;
  grid-template-columns: unset;
  -moz-column-gap: unset;
       column-gap: unset;
  row-gap: unset;
  margin: unset;
}
.release-page-content .product {
  margin-top: 1rem;
}
.release-page-content .c7-product__allocation__title {
  display: none;
}
.release-page-content .c7-product__add-to-cart {
  margin-top: 1.5rem;
}
.release-page-content .c7-product__allocation__quantity {
  font-size: var(--c7-font-size-sub);
  margin-top: 5px;
}
.release-page-content .c7-form select {
  background-image: url('data:image/svg+xml; utf8, <svg aria-hidden="true" focusable="false" role="presentation" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>'), linear-gradient(var(--tan), var(--tan));
  border: 1px solid var(--black);
  line-height: 1;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: sans-serif;
}
.release-page-content .c7-form__field {
  margin-bottom: 0;
}
.release-page-content .c7-btn--primary {
  padding-top: 10px;
  padding-bottom: 9px;
  font-style: italic;
}
.release-page-content .c7-product__add-to-cart__price {
  margin: 0 0 0.5rem;
}
.release-page-content .c7-product__add-to-cart__form {
  margin: 0;
}
.release-page-content .c7-product__login-message + .c7-product__login-message {
  display: none;
}

.wine-tasting-notes {
  text-align: center;
}
.wine-tasting-notes .wines > div {
  margin-top: 1.5rem;
}
@media (min-width: 850px) {
  .wine-tasting-notes .wines {
    display: flex;
  }
  .wine-tasting-notes .wines > div {
    flex: 1 0 auto;
  }
}
.wine-tasting-notes p {
  margin: 0.35rem 0 0;
}
.wine-tasting-notes a {
  font-size: 0.9rem;
}

@media (min-width: 600px) {
  .small-only {
    display: none;
  }
}

@media (max-width: 599px) {
  .medium-only {
    display: none;
  }
}
@media (min-width: 900px) {
  .medium-only {
    display: none;
  }
}

@media (max-width: 899px) {
  .large-only {
    display: none;
  }
}

@media (min-width: 900px) {
  .small-and-medium-only {
    display: none;
  }
}

@media (max-width: 599px) {
  .medium-and-large-only {
    display: none;
  }
}