/* ==========================================================================
   Mother Mother — fresh page (index2.html)
   Hand-written stylesheet, no Webflow framework dependency.
   ========================================================================== */

/* ---- Fonts ---- */

@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter 28pt";
  src: url("../fonts/Inter_28pt-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Sailors;
  src: url("../fonts/sailors.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fa brands 400";
  src: url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"),
    url("../fonts/fa-brands-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---- Design tokens ---- */

:root {
  --cream: #fdf9f5;
  --black: #1c1416;
  --olive: #434036;

  --crimson: #a31a36;
  --yellow: #fbdb58;
  --navy: #11436c;

  --terracotta: #ad423f;
  --mustard: #e3b747;
  --dusty-blue: #648ea5;

  --font-title: "Inter 28pt", Arial, sans-serif;
  --font-body: Sailors, Arial, sans-serif;

  --container: 980px;
}

/* ---- Reset ---- */

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

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

body {
  margin: 0;
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
  cursor: pointer;
}

.assistive-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  padding: 13px 28px;
  background-color: var(--crimson);
  color: var(--cream);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--crimson);
  transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.btn:hover,
.btn:focus-visible {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.btn--outline {
  background-color: transparent;
  color: var(--cream);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--cream);
  border-color: var(--cream);
  color: var(--black);
}

/* ---- Nav ---- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--black);
  border-bottom: 1px solid #ffffff1a;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.nav__logo {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.nav__link:hover,
.nav__link:focus-visible {
  border-color: var(--mustard);
  color: var(--mustard);
}

.nav__social {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__social--mobile {
  display: none;
}

.nav__social a {
  display: inline-block;
  padding: 5px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 14px;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.nav__social a:hover,
.nav__social a:focus-visible {
  color: var(--mustard);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  padding: 8px;
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--cream);
  margin: 4px 0;
}

@media (max-width: 900px) {
  .nav__social {
    display: none;
  }
  .nav__links {
    position: fixed;
    inset: 0;
    top: 53px;
    background-color: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link {
    font-size: 20px;
  }
  .nav__social--mobile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .nav__social--mobile a {
    font-size: 20px;
  }
  .nav__toggle {
    display: block;
  }
}

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: calc(100vh - 53px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: linear-gradient(180deg, #1c1416cc, #1c1416b3 45%, #1c1416e6), url("../images/hero-background-home.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  padding: 60px 20px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 70vh;
    background-image: none;
  }
  .hero::before,
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
  }
  .hero::before {
    z-index: 0;
    background-image: url("../images/hero-background-home.jpg");
    background-position: center;
    background-size: cover;
    filter: blur(8px) brightness(0.55);
    transform: scale(1.15);
  }
  .hero::after {
    z-index: 1;
    background-image: linear-gradient(180deg, #1c1416cc, #1c1416b3 45%, #1c1416e6), url("../images/hero-background-home.jpg");
    background-position: center;
    background-size: cover, contain;
    background-repeat: no-repeat;
  }
}

.hero__logo {
  position: relative;
  z-index: 2;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(52px, 12vw, 140px);
  line-height: 0.85;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
}

/* ---- Sections ---- */

.section {
  padding: 90px 0;
}

.section--alt {
  background-color: var(--cream);
  color: var(--black);
}

.section__title {
  text-align: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section__subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.5px;
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ---- Mailing list ---- */

.signup-form {
  max-width: 480px;
  margin: 0 auto;
}

.signup-form__row {
  display: flex;
  gap: 10px;
}

.signup-form__input {
  flex: 1;
  background-color: transparent;
  border: 1px solid #fdf9f5b3;
  color: var(--cream);
  padding: 12px 14px;
  font-family: var(--font-title);
  font-size: 15px;
}

.signup-form__input::placeholder {
  color: #fdf9f5b3;
}

.signup-form__terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  cursor: pointer;
}

.signup-form__terms input {
  margin-top: 4px;
  flex-shrink: 0;
}

.signup-form__terms span {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: #fdf9f5cc;
}

.signup-form__terms a {
  color: var(--mustard);
  text-decoration: underline;
}

.signup-message {
  display: none;
  max-width: 480px;
  margin: 14px auto 0;
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-align: center;
}

.signup-message--error {
  color: #e8536e;
}

.signup-message--success {
  color: var(--yellow);
}

/* ---- Tour ---- */

.tour-wrap {
  max-width: 720px;
  margin: 0 auto;
}

/* ---- Store ---- */

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 760px;
  margin: 0 auto 40px;
}

.store-card {
  display: block;
  text-decoration: none;
  color: var(--black);
  background-color: var(--cream);
  transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.store-card:hover,
.store-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px #00000059;
}

.store-card__img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: contain;
  background-color: #ffffff;
  padding: 14px;
}

.store-card__label {
  display: block;
  padding: 12px 10px 16px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  line-height: 1.3;
  text-align: center;
}

.store-card__label em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-weight: 700;
  color: var(--crimson);
}

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

/* ---- Footer ---- */

.footer {
  padding: 40px 20px;
  text-align: center;
}

.footer__copyright {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fdf9f5b3;
  margin-bottom: 14px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
}

.footer__links a,
.footer__links button {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fdf9f5b3;
  text-decoration: none;
  padding: 0;
}

.footer__links a:hover,
.footer__links button:hover {
  color: var(--cream);
}
