/* ===== SNOW MOUNTAIN PLUMBING - Styles ===== */
:root {
    --primary: #1a4a6e;
    --primary-light: #256794;
    --accent: #d97706;
    --accent-warm: #b45309;
    --dark: #1c2a3a;
    --light: #f8f6f3;
    --cream: #fdfcfa;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #e5e0da;
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --font-serif: 'Merriweather', serif;
    --transition: all 0.3s ease;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.65;
    background: var(--light);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253,252,250,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-light);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mountain { width: 36px; height: 36px; color: var(--primary); }
.logo-mountain svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--dark); line-height: 1.2; }
.logo-tag { font-size: 0.7rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1.5px; }
.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-menu a {
    text-decoration: none; color: var(--dark); font-weight: 700; font-size: 0.9rem;
    transition: var(--transition); position: relative;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--accent); transition: var(--transition);
}
.nav-menu a:hover { color: var(--primary); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
    display: flex; align-items: center; gap: 8px;
    background: var(--primary); color: var(--white); padding: 10px 20px;
    border-radius: 50px; text-decoration: none; font-weight: 800; font-size: 0.9rem;
    transition: var(--transition);
}
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--dark); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,42,58,0.9) 0%, rgba(28,42,58,0.6) 50%, rgba(28,42,58,0.3) 100%); }
.hero-content {
    position: relative; z-index: 2; max-width: 600px; padding: 100px 24px 60px;
    margin-left: calc((100vw - 1200px) / 2 + 24px);
}
.hero-welcome {
    display: inline-block; background: rgba(217,119,6,0.2); color: var(--accent);
    padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.5rem;
    border: 1px solid rgba(217,119,6,0.3);
}
.hero-content h1 {
    font-family: var(--font-heading); font-size: 3.2rem; font-weight: 900;
    color: var(--white); line-height: 1.15; margin-bottom: 1.5rem;
}
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2rem; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px;
    border-radius: 50px; text-decoration: none; font-weight: 800; font-size: 0.95rem;
    transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary {
    background: var(--accent); color: var(--white); box-shadow: 0 4px 20px rgba(217,119,6,0.3);
}
.btn-primary:hover { background: var(--accent-warm); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(217,119,6,0.4); }
.btn-ghost {
    background: rgba(255,255,255,0.1); color: var(--white); border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.btn-secondary {
    background: var(--white); color: var(--dark); border: 2px solid var(--gray-light);
}
.btn-secondary:hover { background: var(--light); border-color: var(--gray); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.hero-card {
    position: absolute; bottom: 40px; right: 40px; z-index: 2;
    display: flex; flex-direction: column; gap: 12px;
}
.h-card {
    display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px); padding: 16px 20px; border-radius: var(--radius);
    box-shadow: var(--shadow-md); min-width: 240px;
}
.h-card svg { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; }
.h-card div { display: flex; flex-direction: column; }
.h-card strong { font-weight: 800; color: var(--dark); font-size: 0.95rem; }
.h-card span { font-size: 0.8rem; color: var(--gray); }

/* ===== STORY ===== */
.story { padding: 100px 0; background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-text h2 {
    font-family: var(--font-heading); font-size: 2.4rem; font-weight: 900;
    color: var(--dark); margin-bottom: 1.5rem; line-height: 1.2;
}
.story-text p { color: var(--gray); margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.7; }
.story-text p strong { color: var(--dark); }
.story-text em { color: var(--primary); font-style: italic; font-family: var(--font-serif); }
.story-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2rem; }
.s-value { text-align: center; padding: 24px 16px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.sv-icon { font-size: 1.8rem; margin-bottom: 8px; }
.s-value h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.s-value p { font-size: 0.85rem; color: var(--gray); margin: 0; }

.story-images { position: relative; }
.story-img-main { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.story-quote {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--primary); color: var(--white); padding: 24px;
    border-radius: var(--radius); max-width: 280px; box-shadow: var(--shadow-md);
}
.story-quote blockquote {
    font-family: var(--font-serif); font-size: 0.95rem; font-style: italic;
    line-height: 1.6; margin-bottom: 12px;
}
.story-quote cite { font-size: 0.8rem; opacity: 0.8; font-style: normal; }

.section-label {
    display: inline-block; background: rgba(26,74,110,0.08); color: var(--primary);
    padding: 6px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem;
}

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--light); }
.services-header { text-align: center; margin-bottom: 50px; }
.services-header h2 {
    font-family: var(--font-heading); font-size: 2.4rem; font-weight: 900; color: var(--dark);
}
.services-header p { color: var(--gray); font-size: 1.05rem; margin-top: 0.5rem; }
.services-steps {
    display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 20px; align-items: center;
    margin-bottom: 60px; background: var(--white); border-radius: var(--radius); padding: 40px;
    box-shadow: var(--shadow);
}
.step { text-align: center; }
.step-num {
    width: 48px; height: 48px; background: var(--primary); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; margin: 0 auto 12px;
}
.step h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--gray); }
.step-arrow { font-size: 1.5rem; color: var(--accent); font-weight: 700; }

.services-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.s-list-item {
    display: flex; align-items: flex-start; gap: 20px; background: var(--white);
    padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition);
}
.s-list-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.s-icon {
    width: 56px; height: 56px; background: rgba(26,74,110,0.08); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0;
}
.s-icon svg { width: 28px; height: 28px; }
.s-info h4 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.s-info p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* ===== TEAM ===== */
.team { padding: 100px 0; background: var(--cream); }
.team-header { text-align: center; margin-bottom: 50px; }
.team-header h2 {
    font-family: var(--font-heading); font-size: 2.4rem; font-weight: 900; color: var(--dark);
}
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 700px; margin: 0 auto; }
.team-member { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.team-member img { width: 100%; height: 300px; object-fit: cover; }
.tm-placeholder {
    width: 100%; height: 300px; background: var(--light); display: flex; align-items: center; justify-content: center;
    color: var(--gray-light);
}
.tm-placeholder svg { width: 60px; height: 60px; }
.tm-info { padding: 24px; }
.tm-info h4 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.tm-info span { display: block; color: var(--accent); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.tm-info p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* ===== CTA ===== */
.cta-wide { padding: 80px 0; background: var(--primary); text-align: center; }
.cta-content h2 {
    font-family: var(--font-heading); font-size: 2.4rem; font-weight: 900; color: var(--white); margin-bottom: 1rem;
}
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-details h2 {
    font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900; color: var(--dark); margin-bottom: 0.5rem;
}
.contact-details > p { color: var(--gray); margin-bottom: 2rem; font-size: 1.05rem; }
.detail-list { display: flex; flex-direction: column; gap: 16px; }
.d-item { display: flex; align-items: flex-start; gap: 16px; }
.d-icon {
    width: 48px; height: 48px; background: rgba(26,74,110,0.08); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0;
}
.d-icon svg { width: 22px; height: 22px; }
.d-info { display: flex; flex-direction: column; }
.d-label { font-size: 0.75rem; color: var(--gray); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.d-val { color: var(--dark); font-weight: 700; font-size: 1rem; text-decoration: none; }
.d-val:hover { color: var(--primary); }
.d-info .d-val em { color: var(--accent); font-style: normal; font-weight: 800; }

.contact-form-wrap {
    background: var(--light); border-radius: var(--radius); padding: 36px;
}
.contact-form-wrap h3 {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 900; color: var(--dark); margin-bottom: 24px;
}
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
    width: 100%; padding: 14px 18px; border: 1px solid var(--gray-light);
    border-radius: 12px; font-family: var(--font-body); font-size: 1rem;
    margin-bottom: 14px; background: var(--white); transition: var(--transition);
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,74,110,0.1);
}
.contact-form-wrap textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--white); padding: 60px 0 20px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name, .footer-brand .logo-tag { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.95rem; line-height: 1.7; }
.footer-col h5 {
    font-family: var(--font-heading); font-size: 0.9rem; font-weight: 800;
    color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1.5px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 8px; }
.footer-col p a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-col p a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hero-content { margin-left: 24px; }
    .hero-card { right: 24px; bottom: 24px; }
}
@media (max-width: 992px) {
    .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-images { order: -1; }
    .story-quote { display: none; }
    .services-steps { grid-template-columns: 1fr; }
    .step-arrow { display: none; }
    .services-list { grid-template-columns: 1fr; }
    .team-grid { max-width: 100%; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: absolute; top: 76px; left: 0; right: 0;
        background: var(--cream); flex-direction: column; padding: 20px;
        box-shadow: var(--shadow-md); transform: translateY(-150%);
        transition: var(--transition); opacity: 0; pointer-events: none;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-cta { display: none; }
    .hero-content { padding-top: 80px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-card { position: static; margin-top: 30px; padding: 0 24px; }
    .story-text h2, .services-header h2, .team-header h2, .cta-content h2 { font-size: 1.8rem; }
    .story-values { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .btn { padding: 12px 22px; font-size: 0.9rem; }
    .contact-form-wrap { padding: 24px; }
}
