/* gloweb static site — home */
:root {
    --primary: #A78A6B;
    --secondary: #E8DFD0;
    --ink: #231F1B;
    --paper: #F4EEE3;
    --accent: #2B3F39;
    --r: 0px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: 'Inter Tight', system-ui, -apple-system, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.5; }
h1, h2, h3 { font-family: 'Sentinel', serif; font-weight: 600; letter-spacing: -.015em; margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.gw-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px; border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
    max-width: 1200px; margin: 0 auto;
}
.gw-brand { font-weight: 700; font-size: 17px; }
.gw-nav nav { display: flex; gap: 22px; }
.gw-nav nav a { font-size: 14px; color: color-mix(in srgb, var(--ink) 75%, white); }
.gw-nav nav a:hover { color: var(--ink); }

.gw-hero {
    padding: 100px 24px 70px;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--paper) 100%);
    text-align: center;
}
.gw-eyebrow {
    display: inline-block;
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
    color: color-mix(in srgb, var(--ink) 70%, transparent);
    background: var(--paper);
    border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
    padding: 6px 14px; border-radius: 999px;
    margin-bottom: 22px;
}
.gw-hero h1 { font-size: clamp(34px, 5vw, 60px); line-height: 1.05; margin-bottom: 18px; }
.gw-lede { font-size: clamp(15px, 1.6vw, 18px); color: color-mix(in srgb, var(--ink) 70%, transparent); max-width: 640px; margin: 0 auto 30px; }
.gw-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; background: var(--ink); color: var(--paper);
    font-weight: 600; font-size: 14px; border-radius: var(--r);
    transition: transform .2s;
    border: none; cursor: pointer;
}
.gw-cta:hover { transform: translateY(-2px); }
.gw-cta:disabled { opacity: .7; cursor: wait; }

.gw-grid-section { padding: 64px 24px; max-width: 1200px; margin: 0 auto; }
.gw-grid-section h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 32px; }
.gw-sec-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; }
.gw-sec-head h2 { font-size: clamp(22px, 3vw, 32px); }
.gw-link { font-size: 14px; border-bottom: 1px solid color-mix(in srgb, var(--ink) 30%, transparent); }

.gw-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.gw-card {
    background: var(--paper);
    border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
    border-radius: var(--r); overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.gw-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px color-mix(in srgb, var(--ink) 14%, transparent); }
.gw-card-link { display: block; }
.gw-card-image { aspect-ratio: 1 / 1; position: relative; }
.gw-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gw-pill {
    position: absolute; top: 12px; left: 12px;
    background: color-mix(in srgb, var(--paper) 85%, transparent);
    color: var(--ink);
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
    padding: 4px 10px; border-radius: 999px;
}
.gw-card-body { padding: 16px; }
.gw-card-body h3 { font-size: 17px; margin-bottom: 6px; }
.gw-card-body p { margin: 0 0 14px; font-size: 13px; color: color-mix(in srgb, var(--ink) 65%, transparent); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gw-price { display: flex; align-items: baseline; gap: 10px; }
.gw-strike { text-decoration: line-through; color: color-mix(in srgb, var(--ink) 40%, transparent); font-size: 14px; }
.gw-now { font-size: 18px; font-weight: 700; }
.gw-buy { display: inline-block; margin-top: 12px; font-size: 12px; color: var(--accent); border-bottom: 1px solid var(--accent); }

.gw-buy-stripe {
    display: inline-block; width: 100%;
    padding: 12px 16px; margin-top: 4px;
    background: var(--accent); color: var(--paper);
    font-weight: 600; font-size: 13px;
    border: none; border-radius: var(--r);
    cursor: pointer; text-align: center;
    transition: transform .2s, opacity .2s;
}
.gw-buy-stripe:hover { transform: translateY(-1px); }
.gw-buy-stripe:disabled { opacity: .7; cursor: wait; }

.gw-band {
    background: var(--ink); color: var(--paper);
    padding: 60px 24px; text-align: center;
    margin: 60px 24px;
    border-radius: var(--r);
}
.gw-band h3 { font-size: clamp(20px, 2.4vw, 30px); margin-bottom: 12px; }
.gw-band p { opacity: .75; font-size: 14px; }

.gw-narrow { max-width: 720px; margin: 0 auto; padding: 80px 24px; }
.gw-narrow h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 20px; }
.gw-narrow p { font-size: 16px; margin-bottom: 16px; }
.gw-fine { font-size: 13px; color: color-mix(in srgb, var(--ink) 60%, transparent); }

.gw-order-card {
    background: var(--secondary);
    border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
    padding: 18px 20px; border-radius: var(--r);
    margin-top: 18px;
}
.gw-order-card p { margin: 0 0 6px; }

.gw-product-section { padding: 48px 24px; max-width: 1100px; margin: 0 auto; }
.gw-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.gw-product-image {
    background: var(--secondary);
    border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
    border-radius: var(--r);
    overflow: hidden;
}
.gw-product-image img { width: 100%; height: auto; display: block; }
.gw-product-info h1 { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 12px; }
.gw-product-blurb {
    font-size: 16px; color: color-mix(in srgb, var(--ink) 70%, transparent);
    margin: 0 0 18px;
}
.gw-product-price { margin-bottom: 8px; }
.gw-product-price .gw-now { font-size: 28px; }
.gw-product-price .gw-strike { font-size: 18px; }
.gw-product-trust {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}
.gw-product-trust p {
    font-size: 13px; color: color-mix(in srgb, var(--ink) 65%, transparent);
    margin: 0 0 6px;
}

.gw-footer { padding: 60px 24px 30px; border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent); background: color-mix(in srgb, var(--secondary) 50%, var(--paper)); }
.gw-foot-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.gw-foot-head { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; color: color-mix(in srgb, var(--ink) 80%, transparent); }
.gw-foot-grid a { display: block; font-size: 14px; margin-bottom: 8px; color: color-mix(in srgb, var(--ink) 70%, transparent); }
.gw-foot-grid a:hover { color: var(--ink); }
.gw-brand-lg { font-family: 'Sentinel', serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.gw-copy { max-width: 1200px; margin: 30px auto 0; font-size: 12px; color: color-mix(in srgb, var(--ink) 50%, transparent); text-align: center; }

@media (max-width: 760px) {
    .gw-product-grid { grid-template-columns: 1fr; }
    .gw-hero { padding: 70px 20px 50px; }
    .gw-foot-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .gw-hero { padding: 70px 20px 50px; }
    .gw-foot-grid { grid-template-columns: 1fr; }
}
