/* ═══════════════════════════════════════════
   SNEAD ADVISORY — Brand Stylesheet
   Colors: Forest #2A3F37, Terra #A24832,
   Amber #AA6937, Teal #0F353C,
   Charcoal #2C2B29, Cream #EDE4D4
   ═══════════════════════════════════════════ */

:root {
    --forest: #2A3F37;
    --terra: #A24832;
    --amber: #C5A55A;
    --teal: #0F353C;
    --charcoal: #2C2B29;
    --cream: #EDE4D4;
    --sage: #446B54;
    --white: #FAFAF8;
    --text: #2C2B29;
    --text-light: #5A5855;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 18px; }

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* ── NAVIGATION ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 250, 248, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
    border-bottom-color: var(--cream);
    box-shadow: 0 1px 20px rgba(42, 63, 55, 0.06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}
.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.nav-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    color: var(--forest);
    text-align: center;
}
.nav-logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.7em;
    color: var(--text-light);
    text-align: center;
    margin-top: 2px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}
.nav-links a {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-light);
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--amber);
    transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none;
    cursor: pointer; padding: 4px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--forest);
    transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 63, 55, 0.88) 0%, rgba(15, 53, 60, 0.92) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 850px;
}
.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}
.hero-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3.8rem;
    letter-spacing: 0.3em;
    color: var(--cream);
    text-align: center;
}
.hero-logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.65rem;
    letter-spacing: 0.65em;
    color: rgba(237, 228, 212, 0.8);
    text-align: center;
    margin-top: -0.7rem;
}
.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.4rem;
    color: rgba(237, 228, 212, 0.9);
    margin: 1.5rem 0 0 0;
}
.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 3rem;
    line-height: 1.15;
}
.hero-stat {
    margin-bottom: 3rem;
}
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--cream);
    display: block;
    line-height: 1;
}
.stat-text {
    color: rgba(237, 228, 212, 0.75);
    font-size: 1rem;
    margin-top: 0.75rem;
    line-height: 1.6;
}
.stat-translation {
    color: var(--cream);
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 0.75rem;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 2.8rem;
    border: 1px solid var(--amber);
    color: var(--cream);
    background: transparent;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}
.btn:hover { background: var(--amber); color: var(--white); }
.btn-outline { color: var(--cream); border-color: var(--amber); }
.btn-outline:hover { background: var(--amber); color: var(--white); }
.btn-solid { background: var(--forest); color: #FFFFFF; border-color: var(--amber); }
.btn-solid:hover { background: var(--amber); color: var(--white); border-color: var(--amber); }

/* ── SECTIONS ── */
.section { padding: 4.5rem 2rem; }
.section-dark { background: var(--forest); color: var(--cream); }
.section-cream { background: var(--cream); }
.section-cta { background: var(--forest); color: var(--cream); padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.center { text-align: center; }

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--forest);
}
.section-title.light { color: var(--cream); }
.section-title.left { text-align: left; }
.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.intro-text { max-width: 720px; margin: 0 auto; text-align: center; }
.intro-text p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
}

/* ── IMAGE SECTION ── */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
.split-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}
.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}
.split-content p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 1.3rem;
    line-height: 1.9;
}

/* ── SERVICES OVERVIEW (Home page) ── */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.tier-card {
    background: rgba(237, 228, 212, 0.08);
    border: 1px solid rgba(237, 228, 212, 0.15);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}
.tier-card:hover { transform: translateY(-4px); border-color: var(--amber); background: rgba(170, 105, 55, 0.12); }
.tier-card.featured { border-color: var(--amber); background: rgba(170, 105, 55, 0.08); }
.tier-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--amber);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    text-transform: uppercase;
}
.tier-name {
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
}
.tier-features { list-style: none; text-align: left; }
.tier-features li {
    padding: 0.55rem 0 0.55rem 1.4rem;
    font-size: 0.92rem;
    color: rgba(237, 228, 212, 0.85);
    border-bottom: 1px solid rgba(237, 228, 212, 0.08);
    position: relative;
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(237, 228, 212, 0.85);
}
.tiers-cta { text-align: center; margin-top: 3rem; }
.tiers-starting {
    text-align: center;
    margin-top: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--cream);
}
.tiers-starting span {
    color: var(--cream);
    font-weight: 700;
}

/* ── CREDIBILITY ── */
.cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.cred-text p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1.3rem;
    line-height: 1.9;
}
.link-arrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--forest);
    text-decoration: none;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    transition: color 0.3s;
}
.link-arrow::after { content: ' \2192'; }
.link-arrow:hover { color: var(--terra); }

.cred-stats { display: flex; flex-direction: column; gap: 2.5rem; }
.cred-stat { border-left: 2px solid var(--amber); padding-left: 1.5rem; }
.cred-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest);
    display: block;
    line-height: 1;
}
.cred-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.3rem;
    display: block;
}

/* ── CTA SECTION ── */
.cta-sub {
    font-size: 1.15rem;
    color: rgba(237, 228, 212, 0.85);
    margin-bottom: 2.5rem;
}

/* ── FOOTER ── */
.footer {
    background: var(--charcoal);
    color: rgba(237, 228, 212, 0.6);
    padding: 4rem 2rem 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    color: var(--cream);
    display: block;
    text-align: center;
    line-height: 1;
}
.footer-logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.76em;
    color: rgba(237, 228, 212, 0.6);
    display: block;
    text-align: center;
    margin-top: 2px;
    line-height: 1;
}
.footer-tagline {
    font-size: 1.05rem;
    margin-top: 1.2rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: rgba(237, 228, 212, 0.75);
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
    color: rgba(237, 228, 212, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--forest); }
.footer-contact a { color: var(--cream); text-decoration: none; font-size: 0.85rem; }
.footer-contact p { font-size: 0.85rem; margin-top: 0.5rem; }
.footer-bottom {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(237, 228, 212, 0.1);
    font-size: 0.72rem;
    text-align: center;
}

/* ── BACK TO TOP ── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--forest);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 99;
}
.back-to-top.visible { opacity: 1; }
.back-to-top:hover { background: var(--amber); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
    padding: 10rem 2rem 4rem;
    background: var(--forest);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}
.page-header h1 {
    color: var(--cream);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    position: relative;
}
.page-header p {
    color: var(--cream);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-top: 0.75rem;
    position: relative;
}

/* ── ABOUT PAGE ── */
.about-content { max-width: 750px; margin: 0 auto; }
.about-content h3 { font-size: 1.5rem; color: var(--forest); margin: 2.5rem 0 1rem; }
.about-content p { margin-bottom: 1.3rem; color: var(--text-light); font-size: 1.05rem; line-height: 1.9; }
.credentials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 2.5rem 0; }
.credential { text-align: center; padding: 1.75rem 1rem; background: var(--cream); }
.credential strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--forest);
    margin-bottom: 0.25rem;
}
.credential span { font-size: 0.78rem; color: var(--forest); letter-spacing: 0.05em; }

/* ── SERVICES PAGE ── */
.tier-banner {
    background: transparent;
    padding: 0 0 0.75rem 0;
    margin-top: 3rem;
    border-left: none;
}
.tier-banner:first-of-type { margin-top: 0; }
.tier-banner h3 {
    margin: 0;
    color: #000000;
    font-size: 1.9rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.02em;
    text-align: left;
}
.service-detail { background: var(--forest); padding: 2.5rem; margin-bottom: 0; border: none; border-top: 3px solid var(--amber); }
.service-detail h3 { display: none; }
.service-detail ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; column-gap: 2.5rem; row-gap: 0.25rem; }
.service-detail li {
    padding: 0.45rem 0;
    font-size: 0.95rem;
    color: #FFFFFF;
    padding-left: 1.4rem;
    position: relative;
}
.service-detail li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FFFFFF;
}
.addon-section { background: var(--cream); padding: 2.5rem; margin-top: 0; border-top: 3px solid var(--charcoal); }
.addon-section h3 { display: none; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h3 { font-size: 1.4rem; color: var(--forest); margin-bottom: 1.5rem; }
.contact-info p { font-size: 1rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }
.contact-info a { color: var(--forest); text-decoration: none; }
.contact-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    margin-top: 1.3rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--cream);
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--forest); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { margin-top: 1.5rem; width: 100%; }

/* ── BLOG PAGE ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}
.blog-card {
    border: none;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(42, 63, 55, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 2px;
    overflow: hidden;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(42, 63, 55, 0.18);
}
.blog-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.blog-card-body { padding: 2rem; }
.blog-card-date {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 0.5rem;
}
.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.blog-card a {
    color: var(--forest);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.blog-card a:hover { color: var(--terra); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    html { font-size: 16px; }
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 85px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--cream);
    }
    .nav-links.open { display: flex; }
    .tiers-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .cred-grid { grid-template-columns: 1fr; }
    .split-section { grid-template-columns: 1fr; }
    .split-image { min-height: 300px; }
    .credentials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .service-detail ul { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .hero-logo-name { font-size: 2.5rem; }
}
