/** Shopify CDN: Minification failed

Line 30:0 Unexpected "0"
Line 30:45 Unterminated string token

**/
/* === Adeori local fonts (no external font request) === */
@font-face{
  font-family: "Montserrat";
  src: url("{{ 'montserrat.woff2' | asset_url }}") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}
@font-face{
  font-family: "Butler";
  src: url("{{ 'butler.woff2' | asset_url }}") format("woff2"),
       url("{{ 'butler.woff' | asset_url }}") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 200 900;
}

/* ==========================================================================
   ADÉORÍ — Base Styles
   Reset + typography defaults + layout utilities
   ========================================================================== */

/* ── Font Loading ──────────────────────────────────────────────────────── */
0,400;0,500;0,600;0,700;1,400&display=swap');

/*
  Butler @font-face is declared in layout/theme.liquid using Liquid asset_url.
  CSS files cannot process Liquid filters, so the declaration lives there.
*/

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

ul, ol { list-style: none; }

/* ── Skip to content ───────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--color-accent);
  color: #fff;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  z-index: var(--z-toast);
  transition: top var(--dur-fast);
}
.skip-link:focus { top: var(--sp-4); }

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-style: italic;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-wide);
  color: var(--color-text);
  font-weight: 400;
}

h1 { font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl)); }
h2 { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl)); }
h4 { font-size: clamp(var(--text-lg), 2vw, var(--text-xl)); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  line-height: var(--lh-relaxed);
  color: var(--color-muted);
}

p + p { margin-top: var(--sp-4); }

strong { font-weight: 600; color: var(--color-text); }

/* Micro label — used for eyebrows and small caps */
.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-muted);
}

.label--accent { color: var(--color-accent); }
.label--teal   { color: var(--color-accent-2); }

/* ── Container / Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--sp-9); }
}

.container--wide  { max-width: var(--container-wide); }
.container--prose { max-width: var(--container-prose); }

/* ── Section Spacing ──────────────────────────────────────────────────── */
.section {
  padding-block: var(--sp-10);
}

@media (min-width: 768px) {
  .section { padding-block: var(--sp-11); }
}

/* ── Grid Utilities ───────────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 767px) {
  .grid--2 { grid-template-columns: 1fr; }
  .grid--3,
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Flex Utilities ───────────────────────────────────────────────────── */
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }

/* ── Visibility ──────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hide-mobile  { display: none; }
.hide-desktop { display: block; }

@media (min-width: 768px) {
  .hide-mobile  { display: block; }
  .hide-desktop { display: none; }
}

/* ── Divider ─────────────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-block: var(--sp-6);
}

/* ── Reveal animations (JS driven) ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-editorial) var(--ease-luxury),
              transform var(--dur-editorial) var(--ease-luxury);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }
.reveal--delay-4 { transition-delay: 320ms; }
