:root {
  --color-blue-100: #325db5;
  --color-blue-200: #284d97;
  --color-blue-300: #1f3d7b;
  --color-blue-400: #122854;
  --color-blue-500: #081736;
  --color-silver: #efefef;
  --color-white: #fff;
  
  --text-size-xs: 0.64rem;
  --text-size-sm: 0.8rem;
  --text-size-md: 1rem;
  --text-size-lg: 1.25rem;
  --text-size-xl: 1.56rem;
  --text-size-2xl: 1.95rem;
  --text-size-3xl: 2.44rem;
  --text-size-4xl: 3.05rem;
  --text-size-5xl: 3.81rem;
}

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

html {
  line-height: 1.15; /* 1 */  
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* 2 */
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
a {
  background-color: transparent;
}
b,
strong {
  font-weight: bolder;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
button,
input { /* 1 */
  overflow: visible;
}
button,
select { /* 1 */
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[hidden] {
  display: none;
}



body {
  color: #122854;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 1rem;
  font-style: normal;
}

h1, h2, h3, h4, h5 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1.15;
}

h1,
.text-size-h1 { font-size: 3.05em; }

h2,
.text-size-h2 { font-size: 2.44em; }

h3,
.text-size-h3 { font-size: 1.95em; }

h4,
.text-size-h4 { font-size: 1.56em; }

h5,
.text-size-h5 { font-size: 1.25em; }

p {
  font-size: 1rem;
  line-height: 1.4rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

p:last-child {
  margin-bottom: 0;
}

/* a {
  color: #057095;

  &:hover {
    color: #153B60;
  }

  &:focus {
    outline: 2px dotted #CC400A;
    text-decoration: none;
  }

  &:active {

  }
} */

/* .notifications {
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 auto 2rem;
  max-width: 100%;
  padding: 0.5rem 1rem;

  &.is-error {
    background-color: rgba(252, 97, 97, 0.15);
    border: 2px solid #fc6161;
    color: #f91f1f;
    text-align: left;
  }

  &.is-confirmed {
    background-color: rgba(83, 190, 98, 0.15);
    border: 2px solid #53be62;
    color: #56744a;
    text-align: left;
  }
} */







/* @import "structure";

// Sections
@import "header";
@import "footer";

// Pages
// @import "homepage";

// Components
@import "modal";
@import "buttons"; */

header {
  background-color: #00000030;
  position: fixed;
  width: 100%;
  z-index: 100;
}
.scrolled-bg header {
  background-color: var(--color-white);
  transition: background-color 0.3s linear; 
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.scrolled-bg nav a {
  color: var(--color-blue-500);
  transition: color 0.3s linear; 
}
.scrolled-bg svg path {
  fill: var(--color-blue-500) !important;
}
header .container {
  /* outline: 1px dashed red; */
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.branding {
  outline: 0;
  background-image: url("/images/logo.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  width: 150px;
  height: 150px;
  text-indent: 160%;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
}

nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.75rem;
}

nav li {
  margin: 0;
  padding: 0;
}

nav a {
  font-size: 1rem;
  color: var(--color-blue-500);
  color: var(--color-silver);
  text-decoration: none;
  font-weight: 400;
  /* text-transform: uppercase; */
  padding: 1rem 0.75rem;
  /* outline: 1px dotted red; */
  display: flex;
}
nav a:hover {
  text-decoration: underline;
}

/* .hero {
  height: calc(100vh);
  background-image: url("/images/andy-bardon-NNy3IgEuyJc-unsplash.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  position: relative;
}
.hero::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #00000050;
  z-index: 2;
  content: '';
} */
.story-intro {
  width: 100%;
  background-color: var(--color-silver);
}
.story-intro .container {
  /* outline: 1px dashed red; */
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 1rem;
}
.story-intro .mask-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: var(--color-white);
  /* gap: 3rem; */
}
.story-content {
  flex-basis: calc(100% - 600px);
  align-content: center;
  padding: 0 5rem;
}
.story-content h2,
.recipes-intro h2 {
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.story-content p,
.process-blurb p {
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 2rem;
}
.hero .cta,
.process-intro .cta,
.story-content .cta {
  /* display: inline-flex;
  padding: 0.75rem 1rem;
  background-color: var(--color-blue-400);
  color: var(--color-white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 3px; */

  display: inline-flex;
  align-items: center;
  /* gap: 12px; */
  padding: 0.9275rem 2rem;
  background: transparent;
  color: var(--color-blue-400);
  /* font-family: 'DM Mono', monospace; */
  font-size: 0.9275rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--color-blue-400);
  cursor: pointer;
  transition: background .35s, color .35s, border-color .35s;
  text-decoration: none;
}
.cta {
  transition: background .35s, color .35s, border-color .35s;
}
.hero .cta,
.process-intro .cta {
  border-color: var(--color-white);
  color: var(--color-white);
}
.hero .cta {
  color: rgba(255,255,255,0.75);
}
.process-intro .cta {
  color: var(--color-white);
}

.hero .cta:hover,
.process-intro .cta:hover {
  background-color: var(--color-white);
  color: var(--color-blue-400);
}
.story-content .cta:hover {
  background-color: var(--color-blue-400);
  color: var(--color-white);
}
.story-banner {
  /* flex-basis: 45rem; */
  flex-basis: 600px;
  /* max-width: 600px; */
  /* max-width: 600px; */
}
.story-banner img {
  max-width: 100%;
  display: block;
}


footer {
  color: var(--color-silver);
}
footer h6 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-silver);
  color: #D4A853;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

footer .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem;
}
.footer-wrapper {
  background-color: var(--color-blue-500);
  padding: 2.5rem 0;
}

.footer-wrapper .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 4rem;
}
.footer-nav > div {
  min-width: 9rem;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer li {
  line-height: 2;
  margin-bottom: 0.25rem;
}
footer li:last-child {
  margin-bottom: 0;
}
.footer-nav a {
  display: block;
  line-height: 2rem;
  /* padding: 0.25rem 0; */
  font-size: 0.875rem;
}
.get-in-touch p,
.footer-subscribe p {
  font-size: 0.9275rem;
}
.copyright {
  background-color: var(--color-blue-500);
  border-top: 1px solid #ffffff25;
  padding: 0.75rem 0
}

.copyright p {
  font-size: 0.875rem;
  /* color: var(--color-silver); */
}

footer a {
  color: var(--color-silver);
  text-decoration: none;
}

.form-wrapper {
  border: 1px solid var(--color-silver);
  /* padding: 0.25rem 0; */
  display: flex;
  flex-direction: row;
}
.form-wrapper label {
  padding-left: 1rem;
  border-right: 1px solid var(--color-silver);
  font-size: 1rem;
  line-height: 3rem;
}
.form-wrapper input {
  outline: 0;
  background: transparent;
  color: var(--color-silver);
  padding: 0;
  margin: 0 0 0 1rem;
  border: 0;
  font-size: 1rem;
  line-height: 3rem;
}
.form-wrapper input:focus {
  outline: 0;
}
.footer-subscribe label {
  
}

.footer-subscribe button {
  border: 0;
  color: var(--color-silver);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  padding: 0.5rem 2rem;
}

.process-intro,
.recipes-intro {
  background-color: var(--color-blue-500);
  padding: 5rem 0;
  color: var(--color-white);
  /* text-align: center; */
}
.recipes-intro {
  background-color: var(--color-white);
  color: var(--color-blue-400);
}
.process-intro .container,
.recipes-intro .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  /* outline: 1px dashed yellow; */
}
.process-intro h2 {
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.process-intro p {
  margin-bottom: 3rem;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 2rem;
}
.process-intro ul,
.process-steps ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-intro li {
  margin-bottom: 
}
.process-steps li {
  position: relative;
  padding-left: 3rem;
}
.process-steps span {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  font-style: italic;
}
.process-steps h3 {
  margin: 0;
}

.shop-intro .container
.recipes-intro .container {
  max-width: 1600px;
  outline: 1px dashed green;
  margin: 0 auto;
  padding: 2rem 0;
}

.recipes-intro h1 {
  text-align: center;
  font-weight: 300;
  margin-bottom: 3rem;
}
.recipes ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
}
.recipes li {
  flex-basis: calc(100% / 3);
  /* outline: 1px solid red; */
  /* max-width: 320px; */
}
.recipes a {
  color: var(--color-blue-400);
  outline: 0;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.recipes img {
  max-width: 100%;
  display: block;
  margin-bottom: 1.25rem;
}
.mask {
  mask: radial-gradient(circle 18px at top    left ,#0000 98%,#000) top    left,
        radial-gradient(circle 18px at top    right,#0000 98%,#000) top    right,
        radial-gradient(circle 18px at bottom left ,#0000 98%,#000) bottom left,
        radial-gradient(circle 18px at bottom right,#0000 98%,#000) bottom right;
  mask-size: 51% 51%;
  mask-repeat: no-repeat;
}
.mask-small {
  mask: radial-gradient(circle 9px at top    left ,#0000 98%,#000) top    left,
        radial-gradient(circle 9px at top    right,#0000 98%,#000) top    right,
        radial-gradient(circle 9px at bottom left ,#0000 98%,#000) bottom left,
        radial-gradient(circle 9px at bottom right,#0000 98%,#000) bottom right;
  mask-size: 51% 51%;
  mask-repeat: no-repeat;
}
.recipes p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
}