/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}
ul,ol{padding-inline-start:0;margin-block-start:0;margin-block-end:0;}

/* CONTENTS 

utility classes
skip link
short pages
fallbacks
color, font, and size variables
color sections
basic font and text spacing styles
font fix: iOS Safari can render Salo heavier than requested; clamp to regular.
Set width-related headline sizes for narrowest browser widths
responsive table styles
wp browser update styles

general page layouts

header
fixed header option
general nav link styles
nav mobile / hamburger
nav desktop - see dynamic css file
footer
social links
follow on instagram button
breadcrumbs
responsive video wrapper
cta button styles

page section template 
  section decor
  section find buy
  page section headers
  page section hero
  page section hero video
  hero overlay elements
  page section image text
  page section template cards
  card widths
  page section custom
  accolade box
  page section calculator

tfe agegate

tfe legal styles

wines pages
  wines pages mobile
  single wine page
  wines pages desktop

food pairing pages
  food pairing single
cocktails pages
  cocktail single

special page styles
 404 page 
 contact page and form
 gravity forms styles
 sitemap
 faqs pages
 sip with us location pages
 graphic rectangle decor

horizontal scroll section
  outer section
  sticky panel
  optional section headline
  track
  individual items
  image fills
  text below the image
  background color variants

extras
 reduced motion preference
 additional no-js styles

TBD

CONTENTS */

/* utility classes */
.nowrap{white-space:nowrap;}
.hidden{display:none;}
.screen-reader-only{clip:rect(1px,1px,1px,1px);height:1px;width:1px;overflow:hidden;position:absolute !important;}
.clearfix::after{content:'';display:table;clear:both;}
.stop-transitions * {transition:none !important;}

/* skip link  */
.skip-to-main {
  text-align: center;
}
.skip-to-main a {
  position: fixed;
  top: .5em;
  left: var(--single-space);
  z-index: 1200;
  text-align: center;
  display: inline-block;
  padding: var(--single-space);
  cursor: pointer;
  background: #fff;
  border: 2px solid var(--dark-rose);
  transform: translateY(-160%);
  opacity: 0;
  -webkit-transition: transform .2s ease-in-out, opacity .2s ease-in-out;
  transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
.skip-to-main a:focus,
.skip-to-main a:focus-visible {
  transform: translateY(0);
  opacity: 1;
}

/* forces short pages to fill full browser height */
@supports (top:0) { /* for non-ie browsers only */
  .page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
  }
}

/* fallbacks for browsers that don't support css variables */
html,
body {
  /* overflow-x: hidden removed — it breaks position: sticky on the header */
  overflow-x: clip;
}
body {
  font-family: 'Playfair Display', serif;
}
body div, 
header, main, footer {
  box-sizing: border-box;
}
body {
  animation: page-fade-in 0.35s ease;
}
@keyframes page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* color, font and size variables */
strong, b { font-weight: 700; }
:root {
  --white: #fff;
  --black: #000;
  --rose: #e1c8bd;
  /*--light-rose: #e8d6ce;*/
  /*--dark-rose: #8f7070;*/
  --light-rose: #f1e8e4;
  --lightest-rose: #f1e9e9;
  --dark-rose: #7e6363;
  --mid-rose: #9f8282;
  --dark-gray: #404040;
  --mid-gray: #989898;
  --ok-gray: #5e5e5e;

  --body-font: 'playfair-display', serif;
  --body-font-bold: 'playfair-display', serif; /* use with font-weight: 700 */
  --display-font: 'salo-variable', sans-serif;
  --plain-font: 'montserrat', sans-serif;

  --half-space: .5rem;
  --single-space: 1rem;
  --mid-space: 1.5rem;
  --double-space: 2rem;
  --max-width: 80rem;
  --narrow-max-width: 56.25rem;
  --max-ch-width: 75ch;
}

/* color sections */
/* change color class names to describe actual color choices */
/* then copy to themes settings color section */
body, .light {
  background-color: var(--white);
}
header.header {
  background-color: var(--rose);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10), 0 1.5px 4px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
footer.footer {
  background-color: var(--dark-rose);
}
header, body, footer, .light, .light a {
  color: var(--dark-gray);
}
.light-variant {
  background-color: var(--mid-rose);
}
.light-variant, .light-variant a {
  color: var(--dark-rose);
}
.dark {
  background-color: var(--dark-gray);
}
.dark, .dark a {
  color: var(--white);
  background-color: var(--dark-gray);
}
.dark-variant {
  color: var(--white);
  background-color: var(--dark-gray);
}
.highlight {
  color: var(--white);
  background-color: var(--highlight);
}
.light .text-link, 
.light-variant .text-link {
  color: var(--highlight);
}
.light .text-link:active, 
.light .text-link:focus, 
.light .text-link:hover, 
.light-variant .text-link:active,
.light-variant .text-link:focus,
.light-variant .text-link:hover {
  color: var(--mid-gray);
}
.dark .text-link, 
.dark-variant .text-link,
.highlight .text-link {
  color: var(--dark-gray);
}
.dark .text-link:active, 
.dark .text-link:focus, 
.dark .text-link:hover, 
.dark-variant .text-link:active,
.dark-variant .text-link:focus,
.dark-variant .text-link:hover {
  color: var(--highlight-bright);
}
.highlight .text-link:active, 
.highlight .text-link:focus, 
.highlight .text-link:hover {
  color: var(--mid-gray);
}
.light .cta, 
.light-variant .cta {
  color: var(--white);
  background-color: var(--dark-gray);
  border-color: var(--dark-gray);
}
.light .cta:active, 
.light .cta:focus, 
.light .cta:hover, 
.light-variant .cta:active,
.light-variant .cta:focus,
.light-variant .cta:hover {
  color: var(--white);
  background-color: var(--highlight);
}
.dark .cta, 
.dark-variant .cta {
  color: var(--dark-gray);
  background-color: var(--white);
  border-color: var(--white);
}
.dark .cta:active, 
.dark .cta:focus, 
.dark .cta:hover, 
.dark-variant .cta:active,
.dark-variant .cta:focus,
.dark-variant .cta:hover {
  color: var(--white);
  background-color: var(--dark-gray);
  border-color: var(--dark-gray);
}

/* basic font and text spacing styles */
h1, h2, h3, h4 {
  font-family: sans-serif;
  font-family: var(--display-font);
  font-optical-sizing: none;
  font-weight: 400;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .02em;
}
h1, .primary-head {
  font-size: 40px;
  font-size: 2.5rem;
}
h2, .secondary-head {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  font-synthesis: none;
}
h3, .tertiary-head,
.tfelegal ol li::marker {
  font-family: var(--display-font);
  font-optical-sizing: none;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  font-synthesis: none;
}
p, ul, ol, dl, h5, h6 {
  font-family: serif;
  font-family: var(--body-font);
  font-size: 16px;
  font-size: 1rem;
}
/* font fix: iOS Safari can render Salo heavier than requested; clamp to regular. */
@supports (-webkit-touch-callout: none) {
  h1, h2, h3, h4,
  .hero-headline,
  .calc-result-number,
  .sitemap-page-title,
  .page-faqs h1,
  .section-faqs h2,
  .hscroll-item-headline {
    font-weight: 400 !important;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
  }
}

/* Set width-related headline sizes for narrowest browser widths */
@media only screen and (max-width:24em) {
  h1, .primary-head { font-size: 9vw; }
  h2, .secondary-head { font-size: 7vw; }
  h3, .tertiary-head, .tfelegal ol li::marker { font-size: 5vw; }
  p, ul, ol, dl { font-size: 1rem; }
}
h1, h2, h3, h4, p, ul, ol, dl {
  margin-bottom: 16px;
  margin-bottom: var(--single-space);
  line-height: 1.4;
}
li {
  margin-bottom: 8px;
  margin-bottom: var(--half-space);
}
li:last-of-type {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}
ul.bullet li,
ol.number li,
ol.lowercase li,
ol.uppercase li {
  padding-left: 8px;
  padding-left: var(--half-space);
  margin-left: 16px;
  margin-left: var(--single-space);
}
ul.bullet li {
  list-style: disc;
}
ol.number {
  list-style: decimal;
}
ol.lowercase {
  list-style: lower-alpha;
}
ol.uppercase {
  list-style: upper-alpha;
}

/* responsive table styles */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2em;
}
.table-responsive table {
  width: 100%;
  border-collapse: collapse;
}
.table-responsive td, 
.table-responsive th {
  padding: 0.75em 1em;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--rose);
  line-height: 1.3;
}
.table-responsive th {
  font-weight: 700;
}
.table-responsive tr:last-child td,
.table-responsive tr:last-child th {
  border-bottom: none;
}

/* wp browser update styles */
#buorg {
  font-family: 'Arial', sans-serif !important;
  color: #ffffff !important;
}
#buorg {
  background-color: var(--dark-gray) !important; 
  border-bottom: 1px solid var(--black) !important;
}
#buorg a {
  color: var(--white) !important;
  text-decoration: underline !important;
}
#buorgig, #buorgul, #buorgpermanent {
  background: var(--dark-rose) !important;
}
#buorgclose {
  color: #ffffff !important;
  font-size: 20px !important;
}
.buorg-test {
  background-color: var(--black) !important;
  color: var(--white) !important;
  border: 1px solid var(--white) !important;
}


/* general page layouts */
.page-wrapper {
  /*overflow: hidden;*/
}
main {
  /* for background darkening when nav open */
  position: relative;
}
.basic-content {
  padding: 0 0;
  max-width: var(--max-width);
  margin: 0 auto;
}
.content {
  margin: 0 auto;
  max-width: 100em;
}
@media only screen and (min-width: 56.25em){
  .content {
    padding: 0;
  }
}
.full-width .content,
.wide .content {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.full-width .content {
  max-width: 100%;
}
.regular-width .content {
  max-width: 80rem; 
}
.wide .content {
  max-width: 96em;
}
.narrow-width .content {
  max-width: 56.25em;
}


/* header */
.header-content {
  position: relative;
  padding: var(--single-space);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.header-logo-link {
  display: inline-block;
  width: 8em;
  max-width: 50%;
  height: auto;
  z-index: 10;
  transition: all .3s ease-in-out;
}
.header-logo-link:focus, 
.header-logo-link:hover {
  transform: scale(1.05);
  opacity: 0.7;
  transition: all .3s ease-in-out;
}
.logo-center .header-logo-link {
  display: block;
  margin: 0 auto;
}
.header a {
  text-decoration: none;
}
.header a:active, 
.header a:focus, 
.header a:hover {
  /*text-decoration: underline;*/
}
@media only screen and (min-width: 56.25em) {
  .header-content {
    padding: var(--single-space);
  }
}

/* add 'fixed-header' class to body or div.page-wrapper *
/* to make nav/header always visible */
.fixed-header .header {
  position: fixed;
  z-index: 5;
  height: 5em;
}
.fixed-header .main {
  padding-top: 5em;
}

/* general nav link styles */
.menu a {
  padding: 0 .5em;
}
.header .menu a {
  display: inline-block;
  color: var(--dark-gray);
  font-size: 1.8em;
  transition: all .3s ease-in-out;
}
.header .menu a:hover {
  color: var(--white);
  scale: 1.05;
  transition: all .3s ease-in-out;
}
.header .menu .current-menu-item > a,
.header .menu .current-menu-ancestor > a,
.header .menu .current-menu-parent > a,
.header .menu .current_page_item > a,
.header .menu .current_page_parent > a,
.header .menu .current_page_ancestor > a {
  color: var(--dark-rose);
}
.header .menu li + li {
  position: relative;
}
.header .menu li {
  margin-bottom: var(--mid-space);
}
.header .menu li + li::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -0.5em;
  width: 50%;
  height: 1px;
  background: var(--dark-rose);
  z-index: 1;
  transform: translateX(-50%);
}
.header .menu .menu-item-external-icon > a::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Sharp", "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-left: 0.35em;
  font-size: 0.8em;
  line-height: 1;
  transform: translateY(-0.04em);
}
#nav-chk {
  display: none;
}

/* nav mobile / hamburger */
#nav-toggle,
.no-js .nav-chk-label   {
  position: absolute;
  top: .825em;
  right: .57em;
  z-index: 5;
  color: var(--dark);
  font-size: 1.75em;
  background: 0 0;
  border: none;
  padding: 0;
}
#nav-toggle:before,
.no-js .nav-chk-label:before {
  content: "\f0c9";  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-size: 1em;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.site-navigation {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  padding: 0 .5em .5em;
  z-index: 8;
}
.site-navigation .menu-main-menu-wrapper {
  position: absolute;
  top: 5em;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 0;
  overflow: hidden;
  border-bottom: 3px solid var(--cta-bg);
  background: var(--rose) !important;
  padding: 0 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
  transition: height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
}
.site-navigation.menu-open .menu-main-menu-wrapper,
.no-js #nav-chk:checked ~ .menu-main-menu-wrapper {
  height: 30em; 
  padding: 1em 0;
  margin-top: 1em;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
  background-color: var(--rose) !important;
}
.site-navigation.menu-open,
.no-js #nav-chk:checked ~ .menu-main-menu-wrapper {
  background-color: var(--rose) !important;
}
.menu-open #nav-toggle:before,
.no-js #nav-chk:checked ~ .nav-chk-label:before {
  content: "\f00d";
}
#nav-toggle:focus-visible {
  outline: 2px solid var(--dark-rose);
  outline-offset: 4px;
}
.social-icons {
  margin-bottom: .5em;
}
.menu li + li {
  margin-top: .5em;
}
.no-js #nav-toggle {
  display: none;
}
.no-js .nav-chk-label {
  display: block;
}
@media only screen and (min-width: 56.25em) {
  #nav-toggle,
  .no-js .nav-chk-label   {
    top: 1.25em;
    right: 1.25em;
  }
}

/* nav desktop - see dynamic css file */

/* footer  */
.footer-content {
  padding: var(--mid-space) var(--single-space);
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto 3em auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: var(--mid-space);
}
.footer-logo-link .logo-link img {
  display: block;
  max-width: 8em;
  width: 100%;
  height: auto;
  z-index: 10;
  transition: all .3s ease-in-out;
}
.footer-logo-link .logo-link:hover img {
  transform: scale(1.05);
  opacity: 0.7;
  transition: all .3s ease-in-out;
}
.footer-upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}
.footer-logo-link {
  flex: 0 0 20%;
  max-width: 40%;
}
.footer-upper > nav,
.footer-upper > div {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  justify-content: center;
}
.footer-logo-link {
  flex: 0 0 auto;
}
.footer-nav {
  /*flex: 0 0 80%;*/
  flex-direction: column;
  flex: 1 1 auto;
  display: flex;
  max-width: 100%;
  justify-content: center;
  align-items: left;
  gap: 0;
}
.footer-nav a {
  text-decoration: none;
  font-family: var(--plain-font);
  font-size: 1.2em;
  color: var(--white);
  opacity: 1;
}
.footer-nav a:active, 
.footer-nav a:focus, 
.footer-nav a:hover {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-bottom: 2px;
  width: fit-content;
  transition: all .3s ease-in-out;
  transform: scale(1.05);
  color: var(--light-rose);
}
.footer-nav .current-menu-item > a,
.footer-nav .current-menu-ancestor > a,
.footer-nav .current-menu-parent > a,
.footer-nav .current_page_item > a,
.footer-nav .current_page_parent > a,
.footer-nav .current_page_ancestor > a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-bottom: 2px;
  width: fit-content;
  transition: all .3s ease-in-out;
  transform: scale(1.05);
  color: var(--light-rose);
}
.footer-nav li {
  margin-top: 1em;
  line-height: 1.4;
}
.footer-nav > ul > li > a {
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}
.footer-nav .sub-menu a {
  text-transform: none;
  line-height: 1;
}
.footer-nav .menu-item-external-icon > a::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Sharp", "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-left: 0.35em;
  font-size: 0.9em;
  line-height: 1;
  transform: translateY(-0.02em);
}
.footer-graphic {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* Ensure it stays in flow */
  z-index: auto;
  margin-top: 2em;
}
.footer-graphic img {
  max-width: 100%;
  height: auto;
  display: block;
}
.footer-lower {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0;
  gap: 2em;
}
.footer-lower-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
}
.footer-copyright {
  color: var(--light-rose);
  font-size: 12px;
  font-size: 0.8em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  margin-top: var(--half-space);
  margin-bottom: 0.5em;
  text-align: left;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  margin: 0 auto;
}
.footer-legal a {
  text-decoration: none;
  color: var(--light-rose);
  text-transform: uppercase;
  font-size: 1.2em;
}
.footer-legal li {
  margin-top: 1em;
  line-height: 1.4;
}
.footer-legal a:active, 
.footer-legal a:focus, 
.footer-legal a:hover {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-bottom: 2px;
  width: fit-content;
  color: var(--white);
  transition: all .3s ease-in-out;
}
.footer-lower-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.social-links {
  display: flex;
  gap: 1.5em;
  justify-content: flex-end;
}
.footer .menu li + li {
  margin-top: var(--single-space);
}
.footer-upper,
.footer-lower {
  flex-direction: column;
  align-items: center;
  gap: 1em;
  max-width: 100%;
}
.footer-nav,
.footer-legal,
.footer-lower-right,
.social-links {
  justify-content: center;
}
.footer-copyright {
  text-align: center;
}
@media only screen and (min-width: 56.25em) {
  .footer-logo-link {
    max-width: 20%;
  }
  .footer-nav a {
    font-size: .8em;
  }
  .footer-nav li {
    margin-top: .5em;
    line-height: 1;
  }
  .footer-upper > nav,
  .footer-upper > div {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    justify-content: flex-start;
  }
  .footer-upper,
  .footer-lower {
    flex-direction: row;
    align-items: flex-start;
    gap: 2em;
    max-height: 24em;
  }
  .footer-upper {
    align-items: flex-start;
  }
  .footer-legal a {
    font-size: .8em;
  }
  .footer-legal li {
    margin-top: 0;
    line-height: 1;
  }
  .footer-nav,
  .footer-legal,
  .footer-lower-right,
  .social-links {
    justify-content: flex-end;
    text-align: left;
  }
  .footer-graphic {
    margin-top: 0;
  }
  .footer-lower {
      margin-top: 2em;
  }
  .footer-nav {
    flex-direction: row;
    max-width: 100%;
    justify-content: flex-end;
    gap: 2em;
  }
  nav.footer-nav {
    display: block;
  }
  nav.footer-nav > ul.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 2em;
    width: 100%;
  }
  nav.footer-nav > ul.footer-nav > li {
    margin-top: 0;
    min-width: 0;
  }
  nav.footer-nav > ul.footer-nav > li:nth-last-child(2) {
    grid-column: -3 / -2;
    grid-row: 2;
  }
  nav.footer-nav > ul.footer-nav > li:last-child {
    grid-column: -2 / -1;
    grid-row: 2;
  }
  .footer-copyright {
    text-align: left;
  }
  .footer-legal {
    flex-direction: row;
    justify-content: flex-start;
    margin: 0;
    gap: 1.5em;
  }
  .footer-content {
    padding: var(--double-space);
    margin: 0 auto;
  }
}

/* social links */
.social-links,
.social-links li {
  margin-bottom: 0;
}
.social-icon-wrapper li {
  display: inline-block;
}
.social-icon-wrapper li + li {
  margin-left: var(--double-space);
}
a.social-icon {
  display: inline-block;
  text-decoration: none;
  color: var(--light-rose);
  transition: all .4s ease-in-out;
}
a.social-icon:hover {
  color: var(--white);
  scale: 1.1;
  transition: all .4s ease-in-out;
}
.social-icon::before {
  display: inline-block;
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 400;
  font-size: 1.75em;
  line-height: 1;
  padding-top: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.social-contact::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
}
.social-facebook::before {
  content: "\f09a";
}
.social-instagram::before {
  content: "\f16d";
}
.social-spotify::before {
  content: "\f1bc";
}
.social-twitter::before {
  content: "\f099";
}
.social-pinterest::before {
  content: "\f0d2";
}
.social-tiktok::before {
  content: "\e07b";
}
.social-youtube::before {
  content: "\f167";
}
.social-vimeo::before {
  content: "\f40a";
}

/* Follow on Instagram button */
#sb_instagram .sbi_follow_btn a,
.sbi_follow_btn a {
  background-color: var(--dark-rose) !important; /* button background */
  color: #ffffff !important;            /* button text */
  border: 1px solid var(--dark-rose) !important;
  border-radius: 4px !important;
}
#sb_instagram .sbi_follow_btn a:hover,
.sbi_follow_btn a:hover {
  background-color: var(--light-rose) !important;
  color: #ffffff !important;
  border-color: var(--white) !important;
}

/* breadcrumbs */
.breadcrumbs-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 1em;
  max-width: 15em;
}
.breadcrumbs {
  text-transform: uppercase;
  font-family: var(--info-font);
  color: var(--ok-gray);
  font-size: .8em;
  margin: 0;
  padding: 10px 0 5px;
}
.breadcrumbs a {
  color: var(--ok-gray);
  text-decoration: none;
  border-bottom: 1px solid var(--ok-gray);
  padding-bottom: 1px;
  line-height: 2;
  transition: all 0.3s ease-in-out;
}
.breadcrumbs a:focus,
.breadcrumbs a:hover {
  text-decoration: none;
  color: var(--dark-rose);
  text-decoration: none;
  border-bottom: 1px solid var(--dark-rose);
  padding-bottom: 3px;
  transition: all 0.3s ease-in-out;
}
#breadcrumbs {
  font-family: var(--info-font);
  color: var(--ok-gray);
  font-size: 1em;
  margin: 0;
  padding: 5px 0;
}
#breadcrumbs a {
  color: var(--ok-gray);
  text-decoration: none;
  border-bottom: 1px solid var(--ok-gray);
  padding-bottom: 1px;
  transition: all 0.3s ease-in-out;
}
#breadcrumbs a:focus,
#breadcrumbs a:hover {
  text-decoration: none;
  color: var(--dark-rose);
  text-decoration: none;
  border-bottom: 1px solid var(--dark-rose);
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 56em) {
  .breadcrumbs-box {
    max-width: 100%;
  }
}

/* responsive video wrapper */
.video-wrapper {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.5%;
	/* padding-bottom: calc((100% + 26px)*.565); */
}
.video-wrapper > iframe,
.video-wrapper > div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* cta button styles */
/* cta button-style link */
/* Use <ul class="cta-group"> in Classic Editor — TinyMCE preserves list tags reliably */
.cta-group {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center;
  gap: .5em;
  align-items: stretch;
  margin-bottom: var(--single-space);
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
@media only screen and (min-width: 37.5em) {
  .cta-group {
    flex-direction: row !important;
    align-items: center;
    flex-wrap: wrap;
  }
}
.cta-group p {
  margin: 0;
}
.cta-group .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  white-space: nowrap;
}
.cta-home-group {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center;
  gap: .8em;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 1em auto;
}
.cta-home-large {
  display: inline-block;
  padding: .9em 1.7em;
  font-family: var(--body-font);
  font-size: 1.3em;
  letter-spacing: .2em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .4s ease-in-out;
  background-color: var(--white);
  color: var(--dark-gray);
}
.cta-home-large:active,
.cta-home-large:focus,
.cta-home-large:hover {
  background-color: var(--dark-gray);
  color: var(--white);
  transition: all .4s ease-in-out;
}
.cta-home-small {
  display: inline-block;
  padding: .9em 1.7em;
  font-family: var(--body-font);
  font-size: .8em;
  letter-spacing: .2em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .4s ease-in-out;
  background-color: var(--dark-rose);
  color: var(--white);
}
.cta-home-small:active,
.cta-home-small:focus,
.cta-home-small:hover {
  background-color: var(--light-rose);
  color: var(--dark-gray);
  transition: all .4s ease-in-out;
}
.cta {
  display: inline-block;
  /*padding: var(--half-space) var(--single-space);*/
  padding: .9em 1.7em;
  font-family: var(--body-font);
  font-size: 1em;
  letter-spacing: .2em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .4s ease-in-out;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
}
.cta,
.cta.reverse:active,
.cta.reverse:focus,
.cta.reverse:hover {
  background-color: transparent;
  color: var(--light);
  border: 1px solid var(--dark-gray);
}
.cta.reverse,
.cta:active,
.cta:focus,
.cta:hover {
  background-color: var(--dark-gray);
  color: var(--white);
}
.cta.highlight,
.cta.highlight-reverse:active,
.cta.highlight-reverse:focus,
.cta.highlight-reverse:hover {
  background-color: var(--highlight);
  color: var(--light);
  border: 1px solid var(--highlight);
}
.cta.highlight-reverse,
.cta.highlight:active,
.cta.highlight:focus,
.cta.highlight:hover {
  background-color: var(--light);
  color: var(--highlight);
}
.cta i {
  margin-left: .2em;
}
@media only screen and (min-width: 56em) {
  .basic-content {
    padding: 0 var(--double-space);
  }
}
.basic-content .head-two {
  font-family: var(--body-font);
  color: var(--dark-rose);
  font-weight: 500;
  font-size: 3.5em;
  letter-spacing: 0;
  text-transform: uppercase;
  padding-bottom: .5em;
  line-height: 1;
  text-align: center;
  margin: 0;
}


/* page section template */
.page-section-wrapper {
  position: relative;
}
.page-section-wrapper section {
  padding: var(--single-space);
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-section-wrapper section.full-width {
  padding: 0;
}
@media only screen and (min-width: 56em) {
  .page-section-wrapper section {
    padding: var(--double-space);
  }
}
.gradient-bg {
  position: relative;
  padding-top: 2em;
  padding-bottom: 2em;
}
.special-bottom {
  margin-bottom: -2em !important;
}
.gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: linear-gradient(to bottom, var(--white) 0%, var(--rose) 100%);
  z-index: -1;
}
.locator-a11y {
  max-width: var(--max-ch-width);
  line-height: 1.4;
  margin: 0 auto;
}
.locator-a11y h2 {
  font-family: var(--body-font);
  text-transform: uppercase;
  font-size: 2em;
}
.locator-a11y a {
  color: var(--dark-rose);
}
.locator-a11y a:hover {
  color: var(--light-rose);
}

/* section decor */
.section-hero {
  position: relative;
  z-index: 1;
}
/*.decorative-graphic {
  position: absolute;
  left: 33vw;      
  bottom: -301px;
  z-index: 2;
  width: 240px;   
  pointer-events: none;
}*/
.decorative-graphic {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin-top: -1px;
  pointer-events: none;
}
.decorative-graphic--under-header {
  top: 0;
}
.decorative-graphic img {
  max-width: 100%;
  height: 115px;
  display: block;
}
@media only screen and (max-width: 56em) {
  .decorative-graphic--under-header {
    left: auto;
    right: -3.3em;
    transform: none;
  }
}
@media only screen and (min-width: 56em) {
  .decorative-graphic {
    width: 174px;
  }
.decorative-graphic img {
    max-width: 100%;
    height: auto;
  }
}

/* section find buy */
.find-buy-box {  
  padding: 1em;
  min-width: 14em;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.find-buy-box h2 {
  font-family: var(--body-font);
  color: var(--dark-rose);
  font-weight: 500;
  letter-spacing: 0;
  font-size: 40px;
  font-size: 2.5em;
  text-transform: uppercase;
  padding-bottom: .5em;
  line-height: 1;
  text-align: center;
  margin: 0;
}
.find-buy-buttons-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  gap: 1em;
  margin: 0 auto;
}
.find-buy-buttons-box a {
  white-space: nowrap;
}
@media only screen and (min-width: 56em) {
  .find-buy-box h2 {
    font-size: 3.5em;
  }
  .find-buy-box {  
    padding: 2em;
    min-width: 14em;
    max-width: 70%;
  }
  .find-buy-buttons-box {
    gap: 2em;
  }
}

/* page section headers */
.page-section-header {
  text-align: center;
  margin: 0 auto;
  max-width: 56.25em;
  padding-bottom: var(--single-space);
}
.page-section-header *:last-child {
  margin-bottom: 0;
}
.page-section-header p {
  padding: 0 1em;
}
@media only screen and (min-width: 56em) {
  .page-section-header {
    padding-bottom: var(--double-space);
  }
  .page-section-header p {
    padding: 0;
  }
}

/* page section hero */
.page-section-wrapper .page-section-hero {
  max-width: none;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0;
}
.page-section-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--dark-gray);
  width: 100%;
  position: relative;
  overflow: visible;
  /*height: 50.625em;*/
  height: 30em;
}
.page-section-hero.has-hero-video {
  overflow: visible;
}

/* page section hero video */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  display: block;
}


/* Hero overlay elements */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  z-index: 1;
  pointer-events: none;
}
.page-section-hero .content {
  position: relative;
  z-index: 2;
}
.hero-text-overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.hero-text-overlay p {
  font-size: 1.5em;
  margin: 1em 0;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}
.hero-content {
  margin: 0 1em;
}
.page-section-hero img {
  object-fit: cover;
  width: 100%;
  max-height: 45em;
  margin-bottom: 2em;
}
.flex-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.page-section-hero.top .flex-wrapper {
  align-items: flex-start;
  padding: var(--single-space);
}
.page-section-hero.bottom .flex-wrapper {
  align-items: flex-end;
}
.page-section-hero.left .flex-wrapper {
  justify-content: flex-start;
}
.page-section-hero.right .flex-wrapper {
  justify-content: flex-end;
}
.page-section-hero .flex-wrapper h1 {
  text-align: center;
  width: 100%;
  max-width: 20em; 
}
.page-section-hero.white h1 {
  color: #fff; 
}
.page-section-hero.left h1 {
  text-align: left;
}
.page-section-hero.right h1 {
  text-align: right;
}
.page-section-hero.light h1 {
  font-weight: 100;
}
.page-section-hero.bold h1 {
  font-weight: 500;
}
.page-section-hero-img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.page-section-hero-img-test {
  object-fit: cover;
  width: 100%;
  max-height: 45em;
  margin-bottom: 2em;
}
.home .page-section-hero-img {
  object-fit: contain;
  width: 100%;
  height: auto;
}
.page-section-hero .content {
  position: relative;
  height: 100%;
  min-height: inherit;
}
.page-section-hero .hero-eyebrow {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: var(--half-space);
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}
.page-section-hero .hero-headline {
  font-family: var(--display-font);
  font-optical-sizing: none;
  font-size: clamp(4rem, 16vw, 9rem);
  font-weight: 400;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: .03em;
  max-width: 20ch;
  margin-bottom: 0;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}
.page-section-hero.headline-two-lines .hero-headline {
  max-width: 9ch;
}
.page-section-hero .hero-smaller-headline {
  font-family: var(--body-font);
  font-size: 2.4em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--light-rose);
  line-height: 1.1;
  letter-spacing: .03em;
  margin: 0 1em;
}
.page-section-hero .hero-posthead {
  font-family: var(--body-font);
  font-size: 19.2px;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .08em;
  max-width: 36em;
  margin: 1em 0;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}
.page-section-hero p {
  max-width: 26em;
}
.page-section-hero .cta {
  color: var(--dark-gray);
  background-color: var(--white);
}
.page-section-hero .cta:hover {
  color: var(--white);
  background-color: var(--dark-gray);
}
@media only screen and (min-width: 56em) {
  .page-section-hero .hero-eyebrow {
    font-size: 1.5rem;
    margin: 1em 0;
  }
  .page-section-hero .hero-headline {
    font-size: 9rem;
    text-transform: uppercase;
    line-height: .85;
  }
  .page-section-hero .hero-smaller-headline {
    font-size: 3.4em;
    line-height: 1.1;
    margin: 0 1em;
  }
  .page-section-hero.top .flex-wrapper {
    align-items: flex-start;
    padding: var(--double-space);
  }
  .page-section-hero {
    height: 50.625em;
    margin-bottom: 4em;
  }
  .bottom-hero {
    margin-bottom: 0;
  }
}

/* page section image text */
.page-section-image-text {
  position: relative;
}
.page-section-image-text .image-text-rows,
.page-section-image-text .image-text-row,
.page-section-image-text .image-text-img,
.page-section-image-text .image-text-txt {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  margin: .5em auto;
}
.page-section-image-text .image-text-rows {
  display: block;
  width: 100%;
}
.page-section-image-text .image-text-rows .prosecco {
  margin: 1em auto -1em;
}
.page-section-image-text .image-text-img img {
  min-height: 18.5em;
  object-fit: cover;
  overflow: hidden;
}
.page-section-image-text .image-text-gallery {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: .5em;
  align-items: start;
  width: 100%;
  padding-inline: 1em;
  box-sizing: border-box;
}
.page-section-image-text .image-text-gallery img {
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Image 1: full width across both columns */
.page-section-image-text .image-text-gallery img:first-child {
  grid-column: 1 / -1;
}
/* Image 2: shorter than image 3 */
.page-section-image-text .image-text-gallery img:nth-child(2) {
  height: 22em;
  align-self: start;
}
/* Image 3: taller */
.page-section-image-text .image-text-gallery img:nth-child(3) {
  height: 30em;
}
/* Only-child fallback */
.page-section-image-text .image-text-gallery img:only-child {
  grid-column: 1 / -1;
}
.page-section-image-text .image-text-img-prosecco img,
.page-section-image-text .prosecco .image-text-img img {
  min-height: 0;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  max-height: 30em;
  padding-bottom: 2em;
}
.page-section-image-text .image-text-txt {
  width: 100%;
  flex-direction: column;
  justify-content: space-around;
  align-items: start;
  text-align: left;
  padding: 0 1em 1em;
}
/* When inside .page-section-wrapper the <section> already has 1em padding — cancel the txt padding to avoid doubling */
.page-section-wrapper .page-section-image-text .image-text-txt {
  padding: 0;
}
.page-section-image-text .image-text-content {
  max-width: 100%;
  margin: 0 auto;
}
.page-section-image-text .image-text-row {
  width: 100%;
}
.page-section-image-text .image-text-img,
.page-section-image-text .image-text-txt {
  min-width: 0;
}
.page-section-image-text .image-text-img img {
  width: 100%;
  max-width: 100%;
  padding: 0 1em;
}
/* When inside .page-section-wrapper the <section> already has 1em padding — cancel to avoid doubling */
.page-section-wrapper .page-section-image-text .image-text-img img {
  padding: 0;
}
.page-section-image-text .image-text-img.image-text-gallery img {
  padding: 0;
}
.page-section-image-text .image-text-row + .image-text-row {
  margin-top: 2em;
}
.page-section-image-text .image-text-row:last-child {
  margin-bottom: var(--half-space);
}
.image-text-row.white-bg {
  background-color: var(--white);
}
.image-text-row.light-gray-bg {
  background-color: var(--light-gray-v1);
}
.image-text-row.black-bg {
  background-color: var(--dark-gray);
}
.image-text-row.green-bg {
  background-color: var(--highlight);
}
.image-text-row.white-bg .image-text-row {
  background-color: var(--white);
}
.image-text-row.white-text .image-text-row {
  color: var(--light-gray-v1);
}
.image-text-row.black-text .image-text-row {
  color: var(--dark-gray);
}
.image-text-row.green-text .image-text-row {
  color: var(--highlight-bright);
}
.page-section-image-text .head-five,
.page-section-cards .head-five {
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1rem;
  font-family: var(--body-font);
  color: var(--ok-gray);
  margin-bottom: .5em;
}
.page-section-image-text .page-section-preheader, 
.page-section-image-text .page-section-head {
  margin-bottom: 1em;
}
.page-section-image-text .head-two {
  font-family: var(--body-font);
  color: var(--dark-rose);
  font-weight: 500;
  font-size: 40px;
  font-size: 2.5em;
  letter-spacing: 0;
  text-transform: uppercase;
  padding-bottom: .5em;
  line-height: 1;
  text-align: left;
  margin: 0;
}
.page-section-image-text .page-section-custom-content + .page-section-link,
.page-section-image-text .page-section-link + .page-section-custom-content {
  margin: 0 auto;
  width: 100%;
}
.page-section-link {
  text-align: center;
  margin: 0 auto;
}
.page-section-custom-content p {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 1.3em;
  line-height: 1.4;
}
@media only screen and ( min-width: 56.25em ) {
  .page-section-image-text .image-text-row:last-child {
    margin-bottom: var(--double-space);
  }
  .page-section-image-text .page-section-preheader, 
  .page-section-image-text .page-section-head {
    margin-bottom: 2em;
  }
  .page-section-image-text .image-text-img-prosecco img,
  .page-section-image-text .prosecco .image-text-img img {
    max-height: 45em;
  }
  .page-section-image-text .page-section-custom-content + .page-section-link,
  .page-section-image-text .page-section-link + .page-section-custom-content {
    margin: 0 0 .25em 1em;
  }
  .page-section-image-text .image-text-rows,
  .page-section-image-text .image-text-row,
  .page-section-image-text .image-text-img,
  .page-section-image-text .image-text-txt {
    margin: 1em auto;
  }
  .page-section-image-text {
    margin-top: 4em;
  }
  .page-section-link {
    text-align: left;
    margin: 0 0 .25em 1em;
  }
  .page-section-image-text .head-two {
    font-size: 3.5em;
    letter-spacing: 0;
    padding-bottom: .5em;
    line-height: 1;
    text-align: left;
    margin: 0 0 .25em 1em;
  }
  .page-section-image-text .image-text-row {
    flex-wrap: nowrap;
  }
  .page-section-image-text .image-text-row + .image-text-row {
    margin-top: 4em;
  }
  .page-section-image-text .image-text-row:last-child {
    margin-bottom: 4em;
  }
  /*.page-section-image-text .image-text-img img {
    padding: 0;
  }*/
  .image-text-row:nth-of-type(odd), 
  .image-text-row.image-right{
    flex-direction: row-reverse;
  }
  .image-text-row.image-left{
    flex-direction: row;
  }
  .image-text-row .image-text-img,
  .image-text-row .image-text-txt {
    flex: 50%;
  }
  .image-text-row .image-text-txt {
    /*padding: 3em;*/
    justify-content: center;
    align-items: center;
  }
  .page-section-image-text .image-text-txt {
    padding: 0 1em;
  }
  .page-section-image-text .image-text-content {
    max-width: 32em;
  }
  .page-section-image-text .image-text-img.image-text-gallery {
    width: 100%;
    padding-inline: 0;
  }
  .page-section-image-text .head-two {
    margin: 0 0 .25em 0;
  }
  .page-section-image-text .page-section-custom-content + .page-section-link,
  .page-section-image-text .page-section-link + .page-section-custom-content {
    margin: 0 0 .25em 0;
  }
}

/* page section template cards */
.page-section-cards {
  text-align: center;
}
.page-section-cards:nth-of-type(odd) {
  /*background-color: var(--light-gray-v2);*/
}
.page-section-cards h2 {
  font-family: var(--body-font);
  color: var(--dark-rose);
  font-weight: 500;
  font-size: 40px;
  font-size: 2.5em;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
  /*padding: 0 .5em;*/
}
.cards-colored-bg {
  background-color: var(--light-rose);
  padding-top: 2em;
  padding-bottom: 1em;
}

/* card widths */
.page-section-cards .head-two {
  margin-bottom: .5em;
}
.page-section-cards .cards {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
  row-gap: 1em;
  justify-content: space-between;
  margin-bottom: 0;
  /*margin: 1em 1em 2em 1em;*/
}
.page-section-cards .cards .card {
  /*flex: 0 1 100%;*/
}
.card,
.card-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}
.card-img {
  margin: 0 auto;
  padding: 0 1em;
}
.card-img-link img {
  transition: all .4s ease-out;
  background: rgba(0,0,0,0.0);
}
.card-img-link:hover img {
  transform: scale(1.015);
  opacity: .9;
  transition: all .4s ease-out;
  background: rgba(0,0,0,0.3);
}
.card-img img.circle {
  border-radius: 50%; 
}
.card-img-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 0;
}
.card-img-wrapper.has-link:hover .card-img img,
.card-img-wrapper.has-link:hover .card-img-overlay {
  transform: scale(1.05);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.card-img img,
.card-img-overlay {
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.card-img-overlay {
  position: absolute;
  top: 0;
  left: 1em;
  right: 1em;
  width: auto;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
  pointer-events: none;
}
.card-img-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  color: var(--white);
  font-size: 1.5rem;
  font-family: var(--body-font);
  text-transform: uppercase;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.8);
}
.home .card-img-overlay-text {
  align-items: center;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.38) 45%, rgba(0, 0, 0, 0) 100%);
}
.card-img img {
  display: block;
  width: 100%;
  height: auto;
  background-color: var(--black);
}
.card-details {
  max-width: 36em;
}
.card-details h3 {
  font-family: var(--body-font);
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 1.75em;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: .5em 0 .5em 0;
}
.card-text {
  justify-content: space-between;
  margin: 0 1em;
}
.card-prehead {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark-gray);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 1em 0;
}
.icon-left .card {
  display: flex;
  flex-direction: row;
  gap: 1em;
  align-items: center;
}
.icon-left .card-img {
  flex: 0 0 25%;
  max-width: 8em;
}
.icon-left .card-img img {
  margin-bottom: 0;
}
.icon-left .card-text {
  text-align: left;
  justify-content: flex-start;
}
.icon-left .card-text .card-details {
  margin: 0;
}
.icon-left .card-img img,
.icon-top .card-img img {
  width: 5.25em;
  height: auto;
}
.card .cta {
  margin: 16px 0 0 16px;
  margin: 1em 0 1em 1em;
}
@media only screen and ( min-width: 37.5em ) {
  .page-section-cards.col-3 .cards .card,
  .page-section-cards.col-4 .cards .card {
    flex-basis: calc(50% - 1em);
  }
}
@media only screen and ( min-width: 56.25em ) {
  .page-section-cards h2 {
    font-size: 56px;
    font-size: 3.5em;
    padding: 0;
  }
  .card-prehead {
    margin: 0;
  }
  .page-section-cards {
    margin-top: 4em;
  }
  .card-details h3 {
    margin: 0 0 .5em 0;
  }
  .cards-colored-bg {
    padding-bottom: 2em;
  }
  .page-section-cards .cards {
    row-gap: 3em;
    margin-bottom: var(--double-space);
  }
  .card-img {
    padding: 0;
  }
  .card-img-overlay {
    left: 0;
    width: 100%;
  }
  .card-img-wrapper {
    margin-bottom: 2em;
  }
  .page-section-cards.col-2 .cards .card {
    flex-basis: calc(50% - 1em);
  }
  .page-section-cards.col-3 .cards .card {
    flex-basis: calc(33.33% - 1.333em);;
  }
  .page-section-cards.col-4 .cards .card {
    flex-basis: calc(25% - 1.5em);;
  }
  .card .cta {
    margin: 1em 0 0 1em;
  }
}
@media only screen and ( min-width: 75em ) {
  .page-section-cards .cards,
  .page-section-cards.col-3 .cards {
    gap: 1em;
  }
  .page-section-cards.col-2 .cards .card {
    flex-basis: calc(50% - 2em);
  }
  .page-section-cards.col-3 .cards .card {
    flex-basis: calc(33.33% - 2.667em);;
  }
  .page-section-cards.col-4 .cards .card {
    flex-basis: calc(25% - 3em);;
  }
}

/* page section custom */
.page-section-custom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--single-space);
}
.page-section-custom-content {
  margin: 0 auto;
}
@media only screen and (min-width: 56em) {
  .page-section-custom {
    padding: var(--double-space);
  }
}

/* accolade box */
.accolade-box {
  margin: 2em auto;
}
.accolade-box h2 {
  color: var(--dark-rose);
  font-size: 4em;
}

/* page section calculator */
.page-section-calculator .head-five {
  text-transform: uppercase;
  font-size: 19.2px;
  font-size: 1.2rem;
  font-family: var(--body-font);
  color: var(--dark-gray);
  margin-bottom: .5em;
}
.page-section-calculator .head-two {
  font-family: var(--body-font);
  color: var(--dark-rose);
  font-weight: 500;
  font-size: 3.4em;
  max-width: 20ch;
  letter-spacing: 0;
  text-transform: uppercase;
  padding-bottom: .5em;
  line-height: 1;
  margin: 0 auto;
}
.page-section-calculator p {
  max-width: 60ch;
  margin: 0 auto;
}
.prosecco-calculator {
  max-width: var(--narrow-max-width);
  margin: 0 auto 2em;
  text-align: center;
}
.page-section-wrapper .page-section-calculator {
  padding-bottom: 0;
}
.page-section-calculator .prosecco-calculator {
  margin-bottom: 0;
}
.page-section-calculator.gradient-bg {
  background: linear-gradient(to bottom, var(--white) 0%, var(--rose) 100%);
}
.page-section-calculator.gradient-bg::before {
  display: none;
}
.page-section-calculator.gradient-bg::after {
  content: '';
  display: block;
  height: 3rem;
}
.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 0 var(--single-space);
}
.calc-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-bottom: 1em;
}
.calc-field-group {
  display: flex;
  flex-direction: column;
  gap: .5em;
  text-align: left;
}
.calc-label {
  display: none;
  font-family: var(--body-font);
  font-size: .9em;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ok-gray);
}
.calc-input {
  font-family: var(--body-font);
  font-size: 19.2px;
  font-size: 1.2em;
  color: var(--dark-gray);
  border: 1px solid var(--dark-rose);
  border-radius: 0;
  padding: .6em .75em;
  width: 100%;
  box-sizing: border-box;
  background: var(--white);
  -moz-appearance: textfield;
}
.calc-input::-webkit-inner-spin-button,
.calc-input::-webkit-outer-spin-button {
  opacity: 1;
}
.calc-submit {
  width: 100%;
  cursor: pointer;
}
.calc-result {
  padding: 1em 1em 2em;
}
.calc-result-text {
  font-family: var(--body-font);
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--ok-gray);
  margin-bottom: .25em;
}
.calc-result-number-wrap {
  position: relative;
  width: fit-content;
  margin: .25em auto;
}
.calc-result-graphic {
  display: block;
  width: min(90vw, 60rem);
  height: auto;
}
.calc-result-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: var(--display-font);
  font-weight: 400;
  font-synthesis: none;
  font-optical-sizing: none;
  -webkit-font-smoothing: antialiased;
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 1;
  color: var(--white);
  margin: 0;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.7);
}
.calc-result-label {
  font-family: var(--body-font);
  font-size: 1.5em;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--dark-gray);
  margin-bottom: .5em;
}
.calc-result-detail {
  font-family: var(--body-font);
  font-size: .9em;
  color: var(--ok-gray);
  margin: 0;
}
.calc-error {
  margin-top: 1em;
  font-family: var(--body-font);
  font-size: .9em;
  color: var(--dark-rose);
}
@media only screen and (min-width: 56.25em) {
  .page-section-calculator.gradient-bg::after {
    height: 4rem;
  }
  .calc-controls {
    flex-direction: row;
    align-items: flex-end;
    gap: 1.5em;
    padding: 0;
  }
  .calc-fields {
    flex-direction: row;
    flex: 1 1 auto;
    margin-bottom: 0;
  }
  .calc-field-group {
    flex: 1 1 0;
  }
  .calc-submit {
    width: auto;
    min-width: 14em;
    /* margin-bottom: .15em; */
  }
}


/* tfe agegate */
.tfe-agegate {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 1600;
  background: rgba(0, 0, 0, 0.5);
  background-image: url('/wp-content/uploads/2026/05/AgeGate-Hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tfe-agegate-dialog {
  font-size: 1rem;
  background: transparent;
  text-align: center;
}
.tfe-agegate-image {
  width: 75%;
  margin: auto;
}
.tfe-agegate p {
  font-size: 1.5em;
  line-height: 1.4;
  color: var(--white);
  font-family: var(--body-font);
  font-weight: 300;
  max-width: 30em;
  margin-left: auto;
  margin-right: auto;
}
.tfe-enter {
  padding: var(--single-space);
  color: var(--white);
  background: var(--black);
  border: var(--black) 2px solid;
  margin: auto;
  cursor: pointer;
}
.tfe-enter:hover {
  padding: var(--single-space);
  color: var(--black);
  background: var(--white);
}
@media only screen and (min-width: 40em) {
  .tfe-agegate-image {
    width: 50%;
  }
}


/* tfe legal styles */
.tfelegal {
  max-width: 50em;
  margin: 3em auto;
}
.tfelegal h2 {
  color: var(--dark-blue);
  letter-spacing: .05em;
}
.content .tfelegal {
  margin: 2em 1em;
}
.tfelegal a {
  color: var(--dark-rose);
  text-decoration: none;
  border-bottom: 1px solid var(--dark-rose);
  transition: all 0.3s ease-in-out;
}
.tfelegal a:hover {
  color: var(--dark-rose);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--dark-rose);
  transition: all 0.3s ease-in-out;
}
.tfelegal ul.bullet li {
  margin-left: 1.25em;
}
.tfelegal ol.number li,
.tfelegal ol.lowercase li,
.tfelegal ol.uppercase li,
.tfelegal ol[type='a'] li,
.tfelegal ol[type='A'] li {
  margin-left: 1.5em;
}
.tfelegal ul.bullet li {
  list-style: disc;
}
.tfelegal ol.number {
  list-style: decimal;
}
.tfelegal ol.lowercase,
.tfelegal ol[type='a'] {
  list-style: lower-alpha;
}
.tfelegal ol.uppercase,
.tfelegal ol[type='A'] {
  list-style: upper-alpha;
}
.tfelegal ol li::marker {
  font-family: var(--body-font);
  font-weight: 400;
}
@media only screen and (min-width: 56.25em){
  .content .tfelegal {
    margin: 2em auto;
  }
}

/* wines pages */

/* wines pages mobile */
.wines-page-content {
  /* padding: 3em 3em; */
  /* width: var(--max-width); */
  padding-top: 2em;
  display: block;
}
.wines-content-overlay {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  background-color: var(--transparent-overlay);
  padding: 1em 1em;
  margin: 0 auto 1em auto;
}
.wines-wrapper {
  flex-direction: row;
  justify-content: space-around;
}
.wines-wrapper > div:last-of-type .wine-card-content { 
  border-right: none; 
}
.wine-card {
  flex: 1 0 40%;
  margin: 0 2em;
}
.wine-card-content {
  text-align: center;
  margin-bottom: 4em;
  /* display: flex; */
  /* flex-direction: column;*/
}
.wine-card-header {
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: space-between; */
  align-items: center;
  margin-bottom: 1em;
}
.wine-title {
  font-family: var(--light-serif-font);
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1em;
  text-align: center;
}
.wine-subtitle {
  font-family: var(--regular-block-font);
  font-size: 1.5em;
  text-transform: capitalize;
  letter-spacing: 3px;
  margin-bottom: 1em;
  text-align: center;
}
.wine-card-bottle {
  max-width: 13em;
  margin: 1cqw auto 0;
}
.wine-card-details {
  /* display: flex; */
  /* flex-direction: column; */
  /* align-items: center; */
  margin: 0 auto;
  line-height: 1.4;
  font-size: 1.125rem;
  text-align: center;
}
.wine-links {
  text-align: center;
  margin-top: 1em;
  white-space: nowrap;
}
.wine-links a {
  font-family: var(--bold-block-font);
  color: var(--white);
  margin: 0 auto;
}
.wine-links a:hover {
  color: var(--highlight);
  background-color: var(--white);
}

/* single wine page */
.single-wine-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
.wine-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
.wine-details-image {
  position: relative;
  margin: 1em auto;
}
.wine-details-video {
  margin-top: 2em;
  margin-bottom: .5em;
  width: 100%;
}

/* wines pages desktop */
@media screen and (min-width: 65em) {
  .wines-page-content {
    width: 100%;
    padding: 2em 0;
    display: block;
  }
  .wines-content-overlay {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    background-color: var(--transparent-overlay);
    padding: 1em 1em;
    margin: 0 auto 2em auto;
  }
  .wines-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 2em 0 0 0;
  }
  .wine-card {
    margin-bottom: 3em;
  }
  .wine-card-content {
    /* display: flex; */
    /* flex-direction: column; */
    text-align: center;
    margin-bottom: 2em;
  }
  .wine-card-bottle {
    margin: 0 auto 1em;
  }
  .wine-card-details {
      margin: 0 auto;
      line-height: 1.4;
      font-size: 1.125rem;
  }
  .wine-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1em;
  }
  .wine-details-image {
    position: relative;
    min-width: 30%;
    max-width: 30%;
    margin: 0 auto;
  }
  .wine-details-video {
    margin: 1em 2em;
    width: 70%;
  }
}


/* food pairings pages */
.food-pairings-page {}
.food-pairings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  margin-bottom: var(--double-space);
}
.food-pairing-card {
  display: flex;
  flex-direction: column;
}
.food-pairing-card-image {
  overflow: hidden;
}
.food-pairing-card-image img {
  display: block;
  width: 100%;
  height: 18em;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.food-pairing-card-image-link:hover .food-pairing-card-image img {
  transform: scale(1.04);
}
.food-pairing-card-content {
  padding: 1em 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.food-pairing-card-title {
  font-family: var(--body-font);
  color: var(--dark-rose);
  font-weight: 500;
  font-size: 1.5em;
  text-transform: uppercase;
  margin: 0 0 .5em;
  line-height: 1.2;
}
.food-pairing-card-title a {
  text-decoration: none;
  color: inherit;
}
.food-pairing-card-title a:hover {
  color: var(--mid-rose);
}
.food-pairing-card-excerpt p {
  font-size: .9em;
  line-height: 1.4;
  margin-bottom: .75em;
}
.food-pairing-card-content .cta {
  margin-top: auto;
  align-self: flex-start;
}
@media only screen and (min-width: 37.5em) {
  .food-pairings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 75em) {
  .food-pairings-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* food pairing single */
.food-pairing-single,
.cocktail-single {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--single-space);
}
.food-pairing-article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.food-pairing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.food-pairing-back-link-box,
.cocktail-back-link-box {
  padding: var(--single-space) 0;
}
.back-link {
  font-family: var(--body-font);
  font-size: .9em;
  text-decoration: none;
  color: var(--dark-rose);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.back-link:hover {
  color: var(--mid-gray);
}
.food-pairing-header,
.cocktail-header {
  margin-bottom: 1.5em;
}
.food-pairing-header {
  grid-column: 1 / -1;
}
.food-pairing-title,
.cocktail-title {
  font-family: var(--body-font);
  color: var(--dark-rose);
  font-weight: 500;
  font-size: 2.5em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: .25em;
}
.food-pairing-wine-pairing {
  font-family: var(--body-font);
  font-size: 1em;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0;
}
.food-pairing-image img,
.cocktail-image img {
  display: block;
  width: 100%;
  max-height: 36em;
  object-fit: cover;
  margin-bottom: .5em;
}
.food-pairing-image {
  min-width: 0;
}
.food-pairing-content {
  min-width: 0;
}
.cocktail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.cocktail-image,
.cocktail-content {
  min-width: 0;
}
.food-pairing-ingredients,
.cocktail-ingredients {
  margin-bottom: 2em;
}
.food-pairing-wine-link,
.cocktail-wine-link {
  margin-top: 2em;
}
@media only screen and (min-width: 56em) {
  .food-pairing-single,
  .cocktail-single {
    padding: var(--double-space);
  }
  .cocktail-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
  }
  .food-pairing-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
  }
  .cocktail-image img {
    margin-bottom: 0;
  }
  .food-pairing-image img {
    margin-bottom: 0;
  }
  .food-pairing-image img,
  .cocktail-image img {
    margin-bottom: 2em;
  }
}

/* cocktails pages */
.cocktails-page {}
.cocktail-tab-buttons {
  margin: 0 0 2em 0;
  text-align: center;
}
.cocktail-tab-content {
  display: none;
}
.cocktail-tab-content.active {
  display: block;
}
.cocktails-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  margin: auto 1em;
}
.cocktail-card {
  display: flex;
  flex-direction: column;
}
.cocktail-card-image {
  overflow: hidden;
}
.cocktail-card-image img {
  display: block;
  width: 100%;
  height: 18em;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.cocktail-card-image-link:hover .cocktail-card-image img {
  transform: scale(1.04);
}
.cocktail-card-content {
  padding: 1em 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cocktail-card-category {
  font-family: var(--body-font);
  font-size: .8em;
  color: var(--ok-gray);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 .4em;
}
.cocktail-card-title {
  font-family: var(--body-font);
  color: var(--dark-rose);
  font-weight: 500;
  font-size: 1.5em;
  text-transform: uppercase;
  margin: 0 0 .5em;
  line-height: 1.2;
}
.cocktail-card-title a {
  text-decoration: none;
  color: inherit;
}
.cocktail-card-title a:hover {
  color: var(--mid-rose);
}
.cocktail-card-excerpt p {
  font-size: .9em;
  line-height: 1.4;
  margin-bottom: 1.5em;
}
.cocktail-card-content .cta {
  margin-top: auto;
  align-self: flex-start;
}
.cocktails-post-sections > section:last-child {
  padding: var(--single-space);
}
@media only screen and (min-width: 56.25em) {
  .cocktail-tab-buttons {
    margin: 2em 0 2em 0;
  }
  .cocktails-post-sections > section:last-child {
    padding: var(--double-space);
  }
}
.cocktails-post-sections > section:last-child .page-section-custom-content > *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 37.5em) {
  .cocktails-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 56.25em) {
  .cocktails-grid {
    margin: 0 0 2em 0;
  }
}
@media only screen and (min-width: 75em) {
  .cocktails-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* cocktail single */
.cocktail-category-label {
  font-family: var(--body-font);
  font-size: .8em;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 .5em;
}
.cocktail-category-label a {
  color: var(--ok-gray);
  text-decoration: none;
}
.cocktail-category-label a:hover {
  color: var(--dark-rose);
}


/* special page styles */

/* 404 page */
.hero-text-error.h1 {
  color: var(--dark-gray);
}
.error-buttons-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  margin: 0 auto;
}
.button-error {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 1em;
  padding: var(--single-space);
  letter-spacing: .2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
  cursor: pointer;
  margin: 1em;
  background-color: var(--white);
  color: var(--dark-brown);
  border-style: solid;
  border-width: 2px;
  border-color: var(--dark-brown);
  margin-top: 2em;
}
.button-error:active,
.button-error:focus,  
.button-error:hover {
  background-color: var(--dark-gray);
  color: var(--white);
  border-color: var(--dark-gray);
}
.article-wrapper .error-page {
  /*margin: 3em;
  margin-top: 15em;*/
}
.error-box {  
  font-family: var(--body-font);
  font-weight: 400;
  margin-top: 13em;
  text-align: center;
  padding: 2em;
  border-style: solid;
  border-width: 2px;
  border-color: var(--highlight);
  min-width: 14em;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10em;
  max-width: 40em;
  background-color: rgba(255, 255, 255, 0.9);
}
.error-box h2 {
  font-family: var(--body-font);
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 1.3em;
  letter-spacing: 0;
}

/* contact page and form */
.contact-box {  
  font-family: var(--book-font);
  font-weight: 400;
  margin-top: 2em;
  text-align: left;
  padding: 2em;
  border-style: solid;
  border-width: 2px;
  border-color: var(--gray-blue);
  min-width: 14em;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
  max-width: 50em;
}
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.contact-column.one_half{
	padding-right: 10px;
}
.contact-page-header {
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2rem;
  letter-spacing: .15em;
  text-align: center;
  min-height: 2em;
  margin-bottom: 0; 
}
.contact-page-title {
  margin-top: 0;
  margin-bottom: 0;
}
.contact-info-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 1em;
  line-height: 1.5;
  margin: 2em auto;
}
.contact-info-box p {
  font-family: var(--body-font);
  color: var(--dark-gray);
  font-size: 1em;
  line-height: 1.5;
  margin: .5em auto;
}
.contact-info-box a {
  color: var(--dark-rose);
  text-decoration: none;
  border-bottom: 1px solid var(--dark-rose);
  align-self: center;
  transition: all 0.3s ease-in-out;
}
.contact-info-box a:hover {
  color: var(--dark-rose);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--dark-rose);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 37.5em) {
  .contact-box { 
    max-width: 95%;
  }
  .contact-container {
    flex-direction: column;
    gap: 0em;
  }
  .contact-column.one_half{
    padding-right: 0px;
  }
}

/* gravity forms styles */
.gform_title {
  margin: 0 auto 1em;
  text-align: center;
}
.gform_description {
  display: none;
}
.gform_wrapper .gform_footer input[type="submit"] {
  background-color: var(--white)!important;
  color: var(--dark-gray) !important; 
  text-transform: uppercase !important;
  font-family: var(--book-font);
  font-size: 1em !important;
  border: 2px solid var(--dark-gray) !important;
  padding: var(--single-space) !important;
  cursor: pointer;
}
.gform_wrapper .gform_footer input[type="submit"]:hover {
  background-color: var(--dark-gray) !important; 
  color: #ffffff !important;
}
form#gform_1 .gform_fields {
  row-gap: 1em;
}
.gform-theme--foundation .gfield .ginput_password.large, 
.gform-theme--foundation .gfield input.large, 
.gform-theme--foundation .gfield select.large {
  font-family: var(--book-font);
  color: var(--dark-gray) !important;
  font-weight: 400;
  border: 1px solid var(--mid-gray) !important;
  line-height: 2em;
  padding: 10px;
  font-size: 1em;
  text-align: left !important;
}
.gform-theme--framework .gfield_list_group_item::before, 
.gform-theme--framework .gform-field-label:where(:not([class*=gform-field-label--type-])) {
  font-family: var(--book-font);
  color: var(--medium-blue) !important;
  text-transform: uppercase !important;
  color: var(--medium-blue) !important;
  font-weight: 400;
}
.gform-theme--foundation .gfield textarea.medium {
  text-align: left !important;
}
body .gform_confirmation_message {
  margin-top: 0 !important;
  padding-top: 0 !important;
  color: var(--dark-blue);
}
.gform_confirmation_wrapper  {
  padding: 1em !important;
  max-width: 50em;
  margin: 2em auto 1em !important;
}

/* site map */
.sitemap-page {
  max-width: var(--narrow-max-width);
  text-align: center;
  font-size: 19.2px;
  font-size: 1.2em;
  line-height: 1;
  margin: 0 auto;
}
.sitemap-page-title {
  margin-top: 0;
  margin-right: 0;
  font-family: var(--display-font);
  font-size: 2.5em;
  font-weight: 400;
  font-synthesis: none;
  padding-bottom: 0;
  text-align: center;
}
.sitemap-box {  
  display: flex;
  flex-direction: column;
  font-family: var(--body-font);
  font-weight: 400;
  text-align: center;
  padding: 1em;
  min-width: 14em;
  max-width: 70em;
  margin-left: auto;
  margin-right: auto;
}
.sitemap-box a {
  color: var(--dark-gray);
  font-size: 1.5em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--dark-gray);
  padding-bottom: 1px;
  transition: all 0.3s ease-in-out;
}
.sitemap-box a:hover {
  color: var(--dark-rose);
  border-bottom: 1px solid var(--dark-rose);
  padding-bottom: 4px;
  transition: all 0.3s ease-in-out;
}
.sitemap-box ul ul {
  padding-left: 0; 
  font-size: 1em;
}
.sitemap-box ul ul a {
  font-size: 1em;
}
.sitemap-box li {
  padding-top: 1em;
}
@media screen and (min-width: 56em) {
  .sitemap-page {
    max-width: var(--narrow-max-width);
    text-align: center;
    font-size: 19.2px;
    font-size: 1.2em;
    line-height: 2;
    margin: 3em auto 5em auto;
  }
  .sitemap-page-title {
    font-size: 3em;
    padding-bottom: 1em;
  }
  .sitemap-box { 
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }
  .sitemap-box ul ul {
    padding-left: 30px; 
    font-size: .8em;
  }
  .sitemap-page-title {
    margin-right: 2em;
    text-align: left;
    white-space: nowrap;
  }
}

/* faqs pages */
.wine-faqs {
  margin: 3em 1em;
}
.page-faqs .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 50em;
  margin: 2em auto;
}
.page-faqs a {
  color: var(--dark-brown);
  text-decoration: none;
  font-family: var(--body-font-bold);
  font-weight: 700;
  border-bottom: 1px solid var(--dark-brown);
  transition: all 0.3s ease-in-out;
}
.page-faqs a:focus,
.page-faqs a:hover {
  color: var(--highlight);
  border-bottom: 1px solid var(--highlight);
  padding-bottom: 3px;
  transition: all 0.3s ease-in-out;
}
.page-faqs h1 {
  font-family: var(--display-font);
  font-size: 3em;
  font-weight: 400;
  font-synthesis: none;
  text-transform: none;
  margin-bottom: var(--single-space);
}
.section-faqs h2 {
  text-align: left;
  font-family: var(--display-font);
  font-size: 2.5em;
  font-weight: 400;
  font-synthesis: none;
  text-transform: none;
  margin-bottom: var(--single-space);
}
.section-faqs .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: var(--narrow-max-width);
  margin: 0 1em;
}
.faq-item {
  position: relative;
  margin-bottom: var(--single-space);
}
.faq-item + .faq-item {
  border-top: 1px solid var(--dark-rose);
  padding-top: var(--single-space);
}
.faq-chk {
  display: none;
}
.faq-checkbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: var(--half-space);
}
.faq-icon {
  width: .75em;
  height: .75em;
  margin: -.15em 0 0 var(--half-space);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(0deg);
  transition: transform .5s ease-in-out;
}
.faq-icon .bar {
  width: .75em;
  height: 2px;
  background-color: var(--dark-gray);
  position: relative;
}
.faq-icon .bar:nth-of-type(2) {
  position: absolute;
  left: 0;
  transform: rotate(90deg);
  transition: opacity .25s ease-in-out;
}
.faq-chk:checked ~ .faq-checkbox .faq-icon {
  transform: rotate(180deg);
  transition: transform .5s ease-in-out;
}
.faq-chk:checked ~ .faq-checkbox .bar:nth-of-type(2) {
  opacity: 0;
}
.faq-question {
  margin-top: 0;
  font-size: 1.25em;
  margin-right: 1em;
  text-align: left;
  font-weight: 500;
  text-transform: uppercase;
}
.faq-answer {
  height: auto;
  max-height: 0;
  overflow: hidden;
  text-align: left;
  margin-bottom: var(--mid-space);
}
.faq-answer *:last-child{
  margin-bottom: 0;
}
.faq-chk:checked ~ .faq-answer {
  max-height: 40em;
}
@media (prefers-reduced-motion: no-preference) {
  .faq-chk .carat {
    transition: transform .5s ease-in-out;
  }
  .faq-answer {
    transition: max-height 1s ease-in-out;
  }
}
@media only screen and (min-width: 37.5em) {
  .faq-chk:checked ~ .faq-answer {
    max-height: 15em;
  }
}
@media only screen and (min-width: 56.25em) {
  .wine-faqs {
    margin: 3em auto;
  }
  .section-faqs .content {
    margin: 0 auto;
  }
  .page-faqs .content {
    text-align: left;
  }
  .page-faqs h2 {
    margin-bottom: var(--triple-space);
  }
  .faq-checkbox {
    justify-content: space-between;
  }
  .faq-icon {
    width: 1em;
    height: 1em;
    margin-top: .1em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: rotate(0deg);
    transition: transform .5s ease-in-out;
  }
  .faq-icon .bar {
    width: 1em;
  } 
  .faq-chk:checked ~ .faq-answer {
    max-height: 20em;
  }
}

/* sip with us locations pages */
.page-section-locale {
  text-align: center;
  margin-top: 1em;
}
.page-section-locale .page-section-headline {
  font-family: var(--body-font);
  color: var(--dark-rose);
  font-weight: 500;
  font-size: 40px;
  font-size: 2.5em;
  letter-spacing: 0;
  text-transform: uppercase;
  padding-bottom: .5em;  
  line-height: 1;
  max-width: 10em;
  margin: 0 auto;
}
.page-section-locale .locale-post-headline {
  font-family: var(--body-font);
  color: var(--dark-rose);
  font-weight: 500;
  font-size: 40px;
  font-size: 2.5em;
  letter-spacing: 0;
  text-transform: uppercase;
  padding-bottom: .5em;
  line-height: 1;
  max-width: 10em;
  text-align: left;
  margin: 0;
}
.page-section-locale h3 {
  font-family: var(--body-font);
  color: var(--dark-gray);
  font-size: 1.5em;
  letter-spacing: .05em;
  margin-bottom: var(--half-space);
}
.location-subhead h4 {
  font-family: var(--body-font);
  color: var(--dark-gray);
  font-size: 1.8em;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .05em;
  margin-bottom: var(--single-space);
}
.location-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin: 0 0 1em 0;
  justify-content: center;
}
.location-tab-btn {
  padding: .5em;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
  font-family: var(--body-font);
  color: var(--dark-gray);
  background: transparent;
}
.location-tab-btn.hover {
  padding: 1em 2em;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-bottom: 2px;
  width: fit-content;
  color: var(--dark-rose);
  transition: all .3s ease-in-out;
}
.location-tab-btn.active {
  padding: .5em;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  /*padding-bottom: 2px;*/
  width: fit-content;
  color: var(--dark-rose);
  transition: all .3s ease-in-out;
}
.location-tab-content {
  display: none;
  padding: 0;
}
.location-tab-content.active {
  display: block;
}
.location-tab-contents {
  background-color: var(--light-rose);
  padding: 2em 1em;
  width: 100%;
  margin-left:0;
  transform: translateX(0);
  box-sizing: border-box;
}
.location-description {
  padding: 0 0 1em;
}
.location-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
  justify-content: center;
}
.location-col-left {
  flex: 1 1 0;
  min-width: 0;
  text-align: left;
}
.location-col-right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}
.location-col-right img {
  max-width: 100%;
  height: auto;
  display: block;
}
.locale-content-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 2rem auto 0;
}
.locale-content-block {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1em 0 0;
  border-radius: 8px;
}
.locale-content-block img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.block-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
.block-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s ease-out;
}
.page-section-locale:not(.page-section-pairings) .block-image-wrapper:hover img {
  transform: scale(1.05);
  opacity: .9;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s ease-out;
}
.page-section-pairings .block-image-wrapper:hover img {
  transform: none;
  opacity: 1;
}
.block-image-link {
  display: block;
  overflow: hidden;
}
.block-subhead, .block-heading, .block-description, .block-cta {
  margin-bottom: 0.75rem;
}
.locale-content-block .cta {
  margin-top: auto;
}
.locale-content-blocks .block-prehead {
  font-family: var(--body-font);
  color: var(--ok-gray);
  font-size: 1rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: var(--half-space);
}
.locale-content-blocks .block-heading {
  font-family: var(--body-font);
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 1.75em;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: .5em;
  text-align: left;
  line-height: 1.2;
}
.locale-content-blocks p {
  font-family: var(--body-font);
  color: var(--dark-gray);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  text-align: left;
}
@media only screen and (min-width: 56.25em) {
  .page-section-locale {
    margin-top: 2em;
  }
  .page-section-locale .page-section-headline {
    font-size: 56px;
    font-size: 3.5em;
    margin: 0 auto;
  }
  .page-section-locale h3 {
    margin-bottom: var(--double-space);
  }
  .page-section-locale .locale-post-headline {
    font-size: 56px;
    font-size: 3.5em;
  }
  .location-description {
    padding: 0 0 2em;
  }
  .location-tab-buttons {
    flex-wrap: nowrap;
    margin: 0 0 1em 0;
  }
  .location-tab-btn {
    padding: 1em 2em;
  }
  .location-tab-btn.active {
    padding: 1em 2em;
  }
  .location-tab-contents {
    padding: 2rem;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .location-tab-content {
    padding: 2em;
  }
  .location-columns {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    max-width: var(--max-width);
    margin: 0 auto;
    justify-content: center;
  }
  .locale-content-blocks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .locale-content-block {
    padding: 3em 0 0;
  }
}

/* graphic rectangle decor */
.graphic-with-bg {
  position: relative;
  display: table;
  margin-left: auto;
  margin-right: auto;
  line-height: 0;
  margin-bottom: 3em;
  max-width: 46em;
}
/*.graphic-with-bg::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--light-rose);
  width: 85%;
  height: 75%;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30em;
}*/
.graphic-with-bg img {
  display: block;
  position: relative;
  z-index: 1;
  height: auto;
}


/* horizontal scroll section */

/* outer section — JS sets height to create vertical scroll room */
.page-section-hscroll {
  position: relative;
}

/* sticky panel — locks to viewport while parent scrolls past */
.hscroll-pin {
  height: 22em;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* optional section headline inside the pin */
.hscroll-header {
  padding: 1.5em 2em .75em;
  flex-shrink: 0;
}
.hscroll-headline {
  font-family: var(--body-font);
  font-size: 2em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
}

/* track — translated horizontally by JS, no native scroll */
.hscroll-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex: 1;
  will-change: transform;
}

/* individual items */
.hscroll-item {
  flex-shrink: 0;
  width: 70vw;
  display: flex;
  flex-direction: column;
  margin: 1em;
  overflow: hidden;
}
.hscroll-item:first-child {
  margin-left: 2em;
}
.hscroll-item:last-child {
  margin-right: 2em;
}

/* image fills most of the item height */
.hscroll-item-image {
  flex: 1;
  overflow: hidden;
}
.hscroll-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* text below the image */
.hscroll-item-body {
  flex-shrink: 0;
  padding: .75em .5em .75em;
}
.hscroll-item-headline {
  font-family: var(--display-font);
  color: var(--dark-rose);
  font-size: 4em;
  font-weight: 400;
  font-synthesis: none;
  text-transform: uppercase;
  line-height: .9;
  margin: 0 0 .35em;
  text-align: center;
}
.hscroll-item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hscroll-item-content p {
  font-size: .9em;
  line-height: 1.4;
  margin-bottom: .5em;
  text-align: center;
  max-width: 23em;
}
.hscroll-item-body .cta {
  margin-top: .25em;
  display: inline-block;
}

/* background color variants */
.page-section-hscroll.dark-bg  { background-color: var(--dark-gray); color: var(--white); }
.page-section-hscroll.light-bg { background-color: var(--light-gray-v1); }
.page-section-hscroll.rose-bg  { background-color: var(--light-rose); }
/* Mobile: disable horizontal scroll, stack items vertically */
@media only screen and (max-width: 55.99em) {
  .hscroll-pin {
    height: auto;
    overflow: visible;
  }
  .hscroll-track {
    flex-direction: column;
    transform: none !important;
  }
  .hscroll-item {
    width: 100%;
    margin: 0 0 var(--double-space);
  }
  .hscroll-item:first-child {
    margin-left: 0;
  }
  .hscroll-item:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
  .hscroll-item-image {
    height: 60vw;
    max-height: 22em;
  }
  .hscroll-item-headline {
    font-size: 2.5em;
  }
}
@media only screen and (min-width: 56em) {
  .hscroll-item {
    width: 55vw;
  }
}
@media only screen and (min-width: 75em) {
  .hscroll-item {
    width: 36vw;
  }
}


/* extras */

/* reduced motion preference */

@media screen and (prefers-reduced-motion: reduce) { 
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  body {
    animation: none !important;
  }
  .page-section-wrapper {
    padding-top: 7em;
  }
  .video-wrapper {
    display: none;
  }
  .hero-video-bg {
    display: none;
  }
  .header-logo-link:focus, .header-logo-link:hover {
    transform: scale(1);
    transition: none;
  }
  .header .menu a {
    transform: scale(1);
    transition: none;
  }
  .social-icons a:hover {
    transform: scale(1);
    transition: none;
  }
  a.social-icon:hover {
    transform: scale(1);
    transition: none;
  }
  #footer > div > div.footer-logo-link > a > div > img {
    transform: scale(1);
    transition: none;
  }
  #footer > div > div.footer-logo-link > a:hover > div > img {
    transform: scale(1);
    transition: none;
  }
}

/* additional no-js styles */

.no-js .location-tab-buttons,
.no-js .cocktail-tab-buttons {
  display: none;
}
.no-js .hero-video-bg {
  display: none;
}
.no-js .location-tab-content,
.no-js .cocktail-tab-content {
  display: block;
}
.no-js .location-tab-content + .location-tab-content,
.no-js .cocktail-tab-content + .cocktail-tab-content {
  margin-top: var(--double-space);
}
.no-js .hscroll-pin {
  height: auto;
  overflow: visible;
  display: block;
}
.no-js .hscroll-track {
  display: block;
  transform: none !important;
}
.no-js .hscroll-item {
  width: auto;
  margin: 0 0 var(--double-space);
}
.no-js .hscroll-item:first-child,
.no-js .hscroll-item:last-child {
  margin-left: 0;
  margin-right: 0;
}


/* TBD */
@media only screen and (min-width: 28em) {
 
}
@media only screen and (min-width: 56em) {

}
@media only screen and (min-width: 75em) {
  
}
@media only screen and (min-width: 94em) {
  
}
