/* ── Shared Service Area Page Styles ── */
/* Inherits landing page CSS variables and base via iframe / inline import */

/* Override for local SEO pages */
:root {
    --stone: #2C2825;
    --warm-sand: #C4A882;
    --clay: #8B6F4E;
    --slate: #4A4543;
    --cream: #F5F0EB;
    --amber: #D4943A;
    --charcoal: #1A1817;
    --mist: #E8E2DB;
    --green: #4A9B6E;
    --red: #C75B5B;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--charcoal);
    color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 24, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 168, 130, 0.1);
}

.nav-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--amber);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cream);
    text-decoration: none;
}

.nav-home {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--clay);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-home:hover { color: var(--amber); }

/* Hero */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 5rem 2rem 4rem;
    position: relative;
    background: linear-gradient(175deg, var(--charcoal) 0%, #2A2420 55%, var(--stone) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(212, 148, 58, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(196, 168, 130, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.hero-badge {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.25rem;
}

.hero-badge::after {
    content: '';
    display: block;
    width: 3rem;
    height: 2px;
    background: var(--amber);
    margin-top: 0.75rem;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.hero h1 .amber { color: var(--amber); }

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--warm-sand);
    max-width: 560px;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-sub strong {
    color: var(--cream);
    font-weight: 500;
}

.hero-trust {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(196, 168, 130, 0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon { font-size: 1.2rem; }

.trust-text {
    font-size: 0.85rem;
    color: var(--mist);
    font-weight: 500;
}

.area-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 148, 58, 0.1);
    border: 1px solid rgba(212, 148, 58, 0.2);
    border-radius: 100px;
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    color: var(--warm-sand);
    font-weight: 400;
    margin-bottom: 1.75rem;
}

.area-note .pin { font-size: 1rem; }

/* Section spacing */
.section {
    padding: 4.5rem 2rem;
}

.section-alt {
    background: var(--stone);
}

.section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.75rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    max-width: 640px;
}

.section-sub {
    font-size: 1rem;
    color: var(--warm-sand);
    font-weight: 300;
    max-width: 560px;
    line-height: 1.6;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clay), transparent);
    opacity: 0.25;
}

/* Services grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.service-card {
    background: linear-gradient(160deg, rgba(74, 69, 67, 0.45), rgba(44, 40, 37, 0.7));
    border: 1px solid rgba(196, 168, 130, 0.12);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: border-color 0.25s, transform 0.2s;
}

.service-card:hover {
    border-color: rgba(212, 148, 58, 0.35);
    transform: translateY(-2px);
}

.service-icon {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 0.35rem;
}

.service-card p {
    font-size: 0.78rem;
    color: var(--warm-sand);
    line-height: 1.5;
    font-weight: 300;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.pricing-card {
    background: linear-gradient(160deg, rgba(74, 69, 67, 0.45), rgba(44, 40, 37, 0.7));
    border: 1px solid rgba(196, 168, 130, 0.12);
    border-radius: 14px;
    padding: 1.25rem 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: border-color 0.25s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 148, 58, 0.4), transparent);
}

.pricing-card:hover {
    border-color: rgba(212, 148, 58, 0.35);
    transform: translateY(-3px);
}

.pricing-card-icon { font-size: 1.4rem; margin-bottom: 0.2rem; }

.pricing-card-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.3;
}

.pricing-card-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
}

.pricing-card-price span {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--clay);
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.pricing-card-desc {
    font-size: 0.78rem;
    color: var(--warm-sand);
    line-height: 1.5;
    font-weight: 300;
    flex: 1;
}

.pricing-disclaimer {
    background: rgba(74, 69, 67, 0.3);
    border: 1px solid rgba(196, 168, 130, 0.1);
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    font-size: 0.82rem;
    color: var(--clay);
    line-height: 1.6;
    margin-top: 2rem;
}

.pricing-disclaimer strong {
    color: var(--warm-sand);
    font-weight: 500;
}

.pricing-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* CTA button */
.cta-button {
    display: inline-block;
    padding: 0.9rem 2.25rem;
    background: linear-gradient(135deg, var(--amber), #C08430);
    color: var(--charcoal);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.15s, box-shadow 0.2s;
    letter-spacing: 0.01em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 148, 58, 0.3);
}

/* Nearby section */
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.nearby-card {
    background: linear-gradient(160deg, rgba(74, 69, 67, 0.35), rgba(44, 40, 37, 0.55));
    border: 1px solid rgba(196, 168, 130, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
    display: block;
}

.nearby-card:hover {
    border-color: rgba(212, 148, 58, 0.3);
    transform: translateY(-2px);
}

.nearby-city {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cream);
}

.nearby-tag {
    font-size: 0.75rem;
    color: var(--amber);
    font-weight: 500;
    margin-top: 0.2rem;
}

/* Form */
.form-section {
    padding: 4.5rem 2rem;
    background: var(--charcoal);
}

.form-section-inner {
    max-width: 680px;
    margin: 0 auto;
}

.form-card {
    background: linear-gradient(160deg, rgba(74, 69, 67, 0.5), rgba(44, 40, 37, 0.7));
    border: 1px solid rgba(196, 168, 130, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.form-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--warm-sand));
    border-radius: 16px 16px 0 0;
}

.form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.35rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--warm-sand);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.urgency-note {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--amber);
    margin-bottom: 1.5rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.form-group { margin-bottom: 1rem; }

.form-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-sand);
    margin-bottom: 0.4rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(26, 24, 23, 0.6);
    border: 1px solid rgba(196, 168, 130, 0.2);
    border-radius: 8px;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder { color: var(--slate); }

.form-input:focus,
.form-select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(212, 148, 58, 0.12);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4A882' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-select option { background: var(--charcoal); color: var(--cream); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--amber), #C08430);
    color: var(--charcoal);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
}

.form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(212, 148, 58, 0.3);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--clay);
    margin-top: 0.75rem;
}

.form-error {
    color: var(--red);
    font-size: 0.82rem;
    margin-top: 0.25rem;
    display: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.form-success.visible { display: block; }

.success-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(74, 155, 110, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
}

.success-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.success-text {
    font-size: 0.95rem;
    color: var(--warm-sand);
    line-height: 1.6;
    font-weight: 300;
}

/* Footer */
footer {
    background: var(--stone);
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(196, 168, 130, 0.1);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--clay);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.footer-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: var(--clay);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover { color: var(--amber); }

.footer-copy {
    font-size: 0.75rem;
    color: var(--slate);
}

.footer-copy a {
    color: var(--clay);
    text-decoration: none;
}

.footer-copy a:hover { color: var(--amber); }

/* Testimonials */
.testimonials-section {
    padding: 4.5rem 2rem;
    background: var(--stone);
}

.testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: linear-gradient(160deg, rgba(74, 69, 67, 0.5), rgba(44, 40, 37, 0.75));
    border: 1px solid rgba(196, 168, 130, 0.12);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: border-color 0.25s, transform 0.2s;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 148, 58, 0.35), transparent);
    border-radius: 14px 14px 0 0;
}

.testimonial-card:hover {
    border-color: rgba(212, 148, 58, 0.3);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: var(--amber);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--mist);
    line-height: 1.65;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-avatar {
    width: 2.4rem;
    height: 2.4rem;
    background: rgba(212, 148, 58, 0.12);
    border: 1px solid rgba(212, 148, 58, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cream);
}

.testimonial-city {
    font-size: 0.78rem;
    color: var(--clay);
    margin-top: 0.1rem;
}

.testimonial-project {
    font-size: 0.72rem;
    color: var(--amber);
    font-weight: 500;
    margin-top: 0.15rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 1100px) {
    .service-grid { grid-template-columns: repeat(4, 1fr); }
    .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .service-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .nearby-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero { padding: 4rem 1.5rem 3rem; min-height: auto; }
    .section { padding: 3.5rem 1.5rem; }
    .testimonials-section { padding: 3.5rem 1.5rem; }
    .form-section { padding: 3.5rem 1.5rem; }
    .form-card { padding: 1.75rem 1.25rem; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .nearby-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-trust { gap: 1rem; }
}

/* FAQ page styles */
.breadcrumb-bar {
    padding: 0.65rem 2rem;
    background: rgba(44, 40, 37, 0.7);
    border-bottom: 1px solid rgba(196, 168, 130, 0.08);
}

.breadcrumb-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.breadcrumb-link {
    color: var(--clay);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    transition: color 0.2s;
}

.breadcrumb-link:hover { color: var(--amber); }

.breadcrumb-sep { color: var(--slate); font-size: 0.75rem; }

.breadcrumb-current {
    color: var(--warm-sand);
    font-family: 'Space Grotesk', sans-serif;
}

.faq-category-bar {
    padding: 0.75rem 2rem;
    background: var(--stone);
    border-bottom: 1px solid rgba(196, 168, 130, 0.08);
}

.faq-category-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.faq-category-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clay);
}

.faq-cat-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--warm-sand);
    text-decoration: none;
    padding: 0.3rem 0.75rem;
    border: 1px solid rgba(196, 168, 130, 0.15);
    border-radius: 100px;
    transition: border-color 0.2s, color 0.2s;
}

.faq-cat-link:hover {
    border-color: rgba(212, 148, 58, 0.4);
    color: var(--amber);
}

.faq-inline-link {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* FAQ accordion */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    border-bottom: 1px solid rgba(196, 168, 130, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.4;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--amber); }

.faq-question span:first-child { flex: 1; }

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--amber);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.2s;
}

.faq-question.open .faq-icon { transform: rotate(0deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer.visible { max-height: 2000px; }

.faq-answer p {
    font-size: 0.95rem;
    color: var(--warm-sand);
    line-height: 1.7;
    font-weight: 300;
    padding: 0 0 1.25rem 0;
}

.faq-answer p a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer p strong { color: var(--cream); font-weight: 500; }

/* Service page FAQ sections */
#faq-section {
    background: var(--stone);
    padding: 4.5rem 2rem;
}

#faq-section .section-heading {
    margin-bottom: 0.25rem;
}

#faq-section .faq-list {
    margin-top: 1.75rem;
    border-top: 1px solid rgba(196, 168, 130, 0.1);
}

#faq-section .faq-item {
    border-bottom: 1px solid rgba(196, 168, 130, 0.1);
}

#faq-section .faq-question {
    color: var(--cream);
    font-size: 1.05rem;
    padding: 1.1rem 0;
    text-align: left;
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.2s;
}

#faq-section .faq-question:hover { color: var(--amber); }

#faq-section .faq-question span:first-child { flex: 1; }

#faq-section .faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--amber);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.2s;
}

#faq-section .faq-question.open .faq-icon { transform: rotate(0deg); }

#faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

#faq-section .faq-answer.visible { max-height: 2000px; }

#faq-section .faq-answer p {
    font-size: 0.95rem;
    color: var(--warm-sand);
    line-height: 1.7;
    font-weight: 300;
    padding: 0 0 1.1rem 0;
}

#faq-section .faq-answer p a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 2px;
}

#faq-section .faq-answer p a:hover { color: var(--cream); }

@media (max-width: 768px) {
    #faq-section { padding: 3.5rem 1.5rem; }
    #faq-section .faq-question { font-size: 0.95rem; padding: 1rem 0; }
}

/* Related resources */
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.related-card {
    background: linear-gradient(160deg, rgba(74, 69, 67, 0.4), rgba(44, 40, 37, 0.6));
    border: 1px solid rgba(196, 168, 130, 0.1);
    border-radius: 10px;
    padding: 1.25rem;
}

.related-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.85rem;
}

.related-link {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--warm-sand);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.related-link:hover { color: var(--amber); }

@media (max-width: 768px) {
    .breadcrumb-bar { padding: 0.6rem 1.5rem; }
    .faq-category-bar { padding: 0.65rem 1.5rem; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .nearby-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: 1fr; }
    .nav { padding: 0.9rem 1.25rem; }
    .breadcrumb-inner { font-size: 0.72rem; }
    .faq-category-inner { gap: 0.5rem; }
    .faq-cat-link { font-size: 0.72rem; padding: 0.25rem 0.6rem; }
}