/* ============================================ Trash Caddy — Charlotte, NC Shared stylesheet ============================================ */ @import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600;700&display=swap'); :root { --forest: #1e3a29; --forest-light: #33513c; --forest-pale: #e7ede6; --cream: #faf6ec; --cream-dark: #f0e8d4; --gold: #c9a247; --gold-dark: #a3801f; --text-dark: #1b2b1d; --text-muted: #55635a; --white: #ffffff; --radius-sm: 10px; --radius-md: 18px; --radius-lg: 28px; --shadow-soft: 0 20px 40px -20px rgba(30, 58, 41, 0.25); --container: 1140px; } * { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: 'Work Sans', sans-serif; color: var(--text-dark); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; } h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.1; color: var(--forest); } h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; letter-spacing: -0.01em; } h2 { font-size: clamp(2rem, 4vw, 2.9rem); } h3 { font-size: 1.4rem; } p { color: var(--text-muted); } a { color: inherit; text-decoration: none; } img, svg { max-width: 100%; display: block; } .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; } section { padding: 96px 0; } @media (max-width: 720px) { section { padding: 64px 0; } } /* ---------- Buttons ---------- */ .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: 0.98rem; border: 2px solid transparent; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease; white-space: nowrap; } .btn-primary { background: var(--forest); color: var(--cream); } .btn-primary:hover { background: var(--forest-light); transform: translateY(-2px); box-shadow: var(--shadow-soft); } .btn-outline { background: transparent; border-color: var(--forest); color: var(--forest); } .btn-outline:hover { background: var(--forest); color: var(--cream); transform: translateY(-2px); } .btn-gold { background: var(--gold); color: var(--forest); } .btn-gold:hover { background: var(--gold-dark); color: var(--cream); transform: translateY(-2px); } .btn-block { width: 100%; } /* ---------- Header / Nav ---------- */ .site-header { position: sticky; top: 0; z-index: 100; background: rgba(250, 246, 236, 0.92); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(30, 58, 41, 0.08); } .nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; } .brand { display: flex; align-items: center; gap: 12px; } .brand img { width: 46px; height: 46px; } .brand-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.35rem; color: var(--forest); } .brand-name span { color: var(--gold-dark); } .nav-links { display: flex; align-items: center; gap: 34px; list-style: none; } .nav-links a { font-weight: 500; font-size: 0.98rem; color: var(--text-dark); position: relative; padding: 6px 0; } .nav-links a.active, .nav-links a:hover { color: var(--forest); } .nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold); border-radius: 2px; } .nav-cta { display: flex; align-items: center; gap: 18px; } .nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; } .nav-toggle span { width: 26px; height: 2.5px; background: var(--forest); border-radius: 2px; } @media (max-width: 900px) { .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 20px; border-bottom: 1px solid rgba(30,58,41,0.08); display: none; } .nav-links.open { display: flex; } .nav-links li { width: 100%; border-top: 1px solid rgba(30,58,41,0.06); } .nav-links a { display: block; padding: 14px 0; } .nav-cta .btn-outline { display: none; } .nav-toggle { display: flex; } } /* ---------- Hero ---------- */ .hero { padding: 80px 0 60px; overflow: hidden; } .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; } @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } } .eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--forest-pale); color: var(--forest); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; margin-bottom: 22px; } .hero h1 { margin-bottom: 20px; } .hero .lede { font-size: 1.15rem; max-width: 46ch; margin-bottom: 34px; } .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; } .hero-trust { display: flex; gap: 28px; flex-wrap: wrap; font-size: 0.9rem; color: var(--text-muted); } .hero-trust strong { color: var(--forest); display: block; font-family: 'Fraunces', serif; font-size: 1.5rem; } .hero-art { position: relative; background: var(--forest); border-radius: var(--radius-lg); padding: 44px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); } .hero-art img { width: 62%; } .hero-art::before { content: ''; position: absolute; inset: 14px; border: 1px solid rgba(201, 162, 71, 0.45); border-radius: calc(var(--radius-lg) - 10px); } /* ---------- Sections shared ---------- */ .section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; } .section-head .eyebrow { margin-bottom: 16px; } .section-head p { font-size: 1.05rem; } .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; } .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; } .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; } @media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } .grid-2 { grid-template-columns: 1fr; } } @media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } } .card { background: var(--white); border-radius: var(--radius-md); padding: 36px 30px; box-shadow: 0 10px 30px -18px rgba(30, 58, 41, 0.22); border: 1px solid rgba(30,58,41,0.06); } .icon-badge { width: 56px; height: 56px; border-radius: 16px; background: var(--forest-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.6rem; } .step-card { text-align: left; position: relative; } .step-number { font-family: 'Fraunces', serif; font-size: 2.4rem; color: var(--gold); font-weight: 700; margin-bottom: 10px; display: block; } .alt-bg { background: var(--forest-pale); } .dark-bg { background: var(--forest); color: var(--cream); } .dark-bg h2, .dark-bg h3, .dark-bg h4 { color: var(--cream); } .dark-bg p { color: rgba(250, 246, 236, 0.78); } /* ---------- Pricing ---------- */ .price-card { background: var(--white); border-radius: var(--radius-md); padding: 40px 32px; border: 2px solid rgba(30,58,41,0.08); display: flex; flex-direction: column; gap: 18px; } .price-card.featured { border-color: var(--gold); background: var(--forest); color: var(--cream); transform: translateY(-10px); box-shadow: var(--shadow-soft); } .price-card.featured h3, .price-card.featured .price { color: var(--cream); } .price-card.featured p, .price-card.featured li { color: rgba(250, 246, 236, 0.82); } .price-card .badge { align-self: flex-start; background: var(--gold); color: var(--forest); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 5px 12px; border-radius: 999px; } .price { font-family: 'Fraunces', serif; font-size: 2.6rem; color: var(--forest); font-weight: 700; } .price span { font-family: 'Work Sans', sans-serif; font-size: 0.95rem; font-weight: 500; color: var(--text-muted); } .price-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 6px 0 10px; } .price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; } .price-card li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; } .price-card.featured li::before { color: var(--gold); } /* ---------- Testimonials ---------- */ .quote-card { background: var(--white); border-radius: var(--radius-md); padding: 30px 28px; border-left: 4px solid var(--gold); } .quote-card p.quote { color: var(--text-dark); font-size: 1.02rem; font-style: italic; margin-bottom: 16px; } .quote-author { font-weight: 600; color: var(--forest); font-size: 0.92rem; } .quote-stars { color: var(--gold-dark); letter-spacing: 2px; margin-bottom: 12px; } /* ---------- Chips / service area ---------- */ .chip-row { display: flex; flex-wrap: wrap; gap: 12px; } .chip { background: var(--white); border: 1px solid rgba(30,58,41,0.12); padding: 10px 18px; border-radius: 999px; font-size: 0.92rem; font-weight: 500; color: var(--forest); } /* ---------- CTA banner ---------- */ .cta-banner { background: var(--forest); border-radius: var(--radius-lg); padding: 64px 48px; text-align: center; color: var(--cream); } .cta-banner h2 { color: var(--cream); margin-bottom: 14px; } .cta-banner p { color: rgba(250,246,236,0.8); max-width: 50ch; margin: 0 auto 30px; } .cta-banner .hero-actions { justify-content: center; } /* ---------- Forms ---------- */ .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } @media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } } .field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; } .field.full { grid-column: 1 / -1; } .field label { font-weight: 600; font-size: 0.9rem; color: var(--forest); } .field input, .field select, .field textarea { font-family: inherit; font-size: 1rem; padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid rgba(30,58,41,0.18); background: var(--white); color: var(--text-dark); } .field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); } /* ---------- Footer ---------- */ .site-footer { background: var(--forest); color: rgba(250,246,236,0.85); padding: 72px 0 28px; } .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(250,246,236,0.14); } @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } } .footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; } .footer-brand img { width: 40px; height: 40px; } .footer-brand span { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.2rem; color: var(--cream); } .site-footer h4 { color: var(--cream); font-size: 1rem; margin-bottom: 16px; font-family: 'Work Sans', sans-serif; font-weight: 600; } .site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; } .site-footer a { color: rgba(250,246,236,0.75); font-size: 0.94rem; } .site-footer a:hover { color: var(--gold); } .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 0.85rem; color: rgba(250,246,236,0.55); flex-wrap: wrap; gap: 10px; } /* ---------- Page header (interior pages) ---------- */ .page-header { padding: 64px 0 20px; text-align: center; } .page-header .eyebrow { margin-left: auto; margin-right: auto; } .page-header p { max-width: 60ch; margin: 18px auto 0; font-size: 1.05rem; } /* ---------- FAQ ---------- */ .faq-item { border-bottom: 1px solid rgba(30,58,41,0.12); padding: 22px 0; } .faq-item summary { cursor: pointer; font-weight: 600; color: var(--forest); font-family: 'Fraunces', serif; font-size: 1.1rem; 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-size: 1.4rem; color: var(--gold-dark); } .faq-item[open] summary::after { content: '–'; } .faq-item p { margin-top: 14px; } /* ---------- Misc utility ---------- */ .text-center { text-align: center; } .mt-40 { margin-top: 40px; } .mb-0 { margin-bottom: 0; }