/* ============================================
   RENO TOGETHER | Global Stylesheet
   Version: 2.0
   ============================================ */

:root {
    --terracotta: #C4654A;
    --terracotta-deep: #A5503A;
    --terracotta-tint: #EED4C6;
    --olive: #7A8B6F;
    --olive-deep: #5E6F55;
    --olive-tint: #D8DFCE;
    --charcoal: #3D3633;
    --ink: #2F2826;
    --cream: #F2EADF;
    --paper: #F6EFE3;
    --paper-edge: #EAE0D1;
    --warm-grey: #8C8580;
    --rule: #DDD3C3;
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--terracotta-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

/* LAYOUT */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--charcoal { background: var(--charcoal); color: var(--cream); }
.section--terracotta { background: var(--terracotta); color: var(--paper); }

/* TYPOGRAPHY */
.label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--warm-grey);
    margin-bottom: 16px;
}
.section--charcoal .label,
.section--terracotta .label { color: rgba(255,255,255,0.5); }

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.05;
}
h2 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 24px; }
h2 em { color: var(--terracotta-deep); font-variation-settings: 'opsz' 144; }
.section--charcoal h2 em,
.section--terracotta h2 em { color: var(--paper); }
h3 { font-size: clamp(20px, 3vw, 26px); margin-bottom: 12px; }

.body-lg {
    font-size: 18px;
    line-height: 1.7;
    color: var(--charcoal);
    max-width: 640px;
}
.section--charcoal .body-lg { color: var(--cream); }
.section--terracotta .body-lg { color: rgba(255,255,255,0.85); }

/* NAV */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(246, 239, 227, 0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--paper-edge);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }
.nav__inner {
    max-width: 1080px; margin: 0 auto; padding: 0 24px;
    height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
    font-family: var(--serif); font-size: 22px;
    letter-spacing: -0.03em; color: var(--ink); line-height: 1;
}
.nav__logo em { color: var(--terracotta-deep); font-variation-settings: 'opsz' 144; }
.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__links a {
    font-family: var(--sans); font-size: 14px; font-weight: 500;
    color: var(--charcoal); text-decoration: none;
}
.nav__links a:hover { color: var(--terracotta-deep); text-decoration: none; }
.nav__cta {
    display: inline-block; padding: 10px 20px;
    background: var(--terracotta-deep); color: var(--paper) !important;
    border-radius: 6px; font-size: 13px !important; font-weight: 700 !important;
    letter-spacing: 0.02em; transition: background 0.2s;
}
.nav__cta:hover { background: var(--terracotta); text-decoration: none !important; }
.nav__mobile-toggle {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__mobile-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--ink); margin: 5px 0; transition: 0.3s;
}
.nav__ig {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px !important; color: var(--charcoal) !important;
}
.nav__ig svg { width: 16px; height: 16px; }

/* BUTTONS */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 6px;
    font-family: var(--sans); font-size: 15px; font-weight: 700;
    letter-spacing: 0.01em; text-decoration: none;
    transition: all 0.2s; cursor: pointer; border: none;
}
.btn--primary { background: var(--terracotta-deep); color: var(--paper); }
.btn--primary:hover { background: var(--terracotta); text-decoration: none; }
.btn--outline {
    background: transparent; color: var(--terracotta-deep);
    border: 1.5px solid var(--terracotta-deep);
}
.btn--outline:hover { background: var(--terracotta-deep); color: var(--paper); text-decoration: none; }
.btn--white { background: var(--paper); color: var(--terracotta-deep); }
.btn--white:hover { background: #fff; text-decoration: none; }
.btn--lg { padding: 16px 40px; font-size: 16px; }

/* HERO */
.hero {
    background: var(--paper);
    padding: 160px 0 120px;
    text-align: center;
}
.hero__label {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--warm-grey); margin-bottom: 28px;
}
.hero h1 {
    font-size: clamp(40px, 7vw, 72px);
    line-height: 0.95; margin-bottom: 12px; color: var(--ink);
}
.hero h1 em { color: var(--terracotta-deep); font-variation-settings: 'opsz' 144; }
.hero__rule {
    width: 48px; height: 0; border: none;
    border-top: 1px solid var(--terracotta);
    margin: 28px auto 24px;
}
.hero__sub {
    font-family: var(--sans); font-size: clamp(17px, 2.5vw, 20px);
    line-height: 1.6; color: var(--charcoal);
    max-width: 560px; margin: 0 auto 40px;
}
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* PROBLEM SECTION */
.problem__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center; margin-top: 48px;
}
.problem__list { list-style: none; }
.problem__list li {
    padding: 20px 0; border-bottom: 1px solid var(--rule);
    font-size: 17px; line-height: 1.5; color: var(--charcoal);
}
.problem__list li strong { color: var(--terracotta-deep); font-weight: 700; }
.problem__pull {
    font-family: var(--serif); font-size: clamp(24px, 3.5vw, 36px);
    line-height: 1.2; color: var(--ink);
    font-style: italic; font-variation-settings: 'opsz' 144;
}
.problem__pull span { color: var(--terracotta-deep); }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 56px; }
.step { text-align: center; }
.step__number {
    font-family: var(--serif); font-size: 56px; font-style: italic;
    color: var(--terracotta); font-variation-settings: 'opsz' 144;
    line-height: 1; margin-bottom: 16px;
}
.step h3 { margin-bottom: 12px; }
.step p { font-size: 15px; line-height: 1.6; color: var(--charcoal); }

/* WHAT'S INCLUDED CARDS */
.includes {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 32px; margin-top: 56px;
}
.include-card {
    background: var(--paper); border-radius: 8px; padding: 36px;
    border: 1px solid var(--paper-edge);
    transition: transform 0.2s, box-shadow 0.2s;
}
.include-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.include-card__icon {
    font-family: var(--serif); font-size: 32px; font-style: italic;
    color: var(--terracotta); font-variation-settings: 'opsz' 144;
    margin-bottom: 16px;
}
.include-card h3 { font-size: 20px; margin-bottom: 8px; }
.include-card p { font-size: 15px; line-height: 1.6; color: var(--charcoal); }

/* SOCIAL PROOF */
.proof__quote {
    font-family: var(--serif); font-size: clamp(24px, 4vw, 40px);
    line-height: 1.25; text-align: center; max-width: 800px;
    margin: 0 auto 32px; color: var(--cream);
    font-style: italic; font-variation-settings: 'opsz' 144;
}
.proof__attr { text-align: center; font-size: 14px; color: var(--warm-grey); }

/* PRODUCT CTA */
.product-cta {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.product-cta__price {
    font-family: var(--serif);
    font-size: 56px;
    color: var(--ink);
    line-height: 1;
    margin: 24px 0 8px;
}
.product-cta__price span { font-size: 20px; color: var(--warm-grey); }
.product-cta__note {
    font-size: 15px;
    color: var(--warm-grey);
    margin-bottom: 32px;
}
.product-cta__features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    text-align: left;
    max-width: 520px;
    margin: 0 auto 40px;
}
.product-cta__features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--charcoal);
    padding-left: 24px;
    position: relative;
}
.product-cta__features li::before {
    content: '\2713';
    position: absolute; left: 0;
    color: var(--olive); font-weight: 700;
}

/* FAQ */
.faq__list { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
    padding: 24px 0; font-family: var(--serif); font-size: 20px;
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-family: var(--sans); font-size: 24px;
    color: var(--terracotta); font-weight: 300; transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item__answer {
    padding: 0 0 24px; font-size: 15px; line-height: 1.7;
    color: var(--charcoal); max-width: 600px;
}

/* FREE CHECKLIST CTA */
.checklist-cta { text-align: center; max-width: 600px; margin: 0 auto; }
.checklist-form {
    display: flex; gap: 12px; justify-content: center;
    flex-wrap: wrap; max-width: 480px; margin: 0 auto 16px;
}
.checklist-form__input {
    flex: 1; min-width: 220px; padding: 14px 20px;
    border: 1.5px solid rgba(255,255,255,0.2); border-radius: 6px;
    background: rgba(255,255,255,0.08); color: var(--cream);
    font-family: var(--sans); font-size: 15px;
    outline: none; transition: border-color 0.2s;
}
.checklist-form__input::placeholder { color: rgba(255,255,255,0.4); }
.checklist-form__input:focus { border-color: var(--terracotta); }
.checklist-form .btn { white-space: nowrap; }
.checklist-form__note {
    font-size: 13px; color: rgba(255,255,255,0.35);
    text-align: center; margin-top: 4px;
}

/* INSTAGRAM BANNER */
.ig-banner {
    background: var(--terracotta);
    padding: 56px 0;
    text-align: center;
}
.ig-banner__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.ig-banner h2 { color: var(--paper); margin-bottom: 8px; }
.ig-banner h2 em { color: var(--paper); opacity: 0.7; }
.ig-banner p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
    margin-bottom: 8px;
}
.ig-banner .btn { margin-top: 8px; }

/* FOOTER */
.footer {
    background: var(--charcoal); padding: 56px 0 40px;
    color: var(--warm-grey); font-size: 14px;
}
.footer__inner {
    display: flex; justify-content: space-between;
    align-items: flex-start; flex-wrap: wrap; gap: 32px;
}
.footer__logo {
    font-family: var(--serif); font-size: 24px;
    color: var(--cream); line-height: 1; margin-bottom: 8px;
}
.footer__logo em { color: var(--terracotta); font-variation-settings: 'opsz' 144; }
.footer__tagline {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-grey);
    margin-bottom: 12px;
}
.footer__social { display: flex; gap: 16px; align-items: center; }
.footer__social a {
    color: var(--warm-grey); display: flex; align-items: center; gap: 6px;
    font-size: 13px;
}
.footer__social a:hover { color: var(--cream); }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.footer__links { display: flex; gap: 32px; list-style: none; }
.footer__links a { color: var(--warm-grey); font-size: 14px; }
.footer__links a:hover { color: var(--cream); }
.footer__bottom {
    margin-top: 40px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center; font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ============================================
   PAGE-SPECIFIC: ABOUT
   ============================================ */
.page-hero {
    background: var(--paper);
    padding: 140px 0 80px;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    line-height: 1; margin-bottom: 16px; color: var(--ink);
}
.page-hero h1 em { color: var(--terracotta-deep); font-variation-settings: 'opsz' 144; }
.page-hero__sub {
    font-size: 18px; line-height: 1.7; color: var(--charcoal);
    max-width: 580px; margin: 0 auto;
}

.about-content { padding: 80px 0; }
.about-content__inner { max-width: 680px; margin: 0 auto; }
.about-content__inner h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin: 56px 0 20px;
    line-height: 1.15;
}
.about-content__inner h2:first-child { margin-top: 0; }
.about-content__inner p {
    font-size: 17px; line-height: 1.8; color: var(--charcoal);
    margin-bottom: 20px;
}
.about-content__inner p.pull-quote {
    font-family: var(--serif); font-size: 24px; font-style: italic;
    font-variation-settings: 'opsz' 144;
    color: var(--terracotta-deep); line-height: 1.35;
    border-left: 3px solid var(--terracotta);
    padding-left: 24px; margin: 40px 0;
}

/* ============================================
   PAGE-SPECIFIC: BLOG
   ============================================ */
.blog-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 40px; margin-top: 56px;
}
.blog-card {
    border: 1px solid var(--paper-edge);
    border-radius: 8px; overflow: hidden;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.blog-card__body { padding: 28px 28px 32px; }
.blog-card__tag {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--olive); margin-bottom: 12px;
}
.blog-card__title {
    font-family: var(--serif); font-size: 22px;
    line-height: 1.2; margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.blog-card__title a { color: var(--ink); }
.blog-card__title a:hover { color: var(--terracotta-deep); text-decoration: none; }
.blog-card__excerpt {
    font-size: 15px; line-height: 1.65; color: var(--charcoal);
    margin-bottom: 16px;
}
.blog-card__meta {
    font-size: 13px; color: var(--warm-grey);
}

/* BLOG ARTICLE */
.article-hero {
    background: var(--paper);
    padding: 140px 0 64px;
    text-align: center;
}
.article-hero__tag {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--olive); margin-bottom: 20px;
}
.article-hero h1 {
    font-size: clamp(32px, 5.5vw, 52px);
    line-height: 1.08; margin-bottom: 20px; color: var(--ink);
    max-width: 780px; margin-left: auto; margin-right: auto;
}
.article-hero h1 em { color: var(--terracotta-deep); font-variation-settings: 'opsz' 144; }
.article-hero__meta {
    font-size: 14px; color: var(--warm-grey);
}
.article-hero__rule {
    width: 48px; height: 0; border: none;
    border-top: 1px solid var(--terracotta);
    margin: 32px auto 0;
}

.article-body {
    max-width: 700px; margin: 0 auto;
    padding: 64px 24px 96px;
}
.article-body h2 {
    font-size: clamp(24px, 3.5vw, 32px);
    margin: 56px 0 20px;
    line-height: 1.15;
}
.article-body h3 {
    font-size: 20px;
    margin: 40px 0 12px;
}
.article-body p {
    font-size: 17px; line-height: 1.8; color: var(--charcoal);
    margin-bottom: 20px;
}
.article-body ul, .article-body ol {
    margin: 0 0 24px 24px;
    font-size: 17px; line-height: 1.8; color: var(--charcoal);
}
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
    font-family: var(--serif); font-size: 22px; font-style: italic;
    font-variation-settings: 'opsz' 144;
    color: var(--terracotta-deep); line-height: 1.35;
    border-left: 3px solid var(--terracotta);
    padding-left: 24px; margin: 40px 0;
}
.article-body strong { color: var(--ink); }

/* ARTICLE CTA BOX */
.article-cta {
    background: var(--paper); border: 1px solid var(--paper-edge);
    border-radius: 8px; padding: 40px; text-align: center;
    margin: 56px 0;
}
.article-cta h3 { font-size: 24px; margin-bottom: 12px; }
.article-cta p { font-size: 15px; color: var(--charcoal); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .hero { padding: 120px 0 80px; }
    .page-hero { padding: 110px 0 60px; }
    .article-hero { padding: 110px 0 48px; }
    .nav__links { display: none; }
    .nav__mobile-toggle { display: block; }
    .problem__grid { grid-template-columns: 1fr; gap: 40px; }
    .steps { grid-template-columns: 1fr; gap: 40px; }
    .includes { grid-template-columns: 1fr; }
    .product-cta__features { grid-template-columns: 1fr; }
    .checklist-form { flex-direction: column; align-items: stretch; }
    .checklist-form__input { min-width: 0; }
    .footer__inner { flex-direction: column; text-align: center; }
    .footer__links { justify-content: center; }
    .footer__social { justify-content: center; }
    .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero__ctas { flex-direction: column; align-items: center; }
    .btn--lg { width: 100%; text-align: center; }
}

/* MOBILE NAV OPEN STATE */
@media (max-width: 768px) {
    .nav__links--open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: rgba(246,239,227,0.98);
        backdrop-filter: blur(12px);
        padding: 24px; gap: 20px;
        border-bottom: 1px solid var(--paper-edge);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
}
