:root {
--ink: #10213f;
--cream: #f7f8fb;
--amber: #c9a227;
--amber-dark: #a3821c;
--slate: #45516b;
--line: #dfe3ee;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Georgia', 'Times New Roman', serif;
color: var(--ink);
background: var(--cream);
line-height: 1.6;
}
h1, h2, h3, .brand { font-family: 'Trebuchet MS', 'Helvetica Neue', Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.top-sticky { position: sticky; top: 0; z-index: 20; }

.shop-bar {
background: linear-gradient(90deg, var(--amber-dark), var(--amber) 50%, var(--amber-dark));
overflow: hidden;
padding: 9px 0;
}
.shop-bar .marquee {
overflow: hidden;
width: 100%;
mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent);
-webkit-mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}
.shop-bar .marquee-track {
display: flex;
width: max-content;
animation: marquee-scroll 24s linear infinite;
}
.shop-bar .marquee-item {
display: inline-flex;
align-items: center;
white-space: nowrap;
padding: 0 36px;
font-size: 14px;
font-weight: 700;
color: var(--ink);
font-family: 'Trebuchet MS', Arial, sans-serif;
letter-spacing: 0.3px;
}
.shop-bar .marquee-item:hover { text-decoration: underline; }
.shop-bar .marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
.shop-bar .marquee-track { animation: none; }
}

.crisis-bar {
background: linear-gradient(90deg, #7a2323, #a3302f 50%, #7a2323);
padding: 12px 0;
text-align: center;
position: relative;
overflow: hidden;
}
.crisis-bar::before {
content: "";
position: absolute; inset: 0;
background: repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 12px, transparent 12px 24px);
pointer-events: none;
}
.crisis-bar .wrap { display: flex; align-items: center; justify-content: center; gap: 10px; position: relative; }
.crisis-bar a {
display: inline-flex; align-items: center; gap: 8px;
color: #fff; font-size: 15px; font-weight: 700; letter-spacing: 0.3px;
}
.crisis-bar a:hover { text-decoration: underline; }
.crisis-bar strong {
font-weight: 800; background: var(--amber); color: var(--ink);
padding: 4px 12px; border-radius: 20px; font-size: 13px; letter-spacing: 0.4px;
}
.crisis-bar .pulse {
width: 9px; height: 9px; border-radius: 50%; background: var(--amber);
box-shadow: 0 0 0 0 rgba(201,162,39,0.7);
animation: pulse 1.8s infinite;
flex-shrink: 0;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(201,162,39,0.6); }
70% { box-shadow: 0 0 0 8px rgba(201,162,39,0); }
100% { box-shadow: 0 0 0 0 rgba(201,162,39,0); }
}

header {
background: var(--ink);
border-bottom: 3px solid var(--amber);
}
header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
.brand { font-size: 22px; font-weight: 700; letter-spacing: 0.5px; color: #f7f8fb; line-height: 1; }
.brand span { color: var(--amber); }
nav { display: flex; align-items: center; }
nav a { margin-left: 28px; font-size: 15px; font-weight: 600; color: #cfd6e6; line-height: 1; }
nav a:hover { color: var(--amber); }
nav a.active { color: var(--amber); }

.hero {
padding: 72px 0;
}
.hero .wrap {
display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.hero-tag {
display: inline-block; text-transform: uppercase; letter-spacing: 2px;
font-size: 13px; font-weight: 700; color: var(--amber-dark);
background: #eee3bd; padding: 6px 14px; border-radius: 20px; margin-bottom: 18px;
line-height: 1.4;
}
.hero h1 { font-size: 42px; line-height: 1.15; margin-bottom: 18px; }
.hero p { font-size: 18px; color: var(--slate); max-width: 46ch; margin-bottom: 28px; }
.hero img { display: block; width: 100%; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.hero .actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }

.page-hero {
padding: 56px 0;
text-align: center;
}
.page-hero h1 { font-size: 38px; margin-bottom: 14px; }
.page-hero .lead { margin-left: auto; margin-right: auto; }

.btn {
display: inline-flex; align-items: center; justify-content: center;
background: var(--amber); color: var(--ink); font-weight: 700;
padding: 14px 28px; border-radius: 8px; font-family: 'Trebuchet MS', Arial, sans-serif;
line-height: 1; transition: background 0.2s ease;
}
.btn:hover { background: var(--amber-dark); color: #fff; }
.btn-outline {
display: inline-flex; align-items: center; justify-content: center;
border: 2px solid var(--amber); color: var(--amber-dark);
font-weight: 700; padding: 12px 26px; border-radius: 8px;
font-family: 'Trebuchet MS', Arial, sans-serif; line-height: 1;
}

section { padding: 64px 0; }
.section-alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 700; color: var(--amber-dark); margin-bottom: 10px; }
h2 { font-size: 32px; margin-bottom: 16px; }
.lead { font-size: 18px; color: var(--slate); max-width: 62ch; margin-bottom: 24px; }

.points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.point { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
.point h3 { font-size: 17px; margin-bottom: 8px; color: var(--amber-dark); }
.point p { font-size: 15px; color: var(--slate); }

.healing { text-align: center; }
.healing h2 { max-width: 34ch; margin: 0 auto 16px; }
.healing .lead { margin-left: auto; margin-right: auto; }

.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; align-items: stretch; }
.product { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; }
.product h3 { font-size: 17px; margin-bottom: 8px; min-height: 44px; }
.product .price { color: var(--amber-dark); font-weight: 700; font-size: 16px; margin-bottom: 14px; }
.product .btn { margin-top: auto; align-self: flex-start; }

footer { background: var(--ink); color: #ede6d8; padding: 48px 0 28px; }
footer .wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.socials { display: flex; gap: 20px; }
.socials a { font-size: 14px; font-weight: 700; letter-spacing: 0.5px; color: #ede6d8; border: 1px solid #33436b; padding: 8px 16px; border-radius: 20px; }
.socials a:hover { background: var(--amber); border-color: var(--amber); color: #10213f; }
footer .copy { font-size: 13px; color: #8b97b8; }

.notokay {
background: #7a2323; color: #f7ece5; padding: 60px 0;
border-top: 4px solid var(--amber); border-bottom: 4px solid var(--amber);
}
.notokay .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.notokay .kicker { color: #f0c9c9; }
.notokay h2 { color: #fff; font-size: 34px; }
.notokay .lead { color: #f2dede; max-width: 56ch; }
.notokay .btn { background: var(--amber); color: var(--ink); }
.notokay .btn:hover { background: #fff; }
.notokay-card {
background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
border-radius: 14px; padding: 26px 28px;
}
.notokay-card h3 { font-size: 16px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; color: #fff; }
.notokay-card ul { list-style: none; }
.notokay-card li { font-size: 15px; color: #f2dede; padding: 6px 0; padding-left: 22px; position: relative; }
.notokay-card li::before { content: "✓"; position: absolute; left: 0; color: var(--amber); font-weight: 700; }

.cause { text-align: center; }
.cause h2 { max-width: 40ch; margin: 0 auto 16px; }
.cause .lead { margin-left: auto; margin-right: auto; }
.coming-soon {
display: inline-block; text-transform: uppercase; letter-spacing: 1.5px;
font-size: 12px; font-weight: 700; color: var(--amber-dark);
background: #eee3bd; padding: 5px 12px; border-radius: 20px; margin-top: 6px;
}
.cause-gallery {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
margin: 32px 0; max-width: 900px; margin-left: auto; margin-right: auto;
}
.cause-gallery img {
width: 100%; height: 220px; object-fit: cover; border-radius: 12px;
box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

@media (max-width: 820px) {
.cause-gallery { grid-template-columns: 1fr; }
.hero { grid-template-columns: 1fr; padding-top: 40px; }
.hero h1 { font-size: 32px; }
.points { grid-template-columns: 1fr; }
.notokay .wrap { grid-template-columns: 1fr; }
nav { display: none; }
}
