:root {
    --green: #1a4535;
    --green-dark: #12382d;
    --green-light: #245542;
    --leaf: #4baa5f;
    --mint: #c8e6c0;
    --gold: #e8a838;
    --cream: #f5f3eb;
    --paper: #ffffff;
    --ink: #1b2b26;
    --muted: #6d7a74;
    --line: #e5e2d6;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
}

.wrap {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

/* Top bar */
.top-bar {
    background: #f5f5f5;
    color: var(--ink);
    font-size: 12px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-left a {
    display: flex;
    color: var(--green);
    transition: color 0.2s;
}

.top-bar-left a:hover {
    color: var(--gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-right span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
}

.nav {
    position: relative;
    z-index: 2;
    min-height: 80px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.brand {
    justify-self: start;
}

.brand img {
    width: 150px;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.nav-links {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 44px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.nav-links a:hover {
    color: var(--gold);
}

.header-rip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    height: 18px;
    background: var(--mint);
    -webkit-mask: url('../images/2020/12/ripped-paper-base-2.png') repeat-x center bottom / auto 100%;
    mask: url('../images/2020/12/ripped-paper-base-2.png') repeat-x center bottom / auto 100%;
    pointer-events: none;
    z-index: 1;
}





.download,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 24px;
    border: 0;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.download:hover,
.btn:hover {
    background: #d49a2e;
}

.call-btn {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.2s;
    line-height: 1.2;
}

.call-btn:hover {
    background: #d49a2e;
}

.call-text {
    display: flex;
    flex-direction: column;
}

.call-text small {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

.call-text strong {
    font-size: 14px;
}

/* Hero */
.hero {
    position: relative;
    background: var(--mint);
    padding: 60px 0 100px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-copy {
    max-width: 540px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--leaf);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 20px;
    font-size: clamp(56px, 8vw, 100px);
    line-height: 0.95;
    font-weight: 800;
    color: var(--green-dark);
}

.hero-copy p:not(.eyebrow) {
    max-width: 480px;
    margin: 0 0 32px;
    color: #3a5245;
    font-size: 17px;
    line-height: 1.7;
}

.hero-art {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-art img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
}

.hero-rip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 28px;
    background: url('../images/2020/12/ripped-paper-primary-up.png') repeat-x center bottom / auto 100%;
    transform: rotate(180deg);
}

/* Products */
.products {
    padding: 60px 0 40px;
    background: var(--gold);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-grid article {
    background: var(--paper);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

.product-grid article:hover {
    transform: translateY(-4px);
}

.card-img-wrap {
    position: relative;
}

.card-gold .card-img-wrap::before,
.card-green .card-img-wrap::before,
.card-orange .card-img-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    z-index: 2;
}

.card-gold .card-img-wrap::before { background: var(--gold); }
.card-green .card-img-wrap::before { background: var(--leaf); }
.card-orange .card-img-wrap::before { background: #e07a3e; }

.product-grid img {
    width: 100%;
    aspect-ratio: 1.2;
    object-fit: cover;
}

.product-grid h2 {
    margin: 0;
    padding: 18px 20px 22px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--ink);
}

/* Story */
.story {
    padding: 90px 0;
    background: var(--paper);
}

.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 70px;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}

.story-badge {
    position: absolute;
    right: 10%;
    bottom: 10%;
    width: 110px;
    height: 110px;
    background: var(--paper);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    color: var(--green);
    font-weight: 800;
    font-size: 12px;
    line-height: 1.3;
    border: 3px solid var(--leaf);
}

.story-badge span:first-child {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 2px;
}

.story-copy h2 {
    margin: 0 0 22px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    color: var(--green-dark);
}

.story-copy p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 12px;
}

.feature-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 32px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}

.feature-list .check {
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-list .check::after {
    content: "";
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.feature-list.light li {
    color: #fff;
}

/* Difference */
.difference {
    padding: 80px 0;
    background: var(--cream);
}

.difference-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr 0.75fr;
    align-items: stretch;
    gap: 0;
}

.difference-list {
    padding: 24px 34px 24px 0;
}

.difference-list h2 {
    margin: 0 0 28px;
    font-size: clamp(30px, 3.5vw, 44px);
    line-height: 1.1;
    color: var(--green-dark);
}

.accordion {
    border-top: 1px solid var(--line);
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
}

.accordion-item button .arrow {
    font-size: 12px;
    color: var(--gold);
    transition: transform 0.2s;
}

.accordion-item.active button .arrow {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

.accordion-body p {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    padding-right: 20px;
}

.feature-photo {
    position: relative;
}

.feature-photo img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 180px;
    height: 130px;
    border: 0;
    background: var(--gold);
    cursor: pointer;
    transition: background 0.2s;
}

.play-button:hover {
    background: #d49a2e;
}

.play-button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid #fff;
    transform: translate(-34%, -50%);
}

.green-panel {
    background: var(--leaf);
    color: #fff;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.green-panel p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
}

.green-panel p:last-child {
    margin-bottom: 0;
}

/* Stats */
.stats {
    position: relative;
    background: var(--green);
    color: #fff;
    padding: 70px 0 100px;
    overflow: hidden;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.stat-block {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-block strong {
    font-size: clamp(72px, 10vw, 120px);
    line-height: 1;
    font-weight: 800;
}

.stat-block span {
    max-width: 260px;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.stats-rip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 40px;
    background: url('../images/2020/12/ripped-paper-testimonials.png') repeat-x center bottom / auto 100%;
    transform: rotate(180deg);
}

/* Deliver */
.deliver {
    position: relative;
    background: var(--green-dark);
    color: #fff;
    padding: 80px 0 100px;
    overflow: hidden;
}

.deliver-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
}

.deliver-copy {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.deliver-copy .eyebrow {
    color: var(--gold);
}

.deliver h2 {
    margin: 0 0 28px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
}

.deliver-copy p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 12px;
}

.deliver-copy ul {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.deliver-copy li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    font-weight: 700;
}

.deliver-copy li .check {
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.deliver-copy li .check::after {
    content: "";
    width: 5px;
    height: 9px;
    border: solid var(--green-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.deliver-rip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 40px;
    background: url('../images/2020/12/ripped-paper-base.png') repeat-x center bottom / auto 100%;
    transform: rotate(180deg);
}

/* Announcement */
.announcement {
    background: var(--cream);
    padding: 20px 0;
    text-align: center;
}

.announcement p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
}

.announcement a {
    color: var(--gold);
    font-weight: 700;
}

/* Testimonial */
.testimonial {
    position: relative;
    background: var(--green);
    color: #fff;
    padding: 80px 0 100px;
    text-align: center;
    overflow: hidden;
}

.testimonial-inner {
    position: relative;
    z-index: 2;
}

.stars {
    margin: 0 0 20px;
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 4px;
}

.testimonial blockquote {
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: clamp(20px, 2.8vw, 32px);
    line-height: 1.45;
    font-weight: 500;
}

.testimonial cite {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-style: normal;
}

.testimonial cite strong {
    font-size: 18px;
    font-weight: 700;
}

.testimonial cite span {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.testimonial-rip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 40px;
    background: url('../images/2020/12/ripped-paper-testimonials.png') repeat-x center bottom / auto 100%;
    transform: rotate(180deg);
}

/* Blog */
.blog {
    padding: 90px 0;
    background: var(--paper);
}

.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 50px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.15;
    color: var(--green-dark);
}

.section-head-right {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

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

.blog-grid article {
    background: #f8f7f1;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(20, 38, 31, 0.08);
    display: flex;
    flex-direction: column;
}

.blog-grid img {
    width: 100%;
    aspect-ratio: 1.6;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-grid time {
    color: var(--leaf);
    font-weight: 800;
    font-size: 13px;
}

.blog-grid h3 {
    margin: 10px 0 18px;
    font-size: 20px;
    line-height: 1.3;
    color: var(--ink);
    flex: 1;
}

.btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 22px;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    align-self: flex-start;
    transition: background 0.2s;
}

.btn-sm:hover {
    background: #d49a2e;
}

/* Trust */
.trust {
    padding: 60px 0;
    background: var(--cream);
    text-align: center;
}

.trust-inner h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--green-dark);
}

.trust-inner p {
    margin: 0 auto;
    max-width: 600px;
    color: var(--muted);
    font-size: 15px;
}

/* Contact */
.contact {
    padding: 90px 0;
    background: #eeede6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 70px;
    align-items: center;
}

.contact-art {
    display: flex;
    justify-content: center;
}

.contact-art img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--green-dark);
}

input,
textarea {
    width: 100%;
    border: 0;
    background: #fff;
    color: var(--ink);
    font: inherit;
    padding: 16px 18px;
    outline: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

input:focus,
textarea:focus {
    outline-color: var(--gold);
}

.form-status {
    min-height: 22px;
    margin: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 13px;
}

/* Features bar */
.features-bar {
    padding: 50px 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}

/* Footer */
.site-footer {
    background: var(--green);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 18px;
}

.footer-brand p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.newsletter {
    display: grid;
    grid-template-columns: 1fr 50px;
    gap: 0;
    max-width: 320px;
    margin-bottom: 20px;
}

.newsletter input {
    border-radius: 4px 0 0 4px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

.newsletter input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter button {
    border: 0;
    background: var(--gold);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s;
}

.socials a:hover {
    background: rgba(255,255,255,0.1);
}

.footer-news h2,
.footer-contact h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.news-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.news-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.news-item time {
    font-size: 12px;
    opacity: 0.7;
    display: block;
    margin-bottom: 4px;
}

.news-item a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    transition: opacity 0.2s;
}

.news-item a:hover {
    opacity: 0.8;
}

.footer-contact p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.8;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.7;
}

.legal-links a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 980px) {
    .top-bar {
        display: none;
    }

    .nav {
        display: flex;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .hero-grid,
    .story-grid,
    .difference-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 50px 0 90px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-copy {
        text-align: center;
        max-width: 100%;
    }

    .hero-copy p:not(.eyebrow) {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-art {
        order: -1;
    }

    .product-grid,
    .blog-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .difference-grid {
        gap: 30px;
    }

    .difference-list {
        padding-right: 0;
    }

    .feature-photo img {
        min-height: 300px;
    }

    .green-panel {
        padding: 30px;
    }

    .stats-inner {
        justify-content: flex-start;
    }

    .section-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid {
        gap: 50px;
    }

    .contact-art {
        order: -1;
    }

    .contact-art img {
        max-width: 300px;
    }

    .footer-grid {
        gap: 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .download,
    .call-btn {
        display: none;
    }

    .story,
    .difference,
    .blog,
    .contact {
        padding: 60px 0;
    }

    .stats {
        padding: 50px 0 80px;
    }

    .deliver {
        padding: 60px 0 80px;
    }

    .testimonial {
        padding: 60px 0 80px;
    }

    .stat-block {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .stat-block span {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 56px;
    }

    .story-badge {
        width: 90px;
        height: 90px;
        font-size: 10px;
        right: 5%;
        bottom: 5%;
    }

    .story-badge span:first-child {
        font-size: 18px;
    }

    .deliver-copy ul {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .play-button {
        width: 120px;
        height: 90px;
    }

    .features-grid {
        gap: 24px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}
