/* ==========================================================================
   SUBPAGE SKIN — style.css
  

   CONTENTS:
   1. CSS Custom Properties (Design Tokens)
   2. Normalize / Base Reset Additions
   3. Typography
   4. Header Enhancements (layered on base)
   5. Footer Overrides
   6. Banner Additions
   7. Form Styling
   8. Utility Classes
   9. Responsive Overrides
   ========================================================================== */


/* ==========================================================================
   1. CSS CUSTOM PROPERTIES
   
   The base CSS defines --red, --white, --black, --cream.
   Here we add tokens the base doesn't include.
   ========================================================================== */

:root {
  --grey: #F2EDE0;
  --heading-font-family: "Archivo", sans-serif;
  --paragraph-font-family: "Libre Baskerville", serif;
  --primary-button-bg: #7c211e;
  --primary-button-bg-hover: #000;
  --primary-button-text-color: #fff;
  --button-border-radius: 3px;
}


/* ==========================================================================
   2. NORMALIZE / BASE RESET ADDITIONS
   
   The base CSS handles .screen-reader-text, .no-display, .visually-hidden.
   Below are reset rules the base doesn't cover.
   ========================================================================== */

{
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

img {
  border: 0;
  max-width: 100% !important;
  height: auto !important;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
  max-width: 100%;
}

hr {
  box-sizing: content-box;
  height: 0;
  border: 1px solid #ccc;
  border-width: 1px 0 0;
  clear: both;
  margin: 3rem 0;
}

a {
  background-color: transparent;
  color: #000 !important;
  text-decoration: none;
  transition: all 200ms ease-out;
}

a:hover {
  color: var(--red);
}

a:active,
a:hover {
  outline: 0;
}

p a,
li a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

p a:hover,
li a:hover {
  color: var(--red);
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup { top: -0.5em; }
sub { bottom: -0.25em; }


/* ==========================================================================
   3. TYPOGRAPHY
   
   The base CSS does not define body/paragraph/heading fonts.
   Everything here is new.
   ========================================================================== */

body,
p,
{
  font-family: var(--paragraph-font-family);
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  font-size: clamp(0.9375rem, 0.8715rem   0.2817vw, 1rem);
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  font-family: var(--heading-font-family);
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 8px;
}

@media only screen and (max-width: 48em) {
  h1, .h1,
  h2, .h2,
  h3, .h3,
  h4, .h4 {
    letter-spacing: 4px;
  }
}

h1,
.h1 {
  font-size: clamp(2rem, 1.0563rem   2.1596vw, 3rem);
}

h2,
.h2 {
  font-size: clamp(1.5rem, 0.643rem   2.857vw, 2rem);
  line-height: 1.1;
  margin-bottom: 0.5em;
}

h3,
.h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

@media only screen and (min-width: 40.0625em) {
  h3,
  .h3 {
    font-size: 2rem;
  }
}

h4,
.h4 {
  font-size: 1.2em;
  line-height: 1.2;
  margin-bottom: 0.2em;
}

@media only screen and (min-width: 40.0625em) {
  h4,
  .h4 {
    font-size: 1.65rem;
  }
}

h5,
.h5 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.2em;
}

@media only screen and (min-width: 40.0625em) {
  h5,
  .h5 {
    font-size: 1.25rem;
  }
}

h6,
.h6 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.2em;
}

.eyebrow-message {
  font-family: var(--heading-font-family);
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 0.5rem;
}

@media only screen and (max-width: 48em) {
  .eyebrow-message {
    line-height: 1.25;
  }
}

blockquote {
  font-size: 1.8rem;
  font-style: italic;
}

blockquote p {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.2;
  text-align: center;
}

blockquote p:before { content: "\201C"; }
blockquote p:after { content: "\201D"; }

cite {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
  display: block;
  text-align: center;
  margin: 0 auto 1.5rem;
  font-style: normal;
}

.text-small { font-size: 0.917em; }
.text-tiny { font-size: 0.834em; }

.sp-header__nav-container .nav > li > a {
	font-weight: 300 !important;
	}


/* ==========================================================================
   4. HEADER ENHANCEMENTS
   
   The base CSS (Document 2) handles:
   - .sp-header layout, sticky, scrolled background
   - .sp-header__logo sizing and transitions
   - .sp-header__nav-container desktop/mobile panel
   - .sp-header__navigation-toggle hamburger   X animation
   - .sp-header-promo-bar layout and white text
   - .navbar-nav flex direction
   - .nav-link sizing, color, scrolled/mobile color
   - .show-mobile-nav toggle
   
   Below we add ONLY what the base doesn't cover.
   ========================================================================== */

/* Header font family — base doesn't set one */
.sp-header {
  font-family: var(--heading-font-family);
}

/* Nav links — uppercase not set in base */
.sp-header__nav-container .nav-link {
  text-transform: uppercase;
}

/*
 * Logo alternate (white version) — show/hide on scroll.
 * The header HTML has a .logo-alternate img but base CSS has no swap logic.
 */
.sp-header__logo a {
  position: relative;
}

.sp-header__logo .logo-alternate {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 300ms ease-out;
}

@media only screen and (min-width: 64.0625em) {
  .spectra-page.scrolled .sp-header__logo a img:first-child {
    opacity: 0;
  }

  .spectra-page.scrolled .sp-header__logo .logo-alternate {
    opacity: 1;
  }
}

/*
 * Dropdown menus — base CSS doesn't style these.
 * The header HTML uses .dropdown-menu and .dropdown-toggle.
 */
.sp-header__nav-container .nav-item.menu-item-has-children {
  position: relative;
}

.sp-header__nav-container .dropdown-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.sp-header__nav-container .dropdown-toggle {
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
  transition: transform 200ms;
  stroke: #333;
  line-height: 1;
}

/* Desktop: reveal on hover */
@media only screen and (min-width: 64.0625em) {
  .sp-header__nav-container .nav-item.menu-item-has-children:hover > .dropdown-menu {
    display: block;
  }

  .sp-header__nav-container .nav-item.menu-item-has-children:hover > .dropdown-toggle {
    transform: rotate(180deg);
  }

  .sp-header__nav-container .dropdown-menu {
    background: var(--cream);
    border: 1px solid #666;
    min-width: 12.5rem;
    position: absolute;
    top: 100%;
    z-index: 30;
  }

  .sp-header__nav-container .dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    width: 300px;
    white-space: nowrap;
    text-decoration: none;
    color: #333;
  }

  .sp-header__nav-container .dropdown-menu a:hover {
    color: #000;
  }

  /* Scrolled: keep dropdowns readable against dark header */
  .spectra-page.scrolled .sp-header__nav-container .dropdown-menu {
    background: var(--cream);
  }

  .spectra-page.scrolled .sp-header__nav-container .dropdown-menu a {
    color: #333;
  }

  .spectra-page.scrolled .sp-header__nav-container .dropdown-menu a:hover {
    color: #000;
  }

  .spectra-page.scrolled .sp-header__nav-container .dropdown-toggle {
    stroke: #fff;
  }
}

/* JS-driven .open class for mobile   keyboard a11y */
.sp-header__nav-container .nav-item.menu-item-has-children.open > .dropdown-menu {
  display: block;
}

.sp-header__nav-container .nav-item.menu-item-has-children.open > .dropdown-toggle {
  transform: rotate(180deg);
}

/* Mobile: indented sub-menu */
@media screen and (max-width: 64em) {
  .sp-header__nav-container .dropdown-menu {
    padding-left: 0.875rem;
  }

  .sp-header__nav-container .dropdown-menu a {
    color: #eee;
    padding: 0.5rem 0;
    display: block;
  }

  .sp-header__nav-container .dropdown-menu a:hover {
    color: #fff;
  }
}

/* Promo bar links — base sets white text but not link-specific hover */
.sp-header-promo-bar a {
  text-underline-offset: 3px !important;
}

.sp-header-promo-bar a:hover {
  opacity: 0.8;
}





/* ==========================================================================
   6. BANNER ADDITIONS
   
   The base CSS (Document 2) handles:
   - .spt-banner base layout, background, positioning
   - All .spt-template-width--content-* positioning variants
   - .spt-banner--large, --small size variants
   - .spt-banner--background-focus-left/right/top/bottom
   - .spt-banner--veil, --parallax, --restricted
   - .spt-banner__content typography and button styles
   - .spt-banner__next-section scroll indicator   bounce animation
   
   Below we add shorthand classes not in the base.
   ========================================================================== */

.spt-banner--bg-left { background-position: center left; }
.spt-banner--bg-right { background-position: center right; }
.spt-banner--bg-top { background-position: top center; }
.spt-banner--bg-bottom { background-position: bottom center; }


/* ==========================================================================
   7. FORM STYLING
   
   Not present in the base CSS. Entirely new.
   ========================================================================== */

.form-control {
  border-radius: var(--button-border-radius);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="url"],
textarea,
select {
  color: inherit;
  font: inherit;
  margin: 0;
  line-height: normal;
  border: 1px solid rgba(112, 112, 112, 0.35);
  border-radius: var(--button-border-radius);
  padding: 0.75em;
  font-family: var(--paragraph-font-family);
  background: #fff;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--red);
}

textarea {
  overflow: auto;
  min-height: 120px;
}

select {
  text-transform: none;
  cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

label {
  display: block;
  margin-bottom: 0.5em;
  font-family: var(--heading-font-family);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0em;
}

legend {
  border: 0;
  padding: 0;
}

/*
 * Buttons — override the base .button style.
 * Base uses transparent bg with a 2px border.
 * Subpages use a filled red button with rounded corners.
 */
.button,
.btn,
.btn-primary,
button[type="submit"],
input[type="submit"] {
}

.button, .btn, .btn-primary, .btn-checkout, .store-empty-btn {
  background: var(--red) !important;
  font-family: "Archivo", sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  border-radius: 3px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 25px !important;
  padding-right: 25px !important;
  color: #fff !important;
}

.btn-primary:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.store-empty-btn {
    background-color: #7c211e !important;
    color: #fff !important;
    border: 2px solid #7c211e !important;
    border-radius: 0;
    font-family: "Archivo", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .035em;
    padding: .55em 1.5em;
    text-decoration: none !important;
    transition: all .2s ease-in;
}
#
.store-empty-btn:hover {
background-color: #000 !important;
color: #fff !important;
}

.btn-checkout:hover, .store-empty-btn:hover {
background-color: #000 !important;
color: #fff !important;
}

.btn-checkout {
    background-color: #7c211e !important;
    color: #fff !important;
    border: 2px solid #7c211e !important;
    border-radius: 0 !important;
    font-family: "Archivo", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .035em;
    padding: .55em 1.5em;
    text-decoration: none !important;
    transition: all .2s ease-in;
    display: inline-block;
}

.btn-checkout:hover {
background-color: #000 !important;
color: #fff !important;
}

.forgot-password {
  margin-top: 20px;
  text-align: center;
}

.forgot-password p.hint {
  margin: 8px 0;
  font-size: 14px;
}

.forgot-password a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password a:hover {
  color: #2980b9;
  text-decoration: underline;
}

.button:hover,
.btn:hover,
.btn-primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: var(--primary-button-bg-hover);
  color: #fff;
  text-decoration: none;
}

button[disabled],
input[disabled] {
  cursor: default;
  opacity: 0.6;
}

/* Error / validation messages */
.errorMessage,
.errorSummary {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  padding: 10px;
  border-radius: var(--button-border-radius);
  margin-bottom: 1rem;
}

.information-text {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
  padding: 10px;
  border-radius: var(--button-border-radius);
  margin-bottom: 1rem;
}

/* Newsletter / subscribe form */
.newsletter-section {
  position: relative;
  padding-bottom: 2.5rem;
}

@media only screen and (min-width: 48.0625em) {
.newsletter-section .newsletter-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 60rem;
    margin: 0 auto;
    padding: 0 1rem;
  }
}

.newsletter-section__text {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 48.0625em) {
  .newsletter-section__text {
    width: 45%;
    margin-bottom: 0;
  }
}

.newsletter-section--reverse {
  background: #222;
  color: #eee;
  padding: 2.5rem 1.5rem;
}

.newsletter-section--reverse button,
.newsletter-section--reverse input[type="submit"] {
  color: #eee;
  border-color: #eee;
}


/* ==========================================================================
   8. UTILITY CLASSES
   
   .screen-reader-text, .no-display, .visually-hidden hiding rules
   are already in the base CSS. We only add the :focus reveal and
   classes not present in the base.
   ========================================================================== */

.light-grey-background {
  background: var(--grey);
}

.add-padding-top {
  padding-top: 2.5rem !important;
}

.add-padding-bottom {
  padding-bottom: 2.5rem !important;
}

@media only screen and (min-width: 64em) {
  .add-padding-top {
    padding-top: 4rem !important;
  }

  .add-padding-bottom {
    padding-bottom: 4rem !important;
  }
}

/* Skip-link :focus reveal — base hides it, we make it visible on focus */
.screen-reader-text:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  line-height: normal;
  padding: 1rem 1.5rem;
  text-decoration: none;
  top: 0.5rem;
  left: 0.5rem;
  width: auto;
  z-index: 100000;
  background: #fff;
  border: 2px solid #000;
  border-radius: 0.25rem;
  overflow: visible;
}

@media only screen and (min-width: 40.0625em) {
  .small-only {
    display: none;
  }
}

@media only screen and (max-width: 40em) {
  .medium-up {
    display: none;
  }
}

.hide-block {
  display: none !important;
  opacity: 0 !important;
}

/* ==========================================================================
   9. RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 979px) {
  .sp-header .pull-left {
    float: none;
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
  }

  .sp-header .pull-right {
    float: none;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .inner-page-contents > .container {
    padding: 0 15px;
  }
}

@media (max-width: 1200px) {
  .container {
    width: auto;
    padding: 0 15px;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion) {
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}


h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: "Archivo", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 8px;
}

@media only screen and (min-width: 40.0625em) {
  h1   h3,
  .blog-page > h1   h2,
  h1   h2,
  h1   .h3,
  h1   .h2,
  .h1   h3,
  .h1   h2,
  .h1   .h3,
  .h1   .h2 {
    font-size: 1.4545454545rem;
  }
}
h3,
.blog-page > h2,
.h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

@media only screen and (min-width: 40.0625em) {
  h3,
  .blog-page > h2,
  .h3 {
    font-size: 2rem;
  }
}
h4,
.h4 {
  font-size: 1.2em;
  line-height: 1.2;
  margin-bottom: 0.2em;
}

@media only screen and (min-width: 40.0625em) {
  h4,
  .h4 {
    font-size: 1.65rem;
  }
}
h5,
.h5 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.2em;
}

@media only screen and (min-width: 40.0625em) {
  h5,
  .h5 {
    font-size: 1.25rem;
  }
}
h6,
.h6 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.2em;
}

@media only screen and (min-width: 40.0625em) {
  h6,
  .h6 {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 48em) {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
    letter-spacing: 4px;
  }
}
h1, .h1 {
  font-size: clamp(2rem, 1.0563rem   2.1596vw, 3rem);
}

h2, .h2 {
  font-size: clamp(1.5rem, 0.643rem   2.857vw, 2rem) !important; /*24px - 32px, 480px to 1320px*/
  line-height: 1.1;
  margin-bottom: 0.5em;
}

body, p {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  font-size: clamp(0.9375rem, 0.8715rem   0.2817vw, 1rem);
}

.sp-footer {
	font-family: "Archivo", sans-serif;
  	font-weight: 300 !important;
  	font-style: normal;
  	text-transform: none;
  }
  
  .sp-footer__menu-left ul li a,
.sp-footer__menu-right ul li a {
    font-family: "Archivo", sans-serif;
    font-size: 1rem;
    font-weight: 300 !important;
    letter-spacing: 1px;
    line-height: .75rem;
    text-transform: uppercase;
    padding: 4px 8px;
}

.sp-footer__address {
    font-family: "Archivo", sans-serif;
    font-size: 1rem;
    font-weight: 300 !important;
    letter-spacing: 1px;
    line-height: .75rem;
    text-transform: uppercase;
    padding: 4px 8px;
}