/* =========================================================
   Dude Fish OS — Theme-Aware Component Classes
   Use these instead of hardcoded Tailwind color utilities.
   ========================================================= */

/* --- Shell --- */
.app-shell {
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* --- Cards --- */
.app-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.app-card-header {
  background-color: var(--color-surface-muted);
  border-bottom: 1px solid var(--color-divider);
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--color-text);
}

/* --- Buttons --- */
.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  border: 1px solid var(--color-button-border);
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}
.app-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: var(--color-button-disabled-bg);
  color: var(--color-button-disabled-text);
}

.app-btn-primary {
  background-color: var(--color-primary);
  color: var(--color-primary-text);
  border-color: var(--color-primary);
}
.app-btn-primary:hover:not(:disabled) {
  background-color: var(--color-primary-hover);
}

.app-btn-secondary {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-button-border);
}
.app-btn-secondary:hover:not(:disabled) {
  background-color: var(--color-button-ghost-hover);
}

.app-btn-danger {
  background-color: var(--color-danger);
  color: #ffffff;
  border-color: var(--color-danger);
}
.app-btn-danger:hover:not(:disabled) {
  opacity: 0.9;
}

.app-btn-ghost {
  background-color: transparent;
  color: var(--color-text-muted);
  border-color: transparent;
}
.app-btn-ghost:hover:not(:disabled) {
  background-color: var(--color-button-ghost-hover);
  color: var(--color-text);
}

/* --- Form inputs --- */
.app-input {
  width: 100%;
  background-color: var(--color-input-bg);
  color: var(--color-input-text);
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.app-input::placeholder {
  color: var(--color-input-placeholder);
}
.app-input:focus {
  outline: none;
  border-color: var(--color-input-focus);
  box-shadow: 0 0 0 3px var(--color-focus-ring);
}

.app-select {
  width: 100%;
  background-color: var(--color-input-bg);
  color: var(--color-input-text);
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  appearance: auto;
}
.app-select:focus {
  outline: none;
  border-color: var(--color-input-focus);
  box-shadow: 0 0 0 3px var(--color-focus-ring);
}

.app-textarea {
  width: 100%;
  background-color: var(--color-input-bg);
  color: var(--color-input-text);
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.app-textarea::placeholder {
  color: var(--color-input-placeholder);
}
.app-textarea:focus {
  outline: none;
  border-color: var(--color-input-focus);
  box-shadow: 0 0 0 3px var(--color-focus-ring);
}

/* --- Checkbox / Toggle --- */
.app-checkbox {
  appearance: none;
  width: 1rem;
  height: 1rem;
  background-color: var(--color-checkbox-bg);
  border: 1px solid var(--color-checkbox-border);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.app-checkbox:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.app-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-focus-ring);
}

/* --- Tables --- */
.app-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--color-text);
}
.app-table th {
  background-color: var(--color-table-header);
  color: var(--color-text-muted);
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 500;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--color-table-border);
}
.app-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-table-border);
  font-size: 0.875rem;
}
.app-table tr:hover td {
  background-color: var(--color-table-row-hover);
}
.app-table tr.selected td {
  background-color: var(--color-table-selected);
}

/* --- Badges --- */
.app-badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.app-badge-success {
  background-color: var(--color-success-bg);
  color: var(--color-success);
}

.app-badge-warning {
  background-color: var(--color-warning-bg);
  color: var(--color-warning);
}

.app-badge-danger {
  background-color: var(--color-danger-bg);
  color: var(--color-danger);
}

.app-badge-info {
  background-color: var(--color-info-bg);
  color: var(--color-info);
}

/* --- Alerts --- */
.app-alert {
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border: 1px solid;
}

.app-alert-success {
  background-color: var(--color-success-bg);
  color: var(--color-success);
  border-color: var(--color-success);
}

.app-alert-warning {
  background-color: var(--color-warning-bg);
  color: var(--color-warning);
  border-color: var(--color-warning);
}

.app-alert-danger {
  background-color: var(--color-danger-bg);
  color: var(--color-danger);
  border-color: var(--color-danger);
}

.app-alert-info {
  background-color: var(--color-info-bg);
  color: var(--color-info);
  border-color: var(--color-info);
}

/* --- Modal --- */
.app-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.app-modal {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-popover);
  max-width: 32rem;
  width: 100%;
  margin: 1rem;
  max-height: 90vh;
  overflow-y: auto;
}

/* --- POS Components --- */
.pos-shell {
  background-color: var(--color-pos-bg);
  color: var(--color-pos-tile-text);
}

.pos-product-tile {
  background-color: var(--color-pos-tile-bg);
  border: 1px solid var(--color-pos-tile-border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.12s;
  color: var(--color-pos-tile-text);
}
.pos-product-tile:hover {
  background-color: var(--color-pos-tile-hover);
}

.pos-category-button {
  background-color: var(--color-pos-category-bg);
  color: var(--color-text);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: background-color 0.12s;
}
.pos-category-button.active {
  background-color: var(--color-pos-category-active-bg);
  color: var(--color-primary-text);
}

.pos-cart-panel {
  background-color: var(--color-pos-cart-bg);
  border: 1px solid var(--color-pos-cart-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-popover);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pos-checkout-button {
  background-color: var(--color-pos-checkout-bg);
  color: var(--color-pos-checkout-text);
  border: none;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.12s;
}
.pos-checkout-button:hover:not(:disabled) {
  background-color: var(--color-pos-checkout-hover);
}
.pos-checkout-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- Nav --- */
.app-nav {
  background-color: var(--color-nav-bg);
  border-bottom: 1px solid var(--color-nav-border);
  color: var(--color-nav-text);
}

.app-nav a,
.app-nav button {
  color: var(--color-nav-text);
}
.app-nav a:hover {
  color: var(--color-nav-active-text);
}

/* --- Sidebar --- */
.app-sidebar {
  background-color: var(--color-sidebar-bg);
  border-right: 1px solid var(--color-sidebar-border);
  color: var(--color-sidebar-text);
  overflow-y: auto;
}
.app-sidebar a {
  color: var(--color-sidebar-muted);
}
.app-sidebar a:hover,
.app-sidebar a.active {
  color: var(--color-sidebar-active-text);
  background-color: var(--color-sidebar-active-bg);
}

/* --- Context Bar --- */
.app-context-bar {
  background-color: var(--color-nav-bg);
  border-bottom: 1px solid var(--color-nav-border);
  color: var(--color-nav-text);
}

/* --- x-cloak (prevent Alpine flicker) --- */
[x-cloak] { display: none !important; }

/* Public storefront — The Friendly Print Studio */
.public-site { background: var(--public-cream); }
.public-main { width: 100%; overflow: hidden; }
.public-main > .app-alert { max-width: 1180px; margin: 1rem auto; }
.public-wrap { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.public-header { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--public-cream) 94%, transparent); border-bottom: 1px solid var(--public-line); backdrop-filter: blur(14px); }
.public-header__inner { width: min(1240px, calc(100% - 2rem)); min-height: 76px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand-mark { display: inline-flex; align-items: center; gap: .7rem; color: var(--public-ink); text-decoration: none; line-height: 1; }
.brand-mark__fish { width: 42px; height: 34px; display: grid; place-items: center; border-radius: 55% 44% 46% 55%; background: var(--public-coral); color: var(--public-paper); font-size: .72rem; font-weight: 900; transform: rotate(-3deg); box-shadow: -7px 0 0 -3px var(--public-sun); }
.brand-mark strong { display: block; font-size: 1.05rem; letter-spacing: -.03em; }
.brand-mark small { display: block; margin-top: .3rem; color: var(--color-text-muted); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.public-nav { display: flex; align-items: center; gap: .1rem; margin-left: auto; }
.public-nav a { padding: .65rem .75rem; border-radius: 999px; color: var(--public-ink); font-size: .84rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.public-nav a:hover { background: color-mix(in srgb, var(--public-coral) 10%, transparent); color: var(--public-coral-dark); }
.public-nav a[aria-current="page"] { background: color-mix(in srgb, var(--public-coral) 12%, transparent); color: var(--public-coral-dark); }
.public-nav .public-nav__cta { margin-left: .5rem; padding-inline: 1rem; background: var(--public-teal); color: var(--public-paper); }
.public-nav .public-nav__cta:hover { background: var(--public-teal-dark); color: var(--public-paper); }
.cart-link { position: relative; color: var(--public-ink); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; text-decoration: none; }
.cart-link b { position: absolute; top: -.7rem; right: -.75rem; min-width: 1.15rem; height: 1.15rem; padding: 0 .25rem; display: grid; place-items: center; border-radius: 999px; background: var(--public-coral); color: white; font-size: .62rem; }
.menu-toggle { display: none; min-height: 42px; padding: .5rem .8rem; border: 1px solid var(--public-line); border-radius: 999px; background: transparent; color: var(--public-ink); font-size: .8rem; font-weight: 800; }
.public-hero { background: var(--public-ink); color: var(--public-paper); }
.public-hero__grid { min-height: 610px; padding-block: clamp(4rem, 8vw, 7rem); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 4rem; }
.public-kicker { display: flex; align-items: center; gap: .6rem; color: color-mix(in srgb, var(--public-paper) 72%, transparent); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.public-kicker > span { width: 1.7rem; height: 2px; background: var(--public-teal); }
.public-kicker--dark { color: var(--public-teal-dark); }
.public-hero h1, .section-heading h2, .custom-story h2, .market-band h2, .learn-strip h2 { font-family: "Arial Rounded MT Bold", "Avenir Next", ui-rounded, system-ui, sans-serif; font-weight: 800; letter-spacing: -.055em; }
.public-hero h1 { max-width: 720px; margin: 1.2rem 0 1.5rem; font-size: clamp(3.5rem, 7vw, 6.4rem); line-height: .92; }
.public-hero h1 em { color: var(--public-coral); font-style: normal; }
.public-hero__lede { max-width: 610px; color: color-mix(in srgb, var(--public-paper) 77%, transparent); font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.65; }
.public-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.public-button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: .7rem; padding: .8rem 1.2rem; border: 2px solid transparent; border-radius: 999px; font-size: .9rem; font-weight: 800; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.public-button:hover { transform: translateY(-2px); }
.public-button--primary { background: var(--public-coral); color: var(--public-paper); }
.public-button--primary:hover { background: var(--public-coral-dark); color: var(--public-paper); }
.public-button--ghost { border-color: color-mix(in srgb, var(--public-paper) 38%, transparent); color: var(--public-paper); }
.public-button--ghost:hover { background: var(--public-paper); color: var(--public-ink); }
.public-button--teal { background: var(--public-teal); color: var(--public-paper); }
.public-button--outline { border-color: var(--public-ink); color: var(--public-ink); }
.public-trust { display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; margin: 2rem 0 0; padding: 0; list-style: none; color: color-mix(in srgb, var(--public-paper) 68%, transparent); font-size: .78rem; }
.public-trust li::before { content: "✓"; margin-right: .4rem; color: var(--public-teal); font-weight: 900; }
.filament-stage { position: relative; min-height: 430px; display: grid; place-items: center; isolation: isolate; }
.filament-ring { position: absolute; border: 18px solid var(--public-coral); border-radius: 48% 52% 47% 53%; transform: rotate(-14deg); }
.filament-ring--one { width: 390px; height: 300px; border-right-color: transparent; }
.filament-ring--two { width: 310px; height: 375px; border-width: 10px; border-color: var(--public-teal) transparent var(--public-sun) var(--public-teal); transform: rotate(36deg); opacity: .92; }
.fish-form { position: relative; z-index: 2; width: 245px; aspect-ratio: 1.22; display: grid; place-items: center; border: 8px solid color-mix(in srgb, var(--public-paper) 35%, transparent); border-radius: 53% 47% 48% 52%; background: var(--public-paper); color: var(--public-ink); box-shadow: inset 0 -12px 0 var(--public-mist), 0 28px 70px #0005; transform: rotate(-5deg); }
.fish-form strong { font-size: 1.5rem; line-height: .9; letter-spacing: -.05em; text-align: center; }
.fish-form__eye { position: absolute; top: 3rem; right: 3.2rem; width: .7rem; height: .7rem; border: 4px solid var(--public-ink); border-radius: 50%; }
.fish-form__tail { position: absolute; right: -72px; width: 85px; height: 110px; background: var(--public-sun); clip-path: polygon(0 50%, 100% 0, 85% 50%, 100% 100%); }
.color-chip { position: absolute; z-index: 3; padding: .5rem .75rem; border-radius: 999px; color: var(--public-ink); background: var(--public-paper); box-shadow: 0 8px 25px #0004; font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.color-chip--coral { top: 10%; right: 4%; transform: rotate(8deg); }
.color-chip--teal { bottom: 10%; left: 4%; transform: rotate(-7deg); }
.public-section { padding-block: clamp(4.5rem, 8vw, 7rem); }
.public-section--paper { width: 100%; background: var(--public-paper); }
.section-heading { max-width: 650px; margin-bottom: 2.4rem; }
.section-heading h2, .custom-story h2, .market-band h2, .learn-strip h2 { margin: .55rem 0 .7rem; color: var(--public-ink); font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: 1.02; }
.section-heading > p:last-child, .custom-story > div > p, .learn-strip p { color: var(--color-text-muted); line-height: 1.7; }
.section-heading--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.text-link { color: var(--public-teal-dark); font-weight: 800; }
.lane-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.lane-card { min-height: 260px; display: flex; flex-direction: column; padding: 1.5rem; border: 1px solid var(--public-line); border-radius: 26px; color: var(--public-ink); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.lane-card:hover { transform: translateY(-5px) rotate(-.35deg); box-shadow: 0 18px 40px #10233f14; color: var(--public-ink); }
.lane-card--coral { background: color-mix(in srgb, var(--public-coral) 14%, var(--public-paper)); }.lane-card--yellow { background: color-mix(in srgb, var(--public-sun) 23%, var(--public-paper)); }.lane-card--teal { background: color-mix(in srgb, var(--public-teal) 13%, var(--public-paper)); }.lane-card--navy { background: var(--public-ink); color: var(--public-paper); }.lane-card--navy:hover { color: var(--public-paper); }
.lane-card__icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: auto; border-radius: 20px; background: color-mix(in srgb, var(--public-paper) 70%, transparent); }
.lane-card__icon svg, .learn-strip > div > span svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.lane-card strong { margin-top: 1.4rem; font-size: 1.2rem; }.lane-card small { margin-top: .25rem; opacity: .72; }.lane-card b { margin-top: 1rem; font-size: .75rem; }
.product-shelf { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.public-product-card { overflow: hidden; border: 1px solid var(--public-line); border-radius: 24px; background: var(--public-paper); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.public-product-card:hover { border-color: color-mix(in srgb, var(--public-teal) 42%, var(--public-line)); box-shadow: 0 18px 40px color-mix(in srgb, var(--public-ink) 8%, transparent); transform: translateY(-4px); }
.product-photo { aspect-ratio: 4/3; display: grid; place-items: center; background: repeating-linear-gradient(0deg, var(--public-cream), var(--public-cream) 5px, #f6efe3 5px, #f6efe3 6px); color: var(--color-text-muted); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-card__body { padding: 1.2rem; }.product-card__body small { color: var(--public-teal-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }.product-card__body h3 { margin: .4rem 0 1rem; color: var(--public-ink); font-size: 1.2rem; }.product-card__body h3 a { color: inherit; }.product-card__body > div { display: flex; justify-content: space-between; }.product-card__body > div a { color: var(--public-coral); font-size: 1.3rem; font-weight: 900; }
.public-empty { padding: 3rem; border: 2px dashed var(--public-line); border-radius: 24px; text-align: center; }.public-empty strong { color: var(--public-ink); font-size: 1.3rem; }.public-empty p { margin: .4rem 0 1.2rem; color: var(--color-text-muted); }
.custom-story { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 7rem); align-items: center; }.custom-story > div > .public-button { margin-top: 1.4rem; }.custom-story ol { margin: 0; padding: 0; list-style: none; }.custom-story li { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--public-line); }.custom-story li > span { width: 40px; height: 40px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--public-coral); color: white; font-weight: 900; }.custom-story li strong, .custom-story li small { display: block; }.custom-story li strong { color: var(--public-ink); }.custom-story li small { margin-top: .2rem; color: var(--color-text-muted); }
.market-band { padding-block: 4.5rem; background: var(--public-ink); color: var(--public-paper); }.market-band__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }.market-band h2 { color: var(--public-paper); }.market-band p { color: color-mix(in srgb, var(--public-paper) 70%, transparent); }.market-card { padding: 1.5rem; display: flex; flex-direction: column; gap: .45rem; border: 1px solid #ffffff35; border-radius: 24px; background: #ffffff0c; }.market-card small { color: var(--public-teal); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }.market-card strong { font-size: 1.35rem; }.market-card span { color: #ffffffb8; }.market-card a { margin-top: .8rem; color: var(--public-sun); font-weight: 800; }
.learn-strip > div { padding: 2rem; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem; border: 1px solid var(--public-line); border-radius: 28px; background: var(--public-paper); }.learn-strip > div > span { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; background: var(--public-sun); color: var(--public-ink); }.learn-strip h2 { margin: .3rem 0; font-size: clamp(1.7rem, 3vw, 2.6rem); }
@media (max-width: 1020px) { .public-nav { display: none; position: absolute; top: 76px; left: 1rem; right: 1rem; padding: .75rem; flex-direction: column; align-items: stretch; border: 1px solid var(--public-line); border-radius: 20px; background: var(--public-paper); box-shadow: 0 20px 50px #10233f24; }.public-nav.is-open { display: flex; }.public-nav a { padding: .8rem 1rem; }.public-nav .public-nav__cta { margin: .25rem 0 0; text-align: center; }.menu-toggle { display: inline-flex; }.public-hero__grid { grid-template-columns: 1fr; }.filament-stage { min-height: 360px; }.lane-grid { grid-template-columns: repeat(2, 1fr); }.product-shelf { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) { .public-header__inner { min-height: 68px; }.brand-mark small { display: none; }.public-nav { top: 68px; }.public-hero__grid { min-height: auto; padding-block: 4rem; gap: 2rem; }.public-hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }.filament-stage { min-height: 290px; transform: scale(.82); margin-inline: -3rem; }.lane-grid, .product-shelf, .custom-story, .market-band__inner { grid-template-columns: 1fr; }.lane-card { min-height: 220px; }.section-heading--row { align-items: start; flex-direction: column; }.learn-strip > div { grid-template-columns: 1fr; }.learn-strip > div > span { width: 52px; height: 52px; }.public-trust { display: grid; }.custom-story { gap: 2rem; } }
@media (prefers-reduced-motion: reduce) { .public-button, .lane-card, .public-product-card { transition: none; } }
.public-header a:focus-visible, .public-header button:focus-visible, .public-main a:focus-visible { outline: 3px solid var(--public-teal); outline-offset: 3px; }

/* Public interior pages */
.public-site .public-main > section:not(.public-hero):not(.public-section):not(.market-band):not(.interior-hero):not(.storefront-section):not(.product-detail):not(.product-story):not(.care-section) { width: min(980px, calc(100% - 2rem)); margin-inline: auto; padding-block: clamp(3rem, 7vw, 6rem); }
.public-site .public-main > section:not(.public-hero):not(.public-section):not(.market-band):not(.interior-hero):not(.storefront-section):not(.product-detail):not(.product-story):not(.care-section) + section { padding-top: 0; }
.public-site .public-main > section:not([class*="public-"]):not(.market-band) h1 { color: var(--public-ink) !important; font-family: "Arial Rounded MT Bold", "Avenir Next", ui-rounded, system-ui, sans-serif; font-size: clamp(2.5rem, 6vw, 4.8rem) !important; line-height: 1 !important; letter-spacing: -.055em !important; }
.public-site .public-main .app-card { border-color: var(--public-line); border-radius: 22px; box-shadow: none; }
.public-site .public-main .app-btn { min-height: 44px; border-radius: 999px; font-weight: 800; }
.public-site .public-main .app-btn-primary { background: var(--public-coral); border-color: var(--public-coral); }
.public-site .public-main .app-btn-primary:hover { background: var(--public-coral-dark); }
.public-site .public-main .app-input, .public-site .public-main .app-select, .public-site .public-main .app-textarea { min-height: 48px; padding: .75rem .9rem; border-color: var(--public-line); border-radius: 14px; background: var(--public-paper); font-size: 1rem; }
.public-site .public-main .app-input:focus, .public-site .public-main .app-select:focus, .public-site .public-main .app-textarea:focus { border-color: var(--public-teal); box-shadow: 0 0 0 3px color-mix(in srgb, var(--public-teal) 24%, transparent); }
.interior-hero { padding-block: clamp(4.5rem, 9vw, 8rem); background: var(--public-mist); }
.interior-hero h1 { max-width: 850px; margin: .8rem 0 1.2rem; color: var(--public-ink); font-family: "Arial Rounded MT Bold", "Avenir Next", ui-rounded, system-ui, sans-serif; font-size: clamp(3.2rem, 7vw, 6.4rem); line-height: .92; letter-spacing: -.06em; }
.interior-hero h1 em { color: var(--public-coral); font-style: normal; }
.interior-hero p:last-child { max-width: 700px; color: var(--color-text-muted); font-size: 1.12rem; line-height: 1.7; }
.interior-hero--shop { position: relative; overflow: hidden; }
.interior-hero--shop::after { content: ""; position: absolute; width: 330px; height: 330px; right: max(-80px, calc((100vw - 1180px)/2)); top: -80px; border: 18px solid var(--public-sun); border-right-color: var(--public-coral); border-radius: 48% 52%; transform: rotate(20deg); opacity: .72; }
.storefront-section { padding-block: clamp(3rem, 6vw, 5rem) 7rem; }
.shop-filters { position: relative; z-index: 2; margin-top: -5.6rem; padding: 1.25rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr auto; align-items: end; gap: .8rem; border: 1px solid var(--public-line); border-radius: 22px; background: var(--public-paper); box-shadow: 0 18px 45px #10233f12; }
.shop-filters label { display: grid; gap: .35rem; color: var(--public-ink); font-size: .76rem; font-weight: 800; }
.shop-filters input, .shop-filters select { width: 100%; min-height: 48px; padding: .7rem .8rem; border: 1px solid var(--public-line); border-radius: 12px; background: var(--public-cream); color: var(--public-ink); font-size: .92rem; }
.shop-filters input:focus, .shop-filters select:focus { outline: 3px solid color-mix(in srgb, var(--public-teal) 25%, transparent); border-color: var(--public-teal); }
.shop-results { min-height: 75px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--color-text-muted); }.shop-results strong { color: var(--public-ink); }.shop-results a { color: var(--public-teal-dark); font-weight: 800; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }.product-grid .public-product-card { display: flex; flex-direction: column; }.product-grid .product-card__body { display: flex; flex: 1; flex-direction: column; }.product-grid .product-card__body p { margin: 0 0 1.2rem; color: var(--color-text-muted); font-size: .87rem; line-height: 1.6; }.product-grid .product-card__body > div { margin-top: auto; }.product-photo { position: relative; }.product-photo b { position: absolute; top: .8rem; left: .8rem; padding: .35rem .55rem; border-radius: 999px; background: var(--public-paper); color: var(--public-ink); font-size: .65rem; box-shadow: 0 4px 16px #10233f17; }
.public-actions--center { justify-content: center; }.custom-ribbon { margin-top: 5rem; padding: clamp(2rem, 5vw, 4rem); display: flex; align-items: center; justify-content: space-between; gap: 3rem; overflow: hidden; border-radius: 30px; background: var(--public-ink); color: var(--public-paper); }.custom-ribbon h2 { margin: .4rem 0; font-family: "Arial Rounded MT Bold", ui-rounded, system-ui; font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.05em; }.custom-ribbon p:last-child { max-width: 600px; color: #ffffffb8; }
.product-detail { padding-block: 2rem clamp(4rem, 8vw, 7rem); }.breadcrumbs { display: flex; gap: .6rem; padding-block: 1rem 2rem; color: var(--color-text-muted); font-size: .8rem; }.breadcrumbs a { color: var(--public-teal-dark); font-weight: 800; }.product-detail__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 7vw, 6rem); align-items: start; }.product-gallery__stage { position: relative; min-height: 540px; display: grid; place-items: center; overflow: hidden; border-radius: 30px; background: var(--public-mist); color: var(--public-teal-dark); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }.print-lines { position: absolute; width: 360px; height: 280px; border: 20px solid var(--public-coral); border-left-color: var(--public-sun); border-radius: 48% 52%; opacity: .25; transform: rotate(-12deg); }.product-gallery > p { margin: 1rem; color: var(--color-text-muted); font-size: .8rem; line-height: 1.6; }.product-buy { padding-top: 2rem; }.product-buy h1 { margin: .7rem 0 1.2rem; color: var(--public-ink); font-family: "Arial Rounded MT Bold", ui-rounded, system-ui; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .95; letter-spacing: -.055em; }.product-buy__description { color: var(--color-text-muted); font-size: 1.05rem; line-height: 1.7; }.product-price { margin: 1.8rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }.product-price > strong { color: var(--public-ink); font-size: 1.8rem; }.stock-pill { padding: .4rem .7rem; border-radius: 999px; background: color-mix(in srgb, var(--public-teal) 14%, white); color: var(--public-teal-dark); font-size: .72rem; font-weight: 800; }.purchase-panel { padding: 1.3rem; border: 1px solid var(--public-line); border-radius: 22px; background: var(--public-paper); }.purchase-panel label { display: grid; gap: .4rem; color: var(--public-ink); font-size: .8rem; font-weight: 800; }.purchase-panel .app-input { max-width: 120px; }.purchase-panel .public-actions { margin-top: 1rem; }.purchase-panel > p { margin: 1rem 0 0; color: var(--color-text-muted); font-size: .8rem; }.purchase-panel > p a { color: var(--public-teal-dark); font-weight: 800; }
.product-story { padding-block: 5rem; background: var(--public-paper); }.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--public-line); border-radius: 24px; background: var(--public-line); }.detail-grid article { min-height: 180px; padding: 1.5rem; background: var(--public-paper); }.detail-grid small { color: var(--public-teal-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }.detail-grid p { margin-top: .8rem; color: var(--color-text-muted); line-height: 1.7; }.care-section { padding-block: 4rem 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }.care-section article { display: flex; gap: 1rem; padding: 1.5rem; border: 1px solid var(--public-line); border-radius: 20px; }.care-section article > span { width: 42px; height: 42px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--public-sun); color: var(--public-ink); font-weight: 900; }.care-section h2 { color: var(--public-ink); font-size: 1rem; }.care-section p { margin-top: .35rem; color: var(--color-text-muted); font-size: .85rem; line-height: 1.6; }
.public-footer { padding-top: 4.5rem; background: var(--public-ink); color: #ffffffb5; }.public-footer__grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 3rem; padding-bottom: 3rem; }.brand-mark--footer { color: white; }.brand-mark--footer small { color: #ffffff80; }.public-footer__brand p { max-width: 360px; margin-top: 1.2rem; line-height: 1.7; }.public-footer h2 { margin-bottom: .8rem; color: white; font-size: .76rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }.public-footer__grid > div:not(:first-child) { display: flex; flex-direction: column; gap: .6rem; }.public-footer a { color: #ffffffb5; text-decoration: none; }.public-footer a:hover { color: var(--public-sun); }.public-footer__base { padding-block: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid #ffffff1f; font-size: .72rem; }.public-footer__base div { display: flex; gap: 1rem; }
@media (max-width: 900px) { .shop-filters { grid-template-columns: 1fr 1fr; }.search-field { grid-column: 1 / -1; }.product-grid { grid-template-columns: repeat(2, 1fr); }.product-detail__grid { grid-template-columns: 1fr; }.product-gallery__stage { min-height: 430px; }.public-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }.public-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 650px) { .interior-hero--shop::after { display: none; }.shop-filters { margin-top: -3rem; grid-template-columns: 1fr; }.search-field { grid-column: auto; }.product-grid, .detail-grid, .care-section { grid-template-columns: 1fr; }.product-gallery__stage { min-height: 340px; }.product-buy { padding-top: 0; }.custom-ribbon { align-items: flex-start; flex-direction: column; gap: 1.5rem; }.public-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }.public-footer__brand { grid-column: 1 / -1; }.public-footer__base { flex-direction: column; }.public-footer__base div { flex-wrap: wrap; } }

.task-page { padding-block: clamp(3rem, 7vw, 6rem); }.task-page--narrow { max-width: 980px; }.task-header { margin-bottom: 2.5rem; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }.task-header h1 { margin: .5rem 0 .8rem; color: var(--public-ink); font-family: "Arial Rounded MT Bold", ui-rounded, system-ui; font-size: clamp(3rem, 6vw, 5.7rem); line-height: .94; letter-spacing: -.06em; }.task-header p:last-child { max-width: 650px; color: var(--color-text-muted); line-height: 1.7; }.task-header p a { color: var(--public-teal-dark); font-weight: 800; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .65fr); gap: 2rem; align-items: start; }.cart-lines { display: grid; gap: .8rem; }.cart-line { padding: 1rem; display: grid; grid-template-columns: 110px 1fr auto; gap: 1rem; align-items: center; border: 1px solid var(--public-line); border-radius: 20px; background: var(--public-paper); }.cart-line__image { aspect-ratio: 1; display: grid; place-items: center; border-radius: 15px; background: repeating-linear-gradient(0deg,var(--public-cream),var(--public-cream) 4px,#f3eadc 4px,#f3eadc 5px); color: var(--color-text-muted); font-size: .62rem; font-weight: 900; text-transform: uppercase; }.cart-line h2 { color: var(--public-ink); font-size: 1.08rem; }.cart-line__details p { max-width: 430px; margin: .3rem 0; color: var(--color-text-muted); font-size: .78rem; line-height: 1.5; }.cart-line__details small { color: var(--public-teal-dark); font-weight: 800; }.cart-line__controls { min-width: 135px; display: grid; justify-items: end; gap: .45rem; }.cart-line__controls form:first-child { display: flex; align-items: end; gap: .4rem; }.cart-line__controls label { display: grid; gap: .2rem; color: var(--color-text-muted); font-size: .65rem; font-weight: 800; }.cart-line__controls input { width: 62px; height: 38px; padding: .3rem; border: 1px solid var(--public-line); border-radius: 10px; }.cart-line__controls button { min-height: 38px; padding: .35rem .55rem; border: 0; border-radius: 10px; background: var(--public-mist); color: var(--public-teal-dark); font-size: .7rem; font-weight: 800; }.cart-line__controls .remove-link { min-height: auto; padding: 0; background: transparent; color: var(--color-danger); }.order-summary { position: sticky; top: 100px; padding: 1.5rem; border-radius: 24px; background: var(--public-ink); color: white; }.order-summary h2 { margin: .4rem 0 1.3rem; font-family: "Arial Rounded MT Bold", ui-rounded, system-ui; font-size: 1.8rem; }.order-summary dl { display: grid; gap: .75rem; }.order-summary dl div { display: flex; justify-content: space-between; color: #ffffffb5; }.order-summary .order-total { margin-top: .5rem; padding-top: 1rem; border-top: 1px solid #ffffff2e; color: white; font-size: 1.2rem; font-weight: 900; }.order-summary .public-button { width: 100%; margin-top: 1.4rem; }.order-summary > p { margin-top: 1rem; color: #ffffff9c; font-size: .74rem; line-height: 1.55; }.empty-cart { padding-block: 3rem; text-align: center; }.empty-cart__loop { width: 150px; height: 120px; margin: 0 auto 2rem; border: 14px solid var(--public-coral); border-right-color: var(--public-teal); border-radius: 48% 52%; transform: rotate(-10deg); }.empty-cart h1 { margin: .6rem 0; color: var(--public-ink); font-family: "Arial Rounded MT Bold", ui-rounded, system-ui; font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -.05em; }.empty-cart > p { color: var(--color-text-muted); }
.custom-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 4rem; }.idea-note { position: relative; padding: 2rem; border-radius: 26px; background: var(--public-paper); box-shadow: 12px 12px 0 var(--public-sun); transform: rotate(2deg); }.idea-note > span { position: absolute; top: -1rem; color: var(--public-coral); font-family: Georgia, serif; font-size: 5rem; }.idea-note p { position: relative; color: var(--public-ink) !important; font-size: 1.2rem !important; font-weight: 700; }.idea-note strong { display: block; margin-top: 1rem; color: var(--public-teal-dark); font-size: .76rem; }.custom-form-section { padding-block: 4rem 7rem; }.custom-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 3rem; }.custom-steps div { position: relative; display: flex; align-items: center; gap: .7rem; color: var(--color-text-muted); font-size: .72rem; }.custom-steps div::after { content: ""; height: 1px; flex: 1; background: var(--public-line); }.custom-steps div:last-child::after { display: none; }.custom-steps span { width: 32px; height: 32px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid var(--public-line); border-radius: 50%; background: var(--public-paper); }.custom-steps .is-active { color: var(--public-ink); }.custom-steps .is-active span { border-color: var(--public-coral); background: var(--public-coral); color: white; }.guided-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 2rem; align-items: start; }.public-form { padding: clamp(1.5rem, 4vw, 2.5rem); display: grid; gap: 1.3rem; border: 1px solid var(--public-line); border-radius: 26px; background: var(--public-paper); }.form-heading { padding-bottom: 1.3rem; border-bottom: 1px solid var(--public-line); }.form-heading small { color: var(--public-teal-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }.form-heading h2 { margin: .4rem 0; color: var(--public-ink); font-family: "Arial Rounded MT Bold", ui-rounded, system-ui; font-size: 2rem; letter-spacing: -.04em; }.form-heading p, .field-group > p { color: var(--color-text-muted); font-size: .8rem; }.field-group { display: grid; gap: .4rem; }.field-group > label { color: var(--public-ink); font-size: .82rem; font-weight: 800; }.field-error { color: var(--color-danger); font-size: .78rem; font-weight: 700; }.public-form > .public-button { justify-self: start; }.form-reassurance { padding: .8rem; border-radius: 12px; background: var(--public-mist); color: var(--public-teal-dark); font-size: .75rem; line-height: 1.5; }.help-card { position: sticky; top: 100px; padding: 1.5rem; border-radius: 24px; background: var(--public-ink); color: white; }.help-card > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--public-sun); color: var(--public-ink); font-size: 1.2rem; font-weight: 900; }.help-card h2 { margin: 1rem 0; font-family: "Arial Rounded MT Bold", ui-rounded, system-ui; font-size: 1.35rem; }.help-card ul { display: grid; gap: .55rem; padding-left: 1.1rem; color: #ffffffb5; font-size: .8rem; }.help-card p { margin-top: 1rem; color: var(--public-sun); font-size: .75rem; font-weight: 700; }.help-card--teal { background: var(--public-teal); }.help-card--teal a { padding-block: .7rem; display: block; border-bottom: 1px solid #ffffff36; color: white; font-size: .82rem; font-weight: 800; }.success-panel { margin-bottom: 1rem; padding: 1rem; display: flex; gap: 1rem; border-radius: 18px; background: color-mix(in srgb, var(--color-success) 13%, white); color: var(--color-success); }.success-panel > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--color-success); color: white; }.success-panel h2 { font-weight: 900; }.success-panel p { font-size: .8rem; }
@media (max-width: 850px) { .cart-layout, .guided-layout, .custom-hero__grid { grid-template-columns: 1fr; }.order-summary, .help-card { position: static; }.custom-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }.custom-steps div::after { display: none; } }
@media (max-width: 650px) { .task-header { align-items: flex-start; flex-direction: column; }.cart-line { grid-template-columns: 80px 1fr; }.cart-line__controls { grid-column: 1 / -1; width: 100%; grid-template-columns: 1fr auto auto; align-items: center; justify-items: start; }.cart-line__controls strong { justify-self: end; }.custom-steps { grid-template-columns: 1fr; }.custom-steps div:not(.is-active) { display: none; } }

.market-hero { background: var(--public-ink); }.market-hero .public-kicker { color: var(--public-teal); }.market-hero h1 { color: white; }.market-hero p:last-child { color: #ffffffb5; }.event-section, .gallery-section, .story-section, .learn-page { padding-block: clamp(4rem, 8vw, 7rem); }.event-list { display: grid; gap: .8rem; }.event-card { padding: 1rem 1.3rem; display: grid; grid-template-columns: 75px 1fr auto; align-items: center; gap: 1.2rem; border: 1px solid var(--public-line); border-radius: 20px; background: var(--public-paper); }.event-date { aspect-ratio: 1; display: grid; place-items: center; align-content: center; border-radius: 16px; background: var(--public-coral); color: white; line-height: 1; }.event-date strong { font-size: .65rem; text-transform: uppercase; }.event-date span { margin-top: .2rem; font-size: 1.6rem; font-weight: 900; }.event-card small { color: var(--public-teal-dark); font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }.event-card h2 { margin: .15rem 0; color: var(--public-ink); font-size: 1.25rem; }.event-card p { color: var(--color-text-muted); font-size: .8rem; }.event-card > a { color: var(--public-teal-dark); font-size: .8rem; font-weight: 900; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }.gallery-tile { color: var(--public-ink); text-decoration: none; }.gallery-tile > div { aspect-ratio: 1; display: grid; place-items: center; margin-bottom: .8rem; overflow: hidden; border-radius: 24px; background: repeating-linear-gradient(0deg,var(--public-mist),var(--public-mist) 5px,#d2e8e3 5px,#d2e8e3 6px); color: var(--public-teal-dark); font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; transition: transform .18s ease; }.gallery-tile:nth-child(3n+2) > div { background: repeating-linear-gradient(0deg,#fff0e9,#fff0e9 5px,#ffe5da 5px,#ffe5da 6px); }.gallery-tile:hover > div { transform: translateY(-4px) rotate(-.4deg); }.gallery-tile strong, .gallery-tile small { display: block; }.gallery-tile small { margin-top: .2rem; color: var(--color-text-muted); }.gallery-empty { max-width: 680px; margin: auto; text-align: center; }.gallery-swatches { display: flex; justify-content: center; margin-bottom: 2rem; }.gallery-swatches span { width: 85px; height: 85px; margin: -8px; border: 7px solid var(--public-cream); border-radius: 50%; background: var(--public-coral); }.gallery-swatches span:nth-child(2) { background: var(--public-teal); }.gallery-swatches span:nth-child(3) { background: var(--public-sun); }.gallery-empty h2 { color: var(--public-ink); font-family: "Arial Rounded MT Bold", ui-rounded, system-ui; font-size: 2.5rem; letter-spacing: -.05em; }.gallery-empty > p { margin: .7rem 0 1.5rem; color: var(--color-text-muted); line-height: 1.7; }
.about-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 4rem; }.studio-mark { width: 280px; height: 280px; margin: auto; display: grid; place-items: center; align-content: center; border: 18px solid var(--public-teal); border-right-color: var(--public-coral); border-radius: 48% 52%; color: var(--public-ink); text-align: center; transform: rotate(6deg); }.studio-mark span { font-family: "Arial Rounded MT Bold", ui-rounded, system-ui; font-size: 5rem; line-height: .8; }.studio-mark strong { font-size: .85rem; line-height: 1.2; }.studio-mark small { max-width: 180px; margin-top: .5rem; color: var(--color-text-muted); font-size: .62rem; }.story-lede { max-width: 800px; display: grid; gap: 1rem; color: var(--public-ink); font-size: clamp(1.25rem, 2.5vw, 1.75rem); line-height: 1.55; }.values-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }.values-grid article { padding: 1.5rem; border-top: 3px solid var(--public-coral); }.values-grid span { color: var(--public-teal-dark); font-size: .7rem; font-weight: 900; }.values-grid h2 { margin: 1rem 0 .5rem; color: var(--public-ink); font-size: 1.2rem; }.values-grid p { color: var(--color-text-muted); font-size: .85rem; line-height: 1.6; }
.learn-intro { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 4rem; }.layer-demo { min-height: 280px; display: flex; flex-direction: column-reverse; justify-content: center; }.layer-demo span { width: 85%; height: 22px; margin-top: -3px; border-radius: 999px; background: var(--public-coral); }.layer-demo span:nth-child(2) { width: 95%; background: var(--public-sun); }.layer-demo span:nth-child(3) { width: 75%; background: var(--public-teal); }.layer-demo span:nth-child(4) { width: 65%; background: var(--public-coral); }.layer-demo span:nth-child(5) { width: 50%; background: var(--public-teal); }.learn-intro h2 { color: var(--public-ink); font-family: "Arial Rounded MT Bold", ui-rounded, system-ui; font-size: clamp(2rem,4vw,3.5rem); letter-spacing: -.05em; }.learn-intro p { margin-top: 1rem; color: var(--color-text-muted); line-height: 1.8; }.question-list { margin-block: 4rem 2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--public-line); border-radius: 24px; background: var(--public-line); }.question-list article { padding: 1.6rem; background: var(--public-paper); }.question-list small { color: var(--public-teal-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }.question-list h2 { margin: .5rem 0; color: var(--public-ink); font-size: 1.15rem; }.question-list p { color: var(--color-text-muted); font-size: .86rem; line-height: 1.65; }
@media (max-width: 750px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); }.about-hero__grid, .learn-intro { grid-template-columns: 1fr; }.values-grid { grid-template-columns: 1fr; }.question-list { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .event-card { grid-template-columns: 62px 1fr; }.event-card > a { grid-column: 2; }.gallery-grid { grid-template-columns: 1fr; } }

/* --- Empty state --- */
.app-empty {
  color: var(--color-text-muted);
  text-align: center;
  padding: 2rem;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
}

/* --- Link --- */
.app-link {
  color: var(--color-link);
}
.app-link:hover {
  color: var(--color-link-hover);
}

/* --- Focus ring utility --- */
.app-focus-ring:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-focus-ring);
}

/* --- Filter pills --- */
.app-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  background-color: transparent;
  text-decoration: none;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.app-filter-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.app-filter-pill-active {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background-color: var(--color-primary-soft);
  text-decoration: none;
}
