.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(47, 47, 47, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 76px;
}

.brand {
    font-size: 1rem;
    font-weight: 700;
    max-width: 180px;
    line-height: 1.1;
}

.hero-section {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--color-white);
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(47, 47, 47, 0.55);
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.eyebrow {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 700;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

.hero-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-benefits {
    display: grid;
    gap: 12px;
}

.hero-benefits li {
    position: relative;
    padding-left: 18px;
    color: rgba(47, 47, 47, 0.9);
}

.hero-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-green);
}

.hero-media img {
    box-shadow: var(--shadow-soft);
}

.problem-section {
    background-color: var(--color-white);
}

.problem-grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

.problem-media img {
    box-shadow: var(--shadow-soft);
}

.solution-section {
    background-color: var(--color-beige);
}

.solution-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
}

.solution-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.solution-image-wrap img {
    box-shadow: var(--shadow-soft);
}

.problem-media,
.solution-image-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.problem-media {
    max-width: 560px;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
}

.solution-image-wrap {
    max-width: 760px;
    aspect-ratio: 16 / 10;
    margin: 0 auto;
}

.problem-media img,
.solution-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.problem-content {
    max-width: 560px;
}

.problem-media img {
    object-position: center center;
}

.solution-image-wrap img {
    object-position: center bottom;
}

.process-section {
    background-color: var(--color-white);
}

.process-grid {
    display: grid;
    gap: 20px;
}

.mounting-section {
    background-color: var(--color-beige);
}

.mounting-grid {
    display: grid;
    gap: 20px;
}

.for-whom-section {
    background-color: var(--color-white);
}

.for-whom-cta {
    text-align: center;
    margin-top: 40px;
}

.for-whom-list {
    display: grid;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.for-whom-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    background-color: var(--color-beige);
    font-size: 1.05rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.for-whom-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-soft);
}

.for-whom-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--color-green);
}

.for-whom-icon svg {
    width: 100%;
    height: 100%;
}

.why-us-section {
    background-color: var(--color-white);
}

.why-us-grid {
    display: grid;
    gap: 20px;
}

.why-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.why-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--color-green);
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.pricing-section {
    background-color: var(--color-beige);
}

.pricing-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.pricing-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.pricing-card--featured {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

.pricing-card--featured p {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.pricing-price {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-terracotta);
    margin-bottom: 12px;
}

.pricing-card--featured .pricing-price {
    color: var(--color-white);
}

.pricing-note {
    text-align: center;
    color: rgba(47, 47, 47, 0.65);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.pricing-cta {
    text-align: center;
}

.gallery-section {
    background-color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.contact-section {
    background-color: var(--color-beige);
}

.contact-grid {
    display: grid;
    gap: 40px;
}

.contact-info {
    display: grid;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
    color: var(--color-graphite);
    text-decoration: none;
    transition: transform 0.2s ease;
}

a.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-green);
    margin-top: 2px;
}

.contact-item-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(47, 47, 47, 0.55);
    margin-bottom: 2px;
}

.contact-item-sub {
    display: block;
    font-size: 0.85rem;
    color: rgba(47, 47, 47, 0.65);
}

.contact-item strong {
    display: block;
    font-size: 0.95rem;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    background-color: var(--color-white);
    border: 1.5px solid rgba(47, 47, 47, 0.1);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group:focus-within {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(111, 143, 114, 0.12);
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(47, 47, 47, 0.6);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: var(--color-graphite);
    font-family: inherit;
    resize: vertical;
    padding: 0;
}

.form-group textarea {
    min-height: 100px;
    line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(47, 47, 47, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-green);
}

.button--full {
    width: 100%;
    justify-content: center;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(47, 47, 47, 0.55);
    margin-bottom: 0;
}

.page-hero-section {
    background-color: var(--color-beige);
    padding: 32px 0 56px;
    text-align: center;
}

.page-hero-lead {
    font-size: 1.05rem;
    max-width: 600px;
    color: rgba(47, 47, 47, 0.8);
    margin: 0 auto;
}

.nav-active {
    color: var(--color-green) !important;
    font-weight: 700;
}

.gallery-cta {
    text-align: center;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.gallery-cta p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.cities-section {
    background-color: var(--color-beige);
}

.site-footer {
    background-color: var(--color-graphite);
    color: var(--color-white);
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--color-white);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.footer-links a,
.footer-links li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-terracotta);
}

.footer-area-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    color: var(--color-green);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.footer-nip {
    display: inline-block;
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.form-status {
    display: none;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    margin-top: 8px;
}

.form-status.is-visible {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.form-status--success {
    background-color: rgba(111, 143, 114, 0.12);
    color: var(--color-green);
    border: 1px solid rgba(111, 143, 114, 0.25);
}

.form-status--error {
    background-color: rgba(224, 122, 95, 0.1);
    color: var(--color-terracotta);
    border: 1px solid rgba(224, 122, 95, 0.25);
}

.form-status a {
    color: inherit;
    text-decoration: underline;
    font-weight: 700;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}