:root {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1f2937;
    background-color: #eef2f7;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #eef2f7;
    color: #1f2937;
}

.page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.brand-logo {
    width: 260px;
    max-width: 70%;
    height: auto;
}

h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0.35rem 0 0.5rem;
    color: #0f172a;
}

h2 {
    margin-top: 0;
    font-size: 1.35rem;
    color: #111827;
}

p {
    line-height: 1.55;
    margin: 0.4rem 0;
}

section {
    background: #fff;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: #6b7280;
}

.lede {
    color: #4b5563;
    max-width: 60ch;
    margin: 0 auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

th,
td {
    text-align: left;
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

th {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #6b7280;
    text-transform: uppercase;
}

.highlight {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #065f46;
    text-align: center;
}

.calc {
    margin-top: 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem 1.25rem 0.75rem;
}

.calc__intro {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 0.8rem;
}

.calc-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.calc-field {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: #475569;
}

.calc-field span {
    margin-bottom: 0.25rem;
}

.calc-input {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5f5;
    border-radius: 8px;
    background: #fff;
    padding: 0.4rem 0.6rem;
    gap: 0.35rem;
    width: 100%;
    max-width: 100%;
}

.calc-input input {
    border: none;
    width: 100%;
    flex: 1 1 0;
    min-width: 0;
    font-size: 1rem;
    font-weight: 600;
    background: none;
    color: #0f172a;
}

.calc-input input:focus {
    outline: none;
}

.prefix,
.suffix {
    font-weight: 600;
    color: #1d4ed8;
    white-space: nowrap;
}

.calc-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
}

.benefits {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.35rem 1rem;
}

.benefits li {
    padding-left: 1.25rem;
    position: relative;
}

.benefits li::before {
    content: '*';
    position: absolute;
    left: 0;
    color: #0f766e;
    font-weight: bold;
}

.impact-bar {
    background: #e5e7eb;
    border-radius: 999px;
    height: 18px;
    margin: 1rem 0 0.5rem;
    overflow: hidden;
}

.impact-bar__fill {
    background: linear-gradient(90deg, #0ea5e9, #2563eb);
    width: 50%;
    height: 100%;
    color: #fff;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.75rem;
    font-weight: 600;
}

.emphasis {
    text-align: center;
    font-size: 1.05rem;
    margin-top: 0.5rem;
    color: #0f172a;
}

.tier-intro {
    color: #4b5563;
    margin-bottom: 1rem;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.tier-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 1.25rem;
    background: #fdfdfd;
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.05);
}

.tier-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    color: #0f172a;
}

.tier-note {
    font-size: 0.9rem;
    color: #475569;
    margin-top: 0.5rem;
}

.tier-footnote {
    margin-top: 0.75rem;
    color: #4b5563;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 640px) {
    section {
        padding: 1.25rem;
    }

    th,
    td {
        padding: 0.5rem 0.25rem;
    }
}

.artisan-gallery {
    background: #0f172a;
    color: #f8fafc;
}

.artisan-gallery h2 {
    color: #f8fafc;
}

.gallery-intro {
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.gallery-grid figure {
    margin: 0;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(248, 250, 252, 0.15);
}

.gallery-grid img {
    width: 100%;
    display: block;
}

.gallery-grid figcaption {
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.85);
}

.artisan-features {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem 1rem;
}

.artisan-features li {
    padding-left: 1.25rem;
    position: relative;
    color: rgba(248, 250, 252, 0.85);
}

.artisan-features li::before {
    content: "";
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-weight: bold;
}

.cta {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 45%, #0f172a 100%);
    color: #f8fafc;
    text-align: center;
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(248, 250, 252, 0.1);
}

.cta h2 {
    margin: 0 0 0.4rem;
    color: #f8fafc;
}

.cta p {
    margin: 0 0 1rem;
    color: rgba(248, 250, 252, 0.9);
}

.cta__link {
    display: inline-block;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    transition: transform 120ms ease, box-shadow 120ms ease;
}

.cta__link:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.22);
}


