/* =========================================================================
   Museum of Arcadia — Components
   Buttons, form inputs, header, footer, mobile menu drawer
   ========================================================================= */


/* =========================================================================
   BUTTONS
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: var(--fs-button);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--ls-button);
  padding: 14px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color var(--t-base) var(--ease-standard),
    color var(--t-base) var(--ease-standard),
    border-color var(--t-base) var(--ease-standard);
  user-select: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--moa-black);
  outline-offset: 2px;
}

/* Primary — black fill, hover inverts */
.btn--primary {
  background-color: var(--moa-black);
  color: var(--moa-white);
  border-color: var(--moa-black);
}

.btn--primary:hover {
  background-color: var(--moa-white);
  color: var(--moa-black);
}

/* Secondary (outlined) — white fill with black border */
.btn--secondary {
  background-color: var(--moa-white);
  color: var(--moa-black);
  border-color: var(--moa-black);
}

.btn--secondary:hover {
  background-color: var(--moa-black);
  color: var(--moa-white);
}

/* Transparent — for the 3 named homepage CTAs only.
   Hover fills to anthracite (#1C1C1E), text stays white. */
.btn--transparent {
  background-color: transparent;
  color: var(--moa-black);
  border-color: var(--moa-black);
}

.btn--transparent:hover {
  background-color: var(--moa-anthracite);
  color: var(--moa-white);
  border-color: var(--moa-anthracite);
}

/* Variant: transparent over dark backgrounds (white text/border) */
.btn--transparent-light {
  background-color: transparent;
  color: var(--moa-white);
  border-color: var(--moa-white);
}

.btn--transparent-light:hover {
  background-color: var(--moa-anthracite);
  color: var(--moa-white);
  border-color: var(--moa-anthracite);
}

/* Width modifiers */
.btn--block {
  display: flex;
  width: 100%;
}

.btn--wide {
  padding-left: 56px;
  padding-right: 56px;
}

/* Figma Button Transparent — Homepage panel 1 (57:2460) */
.btn--collection {
  width: 245px;
  min-width: 245px;
  height: 50px;
  min-height: 50px;
  padding: 0 12px;
  font-size: 0.925rem;
  /* 14.8px */
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 15px;
  border-width: 1px;
  text-align: center;
}

.btn--discover {
  width: 118px;
  height: 50px;
  padding: 10px;
  font-size: var(--fs-button-label);
  font-weight: 500;
  letter-spacing: 0.0078em;
  line-height: 15px;
}

.btn--subscribe {
  width: 163px;
  height: 41px;
  padding: 10px;
  font-size: var(--fs-subscribe);
  font-weight: 500;
  letter-spacing: 0.0078em;
  line-height: 15px;
}


/* =========================================================================
   FORM INPUTS — rule-only style (bottom border only)
   ========================================================================= */

.field {
  position: relative;
  margin-bottom: var(--s-5);
}

.field__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--s-2);
}

.field__label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-small);
  color: var(--moa-muted);
  font-weight: 400;
}

.field__hint {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-small);
  color: var(--moa-muted);
}

.field__input,
.field__select {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-family: var(--font-sans);
  /* user input renders sans-serif per brief */
  font-size: var(--fs-body);
  color: var(--moa-black);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--moa-rule);
  border-radius: 0;
  transition: border-color var(--t-fast) var(--ease-standard);
}

/* Empty / placeholder rendering uses italic serif to match labels */
.field__input::placeholder {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--moa-muted);
}

.field__input:focus,
.field__select:focus {
  border-bottom-color: var(--moa-black);
}

/* Select chevron */
.field__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23111' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

/* Error state */
.field--error .field__input,
.field--error .field__select {
  border-bottom-color: var(--moa-error);
}

.field__error {
  display: block;
  margin-top: var(--s-2);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-small);
  color: var(--moa-error);
  /* Per brief: when error appears, body below drops to maintain symmetry.
     This is naturally handled by the layout flow — error message takes
     vertical space that pushes subsequent fields down. */
}

/* Show / Hide toggle for password fields */
.field__toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-25%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-small);
  color: var(--moa-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 0;
}

/* Field with toggle needs right padding so value doesn't collide */
.field--has-toggle .field__input {
  padding-right: 60px;
}

/* Inline link inside a label area (e.g., Forgot your password?) */
.inline-link {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-small);
  color: var(--moa-black);

  text-underline-offset: 3px;
}


/* =========================================================================
   HEADER — Desktop two-row + Mobile single-row
   ========================================================================= */

.site-header {
  position: relative;
  background-color: var(--moa-white);
  border-bottom: 1px solid var(--moa-border-header);
  z-index: var(--z-header);
  overflow: visible;
}

.site-header--contact-open {
  z-index: calc(var(--z-header) + 5);
}

/* ---- Desktop header (Figma Navigation — 137px single row) ---- */

.header-desktop {
  display: block;
}

.header-desktop__bar {
  display: flex;
  align-items: stretch;
  height: var(--header-height);
  max-width: var(--container-max);
  margin: 0 auto;
  overflow: visible;
}

.header-desktop__left {
  flex: 0 0 394px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 45px 55px 10px var(--header-pad-left);
  box-sizing: border-box;
  position: relative;
  overflow: visible;
}

.header-desktop__contact {
  position: relative;
  width: 100%;
}

.header-desktop__left .contact-toggle {
  border-bottom: 0.75px solid var(--moa-black-figma);
  width: 100%;
  min-height: 38px;
  padding-bottom: 6px;
  justify-content: space-between;
}

.header-desktop__left .contact-toggle-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 0;
  padding: 12px 0 14px;
  background: transparent;
  z-index: calc(var(--z-header) + 2);
  border-bottom: 0.75px solid var(--moa-black-figma);
  box-sizing: border-box;
  box-shadow: none;
}

.header-desktop__left .contact-email {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.35;
  text-align: left;
  padding-top: 0;
  white-space: nowrap;
  background: transparent;
}

.header-desktop__center {
  flex: 0 0 647px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding-top: 10px;
  box-sizing: border-box;
}

.header-desktop__center .site-logo {
  width: var(--logo-width);
  height: var(--logo-height);
  flex-shrink: 0;
}

.header-desktop__right {
  flex: 0 0 399px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 49px var(--header-pad-right) 10px 62px;
  box-sizing: border-box;
}

.header-desktop__right .header-desktop__icons {
  display: flex;
  gap: 4px;
  justify-content: flex-end;
  width: 100%;
  min-height: 33px;
  padding-bottom: 4px;
  border-bottom: 0.75px solid var(--moa-black-figma);
}

/* Legacy grid wrapper — alias */
.header-desktop__top {
  display: contents;
}

/* CONTACT US toggle (top-left desktop, bottom of mobile menu) */
.contact-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: var(--fs-contact);
  letter-spacing: var(--ls-contact);
  text-transform: uppercase;
  color: var(--moa-black);
  cursor: pointer;
  padding: 4px 0 0;
  background: transparent;
  border: 0;
  white-space: nowrap;
  line-height: 13px;
}

.contact-toggle>span {
  white-space: nowrap;
  /* belt-and-suspenders for nested label spans */
}

.contact-toggle__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease-standard);
}

.contact-toggle__chevron svg {
  width: 17px !important;
  height: 18px !important;
}

.contact-toggle[aria-expanded="true"] .contact-toggle__chevron {
  transform: rotate(180deg);
}

/* Defensive hover: any third-party CSS that targets generic <button>:hover
   (e.g. Kadence parent, plugins) cannot bleed in. */
.contact-toggle:hover,
.contact-toggle:focus,
.contact-toggle:active {
  background: transparent;
  color: var(--moa-black);
  opacity: 0.65;
  box-shadow: none;
}

.contact-email {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--moa-black);
  display: block;
  user-select: text;
}

.contact-toggle-panel {
  display: none;
  width: 100%;
  margin-top: 0;
  padding: 0 0 var(--s-2);
  box-sizing: border-box;
}

.contact-toggle-panel--open {
  display: block;
}

.contact-toggle-panel[hidden] {
  display: none !important;
}

.contact-toggle-panel--open[hidden] {
  display: block !important;
}

/* Logo in header — anti-theft attributes set in HTML */
.site-logo {
  display: block;
  width: 80px;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.site-logo img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  /* NB: do NOT set pointer-events: none here — that suppresses the
     contextmenu / dragstart events on the <img>, which means
     main.js can't preventDefault() on them. The parent <a> click still
     works because clicks bubble. */
}

/* Account / bag icons in header */
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  position: relative;
  color: var(--moa-black);
  transition: opacity var(--t-fast) var(--ease-standard);
}

.icon-link:hover {
  opacity: 0.65;
}

.icon-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.icon-link--bag svg {
  width: 19px;
  height: 19px;
}

/* User name display (logged-in state) */
.user-name {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--moa-black);
  margin-right: var(--s-3);
}

/* Cart count badge */
.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background-color: var(--moa-badge);
  color: var(--moa-white);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-badge[hidden] {
  display: none;
}

/* Header nav — inside center column (Figma Main Title component) */
.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 23px;
  border-top: 0;
  position: static;
  background-color: transparent;
  padding: 0 4px;
  box-sizing: border-box;
}

.header-nav__item {
  font-family: var(--font-sans);
  font-size: var(--fs-nav);
  font-weight: 500;
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--moa-black);
  padding: 0 4px 4px;
  position: relative;
  line-height: 13px;
  text-align: center;
  transition: color var(--t-fast) var(--ease-standard);
  white-space: nowrap;
}

.header-nav__item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: var(--moa-nav-active);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-base) var(--ease-standard);
}

.header-nav__item:hover::after,
.header-nav__item--active::after {
  transform: scaleX(1);
}

.header-nav__item--active,
.header-nav__item:hover {
  font-weight: 700;
}

.header-nav__item--active {
  color: var(--moa-black);
}

.header-nav__item--active::after {
  transform: scaleX(1);
}

/* ---- Mobile header ---- */

.header-mobile {
  display: none;
  height: var(--header-mobile);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-pad-m);
  border-bottom: 1px solid var(--moa-border-header);
}

.header-mobile__center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-mobile .site-logo {
  width: 64px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--moa-black);
  position: relative;
}

.icon-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* Header variants */

/* Editorial / cart / 404 / login: top row only (no nav).
   body.page-editorial  — Manifesto, Art at MOA, Life at MOA (Editorial template)
   body.page-cart       — /cart/
   body.error404        — 404 page
   body.page-auth       — /my-account/ logged-out (login + register form only) */
body.header--editorial .header-nav,
body.page-editorial:not(.page-legal) .header-nav,
body.page-cart .header-nav {
  display: none;
}

@media (max-width: 1200px) {
  .header-desktop__bar {
    padding: 0 24px;
  }

  .header-desktop__left,
  .header-desktop__center,
  .header-desktop__right {
    flex: 1 1 auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-nav__item {
    font-size: 0.6875rem;
    padding: 0 2px 4px;
  }
}

/* Checkout: stripped to logo only on both viewports */
.header--checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--moa-header-compact, var(--header-checkout));
  border-bottom: 1px solid var(--moa-rule);
  position: relative;
  z-index: var(--z-header);
}

.header--checkout .header-desktop,
.header--checkout .header-mobile {
  display: none;
}

.header--checkout .site-logo {
  width: 76px;
  margin: 0 auto;
}


/* ---- Responsive switch ---- */

@media (max-width: 968px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: flex;
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background-color: var(--moa-white);
  }

  .header--checkout {
    height: var(--header-mobile);
  }

  .header--checkout .site-logo {
    width: 56px;
  }
}


/* =========================================================================
   MOBILE MENU DRAWER (full-screen overlay)
   ========================================================================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--moa-white);
  z-index: var(--z-mobile-menu);
  transform: translateX(-100%);
  transition: transform var(--t-drawer) var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu--open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-pad-m);
  height: var(--header-mobile);
  border-bottom: 1px solid var(--moa-rule);
  position: relative;
}

.mobile-menu__header .site-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
}

.mobile-menu__nav {
  flex: 1;
  padding: var(--s-4) 0;
}

.mobile-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px var(--container-pad-m);
  background-color: var(--moa-panel);
  margin-bottom: var(--s-4);
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--moa-black);
  transition: background-color var(--t-fast) var(--ease-standard);
}

.mobile-menu__item:hover,
.mobile-menu__item:active {
  background-color: var(--moa-panel-hover);
}

.mobile-menu__chevron {
  width: 14px;
  height: 14px;
}

.mobile-menu__footer {
  background-color: var(--moa-black);
  color: var(--moa-white);
  padding: var(--s-5) var(--container-pad-m) var(--s-5);
}

.mobile-menu__footer .contact-toggle {
  color: var(--moa-white);
  width: 100%;
  justify-content: flex-start;
  padding: var(--s-3) 0;
}

.mobile-menu__footer .contact-email {
  color: var(--moa-white);
  display: block;
  padding: 0 0 var(--s-3) 32px;
}

.mobile-menu__footer .contact-toggle__icon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.mobile-menu__account {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: var(--s-3) 0;
  color: var(--moa-white);
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
}

.mobile-menu__account svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.mobile-menu__copy {
  margin-top: var(--s-5);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--moa-white);
  opacity: 0.85;
}

/* Body scroll lock when menu is open */
body.menu-open {
  overflow: hidden;
}


/* =========================================================================
   FOOTER — Newsletter band + link columns + Instagram + bottom strip
   ========================================================================= */

.site-footer {
  background-color: var(--moa-white);
  border-top: 0;
  margin-top: 0;
}

/* Newsletter band — Figma Newsletter Section */
.newsletter {
  text-align: center;
  padding: 99px var(--container-pad-d) 53px;
  border-bottom: 1px solid var(--moa-border-header);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.newsletter::before {
  content: '';
  display: block;
  width: min(1302px, 100%);
  height: 1px;
  background-color: var(--moa-border-header);
  margin-bottom: -25px;
}

.newsletter__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  max-width: 471px;
}

.newsletter__text {
  display: flex;
  flex-direction: column;
  gap: 23px;
  text-align: center;
}

.newsletter__title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  letter-spacing: 0.004em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--moa-black);
  margin-bottom: 0;
  line-height: 21px;
}

.newsletter__body {
  max-width: 471px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.03125rem;
  line-height: 22px;
  letter-spacing: 0.002em;
  color: var(--moa-black);
}

/* Links section (2 columns + Follow Us) */
.footer-main {
  border-top: 0;
  padding: 120px var(--container-pad-d) 49px;
}

.footer-cols {
  display: flex;
  justify-content: center;
  gap: 122px;
  max-width: 523px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-col__title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  letter-spacing: 0.002em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 41px;
  line-height: 21px;
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.footer-col__list a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: var(--ls-caps-tight);
  text-transform: uppercase;
  color: var(--moa-black);
  position: relative;
  display: inline-block;
  padding-bottom: 0;
  line-height: 15px;
}

.footer-col__list a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--moa-black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-standard);
}

.footer-col__list a:hover::after {
  transform: scaleX(1);
}

/* Follow Us — centered row below the two columns */
.footer-col--follow {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 75px;
}

.footer-col--follow .footer-col__title {
  text-align: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  color: var(--moa-black);
  transition: opacity var(--t-fast) var(--ease-standard);
}

.social-icon:hover {
  opacity: 0.65;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

/* Bottom strip — black band per Figma Footer */
.footer-bottom {
  background-color: var(--moa-black-figma);
  min-height: 72px;
  padding: 0 135px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.76875rem;
  letter-spacing: 0.0078em;
  text-transform: uppercase;
  color: var(--moa-white);
  box-sizing: border-box;
}

.footer-bottom__contact {
  /* "CONTACT US:" is caps; the email itself stays plain text per brief */
}

.footer-bottom__email {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 1.15625rem;
  line-height: 25px;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 2px;
}

.footer-bottom__copy {
  text-align: right;
}

/* Mobile footer adjustments */
@media (max-width: 768px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-5);
  }

  .footer-col--follow {
    grid-column: 1 / -1;
    margin-top: var(--s-5);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--s-3);
    text-align: center;
  }

  .footer-bottom__copy {
    text-align: center;
  }

  .newsletter {
    padding: var(--s-7) var(--container-pad-m);
  }
}


/* =========================================================================
   SHARED PAGE WRAPPER
   ========================================================================= */

.page {
  min-height: calc(100vh - var(--header-row-1) - 200px);
}

.page__title-wrap {
  text-align: center;
  padding: var(--s-7) 0 var(--s-6);
}






/* =========================================================
   NEWSLETTER SECTION — FIGMA FIX
   ========================================================= */

/* Section wrapper */
.site-footer .newsletter {
  width: 100%;
  padding: 0;
  margin: 0;
  border-top: 1px solid #B8B1AA;
  border-bottom: 1px solid #B8B1AA;
}

/* Inner content */
.site-footer .newsletter .newsletter__content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

/* Text block */
.site-footer .newsletter .newsletter__text {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Title */
.site-footer .newsletter .newsletter__title,
.site-footer .newsletter h2#newsletter-title {
  margin: 0;
  padding: 0;
  color: #000000 !important;
  font-family: "Sweet Sans Pro", Arial, Helvetica, sans-serif !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 21px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  text-align: center !important;
}

/* Body text */
.site-footer .newsletter .newsletter__body,
.site-footer .newsletter .newsletter__body.italic,
.site-footer .newsletter .newsletter__text p {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 800px;
  color: #000000 !important;
  font-family: "EB Garamond", Garamond, Georgia, serif !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  letter-spacing: 0.002em !important;
  text-align: center !important;
  white-space: normal !important;
}

/* Force remove italic from all nested elements */
.site-footer .newsletter .newsletter__body *,
.site-footer .newsletter .newsletter__body em,
.site-footer .newsletter .newsletter__body i,
.site-footer .newsletter .newsletter__text em,
.site-footer .newsletter .newsletter__text i {
  font-family: "EB Garamond", Garamond, Georgia, serif !important;
  font-style: normal !important;
}

/* Subscribe button */
.site-footer .newsletter .btn--subscribe,
.site-footer .newsletter a.btn--subscribe {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 38px;
  padding: 0 28px !important;
  margin: 0 auto !important;
  background: #000000 !important;
  border: 1px solid #000000 !important;
  border-radius: 0 !important;
  color: #FFFFFF !important;
  font-family: "EB Garamond", Garamond, Georgia, serif !important;
  font-size: 13px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 13px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

/* -------------------------
   Mobile
-------------------------- */
@media (max-width: 768px) {
  .site-footer .newsletter .newsletter__content {
    padding: 34px 20px 42px !important;
    gap: 22px !important;
  }

  .site-footer .newsletter .newsletter__text {
    max-width: 396px !important;
    gap: 14px !important;
  }

  .site-footer .newsletter .newsletter__title,
  .site-footer .newsletter h2#newsletter-title {
    font-size: 11px !important;
    line-height: 13px !important;
    letter-spacing: 0.08em !important;
  }

  .site-footer .newsletter .newsletter__body,
  .site-footer .newsletter .newsletter__body.italic,
  .site-footer .newsletter .newsletter__text p {
    max-width: 396px !important;
    font-family: "EB Garamond", Garamond, Georgia, serif !important;
    font-size: 11.48px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 15.8px !important;
    letter-spacing: 0.002em !important;
    text-align: center !important;
  }

  .site-footer .newsletter .btn--subscribe,
  .site-footer .newsletter a.btn--subscribe {
    min-width: 162px !important;
    height: 34px !important;
    padding: 0 22px !important;
    font-size: 11px !important;
    line-height: 11px !important;
    letter-spacing: 0.08em !important;
  }
}
