/**
 * Mockup Theme — base element styling (SCAFFOLD).
 *
 * Only readable defaults for the fallback templates. The real editorial and
 * storefront component styles arrive in Phase 3+ (ported snippets). Keep this
 * file thin so it does not fight plugin/WooCommerce CSS.
 */

body {
    font-family: var(--sans);
    color: var(--black);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 700;
    line-height: 1.1;
    /* Georgian script has no uppercase forms — never uppercase the display
     * face (it would distort the Anastasia glyphs). */
    text-transform: none;
}

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

.site-content { min-height: 50vh; }

/* Scaffold container — replaced by real layout in Phase 3/4. */
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding: 40px 20px;
}
