/* ==========================================
   Ourmijo's Handyman — Dark Modern Redesign
   ========================================== */
:root {
    --brand-red: #CC2222;           /* Change this one value to retheme entire site */
    --brand-red-dark: #a81a1a;
    --dark-bg: #1a1a1a;
    --darker-bg: #111111;
    --card-bg: #242424;
    --text-light: rgba(255,255,255,0.75);
    --white: #ffffff;
    --gray: #888888;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--dark-bg);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* ==========================================
   Photo Placeholder Styles
   ========================================== */
.photo-placeholder {
    background: #2a2a2a;
    border: 2px dashed #444;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 1px;
}

.photo-placeholder.portrait {
    width: 100%;
    aspect-ratio: 3/4;
}

.photo-placeholder.landscape {
    width: 100%;
    aspect-ratio: 16/9;
}

.photo-placeholder.gallery-photo {
    width: 100%;
    height: 280px;
}

/* ==========================================
   Form Success / Error States
   ========================================== */
.form-success {
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

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

.form-wrapper {
    transition: opacity 0.4s ease;
}

.form-wrapper.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ==========================================
   Top Bar
   ========================================== */
.top-bar {
    background: var(--darker-bg);
    color: rgba(255,255,255,0.8);
    padding: 10px 0;
    font-size: 0.85rem;
    font-family: 'Lato', sans-serif;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.top-bar-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-info svg {
    width: 15px;
    height: 15px;
    color: var(--brand-red);
    flex-shrink: 0;
}

.top-bar-info a:hover {
    color: var(--white);
}

.top-bar-social {
    display: flex;
    gap: 0.6rem;
}

.top-bar-social a {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--brand-red);
}

.top-bar-social svg {
    width: 14px;
    height: 14px;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(17,17,17,0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    border-bottom-color: rgba(204,34,34,0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    height: 44px;
    width: 44px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1;
}

.logo-name {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 1px;
}

.logo-bolt {
    fill: #f97316;
    width: 8px;
    height: 13px;
    flex-shrink: 0;
    margin: 0 1px;
    display: inline-block;
}

.logo-sub {
    font-family: 'Oswald', sans-serif;
    font-size: 0.55rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-link {
    position: relative;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    padding: 0.7rem 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--brand-red);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-cta {
    margin-left: 1rem;
}

.btn-nav {
    background: var(--brand-red);
    color: var(--white) !important;
    padding: 0.7rem 1.6rem;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--brand-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(204,34,34,0.35);
}

.btn-nav::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    overflow: hidden;
    padding: 8rem 0 5rem;
}

/* Geometric pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(204,34,34,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204,34,34,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204,34,34,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--brand-red);
    margin-bottom: 1.2rem;
}

.hero-overline::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--brand-red);
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title .accent {
    color: var(--brand-red);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 540px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-bg-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.08);
    font-size: 0.7rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
    border: 2px dashed rgba(255,255,255,0.05);
}

.hero-photo-placeholder {
    position: relative;
    z-index: 1;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-primary {
    background: var(--brand-red);
    color: var(--white);
    border-color: var(--brand-red);
    box-shadow: 0 4px 16px rgba(204,34,34,0.3);
}

.btn-primary:hover {
    background: var(--brand-red-dark);
    border-color: var(--brand-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(204,34,34,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-bg);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ==========================================
   Section Styles
   ========================================== */
section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--dark-bg);
    color: var(--white);
}

.section-darker {
    background: var(--darker-bg);
    color: var(--white);
}

.section-light {
    background: #f4f4f4;
    color: #222;
}

.section-white {
    background: var(--white);
    color: #222;
}

.section-red {
    background: var(--brand-red);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: transparent;
    color: var(--brand-red);
    border: 1px solid var(--brand-red);
    padding: 0.35rem 1.2rem;
    border-radius: 2px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.section-dark .section-title,
.section-darker .section-title {
    color: var(--white);
}

.section-light .section-title,
.section-white .section-title {
    color: #1a1a1a;
}

.section-red .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
    font-weight: 300;
}

.section-light .section-subtitle,
.section-white .section-subtitle {
    color: #555;
}

/* ==========================================
   Featured Services Bar (3 cards)
   ========================================== */
.featured-services {
    background: var(--card-bg);
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.featured-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 2rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: var(--transition);
}

.featured-card:hover {
    background: rgba(204,34,34,0.06);
    border-color: rgba(204,34,34,0.3);
    transform: translateY(-4px);
}

.featured-card-icon {
    width: 52px;
    height: 52px;
    background: var(--brand-red);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.featured-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
    stroke: var(--white);
}

.featured-card-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.featured-card-text p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
    line-height: 1.5;
}

.featured-card-text a {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.featured-card-text a:hover {
    color: var(--white);
}

/* ==========================================
   Stats Section
   ========================================== */
.stats {
    background: var(--brand-red);
    padding: 3.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.2rem 1.5rem;
    border-radius: 6px;
    transition: var(--transition);
    text-align: center;
    border-top: 3px solid transparent;
    border-left: none;
    border-right: none;
    border-bottom: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-top-color: var(--brand-red);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204,34,34,0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--brand-red);
}

.service-card:hover .service-icon {
    background: var(--brand-red);
    color: var(--white);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}


.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

/* Full-card click — pseudo-element covers the card, link text stays on top */
.service-card-link::after {
    content: '';
    position: absolute;
    inset: 0;
}

.service-card-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
}

.service-card:hover .service-card-link {
    color: var(--white);
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-us {
    background: var(--white);
    color: #222;
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 4rem;
    align-items: center;
}

.why-us .section-badge {
    color: var(--brand-red);
    border-color: var(--brand-red);
}

.why-us .section-title {
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    gap: 1.2rem;
}

.feature {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.4rem 1.6rem;
    background: #f7f7f7;
    border-radius: 6px;
    transition: var(--transition);
}

.feature:hover {
    background: var(--brand-red);
    transform: translateX(8px);
}

.feature:hover .feature-icon {
    background: var(--white);
    color: var(--brand-red);
}

.feature:hover h4,
.feature:hover p {
    color: var(--white);
}

.feature-icon {
    width: 46px;
    height: 46px;
    background: var(--brand-red);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
    font-family: 'Oswald', sans-serif;
}

.feature h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.feature p {
    color: #666;
    font-size: 0.9rem;
    transition: var(--transition);
}

/* ==========================================
   Owner Bio Section
   ========================================== */
.about {
    background: var(--darker-bg);
    color: var(--white);
}

.owner-bio-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
}

.bio-intro-badge {
    display: inline-block;
    background: transparent;
    color: var(--brand-red);
    border: 1px solid var(--brand-red);
    padding: 0.35rem 1.2rem;
    border-radius: 2px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.bio-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.5rem;
}

.bio-cross {
    color: var(--brand-red);
    line-height: 1;
}

.bio-name {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.bio-body p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.bio-mission {
    display: block;
    margin-top: 1.5rem;
    padding: 1.6rem 2rem;
    border-left: 4px solid var(--brand-red);
    background: rgba(255,255,255,0.04);
    border-radius: 0 6px 6px 0;
}

.bio-mission p {
    margin-bottom: 0.3rem !important;
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.6) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bio-mission .mission-tagline {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    font-style: italic;
    color: var(--brand-red) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-bottom: 0 !important;
}

.bio-headshot {
    position: sticky;
    top: 100px;
}

.bio-headshot-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: #2a2a2a;
    border-radius: 8px;
    border: 2px dashed #444;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #666;
    text-align: center;
    padding: 2rem;
}

.bio-headshot-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.3;
    color: #888;
}

.bio-headshot-placeholder span {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.bio-headshot-label {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
    background: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(17,17,17,0.95), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-overlay::before {
    content: '';
    position: absolute;
    top: -28px;
    left: 1.5rem;
    width: 40px;
    height: 3px;
    background: var(--brand-red);
}

/* ==========================================
   Service CTA Strip
   ========================================== */
.service-cta-strip {
    background: var(--card-bg);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 2.5rem 0;
}

.service-cta-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-cta-strip p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

/* ==========================================
   Newsletter Section
   ========================================== */
.newsletter {
    background: var(--darker-bg);
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-text .section-badge {
    color: var(--brand-red);
    border-color: var(--brand-red);
}

.newsletter-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.newsletter-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.newsletter-form-area {
    position: relative;
}

.newsletter-form {
    display: flex;
    gap: 0.8rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.3rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.35);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--brand-red);
    background: rgba(255,255,255,0.08);
}

.newsletter-success {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 1.2rem 1.5rem;
    background: rgba(204,34,34,0.12);
    border: 1px solid rgba(204,34,34,0.3);
    border-radius: 4px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.newsletter-success.visible {
    display: block;
    opacity: 1;
}

.newsletter-error {
    display: none;
    margin-top: 0.8rem;
    color: #ff6b6b;
    font-size: 0.85rem;
}

.newsletter-error.visible {
    display: block;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    background: var(--dark-bg);
}

.contact .section-badge {
    color: var(--brand-red);
    border-color: var(--brand-red);
}

.contact .section-title {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1.3rem;
    padding: 1.8rem;
    background: var(--card-bg);
    border-radius: 6px;
    align-items: center;
    transition: var(--transition);
    border-left: 3px solid var(--brand-red);
}

.info-card:hover {
    background: var(--brand-red);
    transform: translateX(8px);
}

.info-card:hover .info-icon {
    background: var(--white);
    color: var(--brand-red);
}

.info-card:hover h4,
.info-card:hover p {
    color: var(--white);
}

.info-icon {
    width: 54px;
    height: 54px;
    background: var(--brand-red);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-icon svg {
    width: 26px;
    height: 26px;
}

.info-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.info-card p {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 6px;
    border-top: 3px solid var(--brand-red);
}

.contact-success {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 6px;
    border-top: 3px solid var(--brand-red);
    text-align: center;
}

.contact-success.visible {
    display: block;
    opacity: 1;
}

.contact-success-icon {
    width: 70px;
    height: 70px;
    background: rgba(204,34,34,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.contact-success h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.contact-success p {
    color: var(--text-light);
    font-size: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: rgba(255,255,255,0.7);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    background: rgba(255,255,255,0.07);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--darker-bg);
    color: var(--white);
    padding: 4.5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.3rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.93rem;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: var(--text-light);
    transition: var(--transition);
    display: inline-block;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--brand-red);
    padding-left: 6px;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--brand-red);
    transform: translateY(-4px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
}

/* ==========================================
   Service Page Styles
   ========================================== */
.service-hero {
    background: var(--darker-bg);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(204,34,34,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204,34,34,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-family: 'Lato', sans-serif;
}

.breadcrumb a {
    color: var(--brand-red);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--gray);
}

.service-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.05;
}

.service-hero h1 span {
    color: var(--brand-red);
}

.service-overview {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.service-overview-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.service-overview-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.service-overview-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-list {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}

.service-list li {
    font-size: 0.92rem;
    color: var(--text-light);
    padding: 0.4rem 0 0.4rem 1.3rem;
    position: relative;
    line-height: 1.5;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-red);
}

.service-photo-row {
    background: var(--card-bg);
    padding: 4rem 0;
}

.service-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-cta-section {
    background: var(--brand-red);
    padding: 5rem 0;
    text-align: center;
}

.service-cta-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service-cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.service-cta-section .btn-outline {
    border-color: rgba(255,255,255,0.8);
    color: var(--white);
    font-size: 1rem;
    padding: 1.1rem 2.8rem;
}

.service-cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--brand-red);
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   Nav Overlay (mobile drawer backdrop)
   ========================================== */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ==========================================
   Floating Mobile CTA Bar
   ========================================== */
.mobile-cta-bar {
    display: none; /* shown via media query below */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--darker-bg);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 0.65rem 1rem;
    /* Respect iPhone home-bar safe area */
    padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
    gap: 0.6rem;
}

.mobile-cta-call,
.mobile-cta-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    /* 48px min-height = comfortable touch target */
    min-height: 48px;
    padding: 0 1rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: var(--transition);
    flex: 1;
}

.mobile-cta-call {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
}
.mobile-cta-call:active { background: #333; }

.mobile-cta-quote {
    flex: 1.5;
    background: var(--brand-red);
    color: var(--white);
    border: 1px solid var(--brand-red);
    box-shadow: 0 4px 16px rgba(204,34,34,0.35);
}
.mobile-cta-quote:active { background: var(--brand-red-dark); }

/* ==========================================
   Global Touch Optimizations
   ========================================== */
a, button, [role="button"] {
    -webkit-tap-highlight-color: transparent;
}
.btn, .btn-nav, .nav-link, .hamburger,
.service-card, .gallery-item, .info-card, .feature {
    touch-action: manipulation;
}

/* Prevent iOS auto-zoom on input focus (requires font-size >= 16px) */
.form-group input,
.form-group textarea,
.form-group select,
.newsletter-form input[type="email"] {
    font-size: 16px;
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ==========================================
   Responsive — Tablet (≤ 1100px)
   ========================================== */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 960px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================
   Responsive — Mobile Nav (≤ 768px)
   ========================================== */
@media (max-width: 768px) {

    /* Show floating CTA bar */
    .mobile-cta-bar {
        display: flex;
    }
    /* Push page content above the bar */
    body {
        padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    }

    /* Top bar: hide email, keep phone + socials */
    .top-bar-email {
        display: none;
    }
    .top-bar .container {
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    .top-bar-info {
        gap: 0;
    }
    .top-bar-social a {
        width: 34px;
        height: 34px;
    }

    /* Nav drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 78%;
        max-width: 320px;
        height: 100vh;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 4.5rem 1.5rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
        gap: 0;
        overflow-y: auto;
        align-items: stretch;
        z-index: 999;
        border-right: 1px solid rgba(255,255,255,0.06);
        /* Account for iPhone notch */
        padding-top: calc(4.5rem + env(safe-area-inset-top, 0px));
    }
    .nav-menu.active { left: 0; }

    .nav-link {
        width: 100%;
        padding: 1rem 0.5rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        /* 44px minimum touch target */
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .nav-link::after { display: none; }

    .nav-cta { margin-left: 0; margin-top: 1.5rem; }
    .btn-nav {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem;
        min-height: 48px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        padding: 8px; /* larger hit area */
        margin-right: -8px;
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    /* Hero */
    .hero {
        min-height: 92vh;
        padding: 5rem 0 3rem;
        /* Centre everything on mobile */
        text-align: center;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .hero-title {
        font-size: clamp(2.2rem, 7vw, 3.2rem);
    }
    .hero-subtitle {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-photo-placeholder { display: none; }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .service-card {
        padding: 1.6rem 1.2rem;
    }

    /* Service CTA strip */
    .service-cta-strip .container {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }
    .service-cta-strip .btn {
        width: 100%;
        max-width: 320px;
    }

    /* Why Choose Us */
    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .why-us .section-title { text-align: center; }
    .why-us .section-badge { display: block; text-align: center; }

    /* Owner Bio */
    .owner-bio-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .bio-headshot {
        position: static;
        max-width: 280px;
        margin: 0 auto;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .photo-placeholder.gallery-photo { height: 200px; }

    /* Newsletter */
    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .newsletter-text { text-align: center; }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input[type="email"] {
        width: 100%;
    }
    .newsletter-form .btn {
        width: 100%;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    /* Section spacing */
    section { padding: 4rem 0; }
    .section-header { margin-bottom: 2.5rem; }

    /* Service pages */
    .service-overview-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .service-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* ==========================================
   Responsive — Small Mobile (≤ 540px)
   ========================================== */
@media (max-width: 540px) {

    .container { padding: 0 16px; }

    .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 1.1rem;
    }

    /* Single-column services on small phones */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    /* Horizontal card layout on small mobile — more scannable */
    .service-card {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        text-align: left;
        padding: 1.2rem 1.4rem;
        border-top: none;
        border-left: 3px solid transparent;
    }
    .service-card:hover {
        border-left-color: var(--brand-red);
        border-top-color: transparent;
        transform: translateX(4px);
    }
    .service-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        margin: 0;
        flex-shrink: 0;
    }
    .service-icon svg { width: 26px; height: 26px; }
    .service-card-content { flex: 1; }
    .service-card h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
    .service-card p { font-size: 0.82rem; margin-bottom: 0.5rem; }

    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .photo-placeholder.gallery-photo { height: 220px; }

    .footer-content { grid-template-columns: 1fr; }

    .contact-form { padding: 1.8rem 1.2rem; }

    section { padding: 3rem 0; }

    .service-photo-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   Responsive — Extra Small (≤ 390px)
   ========================================== */
@media (max-width: 390px) {
    .top-bar { padding: 7px 0; font-size: 0.78rem; }
    .logo-name { font-size: 1.05rem; }
    .logo-icon { height: 34px; width: 34px; }
    .hero-title { font-size: 1.75rem; }
    .btn { font-size: 0.82rem; padding: 0.9rem 1.4rem; }
    .feature { padding: 1.1rem 1.2rem; }
    .info-card { padding: 1.2rem; }
}
