@charset "UTF-8";
/*-----------------------------------------------------------------------------------
	Theme file
----------------------------------------------------------------------------------- */
/*-----------------------------------------------------------------------------------

	 Global SCSS INDEX

	01. Colours
	02. Mixins
		- Full BG
		- Transition
	03. Fonts + Links
	04. Buttons
	05. Icons
	06. Mailchimp + Modals
	07. Media Queries

-----------------------------------------------------------------------------------*/

/* ============================================================================
   BWGR-4 — Design tokens + responsive foundations
   ----------------------------------------------------------------------------
   Breakpoints: 375 / 768 / 1024 / 1440 / 1920–2560 (container locks at 1920;
   full-bleed sections extend beyond). Spacing scale is 8px-based.
   ============================================================================ */
:root {
  /* Container */
  --container-max: 1920px;

  /* Breakpoint tokens — kept for documentation; @media queries inline below */
  --bp-mobile: 375px;
  --bp-tablet: 768px;
  --bp-desktop-sm: 1024px;
  --bp-desktop: 1440px;
  --bp-desktop-xl: 1920px;

  /* Spacing scale (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 80px;
  --space-9: 96px;
  --space-10: 128px;

  /* Brand colours */
  --color-bg: #151515;
  --color-bg-alt: #1A1A1A;
  --color-bg-warm: #403923;
  --color-bg-cream: #e8e2cf;
  --color-cream: #e8e2cf;
  --color-gold: #b6a263;
  --color-border: #2f2f2f;
  --color-surface: #252525;
}

/* Container — fluid up to 1920, locks beyond */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) { .container { padding-inline: 32px; } }
@media (min-width: 1024px) { .container { padding-inline: 48px; } }
@media (min-width: 1440px) { .container { padding-inline: 24px; } }
@media (min-width: 1921px) { .container { padding-inline: 0; } }

/* Full-bleed: break out of the container, edge-to-edge of viewport */
.full-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Type scale utility classes — apply to any tag, decouples visual size from
   semantic level (so we can keep one <h1> per page while honouring Figma). */
.text-h1 {
  font-family: "Suisse Black";
  font-size: 56px;
  line-height: 52px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.text-h1--hero { font-size: 64px; } /* hero-only override on 375px (per Figma) */
@media (min-width: 768px) {
  .text-h1 { font-size: 82px; line-height: 68px; }
}
@media (min-width: 1024px) {
  .text-h1 { font-size: 110px; line-height: 90px; }
}
@media (min-width: 1440px) {
  .text-h1 { font-size: 164px; line-height: 132px; }
}
@media (min-width: 1920px) {
  .text-h1 { font-size: 176px; line-height: 142px; }
}

.text-h2 {
  font-family: "Suisse Black";
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) { .text-h2 { font-size: 70px; line-height: 58px; } }
@media (min-width: 1024px) { .text-h2 { font-size: 82px; line-height: 70px; } }
@media (min-width: 1440px) { .text-h2 { font-size: 96px; line-height: 77px; } }
@media (min-width: 1920px) { .text-h2 { font-size: 110px; line-height: 94px; } }

.text-h3 {
  font-family: "Suisse Bold";
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0;
}
@media (min-width: 768px) { .text-h3 { font-size: 22px; } }
@media (min-width: 1024px) { .text-h3 { font-size: 30px; line-height: 31px; } }
@media (min-width: 1440px) { .text-h3 { font-size: 40px; line-height: 36px; } }
@media (min-width: 1920px) { .text-h3 { font-size: 44px; line-height: 38px; } }

.text-h4 {
  font-family: "Suisse Bold";
  font-size: 20px;
  line-height: 1.3;
  margin: 0;
}
@media (min-width: 768px) { .text-h4 { font-size: 26px; } }
@media (min-width: 1024px) { .text-h4 { font-size: 20px; } }
@media (min-width: 1440px) { .text-h4 { font-size: 30px; } }
@media (min-width: 1920px) { .text-h4 { font-size: 32px; } }

.text-body-lg {
  font-family: "Suisse Reg";
  font-size: 15px;
  line-height: 1.4;
}
@media (min-width: 768px) { .text-body-lg { font-size: 22px; line-height: 31px; } }
@media (min-width: 1024px) { .text-body-lg { font-size: 22px; line-height: 31px; } }
@media (min-width: 1440px) { .text-body-lg { font-size: 20px; line-height: 28px; letter-spacing: 0; } }
@media (min-width: 1920px) { .text-body-lg { font-size: 20px; line-height: 42px; letter-spacing: 0; } }

.text-body-sm {
  font-family: "Suisse Reg";
  font-size: 15px;
  line-height: 1.4;
}
@media (min-width: 1440px) { .text-body-sm { font-size: 17px; } }
@media (min-width: 1920px) { .text-body-sm { font-size: 22px; line-height: 32px; letter-spacing: 0; } }

.text-cta-lg {
  font-family: "Suisse Bold";
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) { .text-cta-lg { font-size: 18px; } }
@media (min-width: 1024px) { .text-cta-lg { font-size: 20px; } }
@media (min-width: 1440px) { .text-cta-lg { font-size: 24px; } }
@media (min-width: 1920px) { .text-cta-lg { font-size: 26px; } }
/* ============================================================================
   end BWGR-4 tokens
   ============================================================================ */

body {
  font-size: 16px;
}

@font-face {
  font-family: "Suisse Black";
  src: url("../fonts/SuisseIntl-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Bold";
  src: url("../fonts/SuisseIntl-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Med";
  src: url("../fonts/SuisseIntl-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Reg";
  src: url("../fonts/SuisseIntl-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Lgt";
  src: url("../fonts/SuisseIntl-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Works";
  src: url("../fonts/SuisseWorks-RegularItalic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Works";
  src: url("../fonts/Suisse-WorksBoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Mono";
  src: url("../fonts/SuisseInt-l-MonoRegular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
h1 {
  font-family: "Suisse Black";
  font-size: 4.875rem;
  line-height: 90%;
  color: #e8e2cf;
  text-transform: uppercase;
}

h2 {
  font-family: "Suisse Black";
  font-size: 2.25rem;
  line-height: 90%;
  text-transform: uppercase;
  color: #e8e2cf;
}

h3 {
  font-family: "Suisse Black";
  text-transform: uppercase;
  color: #151515;
  color: #e8e2cf;
  font-size: 1.875rem;
  margin-bottom: 20px;
  line-height: 100%;
}

h4 {
  font-family: "Suisse Black";
  line-height: 100%;
  color: #e8e2cf;
}

p, li {
  ⁨⁨color: #e8e2cf;
  font-family: "Suisse Reg";
  font-size: 1.125rem;
  line-height: 140%;
  font-style: normal;
  font-weight: 400;
}

p {
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
}

ul {
  padding-left: 15px;
}

a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: #e8e2cf;
}

a:hover {
  color: #b6a263;
}

button {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.phone, p.phone {
  text-decoration: underline !important;
}

.link, .link-blk, .stack {
  display: block;
  position: relative;
  width: fit-content;
  margin: 15px 0;
  text-align: left;
  font-family: "Suisse Black";
  letter-spacing: 0.02rem;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 1.5rem */
  text-transform: uppercase;
}

.link {
  background: url("../images/arrow-right.svg") no-repeat;
  color: #e8e2cf;
  padding: 0 20px 0 0 !important;
  font-size: 1.25rem;
  background-size: 12px auto;
  background-position: center right;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.link:hover {
  font-size: 1.25rem;
}

.link-blk {
  background: url("../images/chevron-right-blk.svg") no-repeat;
  color: #151515;
  font-size: 0.75rem;
  padding: 0 20px 0 0 !important;
  background-size: 8px auto;
  background-position: center right;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.link-blk:hover {
  font-size: 0.75rem;
}

.link:hover, .link-blk:hover {
  color: #b6a263;
  background: url("../images/arrow-right-ngold.svg") no-repeat;
  background-size: 8px auto;
  background-position: center right;
}

.shopify-buy__btn {
  background: transparent !important;
  border: 1px solid #FFF !important;
  font-family: "Suisse Reg" !important;
}

.accordion-button::after {
  content: "\f078"; /* Font Awesome 'chevron-down' icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
  transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg); /* Rotate to 'chevron-up' */
}

.stack, .stack:visited {
  width: 100%;
  color: #e8e2cf;
  font-size: 1.4rem;
  padding: 25px 0;
  margin: 0;
  border-top: 1px solid #e8e2cf;
  border-radius: 0;
  background: url("../images/arrow-dwn.svg") no-repeat;
  background-size: 25px auto;
  background-position: center right 10px;
}

.stack:hover, .stack.active, .stack:focus {
  color: #b6a263;
  border-top: 1px solid #e8e2cf;
  outline: none;
  background: url("../images/arrow-dwn-ngold.svg") no-repeat;
  background-size: 25px auto;
  background-position: center right 10px;
}

.stack:not(.collapsed)::after {
  background-image: url("../arrow-dwn.svg");
  transform: rotate(180deg);
}

.accordion-button::after {
  content: "\f078"; /* Font Awesome 'chevron-down' icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
  transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg); /* Rotate to 'chevron-up' */
}

button.stack:nth-child(4) {
  border-bottom: 1px solid #555555;
}

button {
  border: 0;
  box-shadow: none;
  display: block;
  position: relative;
  width: fit-content;
  background: transparent;
  letter-spacing: 0.02rem;
}

.connect, .buy {
  display: inline-block;
  margin-top: 30px;
  border-radius: 30px;
  font-family: "Suisse Bold";
  color: #e8e2cf;
  font-size: 1rem;
  letter-spacing: 0.02rem;
}

.connect {
  width: fit-content;
  background: url("../images/instagram-cream.svg") no-repeat;
  background-size: 28px auto;
  background-position: center right 20px;
  padding: 15px 60px 15px 25px;
  color: #e8e2cf;
  border: 1px solid #e8e2cf;
  margin-top: 0;
}

.connect:hover {
  background-color: #b6a263;
  border: 1px solid #b6a263;
  color: #403923;
  background-image: url("../images/instagram-olive.svg");
  background-repeat: no-repeat;
  background-size: 28px auto;
  background-position: center right 20px;
}

.buy {
  background: url("../images/buy.svg") no-repeat #b6a263;
  background-size: 28px auto;
  background-position: center right 10px;
  padding: 15px 45px 15px 25px;
  color: #151515;
  border: 1px solid #151515;
}

.buy:hover {
  background-position: center right 10px;
  color: #151515;
  background-color: #e8e2cf;
  border: 1px solid #151515;
}

.buy-int, .dload, .buy-dist {
  border: 1px solid #e8e2cf;
  font-size: 0.95rem;
  color: #e8e2cf;
  border-radius: 28px;
  margin-right: 10px;
  padding: 10px 20px;
}

.buy-int:hover, .buy-dist:hover {
  background-color: #b6a263;
  color: #e8e2cf;
}

.buy-dist {
  display: block;
  width: fit-content;
  margin-top: 10px;
  padding: 8px 15px 6px 15px;
  background-color: transparent;
  text-transform: uppercase;
}

.buy-dist:hover {
  border: 1px solid #b6a263;
}

.dload {
  text-transform: uppercase;
  font-size: 0.875rem;
  background: url("../images/download.svg") no-repeat transparent;
  background-size: 13px auto;
  background-position: center right 13px;
  padding: 8px 35px 6px 15px;
}

.dload:hover {
  color: #000000;
  background: url("../images/download-blk.svg") no-repeat #b6a263;
  background-size: 13px auto;
  background-position: center right 13px;
  padding: 8px 35px 6px 15px;
  border: 1px solid #b6a263;
}

@media (min-width: 576px) {
  h1 {
    font-size: 12vw;
  }
  .stack {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  p, li {
    font-size: 1.25rem;
  }
  .link, .link-blk {
    font-size: 1.5rem;
    background-size: 12px auto;
  }
  .link-blk {
    background-position: center right;
  }
  .link:hover, .link-blk:hover {
    font-size: 1.5rem;
    background-size: 12px auto;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 6.5rem;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 7.5rem;
  }
}
@media (min-width: 1400px) {
  h1 {
    font-size: 10.25rem;
  }
}
/*-----------------------------------------------------------------------------------

	 Global SCSS INDEX

	00. Template Elements
		- Animated Buttons
		- Animated Text
		- Animated Banners
	01. Header
		- Brand
		- Navigation	
	02. Main
		- Banner & Titles
	03. Footer
	04. Age Gate
	05. Login Page
	06. Media Queries

-----------------------------------------------------------------------------------*/
.roll-link {
  display: inline-block;
  overflow: hidden; /* hide overflow for roll effect */
  padding: 0 18px 0 2px !important;
  position: relative;
}

.roll-link span {
  display: block;
  transition: transform 0.4s ease;
}

.roll-link span:last-child {
  position: absolute;
  top: 100%; /* placed below the first word */
  left: 0;
}

.roll-link:hover span:first-child {
  transform: translateY(-100%);
}

.roll-link:hover span:last-child {
  transform: translateY(-100%);
}

-------- h1#animatedtxt {
  line-height: 80%;
}

@keyframes fade-in {
  from {
    scale: 1.01;
    opacity: 0;
  }
  to {
    scale: 1;
    opacity: 1;
  }
}
.banner-fw, .bottle-shot, .banner-sml {
  overflow: clip;
  position: relative;
  transform-style: preserve-3d;
}
.banner-fw .banner, .banner-fw .banner-img, .banner-fw .image, .bottle-shot .banner, .bottle-shot .banner-img, .bottle-shot .image, .banner-sml .banner, .banner-sml .banner-img, .banner-sml .image {
  position: relative;
  z-index: -1;
  transform: translateZ(-1px) scale(1);
  filter: blur();
  animation: fade-in 0.5s linear;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.dev-notes {
  color: blueviolet !important;
}

body {
  background-color: #151515;
  font-family: "Suisse Int'l";
  /* BWGR-4: prevent `width: 100vw` full-bleed sections from creating a
   * tiny horizontal scrollbar-width gap on the right. 100vw includes the
   * scrollbar; overflow-x: clip stops the resulting overflow from
   * causing a horizontal scroll. */
  overflow-x: clip;
}

.header, .main {
  background: #151515;
}

/* BWGR-4: outer <footer> element gets the dark bg so it naturally extends
 * edge-to-edge (the element is outside .container, so it spans the full
 * viewport width). Inner footer rows stay constrained by .container and
 * inherit visually via parent bg — no per-row full-bleed gymnastics
 * needed, no scrollbar-gap artifacts. */
footer {
  background: #1A1A1A;
}
.footer, .sign-up, .copyright, .social {
  background: #1A1A1A;
}

/* .container moved to design-tokens block at top of file (BWGR-4) */

section {
  padding: 0;
}

.instagram {
  background-color: #403923;
}
/* section.specs sits inside .container, so a bg on it only spans the container.
 * Paint the bg full-bleed via a ::before instead (content/padding unchanged). */
.specs {
  position: relative;
}

.specs::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background-color: #403923;
  z-index: 0;
}

.specs-inner {
  position: relative;
}

.top {
  margin-top: 30px;
}

.right {
  text-align: right;
}

.pad-r {
  padding-right: 0;
}

.pd-20 {
  padding: 0 22px !important;
}

.out {
  display: none;
}

.header {
  display: flex;
  align-items: center;
  height: 85px;
  padding: 60px 0 40px 0;
}
.header .brand {
  position: absolute;
  /* Above the full-width .navigation, which otherwise overlays the logo and
   * swallows the click through to home. */
  z-index: 2;
  padding: 0 0 0 16px;
}
@media (max-width: 767px) {
  .header .brand {
    padding: 0 0 0 10px;
  }
}
.header .brand img {
  width: 100%;
  width: 130px;
  height: auto;
}
.header .navigation {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 60px;
}
.header .navigation li.nav-item {
  margin-bottom: 12px;
}
.header .navigation .nav-link {
  font-family: "Suisse bold";
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 100%;
  color: #e8e2cf;
  padding: 5px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .navigation .nav-link:hover, .header .navigation .nav-link.active {
  color: #b6a263;
}
.header .navigation .nav {
  flex-direction: column;
}
.header .navigation .navbar-expand-md {
  width: 100%;
  flex-wrap: nowrap;
}
.header .navigation .navbar-expand-md #menu {
  background-color: #151515;
  z-index: 999;
  width: 100%;
  height: 100vh;
  padding: 22px;
}
.header .navigation .navbar-collapse {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
}
.header .navigation .navbar-toggler {
  position: absolute;
  right: -2px;
  outline: none;
  box-shadow: none;
}
.header .navigation .navbar-toggler-icon {
  background-image: url("../images/Hamburger.svg");
}

/* BWGR-4: full-bleed effect handled by the outer <footer> element bg
 * (see footer { background } rule above). .footer div keeps its
 * original vertical padding; horizontal alignment comes from .container. */
.footer {
  padding: 50px 0 0 0;
}
.footer .wrapper {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #2f2f2f;
  border-bottom: 1px solid #2f2f2f;
  /* Mobile spec: 16px left, 20px right (asymmetric per Figma). 768+ block
     at ~line 1236 overrides this to 0 L/R for the desktop grid layout. */
  padding: 48px 20px 40px 16px;
  color: #e8e2cf;
  gap: 8%;
}
.footer .wrapper .mobile {
  width: 100%;
  text-align: center;
}
.footer .wrapper img {
  width: 178px;
  height: auto;
  margin: 0 0 40px 0;
}
.footer .wrapper h4 {
  font-family: "Suisse Bold";
  font-size: 0.875rem;
  font-style: normal;
  line-height: 140%; /* 1.575rem */
  text-transform: uppercase;
  margin-bottom: 15px;
}
.footer .wrapper ul {
  padding: 0;
}
.footer .wrapper li, .footer .wrapper a {
  list-style-type: none;
  line-height: 120%;
}
.footer .wrapper p, .footer .wrapper a {
  font-family: "Suisse Reg";
  color: #e8e2cf;
  font-size: 0.875rem;
  font-style: normal;
}
.footer .wrapper p {
  line-height: 140%;
}
.footer .wrapper .phone:hover {
  color: #b6a263;
}
.footer .wrapper a:hover {
  color: #b6a263;
}
.footer .wrapper .col {
  width: 46%;
  order: 2;
  flex: inherit;
  margin-bottom: 30px;
}
.footer .wrapper .col:nth-child(5) {
  order: 1;
  width: 100%;
}
.footer .wrapper .country {
  display: none;
}
.footer .wrapper .country h4 {
  margin-bottom: 10px;
}
.footer .wrapper .country .dropdown .btn {
  background-color: #252525;
  border: 1px solid #e8e2cf;
  color: #e8e2cf;
}
.footer .wrapper .country .dropdown-toggle::after {
  content: "";
  border: 0;
}
.footer .wrapper .country .dropdown-menu.show {
  background-color: #252525;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer .wrapper .country .dropdown-menu.show a.dropdown-item:hover {
  background-color: #e8e2cf;
  color: #252525;
}
.footer .wrapper .country #dropdownMenuButton .arrow {
  background-image: url("../images/arrow-dwn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 10px;
  transition: transform 0.3s ease-in-out;
  margin-left: 10px;
  display: inline-block;
  width: 12px;
  height: 18px;
  border: 0;
}
.footer .wrapper .country #dropdownMenuButton:hover .arrow {
  background-position: center 10px;
}

.social {
  height: 40px;
  padding: 28px 16px;
}
.social a.ints, .social a.fb {
  background-size: 20px auto;
  background-repeat: no-repeat;
  display: inline-block;
  padding-left: 26px;
  margin-bottom: -5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 0.875rem;
}
.social a.ints {
  background-image: url("../images/instagram.svg");
}
.social a.ints:hover, .social a.fb:hover {
  background-image: url("../images/instagram-gold.svg");
  background-size: 20px auto;
  background-repeat: no-repeat;
}
.social a.fb {
  background-image: url("../images/facebook.svg");
}
.social a.fb:hover {
  background-image: url("../images/facebook-gold.svg");
}
.social hr {
  display: none;
  color: #484848;
  margin: -22px;
}
.social ul {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  z-index: 10;
  gap: 40px;
  width: fit-content;
  padding: 0 20px;
  color: #e8e2cf;
  background-color: #1A1A1A;
}
.social ul li {
  list-style-type: none;
  line-height: 120%;
}
.social img {
  width: 27px;
  height: auto;
  margin: 0 3px;
}

.sign-up {
  display: none;
  background-color: #1A1A1A;
  flex-flow: row nowrap;
  padding: 50px 10% 30px 10%;
  color: #e8e2cf;
}
.sign-up p {
  font-size: 1rem;
  margin-bottom: 0;
}

.copyright {
  padding: 24px 16px;
}
.copyright .docs {
  display: flex;
  align-items: baseline;
  font-family: "Suisse Reg";
}
.copyright .docs p {
  margin: 10px 0;
  font-size: 0.8rem;
  line-height: 110%;
  line-height: inherit;
}
.copyright a {
  font-size: 0.8rem;
  color: #555555;
  margin-right: 15px;
  line-height: 110%;
  text-decoration: none;
}
.copyright a:hover {
  color: #b6a263;
}

.age-gate, .age-gate-int, .trade-access {
  position: fixed;
  z-index: 3147483645;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  text-align: center;
}
.age-gate .details, .age-gate-int .details, .trade-access .details {
  width: 100%;
  max-width: 730px;
  margin: 8% auto 0 auto;
  text-align: center;
}
.age-gate .details h1, .age-gate-int .details h1, .trade-access .details h1 {
  font-size: 2.25rem;
  margin-top: 48px;
}
.age-gate .details h2, .age-gate .details h4, .age-gate .details p, .age-gate-int .details h2, .age-gate-int .details h4, .age-gate-int .details p, .trade-access .details h2, .trade-access .details h4, .trade-access .details p {
  color: #e8e2cf !important;
}
.age-gate .details p, .age-gate-int .details p, .trade-access .details p {
  margin-top: 25px;
}
.age-gate .age-gate-wrapper, .age-gate-int .age-gate-wrapper, .trade-access .age-gate-wrapper {
  margin: 0 0 25px 0;
  text-align: center;
}
.age-gate .age-gate-wrapper .link, .age-gate-int .age-gate-wrapper .link, .trade-access .age-gate-wrapper .link {
  display: inline-block;
  background-image: none;
  font-size: 1.25rem;
  color: #e8e2cf;
  margin: 12px 5px;
}
.age-gate .age-gate-wrapper .link:hover, .age-gate-int .age-gate-wrapper .link:hover, .trade-access .age-gate-wrapper .link:hover {
  color: #b6a263;
  background-image: none;
}
.age-gate p.small, .age-gate-int p.small, .trade-access p.small {
  width: 100%;
  color: #e8e2cf;
  margin: 0 auto;
}

.age-gate-int, .asset-group, .trade-access {
  font-family: "Suisse Reg";
}
.age-gate-int .choose-country, .age-gate-int .choose-asset, .asset-group .choose-country, .asset-group .choose-asset, .trade-access .choose-country, .trade-access .choose-asset {
  font-family: "Suisse Reg";
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  margin: 10px auto;
  border: 1px solid #e8e2cf;
  border-radius: 8px;
  color: #e8e2cf;
  text-align: left;
  padding: 5px 15px 5px 15px;
}
.age-gate-int .choose-country, .asset-group .choose-country, .trade-access .choose-country {
  width: 290px;
  margin: 10px auro 48px auto;
  padding: 0 15px 0 10px;
}
.age-gate-int p.small, .asset-group p.small, .trade-access p.small {
  margin: 20px auto;
}
.age-gate-int label, .asset-group label, .trade-access label {
  margin-top: 20px;
  line-height: 100%;
  color: #e8e2cf;
}
.age-gate-int select, .asset-group select, .trade-access select {
  width: 270px;
  height: 40px;
  outline: none;
  color: #e8e2cf;
  border: 0;
  border-radius: 30px;
  background-image: url("../images/arrow-dwn.svg");
  background-size: 15px;
  background-position: right center;
  background-repeat: no-repeat;
  text-align: left;
  background-color: transparent;
  -webkit-appearance: none; /* For Safari, Chrome, Opera */
  -moz-appearance: none; /* For Firefox */
  appearance: none;
}
.age-gate-int select::-ms-expand, .asset-group select::-ms-expand, .trade-access select::-ms-expand {
  display: none;
}

#tooyoung-message {
  background-color: transparent;
  color: #e8e2cf;
  display: none;
}

.trade-access h1 {
  margin-bottom: 25px;
}
.trade-access a {
  text-decoration: underline;
}
.trade-access input {
  display: block;
  width: 325px;
  height: 40px;
  margin: 0 auto 8px auto;
  padding: 5px 15px;
  outline: none;
  color: #e8e2cf;
  border: 1px solid #e8e2cf;
  border-radius: 8px;
  background-color: transparent;
}
.trade-access label {
  color: #e8e2cf;
  margin-bottom: 10px;
}
.trade-access .btn-toolbar .action {
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.trade-access .btn-toolbar .action:hover {
  background-color: #b6a263;
  border: 1px solid #b6a263;
  color: #151515;
}

.login-page .titles, .trade-assets .titles {
  display: none;
}
.login-page h1, .trade-assets h1 {
  font-size: 4.875rem;
  line-height: 90%;
  color: #e8e2cf !important;
  text-transform: uppercase;
}
.login-page p, .trade-assets p {
  color: #e8e2cf !important;
}
.login-page .content, .trade-assets .content {
  text-align: center;
  padding-top: 40px;
  background-color: #151515;
}
.login-page .content #MemberLoginForm_LoginForm input#MemberLoginForm_LoginForm_Email, .login-page .content #MemberLoginForm_LoginForm input#MemberLoginForm_LoginForm_Password, .trade-assets .content #MemberLoginForm_LoginForm input#MemberLoginForm_LoginForm_Email, .trade-assets .content #MemberLoginForm_LoginForm input#MemberLoginForm_LoginForm_Password {
  border: 1px solid #e8e2cf !important;
  box-shadow: none !important;
  background-color: #252525 !important;
  border-radius: 8px !important;
  height: 45px !important;
  padding: 10px 5px;
  width: 100% !important;
  max-width: 500px !important;
  color: #e8e2cf;
}
.login-page .content #MemberLoginForm_LoginForm_Remember_Holder, .trade-assets .content #MemberLoginForm_LoginForm_Remember_Holder {
  color: #e8e2cf !important;
  margin: 15px 0 !important;
}
.login-page .content .btn-toolbar, .trade-assets .content .btn-toolbar {
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
  justify-content: space-between;
  align-items: center;
}
.login-page .content .btn-toolbar p, .trade-assets .content .btn-toolbar p {
  margin: 0;
  font-size: 1rem;
}
.login-page .content #MemberLoginForm_LoginForm_action_doLogin, .trade-assets .content #MemberLoginForm_LoginForm_action_doLogin {
  display: block;
  position: relative;
  width: fit-content;
  margin: 0;
  padding: 15px 20px;
  text-align: left;
  font-family: "Suisse Reg";
  color: #e8e2cf;
  letter-spacing: 0.02rem;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 1.5rem */
  text-transform: uppercase;
  background-color: #252525 !important;
  border: 1px solid #e8e2cf !important;
  border-radius: 8px !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.login-page .content #MemberLoginForm_LoginForm_action_doLogin:hover, .trade-assets .content #MemberLoginForm_LoginForm_action_doLogin:hover {
  background-color: #b6a263 !important;
  border: 1px solid #b6a263 !important;
}

@media (min-width: 768px) {
  .wrap-50 {
    display: flex;
    width: 50%;
    padding: 0;
  }
  .pad-r {
    padding-right: 140px;
  }
  .top {
    margin-top: 60px;
  }
  .header {
    position: relative;
    height: auto;
    padding: 10px 0 0 0;
  }
  .header .brand {
    /* Out of flow so the nav can centre in the full container, not the
     * post-logo space. The logo overlays on the left, vertically centred. */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: fit-content;
    padding: 0 0 0 24px;
  }
  .header .navigation {
    position: relative;
    width: 100%;
    justify-content: center;
  }
  .header .navigation li.nav-item {
    margin-bottom: 0;
  }
  .header .navigation .nav-link {
    font-family: "Suisse reg";
    font-size: 1.25rem;
    text-transform: none;
    font-size: 1.125rem;
    padding: 0 30px;
  }
  .header .navigation .navbar-expand-md {
    width: auto;
    padding: 0;
  }
  .header .navigation .navbar-expand-md #menu {
    position: relative;
    top: inherit;
    height: auto;
  }
  .header .navigation .nav {
    flex-direction: row;
  }
  .footer .wrapper {
    width: 100%;
    align-items: stretch;
    padding: 100px 0 40px 0;
    gap: normal;
  }
  .footer .wrapper h4, .footer .wrapper p, .footer .wrapper a {
    font-size: 1.125rem;
  }
  .footer .wrapper h4 {
    margin-bottom: 60px;
  }
  .footer .wrapper li {
    margin-bottom: 20px;
  }
  .footer .wrapper p {
    line-height: 120%;
  }
  .footer .wrapper img {
    margin: -30px 0 0 0;
  }
  .footer .wrapper .col {
    flex: 1 0 0%;
    width: auto;
  }
  .footer .wrapper .col:nth-child(5) {
    width: auto;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    order: 2;
  }
  .social ul {
    margin: 0 auto;
  }
  .social a.ints, .social a.fb {
    font-size: 1.125rem;
  }
  .social hr {
    display: block;
  }
  .copyright {
    padding: 40px 16px;
  }
  .copyright a {
    margin: 0 15px;
  }
  .copyright .docs {
    align-items: baseline;
    justify-content: center;
  }
  .age-gate h1 {
    font-size: 3rem;
  }
  .age-gate .age-gate-wrapper .link {
    font-size: 1.875rem;
  }
}
@media (min-width: 992px) {
  .resCarousel-inner {
    display: flex;
    overflow-x: auto;
    justify-content: center;
    padding: 20px 0;
  }
  .header .navigation {
    position: relative;
  }
}
/* Logo flush with the container edge ≥1920px. Placed after the ≥768px
 * .header .brand rule so it wins on source order (matches .container's
 * 0 inline padding ≥1920px). The 24px inset is kept 768–1919px. */
@media (min-width: 1920px) {
  .header .brand {
    padding-left: 0;
  }
}
@media (min-width: 1400px) {
  .footer {
    padding: 50px 140px;
  }
}
/*-----------------------------------------------------------------------------------

	 Content Holders SCSS INDEX

	00. Banners
		- Banner animation
		- Banner for messages
	01. Intros
	02. Generic Accordion
	03. Home Page
		- Intro
		- Wine Sections
		- Explore More
		- Instagram
	04. Wine Page
		- Filter
		- Wine Collection
	05. Wine Info Page
	06. About Us Page
		- Intro-pg
		- Accordion
	07. Buy Wine Page
	08. Contact/Visit Page
	09. Trade Only
	10. Media Queries

-----------------------------------------------------------------------------------*/
/* BWGR-4: banner-fw is full-bleed (extends edge-to-edge of viewport,
 * ignoring container constraints). Title text still aligns with the
 * container's inner edge so it doesn't sit against the screen edge.
 * banner-img uses aspect-ratio so it scales cleanly across breakpoints
 * (replaces the old fixed 250px height that squashed on mobile). */
.banner-fw {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}
.banner-fw .banner-img {
  width: 100%;
  border-radius: 0;
  aspect-ratio: 3 / 2;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.banner-fw .title {
  width: fit-content;
  padding: 10px;
}
@media (min-width: 768px) {
  .banner-fw .title { padding-left: calc(32px + 10px); }
}
@media (min-width: 1024px) {
  .banner-fw .title { padding-left: calc(48px + 10px); }
}
@media (min-width: 1440px) {
  .banner-fw .title { padding-left: calc(80px + 10px); }
}
.banner-fw h1 {
  position: relative;
  z-index: 10;
  /* Font-size now comes from .text-h1 utility class (applied in templates).
   * margin-bottom: negative to overlap onto the image below. */
  line-height: 80%;
  margin-bottom: -35px;
  letter-spacing: -2%;
}
.banner-fw h1:nth-child(2) {
  margin: 0 0 -35px 80px;
}
/* BWGR-4: staircase banner title. SplitBannerTitle() emits one .bt-line span
 * per line and sets --bt-indent (0, 40, 80, 120px...) so each line steps
 * further right. The staircase offset only applies above 1024px; at 1024px
 * and down the lines stay stacked but left-aligned (no offset), and below
 * 768px they collapse back to a normal inline heading. */
.banner-fw h1 .bt-line {
  display: block;
  margin-left: var(--bt-indent, 0);
}
@media (max-width: 1024px) {
  .banner-fw h1 .bt-line {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .banner-fw h1 {
    margin-bottom: -15px;
  }
  .banner-fw h1 .bt-line {
    /* The spans carry display:flex as an inline style, so !important is needed
     * to collapse them back to a normal inline <h1> on mobile (no staircase). */
    display: inline !important;
    margin-left: 0 !important;
  }
}
.banner-fw .title-int {
  display: flex;
  flex-flow: column;
  padding: 10px 16px;
}
.banner-fw .title-int h1 {
  margin: 0;
}
.banner-fw .title-int h1:nth-child(2) {
  margin: 0;
  align-self: end;
}
.banner-fw .title-int h1:nth-child(3) {
  margin: 0 0 -35px 0;
  align-self: end;
}

.banner-message {
  padding: 20px;
  background-color: #b6a263;
  text-align: center;
}
.banner-message h2 {
  font-size: 0.85rem;
  color: #151515;
  margin: 0;
}

.title h1, .title h2, .title h3 {
  text-align: left;
}

.SileniInternationalWineHolderPage .banner-fw .title {
  margin-bottom: -35px;
}
.SileniInternationalWineHolderPage .banner-fw .title h1 {
  margin-bottom: 0;
}
.SileniInternationalWineHolderPage .banner-fw .title h2 {
  font-size: 3.5rem;
}

.intro, .intro-pg {
  position: relative;
  margin: 0 auto;
  color: #e8e2cf;
}
.intro h2, .intro-pg h2 {
  color: #e8e2cf;
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 2.5rem */
  text-transform: uppercase;
  margin-bottom: 20px;
}

.intro {
  max-width: 730px;
  text-align: center;
  padding: 48px 10% 24px 10%;
}
.intro h2 {
  text-align: center;
}
.intro p {
  /* IntroCopy (CMS rich text) type scale (BWGR-4):
   * 20/28.6 mobile · 18/25 ≥576 · 22/31 ≥768 · 28/39 ≥1024 · 30/42 ≥1440 */
  font-size: 20px;
  line-height: 28.6px;
  font-family: "Suisse Lgt";
}

.intro-pg {
  max-width: 480px;
  padding: 40px 20px 50px 20px;
}
.intro-pg p, .intro-pg li {
  font-size: 1.25rem;
}

.SileniInternationalHomePage .intro p {
  margin: 0;
}

#accordion, #accordionMobile {
  margin: 0;
}
#accordion .card, #accordionMobile .card {
  background: transparent;
  border-color: transparent;
  margin: 0;
}
#accordion .card-header, #accordionMobile .card-header {
  border: 0;
  padding: 0;
  background-color: transparent;
}
#accordion .card-body, #accordionMobile .card-body {
  display: flex;
  flex-flow: row wrap;
  color: #e8e2cf;
}
#accordion .select, #accordionMobile .select {
  margin: 20px 0 0 0;
  padding: 0 22px 0 0;
  text-align: left;
  font-family: "Suisse Black";
  font-size: 2rem;
  font-style: normal;
  font-weight: 900;
  line-height: 90%; /* 1.5rem */
  text-transform: uppercase;
  color: #e8e2cf;
}
#accordion .select:hover, #accordion .select.active, #accordionMobile .select:hover, #accordionMobile .select.active {
  color: #b6a263;
}
#accordion .select:visited, #accordionMobile .select:visited {
  color: #e8e2cf;
}
#accordion .clear, #accordionMobile .clear {
  width: fit-content;
  height: fit-content;
  padding: 0 25px;
  font-family: "Suisse Black";
  text-transform: uppercase;
  color: #e8e2cf;
  background: url("../images/cross.svg") no-repeat;
  background-size: 16px auto;
  background-position: center right;
}
#accordion .clear:hover, #accordion .clear:visited, #accordionMobile .clear:hover, #accordionMobile .clear:visited {
  color: #b6a263;
  background: url("../images/cross-gld.svg") no-repeat;
  background-size: 16px auto;
  background-position: center right;
}
#accordion .small, #accordionMobile .small {
  font-size: 1rem;
  margin: 12px 0 0 0;
  letter-spacing: 0.02rem;
}

/* BWGR-4: wine-section is full-bleed (extends edge-to-edge of viewport).
 * The dark .content background bleeds to the edges too; inner text/images
 * are kept readable via container-matched padding. */
section.wine-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 24px;
  padding: 24px 0;
  overflow: clip;
}
section.wine-section .banner-fw {
  position: sticky;
  top: -40px;
}
section.wine-section .banner-fw .banner-img {
  background-size: cover;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  transform: scale(1.05);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
section.wine-section .content {
  /* BWGR-4: full-width dark band — the #151515 bg bleeds edge-to-edge. The
   * inner .container (added in the template) constrains the title/images to
   * the container width; horizontal padding lives on that .container. */
  position: relative;
  padding: 60px 0 0 0;
  background-color: #151515;
}
/* Horizontal insets now come from the inner .container wrapper (BWGR-4). */
/* 768–1023: keep column layout (image on top, text below) — matches mobile.
   The 768+ block elsewhere in the file flips .details to flex-row at 768,
   but per Figma the row layout should only start at 1024+. */
@media (min-width: 768px) and (max-width: 1023px) {
  section.wine-section .content .details {
    flex-flow: column nowrap;
    padding: 24px 16px;
  }
  section.wine-section .content .details .text {
    padding: 24px 16px 0 16px;
  }
  section.wine-section .content .details .images {
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
  }
  section.wine-section .content .details.middle .ord-2 { order: 1; }
  section.wine-section .content .details.middle .ord-1 { order: 2; }
}
section.wine-section .content .title {
  padding: 0;
}
section.wine-section .content h2 {
  /* Re-assert the .text-h1 scale here. The generic `.title h2` rule (0,1,1)
     out-specifies the .text-h1 class (0,1,0), so it was overriding the title
     size; this scoped selector (0,3,1) wins it back. line-height + margins
     keep the overlap. (BWGR-4) */
  /* Scale with viewport so long words (e.g. "Exceptional") stay on one line on
     narrow phones, but never exceed the 55px mobile cap. The 14.5vw preferred
     value holds 55px down to ~380px wide, then shrinks toward the 34px floor.
     Tune 14.5vw if the longest word still wraps on the smallest device. (BWGR-4) */
  font-size: clamp(34px, 12.5vw, 55px);
  line-height: 80%;
  margin: -90px 0 0 0;
  text-align: left;
  letter-spacing: -2%;
}
@media (min-width: 768px)  { section.wine-section .content h2 { font-size: 82px; } }
@media (min-width: 1024px) { section.wine-section .content h2 { font-size: 110px; } }
@media (min-width: 1440px) { section.wine-section .content h2 { font-size: 164px; } }
@media (min-width: 1920px) { section.wine-section .content h2 { font-size: 176px; } }
/* GSAP SplitText wraps each word in an inline-block <div>, so the words sit on
 * one line. Force the word wrappers (direct children) to block so the heading
 * always stacks onto separate lines; the nested char <div>s stay inline-block
 * so each word still reads horizontally. !important overrides SplitText's
 * inline display style. (BWGR-4) */
section.wine-section .content h2 > div:nth-child(2) {
  display: block !important;
}
section.wine-section .content h2.right {
  text-align: right;
}
section.wine-section .content h3 {
  margin-bottom: 20px;
}
section.wine-section .content .details {
  display: flex;
  flex-flow: column nowrap;
  padding: 24px 16px;
}
section.wine-section .content .details .ord-1 {
  order: 2;
}
section.wine-section .content .details .ord-2 {
  order: 1;
}

section.wine-section .content .details:not(.middle) .ord-2 .images {
  margin-right: 0;
}
@media (min-width: 1024px) {
  section.wine-section .content .details:not(.middle) .ord-2 .images {
    margin-right: -38px;
  }
}
@media (min-width: 1024px) {
  /* Target: image edge sits 22px from viewport edge.
   * .content padding-inline = 48px. .details padding-inline at 992+ is 0
   * (line ~3039 in the 992+ block sets `padding: 60px 0 140px 0`, which
   * overrides the earlier 20px rule in the same block).
   * Offset = 48 + 0 − 22 = 26. */
  section.wine-section .content .details:not(.middle) .ord-2 .images {
    margin-right: -26px;
  }
}
@media (min-width: 1440px) {
  section.wine-section .content .details:not(.middle) .ord-2 .images {
    margin-right: -58px;
  }
}
section.wine-section .content .details .ord-2 .images .image:first-child {
  background-size: 85% auto;
}
section.wine-section .content .details .text {
  max-width: 650px;
  align-content: center;
  padding: 24px 16px 0 16px;
  color: #e8e2cf;
}
section.wine-section .content .details .text h3 {
  font-family: "Suisse Works";
  font-style: italic;
  line-height: 100%;
  font-size: 1.875rem;
  text-transform: none;
  letter-spacing: -0.04rem;
}
section.wine-section .content .details .text p {
  font-family: "Suisse Lgt";
}
section.wine-section .content .details .text btn.link:first-child {
  margin: 15px 0 0 0;
}
section.wine-section .content .details .text .top {
  margin: 0;
}
section.wine-section .content .details .text .where {
  display: none;
}
section.wine-section .content .details .images {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-flow: row nowrap;
  grid-gap: 12px;
}
section.wine-section .content .details .images .image-dbl {
  /* 50% each + the 12px flex gap = 100% + 12px, which overflows; subtract
   * half the gap from each so the pair fits exactly within the container. */
  width: calc(50% - 6px);
  /* Portrait 2:3 — height derives from the column width, so the ratio holds
     at every breakpoint. (BWGR) */
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  background-color: #e8e2cf;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

section.wine-section .content .details {
  padding: 24px 16px;
}
section.wine-section .content .details .images .image-sngl {
  width: 100%;
  /* Landscape 3:2 — height derives from the full width, so the ratio holds
     at every breakpoint. (BWGR) */
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 8px;
}

/* BWGR-4: .explore section is full-bleed (cream bg extends edge-to-edge).
 * Inner padding scales per breakpoint to match the container system so
 * cards stay readable at every viewport width. Font-size of the title
 * comes from the .text-h2 utility class (applied in template). */
.explore {
  position: relative;
  background-color: #e8e2cf;
  margin-top: 24px;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  /* Mobile spec: 16px L/R, 48px bottom (gap below cards). Top padding sits
     on .title (below) so the gap is owned by the title element directly. */
  padding: 0 16px 48px 16px;
}
@media (min-width: 768px) { .explore { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 1024px) { .explore { padding-left: 48px; padding-right: 48px; } }
@media (min-width: 1440px) { .explore { padding-left: 80px; padding-right: 80px; } }

.explore .title {
  padding: 60px 0;
}
@media (min-width: 1920px) {
  .explore .title { padding: 60px 0 24px 62px; }
}
.explore .title h2 {
  font-family: "Suisse Black";
  line-height: 85%;
  text-transform: uppercase;
  font-style: normal;
  color: #151515;
  padding: 0;
  /* Mobile: force each word onto its own line ("EXPLORE" / "MORE" stacked
     per Figma 375 reference). Reset at tablet+. */
  word-spacing: 100vw;
}
@media (min-width: 768px) {
  .explore .title h2 { word-spacing: normal; }
}
.explore .wine-range {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.explore .wine-range .schema-wrapper {
  flex: 1 0 0%;
  width: 100%;
  max-width: 330px;
}
.explore .wine-range .schema-wrapper a.col {
  display: block;
}
.explore .wine-range .schema-wrapper a.col h3 {
  line-height: 1;
  display: inline-block;
  font-size: 1rem;
  margin-bottom: 0;
  padding-bottom: 12px;
  color: #151515;
  white-space: wrap;
  max-width: 100px;
  /* Force every 2-word title to wrap (CELLAR/SELECTION, GRAND/RESERVE,
     EX/VINTAGE). Without this, "EX VINTAGE" stays on one line at small
     font sizes because it fits inside max-width. */
  word-spacing: 100vw;
}
@media (min-width: 768px) {
  .explore .wine-range .schema-wrapper a.col h3 { padding-bottom: 18px; }
}
.explore .wine-range .schema-wrapper a.col .image {
  position: relative;
  /* Portrait 2:3 — box height derives from the card width, so the shape stays
     consistent at every breakpoint. The bottle is `contain`-fit inside. (BWGR) */
  aspect-ratio: 2 / 3;
  overflow: hidden;
  transition: background-size 0.5s ease-out;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  /* `contain` scales the bottle to fit fully inside the card box, preserving
     aspect (tall bottles will have black margin on the sides per Figma). */
  background-size: contain;
  background-color: #151515;
  border-radius: 8px;
}
.explore .wine-range .schema-wrapper a.col .roll-link {
  font-size: 0.75rem;
}
/* hover effect on background-size removed — `contain` already maxes the
   image. Use transform: scale() if a hover grow is needed later. */

.resCarousel-inner {
  display: flex;
  gap: 12px;
  white-space: nowrap;
  overflow-x: scroll;
  padding: 24px 0;
}
.resCarousel-inner .item {
  display: inline-block;
  margin-right: 12px;
}

/* BWGR-4: Instagram section is full-bleed (olive bg extends edge-to-edge).
 * Inner content padding scales per breakpoint to match the container
 * system so videos/text stay readable.
 * Note: BWGR-6 will rework this section's behaviour (autoplay/lazy-load/
 * carousel) separately — this is layout-only treatment for BWGR-4. */
.instagram {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.instagram .content {
  position: relative;
  padding: 48px 16px;
}
@media (min-width: 768px) { .instagram .content { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 1024px) { .instagram .content { padding-left: 48px; padding-right: 48px; } }
@media (min-width: 1440px) { .instagram .content { padding-left: 80px; padding-right: 80px; } }
.instagram .col {
  display: grid;
}
.instagram .vid-1 video, .instagram .vid-3 video {
  display: none;
}

/* BWGR-4: Mobile carousel — below 768 the 3 .col slides scroll horizontally
   with native scroll-snap so users can swipe through Find Us On / Instagram /
   @sileniwines. The 768+ block elsewhere in the file sets a different layout
   that takes over above this breakpoint. */
@media (max-width: 767px) {
  .instagram .content {
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .instagram .content .col {
    display: block;
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
  /* All 3 videos visible inside the carousel (base rule hides vid-1/vid-3). */
  .instagram .vid-1 video, .instagram .vid-3 video {
    display: block;
  }
}
.instagram br {
  display: none;
}
.instagram h2, .instagram h3 {
  font-family: "Suisse Black";
  word-break: break-word;
  text-transform: uppercase;
  font-style: normal;
  color: #e8e2cf;
}
.instagram h2 {
  /* font-size now driven by .text-h2 utility class (applied in template) */
  line-height: 80%;
  letter-spacing: -0.02em;
  margin: 0;
}
.instagram h3 {
  /* font-size now driven by .text-h3 utility class (applied in template) */
  line-height: 1;
  margin: 5px 0 0 0;
}
.instagram video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

/* BWGR-6: Instagram video wrapper + play-button overlay.
   Videos no longer autoplay — user clicks the button to start. */
.instagram .video-wrap {
  position: relative;
  display: block;
  line-height: 0; /* prevent inline-element gap below video */
}
.instagram .video-wrap video {
  display: block;
  width: 100%;
}
.instagram .video-wrap .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  z-index: 2;
}
.instagram .video-wrap .play-btn:hover,
.instagram .video-wrap .play-btn:focus-visible {
  transform: translate(-50%, -50%) scale(1.05);
  outline: none;
}
.instagram .video-wrap .play-btn-icon {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/play.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.instagram .video-wrap.playing .play-btn {
  /* Hidden while playing; click on video resumes via pause/play if needed. */
  opacity: 0;
  pointer-events: none;
}

/* BWGR-6: Mobile-only header — all 3 card titles grouped at the top of the
   Instagram block per Figma. Hidden at 768+ where the original per-column
   text layout takes over. */
.instagram-mobile-text {
  display: none;
}
@media (max-width: 767px) {
  /* 2×2 grid per Figma — diagonal big text:
     row 1:  FOLLOW/US ON (small, left)     INSTA (huge, right)
     row 2:  GRAM (huge, left)              @SILENI/WINES (small, right) */
  .instagram-mobile-text {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    /* center the block so columns stay close together and INSTA doesn't
       get pushed to the viewport edge (which was overflowing at <415px). */
    justify-content: center;
    align-items: start;
    column-gap: 4px;
    row-gap: 0;
    padding: 48px 12px 0 12px;
    color: #e8e2cf;
    text-transform: uppercase;
    font-family: "Suisse Black";
    letter-spacing: -0.02em;
  }
  /* `display: contents` dissolves the h2 box so .insta and .gram become
     direct grid items the parent grid can place individually. The block
     is aria-hidden so no a11y impact from doing this. */
  .instagram-mobile-text .text-h2 {
    display: contents;
  }
  /* Each word on its own line for the side text. */
  .instagram-mobile-text .follow > span,
  .instagram-mobile-text .handle > span {
    display: block;
  }
  .instagram-mobile-text .follow,
  .instagram-mobile-text .handle {
    font-size: 24px;
    line-height: 0.95;
  }
  .instagram-mobile-text .insta,
  .instagram-mobile-text .gram {
    /* clamp scales the big text down at narrow viewports so INSTA never
       overflows. At 375px viewport, 12vw = 45px; at 414px, 12vw = 49.7px.
       Caps at 56px once viewport is >= ~467px. */
    font-size: clamp(40px, 12vw, 56px);
    line-height: 0.88;
    word-break: keep-all;
    overflow-wrap: normal;
    white-space: normal;
  }
  /* Grid placement */
  .instagram-mobile-text .follow  { grid-column: 1; grid-row: 1; justify-self: start; align-self: start; }
  .instagram-mobile-text .insta   { grid-column: 2; grid-row: 1; justify-self: end;   align-self: end;   text-align: right; }
  .instagram-mobile-text .gram    { grid-column: 2; grid-row: 2; justify-self: end;   align-self: start; text-align: right; }
  .instagram-mobile-text .handle  { grid-column: 1; grid-row: 2; justify-self: start; align-self: end; }
  /* Hide the duplicate per-column text on mobile — content stays in DOM so
     the desktop layout keeps working at 768+. */
  .instagram .content .col h2,
  .instagram .content .col h3 {
    display: none;
  }
}

/* BWGR-6: Connect Now button. Moved out of vid-3 so it sits below the
   pagination dots on mobile (matching the Figma carousel layout). */
.instagram-connect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px auto 48px auto;
  padding: 14px 32px;
  border: 1px solid #e8e2cf;
  border-radius: 999px;
  color: #e8e2cf;
  text-decoration: none;
  font-family: "Suisse Bold";
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.instagram-connect:hover,
.instagram-connect:focus-visible {
  background-color: #e8e2cf;
  color: #151515;
  outline: none;
}
.instagram-connect::after {
  /* Instagram glyph approximated via inline SVG mask to avoid a new asset */
  content: "";
  width: 18px;
  height: 0px;
  visibility: hidden;
  background-image: url("../images/social-ins-wht.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.instagram-connect:hover::after,
.instagram-connect:focus-visible::after {
  filter: invert(1);
}
/* Center the mobile pill horizontally inside the section */
.instagram .instagram-connect {
  display: flex;
  width: max-content;
  max-width: calc(100% - 32px);
}
/* Mobile: show pill, hide the in-card desktop Connect Now */
@media (max-width: 767px) {
  .instagram .connect-desktop { display: none; }
}
/* Desktop: hide the pill, show the in-card Connect Now */
@media (min-width: 768px) {
  .instagram .instagram-connect { display: none; }
}

/* BWGR-6: desktop-only spacing tweaks on the 3 carousel cards. All three
   cards stay top-aligned in the row; the 24px gaps sit between the video
   and the title within each card. */
@media (min-width: 768px) {
  /* First card: 24px gap between the video and "FIND US ON" title below it. */
  .instagram .content .vid-1 .text-h2 {
    padding-top: 24px;
  }
  /* Second card: 24px gap between the "INSTA / GRAM" title and the video. */
  .instagram .content .vid-2 .text-h2 {
    padding-bottom: 24px;
  }
  /* Third card: 24px gap between the video and the "@sileni / wines" handle.
     The handle itself is now 2 lines via <br> in the template. */
  .instagram .content .vid-3 .text-h3 {
    padding-top: 24px;
  }
}

/* BWGR-6: Pagination dots — mobile carousel only. Hidden at 768+ where
   the layout switches away from the swipe carousel. */
.instagram-dots {
  display: none;
}
@media (max-width: 767px) {
  .instagram-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 24px 0 0 0;
  }
  .instagram-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: rgba(232, 226, 207, 0.4);  /* cream @ 40% */
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }
  .instagram-dot.active {
    background-color: #e8e2cf;  /* solid cream */
    transform: scale(1.25);
  }
  .instagram-dot:focus-visible {
    outline: 2px solid #b6a263;  /* gold */
    outline-offset: 2px;
  }
}

.title {
  padding: 10px 16px;
}
.title h2 {
  font-size: 2.25rem;
  padding-top: 24px;
}

#accordion #heading, #accordionMobile #heading {
  display: none;
}
#accordion .card-body, #accordionMobile .card-body {
  display: flex;
  flex-flow: column nowrap;
  color: #e8e2cf;
  padding: 0;
}
#accordion button.stack, #accordionMobile button.stack {
  font-size: 2.375rem;
}
#accordion .small, #accordionMobile .small {
  font-size: 1.25rem;
  margin: 0 0 5px 0;
}
#accordion .filter, #accordionMobile .filter {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 20px 0;
}
#accordion .filter h3, #accordionMobile .filter h3 {
  font-family: "Suisse Works";
  font-style: italic;
  text-transform: none;
  font-size: 1.4rem;
  margin: 0 0 40px 0;
}
#accordion .filter a, #accordionMobile .filter a {
  color: ⁨⁨ #403923;
}
#accordion .filter a:hover, #accordion .filter a.active, #accordionMobile .filter a:hover, #accordionMobile .filter a.active {
  color: #b6a263;
}
#accordion .filter .range, #accordionMobile .filter .range {
  width: 55%;
}
#accordion .filter .style, #accordionMobile .filter .style {
  width: 35%;
  position: relative;
}
#accordion .filter .select, #accordionMobile .filter .select {
  margin: 20px 0 0 0;
  padding: 0 15px 0 0;
  text-align: left;
  font-family: "Suisse Black";
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  color: #e8e2cf;
}
#accordion .filter .select:hover, #accordion .filter .select.active, #accordionMobile .filter .select:hover, #accordionMobile .filter .select.active {
  color: #b6a263;
}
#accordion .filter .small, #accordionMobile .filter .small {
  font-size: 1.25rem !important;
  margin: 8px 0 0 0;
  letter-spacing: 0.02rem;
}
#accordion .filter .clear, #accordionMobile .filter .clear {
  width: fit-content;
  height: fit-content;
  padding: 0 25px;
  font-family: "Suisse Black";
  text-transform: uppercase;
  color: #e8e2cf;
  background: url("../images/cross.svg") no-repeat;
  background-size: 16px auto;
  background-position: center right;
}
#accordion .filter .clear:hover, #accordionMobile .filter .clear:hover {
  color: #b6a263;
  background: url("../images/cross-gld.svg") no-repeat;
  background-size: 16px auto;
  background-position: center right;
}

.choose-wine.desktop {
  display: none;
}

.choose-wine.mobile {
  padding: 30px 20px;
  margin-bottom: 30px;
  background-color: #252525;
}
.choose-wine.mobile .title {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding: 0;
}
.choose-wine.mobile .title h3 {
  font-family: "Suisse Works";
  font-style: italic;
  text-transform: none;
  font-size: 1.4rem;
  margin: 2px 0 20px 0;
  font-size: 1.25rem;
  line-height: 90%;
}
.choose-wine.mobile #accordionMobile {
  border-bottom: 1px solid #e8e2cf;
}
.choose-wine.mobile #accordionMobile .card-body {
  display: block;
  padding: 0 0 20px 0;
}
.choose-wine.mobile .select {
  font-size: 1rem;
  line-height: 100%;
}
.choose-wine.mobile .small {
  font-size: 1rem !important;
  margin: 0 0 5px 0;
  display: inline-block;
  letter-spacing: 0.02rem;
}
.choose-wine.mobile .collection {
  padding: 0;
}
.choose-wine.mobile .collection .col {
  margin: 10px 0;
}

.collection {
  display: flex;
  flex-flow: row wrap;
  grid-gap: 10px;
  justify-content: left;
  padding: 0 20px;
  margin-top: 40px;
}
.collection .schema-wrapper {
  width: 48%;
}
.collection .schema-wrapper a.col {
  flex: inherit;
  border-radius: 8px;
  white-space: wrap;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.collection .schema-wrapper a.col h3 {
  width: 120px;
  font-size: 1.125rem;
  margin-bottom: 10px;
  letter-spacing: 0.02rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.collection .schema-wrapper a.col h4 {
  font-family: "Suisse Works";
  font-style: italic;
  color: #e8e2cf;
  font-size: 1.125rem;
  line-height: 110%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: -35px;
}
.collection .schema-wrapper a.col .image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  transition: background-size 0.5s ease-out;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: auto 80%;
  margin: 0 0 25px 0;
  background-color: #e8e2cf;
  border-radius: 8px;
}
.collection .schema-wrapper a.col button.link {
  margin: 20px 0 0 0;
  font-size: 0.95rem;
}
.collection .schema-wrapper a.col:hover {
  cursor: pointer;
}
.collection .schema-wrapper a.col:hover .image {
  background-size: auto 85%;
}
.collection .schema-wrapper a.col:hover .image::before {
  transform: rotate(1deg);
}

.buy-btns, .buy-btns-int {
  margin: 35px 0;
}
.buy-btns .col, .buy-btns-int .col {
  display: block !important;
  flex: unset;
}
.buy-btns .col .link, .buy-btns-int .col .link {
  background-size: 10px auto;
}
.buy-btns .col:first-child, .buy-btns-int .col:first-child {
  width: 120px;
}

/* Breadcrumbs (BWGR-5) — wine detail page */
.breadcrumbs {
  padding: 20px 12px 0 12px;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}
.breadcrumbs li {
  font-family: "Suisse Bold";
  font-size: 14px;
  line-height: 140%;
  color: #e8e2cf;
  margin-bottom: 0;
}
.breadcrumbs li:not(:last-child)::after {
  content: " > ";
  padding: 0 8px;
  color: #e8e2cf;
}
.breadcrumbs a {
  color: #e8e2cf;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.breadcrumbs a:hover {
  color: #b6a263;
}
.breadcrumbs [aria-current="page"] {
  color: #b6a263;
}

.wine-info {
  padding: 16px;
}
.wine-info .info {
  max-width: 590px;
  margin-bottom: 30px;
}
.wine-info .info h1 {
  font-size: 3.25rem;
  margin-bottom: 30px;
}
.wine-info .info h2 {
  margin-bottom: 20px;
}
.wine-info .info h3 {
  font-family: "Suisse Works";
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  text-transform: none;
  margin-bottom: 11px;
}
.wine-info .info p {
  max-width: 450px;
  color: #e8e2cf;
  font-size: 1rem;
  line-height: 140%;
}
.wine-info .info .int {
  display: none;
}
.wine-info .info .wine-specs {
  margin: 100px 0 0 0;
}
.wine-info .info .wine-specs p, .wine-info .info .wine-specs a {
  font-family: "Suisse Mono";
  color: #969389;
  font-size: 0.875rem;
  font-weight: 400;
}
.wine-info .info .wine-specs p {
  background-image: url("../images/wine-specs-dload.png");
  background-repeat: no-repeat;
  background-size: 18px auto;
  padding-left: 30px;
}
.wine-info .info .wine-specs a {
  text-decoration: underline;
  margin: 0 10px 0 0;
}
.wine-info .info .wine-specs a:hover {
  color: #b6a263;
}
.wine-info .image {
  height: 100vh;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
/* Mobile (≤767px): drop the horizontal padding on breadcrumbs + wine-info. */
@media (max-width: 767px) {
  .breadcrumbs {
    padding-inline: 0;
  }
  .wine-info {
    padding-inline: 0;
    padding-top: 30px;
  }
}

.SileniInternationalWineHolderPage .collection {
  margin-top: 0;
}
.SileniInternationalWineHolderPage .collection .title h2 {
  letter-spacing: -2px;
}

section.specs .specs-inner {
  padding: 48px 16px 48px 16px !important;
}
section.specs .title {
  padding: 0;
}
section.specs h2 {
  font-size: 3rem;
  padding-top: 0;
  margin-bottom: 15px;
  line-height: 100%;
}
section.specs p {
  font-family: "Suisse Lgt";
  color: #e8e2cf;
  font-size: 1rem;
  line-height: 140%;
  margin-bottom: 0;
}
section.specs .notes {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  flex-flow: row nowrap;
  white-space: nowrap;
  margin: 30px 0 30px 0;
}
section.specs .notes .col {
  min-width: 250px;
  white-space: wrap;
  border: 1px solid #e8e2cf;
  border-radius: 8px;
  padding: 24px;
  color: #e8e2cf;
}
section.specs .notes .col h3 {
  font-size: 1.375rem;
  color: #e8e2cf;
}
section.specs .notes .col p {
  font-size: 1rem;
  line-height: 140%;
}
section.specs .lifestyle {
  padding-bottom: 18px;
}
section.specs .lifestyle .wrap-50 {
  width: 100%;
  padding: 10px 0;
}
section.specs .lifestyle .image {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

section.other {
  padding: 40px 16px 60px 16px !important;
  background-color: #151515;
}
section.other .title {
  padding: 0 0 30px 0;
}
section.other .title h2 {
  padding-top: 0;
}
section.other .collection {
  padding: 0 !important;
}
section.other .collection a.col {
  margin-bottom: 0;
}
section.other .collection a.col .buy-btns {
  margin: 35px 0 0 0;
}

section.about .title h2 {
  font-size: 3rem;
}
section.about #accordion {
  border-bottom: 1px solid #e8e2cf;
  margin: 0 16px;
}
section.about #accordion .stack {
  font-size: 1.875rem;
}
section.about #accordion .card-body {
  padding: 40px 0 36px 0;
  display: block;
}
section.about #accordion .card-body .col {
  margin-bottom: 60px;
}
section.about #accordion .card-body .col .text h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 80%;
  color: #e8e2cf;
}
section.about #accordion .card-body .col .text h4 {
  color: #e8e2cf;
  font-family: "Suisse Works";
  font-size: 1.25rem;
  margin-bottom: 15px;
  letter-spacing: 0.02rem;
  line-height: 80%;
  font-style: italic;
}
section.about #accordion #Team .card-body .col .text {
  max-width: 500px;
}
section.about #accordion #Team .card-body .col .text h3 {
  margin-bottom: 15px;
}
section.about #accordion #Team .card-body .col .text h4 {
  margin-bottom: 30px;
}
section.about #accordion #Team .card-body .col .image {
  align-self: flex-end;
  width: 100%;
  height: auto;
  margin-top: 40px;
}
section.about #accordion #Team .card-body .col .image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
}
section.about #accordion #Vineyards .card-body {
  gap: 40px;
}
section.about #accordion #Vineyards .card-body .desktop {
  display: none;
}
section.about #accordion #Vineyards .card-body .col .text .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  padding: 0 30px 20px 30px;
  margin: 30px 0;
  grid-gap: 20px;
  border: 1px solid #e8e2cf;
  border-radius: 4px;
}
section.about #accordion #Vineyards .card-body .col .text .info-grid .cell {
  display: flex;
  flex-flow: column wrap;
  padding-top: 30px;
  font-family: "Suisse Lgt";
  font-size: 1rem;
  line-height: 115%;
}
section.about #accordion #Vineyards .card-body .col .text .info-grid .cell b {
  font-family: "Suisse Med";
}
section.about #accordion #Vineyards .card-body .col .text .info-grid .cell img {
  width: 50px;
  height: 50px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
section.about #accordion #Vineyards .card-body .col .text .wrapper {
  display: flex;
  justify-content: space-between;
}
section.about #accordion #Vineyards .card-body .col .text .wrapper .nz {
  width: 70px;
  margin: -30px 0 15px 15px;
  height: 100px;
}
section.about #accordion #Vineyards .card-body .col .location {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
section.about #accordion #Vineyards .card-body .col .location img {
  border-radius: 4px;
}
section.about #accordion #Vineyards .card-body .col .location .pic {
  width: 100%;
  height: auto;
}
section.about #accordion #Vineyards .card-body .col .location .nz {
  width: 80px;
  height: auto;
}
section.about #accordion #Sustainabilty .card-body .col {
  justify-content: start;
}
section.about #accordion #Sustainabilty .card-body .col .text:last-child {
  margin-top: 40px;
}

.card-body {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax 576px, 1fr);
}

.buy-wine h2, .contact h2 {
  font-size: 2.25rem;
}
.buy-wine h3, .contact h3 {
  font-size: 2.25rem;
  line-height: 100%;
}
.buy-wine h4, .contact h4 {
  font-size: 1.5rem;
  text-transform: uppercase;
}
.buy-wine p, .contact p {
  color: #e8e2cf;
}
.buy-wine .banner, .contact .banner {
  height: 250px;
  border-radius: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.buy-wine .title, .contact .title {
  padding: 10px 16px;
  position: relative;
  z-index: 10;
}
.buy-wine .title .text-h1,
.buy-wine .title h1 {
  color: #e8e2cf;
}

.buy-wine .col {
  flex: 0 0 620px;
}
.buy-wine .col a {
  text-decoration: underline;
}
.buy-wine .info {
  position: relative;
  padding: 24px 16px;
}
.buy-wine .stock {
  padding: 0 15px;
}
.buy-wine .title.desktop {
  display: none;
}
.buy-wine .title.mobile h1 {
  margin: 0 0 -35px 0;
}
.buy-wine .stockists {
  display: grid;
  grid-template-columns: repeat(1, 320px);
  grid-gap: 20px;
  margin-top: 30px;
  padding: 0 0 60px 0;
}
.buy-wine .stockists .cell {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 20px;
}
.buy-wine .stockists .cell h4 {
  text-transform: uppercase;
}
.buy-wine .stockists .cell a {
  display: block;
  font-family: "Suisse Lgt";
  font-size: 1.2rem;
  text-decoration: underline;
}
.buy-wine .stockists .cell a:hover {
  color: #b6a263;
}
.buy-wine .distributor, .buy-wine .countries {
  border: 1px solid #e8e2cf;
  border-radius: 8px;
  padding: 20px;
  margin-top: 18px;
}
.buy-wine .distributor p, .buy-wine .countries p {
  margin-bottom: 0;
  line-height: 140%;
  letter-spacing: -2%;
}
.buy-wine .distributor label, .buy-wine .countries label {
  color: #e8e2cf;
  font-family: "Suisse Lgt";
  margin-bottom: 15px;
}

.contact .banner-sml {
  margin: 40px -16px 0 -16px;
  border-radius: 0;
}
.contact .banner-sml .banner {
  max-width: 685px;
  height: 250px;
}
.contact .title {
  padding: 0;
}
.contact .title h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
}
.contact .col {
  padding: 0 16px;
}
.contact .col:last-child {
  display: none;
}
.contact p.open {
  color: #b6a263;
}
.contact .hours {
  display: grid;
  max-width: 320px;
  grid-template-columns: 1fr 2fr;
  grid-gap: 20px;
  color: #e8e2cf;
}
.contact .hours p {
  margin-bottom: 5px;
}

.trade-info {
  gap: 40px;
  max-width: 1200px;
  padding: 0 16px 50px 16px;
  color: #e8e2cf;
  margin: 50px auto 0 auto;
}
.trade-info h2 {
  font-size: 3rem;
  max-width: 500px;
  margin-bottom: 40px;
}
.trade-info p {
  max-width: 500px;
}
.trade-info a {
  text-decoration: underline;
}

.asset-group {
  margin: 0 16px;
  border-top: 1px solid #2f2f2f;
  padding-top: 50px;
  color: #e8e2cf;
}
.asset-group .choose-asset {
  margin: 0;
  border-radius: 28px;
  padding: 5px 15px;
  width: 134px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.asset-group .choose-asset select {
  height: auto;
  width: fit-content;
  min-width: 100px;
}
.asset-group .choose-asset:hover {
  background-color: #b6a263;
  color: #000000;
  border: 1px solid #b6a263;
}
.asset-group h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}
.asset-group h3 {
  font-size: 1.5rem;
}
.asset-group .col {
  margin: 15px 0 60px 0;
}
.asset-group .col.two .image {
  border: 1px solid #555555;
}
.asset-group .wrapper {
  max-width: 570px;
}
.asset-group .wrapper .image {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}
.asset-group .wrapper .image img {
  width: 100%;
  height: auto;
}
.asset-group .wrapper .text h3 {
  margin-bottom: 16px;
}
.asset-group .wrapper .text p {
  max-width: 420px;
}

@media (min-width: 480px) {
  .title h2 {
    font-size: 4.5rem;
  }
  .explore .wine-range .schema-wrapper a.col h3 {
    height: auto;
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  .intro p {
    font-size: 18px;
    line-height: 25px;
  }
  section.wine-section .content .details {
    padding: 50px 20px 70px 20px;
  }
  /* .explore h2 size driven by .text-h2 utility — no override here */
  .explore .wine-range .schema-wrapper a.col h3 {
    font-size: 1.8rem;
    /* min-height (not height) so padding-bottom from the base rule can
       extend the box. fixed height ate the 18px gap at 992+/1200+. */
    min-height: 65px;
  }
  .explore .wine-range .schema-wrapper a.col .image {
    background-size: contain;
  }
  /* hover effect on background-size removed — `contain` already maxes the
     image; use transform if a hover grow is needed later. */
  .collection {
    display: flex;
    justify-content: left;
    grid-gap: 1.5%;
    margin-top: 40px;
  }
  .collection .schema-wrapper {
    width: 31.83%;
    margin-bottom: 20px;
  }
  .collection .schema-wrapper a.col .image {
    max-width: 330px;
  }
  section.specs .lifestyle {
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    padding: 80px 0 0 0;
  }
  section.specs .lifestyle .wrap-50 {
    display: flex;
    width: 50%;
    padding: 0;
  }
  section.specs .lifestyle .image {
    height: 500px;
  }
  section.about #accordion .card-body {
    gap: 40px;
    display: flex;
    flex-flow: row nowrap;
  }
  section.about #accordion .card-body .col {
    display: flex;
    width: 50%;
    flex-flow: column wrap;
    justify-content: space-between;
    margin-bottom: 0;
  }
  section.about #accordion #Vineyards .card-body .col .text .info-grid {
    padding: 0 15px 20px 15px;
    gap: 15px;
  }
}
@media (min-width: 768px) {
  .banner-fw .banner-img h1 {
    margin-bottom: -30px;
  }
  .banner-fw .title, .banner-fw .title-int {
    padding: 60px 22px 0 22px;
  }
  .banner {
    width: 100%;
    height: 512px;
  }
  .title {
    padding: 60px 22px 30px 22px;
  }
  .SileniInternationalWineHolderPage .banner-fw .title {
    padding: 60px 22px 0 22px;
  }
  .SileniInternationalWineHolderPage .banner-fw .title h1 {
    margin: 0 0 0 120px;
  }
  .SileniInternationalWineHolderPage .banner-fw .title h1:nth-child(2) {
    margin: 0 0 -30px 290px;
  }
  .mobile {
    display: none;
  }
  .desktop {
    display: block;
  }
  .choose-wine.desktop {
    display: block;
    padding: 30px 22px 0 22px;
  }
  .choose-wine.desktop select {
    font-size: 3rem;
    line-height: 100%; /* 1.5rem */
  }
  .collection .schema-wrapper a.col h3 {
    font-size: 1.5rem;
  }
  .collection .schema-wrapper a.col h4 {
    font-size: 1.25rem;
    height: 55px;
    margin-bottom: -25px;
  }
  .collection .schema-wrapper a.col .image {
    height: 320px;
  }
  .collection .schema-wrapper a.col button.link {
    margin: 30px 0 0 0;
  }
  .SileniInternationalWineHolderPage .collection {
    margin-top: 60px;
  }
  .buy-btns, .buy-btns-int {
    display: flex;
    margin: 25px 0;
  }
  .buy-btns .col, .buy-btns-int .col {
    display: block !important;
    flex: unset;
  }
  .buy-btns .col:first-child, .buy-btns-int .col:first-child {
    width: 105px;
  }
  .buy-btns-int button.link {
    margin: 0 !important;
  }
  .intro h2, .intro-pg h2 {
    font-size: 30px;
  }
  .intro {
    padding: 80px 22px 70px 22px;
  }
  .intro p {
    font-size: 22px;
    line-height: 31px;
  }
  section.wine-section .content h2 {
    margin: -110px 0 0 0;
  }
  section.wine-section .content .details {
    flex-flow: row nowrap;
    /* BWGR-4: use the 992+ spacing from 768 so the 768–991 row layout isn't
       cramped (images column was sitting flush against the RH text). */
    padding: 120px 0 140px 0;
  }
  section.wine-section .content .details .ord-1 {
    order: 1;
  }
  section.wine-section .content .details .ord-2 {
    order: 2;
  }
  section.wine-section .content .details .text {
    /* 16% inline padding gives the text breathing room from the images column,
       matching the 992+ layout. */
    padding: 60px 16%;
  }
  section.wine-section .content .details .text h3 {
    font-size: 1.625rem;
    margin-bottom: 40px;
  }
  section.wine-section .content .details .text .top {
    margin-top: 30px;
  }
  section.wine-section .content .details .images {
    justify-content: flex-end;
    padding: 0;
    margin-bottom: 0;
  }
  section.wine-section .content .details.middle .ord-2 {
    order: 1;
  }
  section.wine-section .content .details.middle .ord-1 {
    order: 2;
    justify-content: flex-end;
  }
  .explore {
    margin-top: 0;
  }
  /* h2 size now driven by .text-h2 utility class — no override here */
  .explore .wine-range {
    margin-top: 10px;
    padding: 0 0 60px 0;
    justify-items: center;
  }
  .explore .wine-range .schema-wrapper a.col .image {
    background-size: contain;
  }
  .explore .wine-range .schema-wrapper a.col .roll-link {
    font-size: 1.5rem !important;
    background-size: 12px auto;
  }
  .instagram .content {
    display: flex;
    gap: 10px;
    justify-content: left;
    white-space: nowrap;
    overflow-x: auto;
    position: relative;
    padding: 60px 16px;
  }
  .instagram .content .col {
    width: 45%;
    display: inline-block;
    flex: inherit;
  }
  .instagram .content .col h2 {
    margin: 5px 0 0 0;
  }
  .instagram .content .col h3 {
    /* font-size driven by .text-h3 utility; "1.8" had no unit and was invalid */
    max-width: 220px;
  }
  .instagram .content .col br {
    display: block;
  }
  .instagram .content .vid-1 video, .instagram .content .vid-3 video {
    display: block;
  }
  .wine-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 22px 40px 80px;
  }
  /* Keep breadcrumbs left-aligned with .wine-info (+12px) at this breakpoint. */
  .breadcrumbs {
    padding-left: 80px;
    margin-left: 12px;
  }
  .wine-info .info {
    width: 55%;
    margin-bottom: 0;
  }
  .wine-info .info h1 {
    font-size: 3.765rem;
    line-height: 80%;
  }
  .wine-info .info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .wine-info .info h3 {
    font-size: 1.25rem;
  }
  .wine-info .info p {
    font-size: 1.25rem;
  }
  .wine-info .bottle-shot {
    display: flex;
    justify-content: center;
    width: 45%;
    height: auto;
  }
  .wine-info .bottle-shot .image {
    width: 240px;
    height: 550px;
    background-position: 50% 50%;
  }
  section.specs .specs-inner {
    padding: 80px 22px !important;
  }
  section.specs h2 {
    font-size: 6rem;
    line-height: 80%;
    letter-spacing: -2%;
    margin-bottom: 30px;
  }
  section.specs p {
    font-size: 1.75rem;
    line-height: 140%;
    margin-bottom: 0;
  }
  section.specs .notes {
    margin: 48px 0 0 0;
  }
  section.specs .notes .col p {
    font-size: 1.25rem;
  }
  section.specs .lifestyle .image {
    height: 480px;
  }
  section.other {
    padding: 60px 22px 0 22px;
  }
  section.other .title {
    padding: 0;
  }
  section.other .title h2 {
    line-height: 90%;
  }
  section.about .title h2 {
    font-size: 6rem;
  }
  section.about #accordion {
    margin: 0  22px 60px 22px;
  }
  section.about #accordion .stack {
    font-size: 3rem;
  }
  section.about #accordion .card-body {
    padding: 40px 0 60px 0;
  }
  section.about #accordion #Vineyards .card-body .col .text p {
    max-width: 90%;
  }
  section.about #accordion #Vineyards .card-body .col .text .info-grid .cell {
    font-size: 1.125rem;
  }
  section.about #accordion #Vineyards .card-body .col .location .nz.desktop {
    display: block;
    width: 25%;
    max-width: 95px;
    height: auto;
    margin: 0 0 0 22px;
  }
  section.about #accordion #Vineyards .card-body .col .location .pic {
    width: 85%;
    max-width: 420px;
    margin-right: 10px;
  }
  .buy-wine, .contact {
    display: flex;
    margin: 60px 0;
  }
  .buy-wine .banner, .contact .banner {
    border-radius: 8px;
  }
  .buy-wine .info, .contact .info {
    padding: 60px 15% 0 0;
  }
  .buy-wine .title, .contact .title {
    padding: 0 25px 40px 0;
  }
  .buy-wine .title.desktop, .contact .title.desktop {
    display: block;
  }
  .buy-wine .title.desktop h1, .contact .title.desktop h1 {
    font-size: 5rem;
  }
  .buy-wine {
    grid-gap: 30px;
  }
  .buy-wine .col {
    flex: 0 0 50%;
    padding: 0 24px;
  }
  .buy-wine .info {
    padding: 60px 12% 0 18%;
  }
  .buy-wine .info h2 {
    font-size: 3rem;
  }
  .buy-wine .international {
    padding: 60px 0 0 0 !important;
  }
  .buy-wine .stockists {
    display: grid;
    grid-template-columns: repeat(1, 320px);
    grid-gap: 20px;
    margin-top: 30px;
  }
  .contact .title h1 {
    font-size: 5rem;
  }
  .contact .location {
    display: flex;
  }
  .contact .location .address, .contact .location .banner-sml {
    width: 50%;
  }
  .contact .location .banner-sml {
    display: grid;
    margin: 0;
  }
  .contact .location .banner-sml .banner {
    justify-self: right;
  }
  .trade-info {
    display: flex;
    padding: 0 22px 108px 22px;
  }
  .asset-group {
    display: flex;
    flex-wrap: wrap;
    margin: 0 22px;
    padding: 25px 0 100px 0;
  }
  .asset-group h2 {
    width: 100%;
  }
  .asset-group .col {
    flex: inherit;
    margin: 30px 0;
  }
  .asset-group .two {
    width: 49%;
    margin-right: 1%;
  }
  .asset-group .three {
    width: 30%;
    margin-right: 3.333%;
  }
}
/* ≤768px: stack the wine-section columns and reset wrap widths (BWGR-4).
 * Placed after the ≥768px rules so it wins on source order at 768px. */
@media (max-width: 768px) {
  .wrap-50 {
    width: 100%;
  }
  .intro {
    max-width: 420px;
  }
  .pad-r {
    padding-right: 0;
  }
  section.wine-section .content .details {
    flex-direction: column-reverse;
    padding: 60px 60px 40px 60px;
  }
  section.wine-section .content .details.middle {
    flex-direction: column;
  }
  section.wine-section .content .details .text h3 {
    margin-bottom: 20px;
  }
  section.wine-section .content .details .images {
    margin-bottom: 0;
  }
  section.wine-section .content .details .wrap-50.ord-2 {
    padding: 0;
  }
}
/* Mobile only (≤767px): drop the side padding on the wine-section details. */
@media (max-width: 767px) {
  section.wine-section .content .details {
    padding: 60px 0;
  }
  section.wine-section .content .details .wrap-50.ord-2 {
    padding: 0 0 40px 0;
  }
}
/* Intro / banner H2 type scale (BWGR-4):
 * 22px mobile (<768) · 30px ≥768 · 40px ≥1024 · 44px ≥1440 */
@media (min-width: 1024px) {
  .intro h2, .intro-pg h2 {
    font-size: 40px;
  }
  .intro p {
    font-size: 28px;
    line-height: 39px;
  }
}
@media (min-width: 1440px) {
  .intro h2, .intro-pg h2 {
    font-size: 44px;
  }
  .intro p {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (min-width: 992px) {
  .banner-fw .banner-img .title {
    width: fit-content;
    padding: 0 0 0 10%;
  }
  .banner-fw h1:nth-child(2) {
    margin: 0 0 -30px 180px;
  }
  .collection .schema-wrapper {
    width: 23.875%;
    margin-bottom: 60px;
  }
  .collection .schema-wrapper a.col .image {
    height: 360px;
  }
  .title h2 {
    font-size: 6rem;
  }
  section.wine-section {
    margin-top: 0;
  }
  section.wine-section .content .details {
    padding: 60px 20px 140px 20px;
  }
  section.wine-section .content .details .text {
    padding: 60px 16%;
  }
  section.wine-section .content .details .images {
    margin-bottom: 0;
  }
  section.wine-section .content .details {
    padding: 120px 0 140px 0;
  }
  section.wine-section .content .details .images .image-sngl {
    border-radius: 8px 0 0 8px;
  }
  /* .explore h2 size driven by .text-h2 utility — no override here */
  .explore .wine-range .schema-wrapper a.col h3 {
    /* min-height so 18px padding-bottom is visible (was fixed height: 65px) */
    min-height: 65px;
    font-size: 2rem;
  }
  .instagram .content {
    padding: 120px 10%;
    grid-gap: 15px;
  }
  .instagram .col h3 {
    /* font-size driven by .text-h3 utility class */
    margin: -5px 0 0 0;
  }
  .instagram .col h2 {
    margin: 0;
  }
  .wine-info {
    display: flex;
    justify-content: space-between;
    padding: 80px 22px 40px 90px;
  }
  .breadcrumbs {
    padding-left: 90px;
  }
  .wine-info .info h1 {
    font-size: 4.75rem;
  }
  .wine-info .info h2 {
    font-size: 3rem;
  }
  .wine-info .info h3 {
    font-size: 1.875rem;
  }
  .wine-info .info p {
    font-size: 1.25rem;
  }
  .wine-info .bottle-shot .image {
    width: 390px;
    height: 700px;
  }
  .wine-info .image {
    background-position: 50% 50%;
    background-size: auto 100%;
    margin: 0;
  }
  .wine-info .lifestyle {
    padding-bottom: 0;
  }
  .wine-info .lifestyle .notes {
    overflow-x: auto;
    margin-bottom: 60px;
  }
  .wine-info .lifestyle .image {
    height: 480px;
  }
  section.specs .notes {
    overflow-x: auto;
  }
  section.specs .notes .col {
    min-width: 300px;
  }
  section.about #accordion .card-body {
    padding: 60px 100px;
    gap: 40px;
  }
  .buy-wine .title.desktop h1, .contact .title.desktop h1 {
    font-size: 6.5rem;
  }
  .buy-wine .banner {
    height: 390px;
  }
  .contact .title h1 {
    font-size: 6.5rem;
  }
  .contact .location .address {
    padding-left: 40px;
  }
  .contact .location .address .banner {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .collection .schema-wrapper a.col .image {
    height: 500px;
  }
  .collection .schema-wrapper a.col button.link {
    font-size: 1rem;
  }
  section.wine-section .content .details .text {
    padding: 0 120px 0 90px;
  }
  .explore .wine-range .schema-wrapper a.col h3 {
    font-size: 2.5rem !important;
    line-height: 38px;
    /* margin-bottom: 0 + padding-bottom: 12px inherited from base for the
       title-to-image gap */
  }
  .wine-info .info h1 {
    font-size: 6rem;
  }
  .specs .lifestyle .image {
    height: 460px;
  }
  section.about #accordion .card-body {
    gap: 20px;
  }
  section.about #accordion #Vineyards .card-body .col .text .info-grid {
    padding: 0 20px 20px 20px;
  }
  section.about #accordion #Vineyards .card-body .col .location .pic {
    max-width: 440px;
    margin-right: 24px;
  }
  .SileniInternationalWineHolderPage .banner-fw .title h1:nth-child(2) {
    margin: 0 0 -30px 320px;
  }
  .buy-wine .title.desktop h1, .contact .title.desktop h1 {
    font-size: 7.5rem;
  }
  .buy-wine {
    grid-gap: 100px;
  }
  .buy-wine .col {
    flex: 0 0 620px;
  }
  .buy-wine .info {
    padding: 60px 15% 0 20%;
  }
  .buy-wine .stockists {
    grid-template-columns: repeat(1, 320px);
  }
  .contact {
    grid-gap: 60px;
  }
  .contact .title h1 {
    font-size: 7.5rem;
  }
  .contact .location .banner {
    height: 460px;
  }
}
@media (min-width: 1400px) {
  .banner-fw .title {
    padding: 60px 0 0 0;
    margin-bottom: -45px;
  }
  section.wine-section .content .details .text {
    padding: 0 120px 0 140px;
  }
  /* .instagram .col h2/h3 sizes driven by .text-h2 / .text-h3 utility classes */
  .instagram .col h3 {
    margin-bottom: 30px;
  }
  .choose-wine.desktop #accordion .filter .select {
    font-size: 3rem;
  }
  .SileniInternationalWineHolderPage .banner-fw .title h1:nth-child(2) {
    margin: 0 0 0 370px;
  }
  .buy-wine .title.desktop h1, .contact .title.desktop h1 {
    font-size: 9.25rem;
  }
  .buy-wine .stockists {
    grid-template-columns: repeat(2, 320px);
  }
  .contact .title h1 {
    font-size: 10.25rem;
  }
  .contact .location .address {
    padding-left: 100px;
  }
}
/*-----------------------------------------------------------------------------------

	Int SCSS INDEX

	00. H1 Titles
		- Animated Buttons
		- Animated Text
		- Animated Banners
	01. Header
		- Brand
		- Navigation	
	02. Main
		- Banner & Titles
	03. Footer
	04. Age Gate
	05. Login Page
	06. Media Queries

-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------
----------------------------------------------------------------------------------- */

/* Footer region selector (BWGR-3)
 * Mobile (default): 2-column row at the bottom of the wrapper (after all cols)
 * Desktop: position absolute, anchored under the logo on the right
 */
.footer .region-selector {
  order: 3;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8%;
  margin-top: 10px;
  color: #e8e2cf;
}
.footer .region-selector .your-location,
.footer .region-selector .change-country {
  width: 46%;
}
.footer .region-selector h5 {
  font-family: "Suisse Bold";
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0;
  text-transform: uppercase;
  font-variant-numeric: lining-nums tabular-nums;
  margin: 0 0 24px 0;
  color: #e8e2cf;
}
.footer .region-selector p {
  font-family: "Suisse Int'l", "Suisse Reg", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0;
  font-variant-numeric: lining-nums tabular-nums;
  margin: 0;
  color: #e8e2cf;
}
.footer .region-selector .select-wrapper {
  position: relative;
  display: inline-block;
  width: 178px;
  max-width: 100%;
}
.footer .region-selector .select-wrapper::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid #e8e2cf;
  border-bottom: 1px solid #e8e2cf;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.footer .region-selector select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 36px;
  padding: 0 36px 0 14px;
  background-color: #252525;
  border: none;
  color: #e8e2cf;
  font-family: "Suisse Int'l", "Suisse Reg", sans-serif;
  font-size: 14px;
  line-height: 36px;
  border-radius: 0;
  cursor: pointer;
}
.footer .region-selector select:focus {
  outline: 1px solid #b6a263;
}

/* Desktop: CSS grid so the region selector lives in its own row directly under
 * the logo cell. Cols 1-4 (menu cols) span both rows. Col 5 sizes to its content
 * (logo / 178px dropdown), CONTACT gets extra room for the address. */
@media (min-width: 768px) {
  .footer .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr auto;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "wine about buy contact logo"
      "wine about buy contact region";
    column-gap: 6%;
    align-items: start;
  }
  .footer .wrapper .col:nth-child(1) { grid-area: wine; }
  .footer .wrapper .col:nth-child(2) { grid-area: about; }
  .footer .wrapper .col:nth-child(3) { grid-area: buy; }
  .footer .wrapper .col:nth-child(4) { grid-area: contact; }
  .footer .wrapper .col:nth-child(5) {
    grid-area: logo;
    width: 178px;
    display: block;
    margin-bottom: 0;
  }
  .footer .region-selector {
    grid-area: region;
    width: 178px;
    margin: 40px 0 0 0;
    align-self: start;
    display: block;
  }
  .footer .region-selector .your-location,
  .footer .region-selector .change-country {
    width: 100%;
  }
  .footer .region-selector .your-location {
    margin-bottom: 50px;
  }
  .footer .region-selector .your-location h5 {
    margin-bottom: 8px;
  }
  .footer .region-selector .change-label {
    display: none;
  }
}

/* BWGR-4: Explore More cards at 1920–2560 — Figma spec 476×852 per card
   (h3 title + black image box + VIEW RANGE link). Image height tuned so
   h3 (~96px incl margin) + image (720px) + roll-link (~36px) ≈ 852px.
   3 cards × 476 + 2 × 12 gap = 1452px, comfortably inside 1760px content
   area (1920 viewport − 80 side padding × 2). */
@media (min-width: 1920px) {
  .explore .wine-range {
    flex-wrap: nowrap;
  }
  .explore .wine-range .schema-wrapper {
    flex: 0 1 476px;
    max-width: 476px;
    min-width: 0;
  }
  .explore .wine-range .schema-wrapper a.col h3 {
    font-size: 44px !important;
    line-height: 38px;
    letter-spacing: -0.02em;
    height: auto;
    min-height: 80px;
    /* 12px title-to-image gap inherited from base padding-bottom */
    /* Force 2-line wrap (CELLAR SELECTION / GRAND RESERVE / EX VINTAGE).
       240px is wider than the longest single word ("SELECTION" ≈ 220px)
       but narrower than the full title (≈ 400px). */
    max-width: 240px;
  }
  .explore .wine-range .schema-wrapper a.col .roll-link {
    font-size: 26px;
  }
}
