/** Shopify CDN: Minification failed

Line 53:18 Expected identifier but found whitespace
Line 53:20 Unexpected "{"
Line 53:30 Expected ":"
Line 54:20 Expected identifier but found whitespace
Line 54:22 Unexpected "{"
Line 54:32 Expected ":"
Line 55:17 Expected identifier but found whitespace
Line 55:19 Unexpected "{"
Line 55:29 Expected ":"
Line 56:21 Expected identifier but found whitespace
... and 9 more hidden warnings

**/
@font-face {
  font-family: 'Archivo Expanded';
  font-weight: 400;
  font-style: normal;
  src: url('{{ "archivo-regular.ttf" | asset_url }}') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Archivo Expanded';
  font-weight: 500;
  font-style: normal;
  src: url('{{ "archivo-medium.ttf" | asset_url }}') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Archivo Expanded';
  font-weight: 700;
  font-style: normal;
  src: url('{{ "archivo-bold.ttf" | asset_url }}') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Archivo Expanded';
  font-weight: 800;
  font-style: normal;
  src: url('{{ "archivo-extrabold.ttf" | asset_url }}') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Archivo Expanded';
  font-weight: 900;
  font-style: normal;
  src: url('{{ "archivo-black.ttf" | asset_url }}') format('truetype');
  font-display: swap;
}

:root {
  --color-primary: {{ settings.primary_color }};
  --color-secondary: {{ settings.secondary_color }};
  --color-accent: {{ settings.accent_color }};
  --color-background: {{ settings.background_color }};
  --color-text: {{ settings.text_color }};
  --color-dark: #0F0F0F;
  --color-muted: #6B6B6B;
  --color-border: #E5E5E5;
  --color-surface: #F5F5F5;
  --font-heading: 'Archivo Expanded', system-ui, sans-serif;
  --font-body: 'Archivo Expanded', system-ui, sans-serif;
  --page-width: {{ settings.page_width }}px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin: 0 0 0.5em;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
}
.skip-to-content:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: var(--color-dark);
  color: #fff;
  padding: 0.5rem 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  background: #fff;
  color: var(--color-dark);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.button:hover { opacity: 0.92; transform: translateY(-1px); }

.button--accent {
  background: var(--color-accent);
  color: #fff;
}
.button--dark {
  background: var(--color-dark);
  color: #fff;
}

.section-heading {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0 0 2rem;
}
