:root {
    --parchment: #F5F0E8;
    --ink: #1A1510;
    --serif: 'Playfair Display', serif;
}

body { background: var(--ink); color: var(--w); }

/* ── HERO ────────────────────────────────── */
.hero {
    background: var(--ink);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    padding: 0 40px 80px;
}

/* Aged paper grain texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

.hero-year {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--serif);
    font-weight: 900;
    font-size: 380px;
    color: rgba(255,208,0,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.hero-inner {
    max-width: 1216px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-rule-top {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 40px;
    position: relative;
}

.hero-rule-top::before {
    content: 'EST. 1924 — AUSTRALIA';
    position: absolute;
    left: 0;
    top: -10px;
    font-family: 'Courier New', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(255,208,0,0.6);
    background: var(--ink);
    padding-right: 16px;
}

.hero-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(13px, 1.4vw, 18px);
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-h1 {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(64px, 9vw, 136px);
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: #EEEEF0;
    margin-bottom: 40px;
}

.hero-h1 em {
    font-style: italic;
    color: var(--y);
}

.hero-bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.hero-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.4);
    max-width: 420px;
}

.hero-decade-row {
    display: flex;
    gap: 28px;
    align-items: flex-end;
    flex-shrink: 0;
}

.hero-decade {
    text-align: right;
}

.hero-decade-val {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 48px;
    color: var(--y);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-decade-lbl {
    font-family: var(--display);
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-top: 4px;
}

/* ── MANIFESTO STRIP ─────────────────────── */
.manifesto {
    background: var(--y);
    padding: 28px 40px;
    overflow: hidden;
    position: relative;
}

.manifesto-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    width: max-content;
}

.manifesto-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
    flex-shrink: 0;
}

.manifesto-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── ORIGIN STORY ────────────────────────── */
.origin {
    background: var(--parchment);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.origin::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 27px,
        rgba(0,0,0,0.04) 28px
    );
    pointer-events: none;
}

.origin-inner {
    max-width: 1216px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}

.origin-left {}

.origin-kicker {
    font-family: var(--display);
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.35);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.origin-kicker::before {
    content: '';
    width: 24px;
    height: 1px;
    background: rgba(0,0,0,0.3);
}

.origin-h2 {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(44px, 5vw, 72px);
    color: var(--ink);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
}

.origin-h2 em {
    font-style: italic;
    color: var(--r);
}

.origin-body {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(26,21,16,0.65);
    margin-bottom: 20px;
}

.origin-body strong {
    color: var(--ink);
    font-weight: 700;
}

.origin-pull {
    border-left: 3px solid var(--y);
    padding-left: 24px;
    margin: 40px 0;
}

.origin-pull p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1.45;
    color: var(--ink);
    font-weight: 700;
}

/* right side: large year + stamp */
.origin-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 20px;
}

.origin-year-display {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 200px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.04em;
    opacity: 0.08;
    align-self: flex-end;
    margin-bottom: -40px;
}

.origin-stamp-card {
    background: var(--ink);
    border-radius: 4px;
    padding: 40px 40px;
    width: 100%;
    position: relative;
}

.origin-stamp-label {
    font-family: 'Courier New', monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,208,0,0.5);
    margin-bottom: 24px;
    display: block;
}

.origin-stamp-name {
    font-family: var(--serif);
    font-weight: 900;
    font-style: italic;
    font-size: 36px;
    color: var(--y);
    line-height: 1.1;
    margin-bottom: 4px;
}

.origin-stamp-sub {
    font-family: var(--display);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 32px;
}

.origin-stamp-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 24px;
}

.origin-fact-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.origin-fact-key {
    font-family: var(--display);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.origin-fact-val {
    font-family: var(--display);
    font-weight: 700;
    font-size: 13px;
    color: #EEEEF0;
    text-align: right;
}

/* ── TIMELINE ────────────────────────────── */
.timeline-section {
    background: var(--ink);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.timeline-wm {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--serif);
    font-weight: 900;
    font-size: 260px;
    color: rgba(255,255,255,0.015);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    letter-spacing: -0.04em;
}

.timeline-inner {
    max-width: 1216px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 96px;
    gap: 40px;
}

.timeline-h2 {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(40px, 5vw, 64px);
    color: #EEEEF0;
    letter-spacing: -0.025em;
    line-height: 1.02;
}

.timeline-h2 em { font-style: italic; color: var(--y); }

.timeline-intro {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.3);
    max-width: 340px;
    text-align: right;
}

/* vertical timeline */
.timeline {
    position: relative;
    padding-left: 80px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, var(--y), rgba(255,208,0,0.1));
}

.tl-item {
    position: relative;
    padding-bottom: 72px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 48px;
    align-items: start;
}

.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
    position: absolute;
    left: -5px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--y);
    box-shadow: 0 0 0 4px rgba(255,208,0,0.12);
}

.tl-year {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 28px;
    color: var(--y);
    letter-spacing: -0.02em;
    line-height: 1;
    padding-top: 4px;
}

.tl-content {}

.tl-headline {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 22px;
    color: #EEEEF0;
    margin-bottom: 10px;
    line-height: 1.2;
}

.tl-body {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    max-width: 600px;
}

.tl-tag {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.7);
    background: var(--y);
    border-radius: 3px;
    padding: 3px 8px;
}

/* ── FORMULA SECTION ─────────────────────── */
.formula {
    background: #0A0800;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

/* yellow glow */
.formula::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255,208,0,0.06), transparent 70%);
    pointer-events: none;
}

.formula-inner {
    max-width: 1216px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.formula-kicker {
    font-family: var(--display);
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.formula-kicker::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--y);
}

.formula-h2 {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(36px, 4vw, 56px);
    color: #EEEEF0;
    letter-spacing: -0.025em;
    line-height: 1.06;
    margin-bottom: 28px;
}

.formula-h2 em { font-style: italic; color: var(--y); }

.formula-body {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

/* right: properties grid */
.formula-props {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.formula-prop {
    background: rgba(255,208,0,0.04);
    border: 1px solid rgba(255,208,0,0.1);
    padding: 28px 24px;
}

.formula-prop:first-child { border-radius: 16px 0 0 0; }
.formula-prop:nth-child(2) { border-radius: 0 16px 0 0; }
.formula-prop:nth-child(3) { border-radius: 0 0 0 16px; }
.formula-prop:last-child { border-radius: 0 0 16px 0; }

.formula-prop-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,208,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.formula-prop-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--y);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.formula-prop-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: 13px;
    color: #EEEEF0;
    margin-bottom: 6px;
}

.formula-prop-desc {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.3);
}

/* ── LINIMENT CHAPTER ────────────────────── */
.liniment {
    background: var(--parchment);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.liniment::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 27px,
        rgba(0,0,0,0.04) 28px
    );
    pointer-events: none;
}

.liniment-inner {
    max-width: 1216px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.liniment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.liniment-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--y);
    padding: 5px 10px;
    border-radius: 3px;
    margin-bottom: 20px;
}

.liniment-h2 {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(40px, 4.5vw, 60px);
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1.02;
    margin-bottom: 8px;
}

.liniment-h2 em { font-style: italic; color: var(--r); }

.liniment-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: rgba(26,21,16,0.45);
    margin-bottom: 32px;
}

.liniment-body {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(26,21,16,0.6);
    margin-bottom: 16px;
}

.liniment-body strong { color: var(--ink); font-weight: 700; }

/* right: archival card */
.liniment-card {
    background: var(--ink);
    border-radius: 4px;
    padding: 48px 44px;
    position: relative;
}

.liniment-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--y);
}

.liniment-card-header {
    font-family: 'Courier New', monospace;
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,208,0,0.4);
    margin-bottom: 28px;
    display: block;
}

.liniment-card-title {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 32px;
    color: #EEEEF0;
    margin-bottom: 4px;
    line-height: 1.1;
}

.liniment-card-subtitle {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--y);
    margin-bottom: 28px;
}

.liniment-card-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 24px;
}

.liniment-use-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.liniment-use-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

.liniment-use-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--y);
    flex-shrink: 0;
    margin-top: 7px;
}

.liniment-note {
    margin-top: 28px;
    padding: 16px;
    background: rgba(255,208,0,0.04);
    border-radius: 6px;
    border: 1px solid rgba(255,208,0,0.1);
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    line-height: 1.6;
    font-style: italic;
}

/* ── MADE IN AUSTRALIA ───────────────────── */
.made-in {
    background: var(--y);
    padding: 96px 40px;
    position: relative;
    overflow: hidden;
}

.made-wm {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif);
    font-weight: 900;
    font-size: 240px;
    color: rgba(0,0,0,0.05);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -0.04em;
}

.made-inner {
    max-width: 1216px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.made-h2 {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(44px, 5.5vw, 72px);
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 0.96;
    margin-bottom: 28px;
}

.made-body {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(0,0,0,0.6);
    margin-bottom: 16px;
}

.made-body strong { color: var(--ink); font-weight: 700; }

.made-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.made-stat {
    background: rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 28px 24px;
}

.made-stat-val {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 44px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 6px;
}

.made-stat-lbl {
    font-family: var(--display);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    line-height: 1.4;
}

/* ── RANGE TODAY ─────────────────────────── */
.range-today {
    background: var(--ink);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.range-inner {
    max-width: 1216px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.range-header {
    text-align: center;
    margin-bottom: 72px;
}

.range-kicker {
    font-family: var(--display);
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.range-kicker::before, .range-kicker::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--y);
}

.range-h2 {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(40px, 5vw, 64px);
    color: #EEEEF0;
    letter-spacing: -0.025em;
    line-height: 1.02;
}

.range-h2 em { font-style: italic; color: var(--y); }

.range-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.range-card {
    background: #0C0E10;
    border: 1px solid rgba(70,72,74,0.2);
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.range-card:first-child { border-radius: 20px 0 0 20px; }
.range-card:last-child { border-radius: 0 20px 20px 0; }

.range-card:hover {
    background: var(--y);
    border-color: var(--y);
}

.range-card-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.range-card-img img {
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.range-card:hover .range-card-img img { transform: scale(1.15) translateY(-6px); }

.range-card-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 16px;
    transition: background 0.3s;
}

.range-card:hover .range-card-divider { background: rgba(0,0,0,0.12); }

.range-card-size {
    font-family: var(--display);
    font-weight: 800;
    font-size: 22px;
    color: #EEEEF0;
    margin-bottom: 4px;
    transition: color 0.3s;
}

.range-card:hover .range-card-size { color: var(--ink); }

.range-card-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
    transition: color 0.3s;
    flex: 1;
}

.range-card:hover .range-card-desc { color: rgba(0,0,0,0.55); }

/* ── LEGACY STRIP ────────────────────────── */
.legacy {
    background: #0A0800;
    border-top: 1px solid rgba(255,208,0,0.1);
    border-bottom: 1px solid rgba(255,208,0,0.1);
    padding: 72px 40px;
}

.legacy-inner {
    max-width: 1216px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.legacy-stat {
    padding: 0 40px;
    border-right: 1px solid rgba(255,208,0,0.1);
    text-align: center;
}

.legacy-stat:first-child { padding-left: 0; }
.legacy-stat:last-child { border-right: none; padding-right: 0; }

.legacy-val {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 64px;
    color: var(--y);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.legacy-lbl {
    font-family: var(--display);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
}
