/*
Theme Name: Haus & Herz Custom Theme
Author: Valentin
Version: 1.0
Description: Individuelles WordPress Theme für Haus & Herz Hausmeister- und Reinigungsservice.
*/

:root {
    --hh-white: #ffffff;
    --hh-bg: #fafaf8;
    --hh-bg-soft: #f3f4f1;

    --hh-red: #c62828;
    --hh-red-dark: #a91f1f;
    --hh-red-soft: #f7dddd;

    --hh-green: #4f7f3a;
    --hh-green-dark: #3f672f;
    --hh-green-soft: #e5efe0;

    --hh-dark: #232629;
    --hh-dark-soft: #34393d;

    --hh-text: #25282a;
    --hh-text-soft: #656b6f;

    --hh-border: rgba(35, 38, 41, 0.10);

    --hh-shadow: 0 14px 35px rgba(35, 38, 41, 0.10);
    --hh-shadow-soft: 0 10px 24px rgba(35, 38, 41, 0.07);
    --hh-shadow-strong: 0 18px 44px rgba(35, 38, 41, 0.16);

    --hh-radius: 22px;
    --hh-radius-sm: 16px;
    --hh-container: 1240px;
    --hh-transition: 220ms ease;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    min-width: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--hh-text);
    background: var(--hh-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

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

a {
    color: var(--hh-red);
    text-decoration: none;
    transition: var(--hh-transition);
}

a:hover {
    opacity: 0.92;
}

.hh-page {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hh-container {
    width: min(100% - 32px, var(--hh-container));
    margin: 0 auto;
    max-width: 100%;
}


/* =========================================================
   TOP AREA
========================================================= */

.hh-site-top {
    background: var(--hh-bg-soft);
    border-bottom: 1px solid var(--hh-border);
}

.hh-site-top__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0 8px;
}

.hh-site-top__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
}

.hh-site-top__contacts {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1;
}

.hh-site-top__nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0 14px;
}


/* =========================================================
   LOGOS
========================================================= */

.hh-topbar__logo,
.hh-footer__logo {
    width: auto;
    height: auto;
    object-fit: contain;
}

.hh-topbar__logo {
    max-height: 72px;
    max-width: 190px;
}

.hh-footer__logo {
    max-height: 84px;
    max-width: 230px;
}


/* =========================================================
   CONTACT LINKS
========================================================= */

.hh-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--hh-text);
    font-size: 0.96rem;
    font-weight: 700;
    flex-wrap: wrap;
}

.hh-contact-link__icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hh-white);
    border: 1px solid var(--hh-border);
    box-shadow: var(--hh-shadow-soft);
    font-size: 1rem;
    flex: 0 0 36px;
}


/* =========================================================
   HEADER
========================================================= */

.hh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(35, 38, 41, 0.08);
}

.hh-header__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hh-header__cta {
    display: none;
}


/* =========================================================
   NAVIGATION
========================================================= */

.hh-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: center;
}

.hh-nav a {
    color: var(--hh-text);
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    text-align: center;
}

.hh-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--hh-red);
    transition: var(--hh-transition);
}

.hh-nav a:hover::after,
.hh-nav a:focus-visible::after {
    width: 100%;
}


/* =========================================================
   BUTTONS
========================================================= */

.hh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    transition:
        transform var(--hh-transition),
        box-shadow var(--hh-transition),
        background var(--hh-transition),
        border-color var(--hh-transition);
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    white-space: normal;
}

.hh-btn:hover {
    transform: translateY(-2px);
}

.hh-btn--primary {
    background: var(--hh-red);
    color: var(--hh-white);
    box-shadow: var(--hh-shadow);
}

.hh-btn--primary:hover {
    background: var(--hh-red-dark);
    color: var(--hh-white);
}

.hh-btn--green {
    background: var(--hh-green);
    color: var(--hh-white);
    box-shadow: var(--hh-shadow);
}

.hh-btn--green:hover {
    background: var(--hh-green-dark);
    color: var(--hh-white);
}

.hh-btn--secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--hh-white);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hh-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--hh-white);
}


/* =========================================================
   HERO
========================================================= */

.hh-hero {
    position: relative;
    overflow: hidden;
}

.hh-hero--main {
    padding: 88px 0 82px;

    background:
        linear-gradient(
            rgba(24, 27, 29, 0.56),
            rgba(24, 27, 29, 0.56)
        ),
        url("https://tm-designs.com/wp-content/uploads/2026/08/Header1-2.jpeg")
        center center / cover no-repeat;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hh-hero__content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    text-align: center !important;
}

.hh-hero__content--main {
    text-align: center !important;
}

.hh-eyebrow {
    display: inline-block;
    margin: 0 0 16px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--hh-white);
    border: 1px solid var(--hh-border);
    color: var(--hh-red);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--hh-shadow-soft);
    max-width: 100%;
    word-break: break-word;
    text-align: center;
}

.hh-eyebrow--hero {
    display: table !important;
    margin: 0 auto 16px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: var(--hh-white) !important;
    box-shadow: none !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hh-section-title {
    margin: 0;
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.7rem);
    line-height: 1.1;
    color: var(--hh-text);
    word-break: break-word;
    overflow-wrap: break-word;
}

.hh-section-title--hero {
    max-width: 1000px;
    margin-inline: auto;
}

.hh-section-title--hero-light {
    color: var(--hh-white) !important;
    text-align: center !important;
}

.hh-hero__text {
    margin: 22px auto 0;
    max-width: 780px;
    font-size: 1.15rem;
    color: var(--hh-text-soft);
    overflow-wrap: break-word;
    text-align: center;
}

.hh-hero__text--light {
    color: rgba(255, 255, 255, 0.94) !important;
}

.hh-hero__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* =========================================================
   TRUST BAR
========================================================= */

.hh-trustbar {
    padding: 26px 0 10px;
}

.hh-trustbar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.hh-trustbar__item {
    background: var(--hh-bg-soft);
    border: 1px solid var(--hh-border);
    border-radius: 18px;
    padding: 18px 20px;
    text-align: center;
    font-weight: 700;
    color: var(--hh-text);
    box-shadow: var(--hh-shadow-soft);
    transition:
        transform var(--hh-transition),
        box-shadow var(--hh-transition);
}

.hh-trustbar__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--hh-shadow);
}


/* =========================================================
   SECTIONS
========================================================= */

.hh-section {
    padding: 96px 0;
}

.hh-section--light {
    background:
        linear-gradient(
            180deg,
            var(--hh-bg) 0%,
            var(--hh-white) 100%
        );
}

.hh-section--gray {
    background: var(--hh-bg-soft);
}

.hh-section--contact {
    background:
        linear-gradient(
            180deg,
            var(--hh-bg-soft) 0%,
            var(--hh-white) 100%
        );
}

.hh-section--final-cta {
    padding-top: 24px;
    padding-bottom: 96px;
}

.hh-section-head {
    max-width: 840px;
    margin: 0 auto 46px;
    text-align: center;
}

.hh-section-subtitle {
    margin: 16px auto 0;
    max-width: 760px;
    color: var(--hh-text-soft);
    font-size: 1.06rem;
    overflow-wrap: break-word;
}


/* =========================================================
   CARD GRID
========================================================= */

.hh-card-grid {
    display: grid;
    gap: 26px;
}

.hh-card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.hh-card {
    background: var(--hh-white);
    color: var(--hh-text);
    border-radius: var(--hh-radius);
    overflow: hidden;
    border: 1px solid var(--hh-border);
    box-shadow: var(--hh-shadow);
    transition:
        transform var(--hh-transition),
        box-shadow var(--hh-transition);
    max-width: 100%;
}

.hh-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hh-shadow-strong);
}

.hh-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.hh-card__body {
    padding: 24px 22px 26px;
}

.hh-card__body h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.25;
    color: var(--hh-dark);
    word-break: break-word;
}

.hh-card__body p {
    margin: 0;
    color: var(--hh-text-soft);
    overflow-wrap: break-word;
}


/* CARD COLOR VARIANTS */

.hh-card--red {
    border-top: 5px solid var(--hh-red);
}

.hh-card--green {
    border-top: 5px solid var(--hh-green);
}

.hh-card--dark {
    border-top: 5px solid var(--hh-dark);
}

.hh-card--gray {
    border-top: 5px solid #8b9194;
}


/* =========================================================
   FEATURE BOXES
========================================================= */

.hh-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hh-feature-box {
    background: var(--hh-white);
    color: var(--hh-text);
    border-radius: var(--hh-radius);
    border: 1px solid var(--hh-border);
    padding: 30px 26px;
    box-shadow: var(--hh-shadow);
    max-width: 100%;
    transition:
        transform var(--hh-transition),
        box-shadow var(--hh-transition);
}

.hh-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--hh-shadow-strong);
}

.hh-feature-box h3 {
    margin: 0 0 12px;
    color: var(--hh-dark);
    font-size: 1.22rem;
    word-break: break-word;
    text-align: center;
}

.hh-feature-box p {
    margin: 0;
    color: var(--hh-text-soft);
    overflow-wrap: break-word;
    text-align: center;
}


/* =========================================================
   ABOUT
========================================================= */

.hh-about {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 38px;
    align-items: center;
}

.hh-about__content p {
    margin: 0 0 18px;
    color: var(--hh-text-soft);
    font-size: 1.04rem;
    overflow-wrap: break-word;
    text-align: center;
}

.hh-about__media {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--hh-shadow);
    border: 1px solid var(--hh-border);
    max-width: 100%;
}

.hh-about__image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.hh-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.hh-stat-box {
    background: var(--hh-bg-soft);
    border: 1px solid var(--hh-border);
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: var(--hh-shadow-soft);
    text-align: center;
    transition:
        transform var(--hh-transition),
        box-shadow var(--hh-transition);
}

.hh-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--hh-shadow);
}

.hh-stat-box strong {
    display: block;
    margin-bottom: 4px;
    color: var(--hh-dark);
}

.hh-stat-box span {
    color: var(--hh-text-soft);
    overflow-wrap: break-word;
}


/* =========================================================
   REFERENCES
========================================================= */

.hh-reference-intro {
    max-width: 860px;
    margin: 0 auto 30px;
    text-align: center;
}

.hh-reference-text p {
    margin: 0;
    color: var(--hh-text-soft);
}

.hh-reference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hh-reference-card {
    border-radius: var(--hh-radius);
    overflow: hidden;
    background: var(--hh-white);
    border: 1px solid var(--hh-border);
    box-shadow: var(--hh-shadow-soft);
    transition:
        transform var(--hh-transition),
        box-shadow var(--hh-transition);
}

.hh-reference-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hh-shadow-strong);
}

.hh-reference-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.hh-reference-card__body {
    padding: 22px;
}

.hh-reference-card__body h3 {
    margin: 0 0 8px;
    color: var(--hh-dark);
}

.hh-reference-card__body p {
    margin: 0;
    color: var(--hh-text-soft);
}


/* =========================================================
   GOOGLE REVIEWS
========================================================= */

.hh-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hh-review-card {
    background: var(--hh-white);
    border: 1px solid var(--hh-border);
    border-radius: var(--hh-radius);
    padding: 28px 24px;
    box-shadow: var(--hh-shadow-soft);
}

.hh-review-stars {
    margin-bottom: 14px;
    font-size: 1.18rem;
    letter-spacing: 0.05em;
    color: #f2b01e;
}

.hh-review-card p {
    margin: 0 0 14px;
    color: var(--hh-text-soft);
}

.hh-review-card strong {
    color: var(--hh-dark);
}


/* =========================================================
   SERVICE AREA / MAP
========================================================= */

.hh-service-area {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: stretch;
}

.hh-map {
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--hh-border);
    box-shadow: var(--hh-shadow);
    background: var(--hh-bg-soft);
}

.hh-map iframe {
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
    display: block;
}

.hh-location-box {
    background: var(--hh-white);
    border: 1px solid var(--hh-border);
    border-radius: 28px;
    padding: 30px 28px;
    box-shadow: var(--hh-shadow);
}

.hh-location-box h3 {
    margin: 0 0 18px;
    color: var(--hh-dark);
}

.hh-location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hh-location-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 999px;
    background: var(--hh-bg-soft);
    border: 1px solid var(--hh-border);
    color: var(--hh-text);
    font-weight: 700;
    font-size: 0.94rem;
}


/* =========================================================
   STEPS
========================================================= */

.hh-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hh-step {
    position: relative;
    background: var(--hh-dark);
    color: var(--hh-white);
    border-radius: var(--hh-radius);
    padding: 32px 24px 28px;
    box-shadow: var(--hh-shadow);
    max-width: 100%;
    transition:
        transform var(--hh-transition),
        box-shadow var(--hh-transition);
}

.hh-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--hh-shadow-strong);
}

.hh-step__number {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--hh-red);
    color: var(--hh-white);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.hh-step h3 {
    margin: 0 0 10px;
    color: var(--hh-white);
    font-size: 1.18rem;
    word-break: break-word;
}

.hh-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    overflow-wrap: break-word;
}


/* =========================================================
   CONTACT
========================================================= */

.hh-contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.hh-contact-box,
.hh-form-box {
    background: var(--hh-white);
    border: 1px solid var(--hh-border);
    border-radius: 28px;
    padding: 32px 28px;
    box-shadow: var(--hh-shadow);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    transition:
        transform var(--hh-transition),
        box-shadow var(--hh-transition);
}

.hh-contact-box:hover,
.hh-form-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--hh-shadow-strong);
}

.hh-contact-box h3,
.hh-form-box h3 {
    margin: 0 0 16px;
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: left;
    word-break: break-word;
}

.hh-contact-box p,
.hh-form-box p {
    margin: 0 0 14px;
    color: var(--hh-text-soft);
    overflow-wrap: break-word;
}


/* =========================================================
   FORMINATOR
========================================================= */

.hh-forminator-placeholder {
    margin-top: 18px;
    padding: 24px;
    border-radius: 20px;
    background: var(--hh-bg);
    border: 2px dashed rgba(198, 40, 40, 0.22);
    min-height: 220px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hh-forminator-placeholder *,
.hh-form-box *,
.hh-contact-box * {
    box-sizing: border-box;
    max-width: 100%;
}

.hh-forminator-placeholder input,
.hh-forminator-placeholder textarea,
.hh-forminator-placeholder select,
.hh-forminator-placeholder button {
    width: 100% !important;
    max-width: 100% !important;
}

.hh-forminator-placeholder .forminator-row,
.hh-forminator-placeholder .forminator-col,
.hh-forminator-placeholder .forminator-field {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* =========================================================
   WHATSAPP
========================================================= */

.hh-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
    font-size: 1.7rem;
    transition:
        transform var(--hh-transition),
        box-shadow var(--hh-transition);
}

.hh-whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}


/* =========================================================
   FINAL CTA
========================================================= */

.hh-final-cta {
    background:
        linear-gradient(
            135deg,
            var(--hh-dark) 0%,
            #303538 100%
        );
    color: var(--hh-white);
    border-radius: 32px;
    padding: 58px 32px;
    text-align: center;
    box-shadow: var(--hh-shadow);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.hh-final-cta::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(198, 40, 40, 0.16);
    right: -100px;
    top: -120px;
}

.hh-final-cta::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(79, 127, 58, 0.14);
    left: -90px;
    bottom: -120px;
}

.hh-final-cta > * {
    position: relative;
    z-index: 2;
}

.hh-final-cta .hh-section-title {
    color: var(--hh-white);
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.hh-final-cta p {
    margin: 18px auto 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
    overflow-wrap: break-word;
}

.hh-final-cta__actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}

.hh-final-cta .hh-btn--primary {
    background: var(--hh-red);
    color: var(--hh-white);
}

.hh-final-cta .hh-btn--green {
    background: var(--hh-green);
    color: var(--hh-white);
}


/* =========================================================
   FOOTER
========================================================= */

.hh-footer {
    background: #eceeeb;
    border-top: 1px solid var(--hh-border);
    overflow: hidden;
}

.hh-footer__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.8fr;
    gap: 28px;
    padding: 58px 0 34px;
}

.hh-footer__col h3 {
    margin: 0 0 14px;
    font-size: 1.06rem;
    color: var(--hh-dark);
    word-break: break-word;
}

.hh-footer__col p {
    margin: 0 0 10px;
    color: var(--hh-text-soft);
    overflow-wrap: break-word;
}

.hh-footer__brand {
    margin-top: 12px;
    font-weight: 700;
    color: var(--hh-text);
    word-break: break-word;
}

.hh-footer__bottom {
    border-top: 1px solid var(--hh-border);
    padding: 16px 0 22px;
}

.hh-footer__bottom p {
    margin: 0;
    color: var(--hh-text-soft);
    font-size: 0.95rem;
    text-align: center;
}


/* =========================================================
   LEGAL
========================================================= */

.hh-legal {
    max-width: 960px;
}

.hh-legal__content {
    background: var(--hh-white);
    border: 1px solid var(--hh-border);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--hh-shadow-soft);
}

.hh-legal__content h2 {
    margin: 28px 0 12px;
    font-size: 1.4rem;
    line-height: 1.3;
    color: var(--hh-dark);
}

.hh-legal__content h3 {
    margin: 20px 0 10px;
    font-size: 1.08rem;
    line-height: 1.35;
    color: var(--hh-dark);
}

.hh-legal__content p,
.hh-legal__content li {
    color: var(--hh-text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.hh-legal__content ul {
    padding-left: 20px;
}

.hh-legal__content a {
    word-break: break-word;
}


/* =========================================================
   BASIC FORM ELEMENTS
========================================================= */

input,
textarea,
select,
button {
    font: inherit;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1180px) {

    .hh-card-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hh-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .hh-reference-grid,
    .hh-review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hh-about {
        grid-template-columns: 1fr;
    }

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

    .hh-contact-layout {
        grid-template-columns: 1fr;
    }

    .hh-footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 920px) {

    .hh-site-top__bar {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 16px 0 10px;
        gap: 14px;
    }

    .hh-site-top__contacts {
        justify-content: center;
        text-align: center;
        gap: 14px;
        flex-direction: column;
    }

    .hh-site-top__nav-row {
        padding: 10px 0 18px;
    }

    .hh-topbar__logo {
        max-height: 60px;
        max-width: 160px;
        margin: 0 auto;
    }

    .hh-nav {
        flex-wrap: wrap;
        gap: 14px 18px;
        justify-content: center;
    }

    .hh-trustbar__grid,
    .hh-feature-grid,
    .hh-stats {
        grid-template-columns: 1fr;
    }

    .hh-section {
        padding: 78px 0;
    }

    .hh-contact-box h3,
    .hh-form-box h3 {
        font-size: 1.35rem;
    }

    .hh-hero--main {
        padding: 64px 0 58px;

        background:
            linear-gradient(
                rgba(24, 27, 29, 0.54),
                rgba(24, 27, 29, 0.54)
            ),
            url("https://tm-designs.com/wp-content/uploads/2026/08/Header-2.jpeg")
            center center / cover no-repeat;

        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .hh-hero__content {
        max-width: 100%;
    }

    .hh-section-title--hero {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hh-hero__text {
        font-size: 1rem;
        max-width: 100%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .hh-container {
        width: min(100% - 22px, var(--hh-container));
    }

    .hh-topbar__logo {
        max-height: 56px;
        max-width: 145px;
        margin: 0 auto;
    }

    .hh-footer__logo {
        max-height: 74px;
        max-width: 185px;
    }

    .hh-contact-link {
        justify-content: center;
        text-align: center;
        font-size: 0.95rem;
    }

    .hh-nav {
        gap: 10px 16px;
    }

    .hh-nav a {
        font-size: 0.95rem;
    }

    .hh-hero--main {
        padding: 50px 0 46px;

        background:
            linear-gradient(
                rgba(24, 27, 29, 0.54),
                rgba(24, 27, 29, 0.54)
            ),
            url("https://tm-designs.com/wp-content/uploads/2026/08/Header-2.jpeg")
            center center / cover no-repeat;

        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .hh-section-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .hh-section-title--hero {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
        line-height: 1.08;
    }

    .hh-hero__text,
    .hh-section-subtitle {
        font-size: 1rem;
    }

    .hh-card-grid--4,
    .hh-steps,
    .hh-reference-grid,
    .hh-review-grid,
    .hh-footer__inner {
        grid-template-columns: 1fr;
    }

    .hh-card__body,
    .hh-feature-box,
    .hh-step,
    .hh-contact-box,
    .hh-form-box,
    .hh-location-box {
        padding: 24px 20px;
    }

    .hh-btn {
        width: 100%;
        min-height: 52px;
        padding: 14px 18px;
    }

    .hh-hero__actions,
    .hh-final-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hh-hero__actions {
        margin-top: 24px;
        gap: 12px;
    }

    .hh-final-cta {
        padding: 42px 20px;
        border-radius: 24px;
    }

    .hh-final-cta .hh-section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hh-final-cta p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hh-footer__inner {
        gap: 18px;
        padding: 40px 0 24px;
    }

    .hh-legal__content {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .hh-legal__content h2 {
        font-size: 1.2rem;
    }

    .hh-legal__content h3 {
        font-size: 1rem;
    }

    .hh-map,
    .hh-map iframe {
        min-height: 340px;
    }

    .hh-whatsapp-float {
        width: 58px;
        height: 58px;
        right: 16px;
        bottom: 16px;
        font-size: 1.55rem;
    }
}


/* =========================================================
   HERO FINAL FIX
========================================================= */

.hh-hero--main .hh-hero__content,
.hh-hero--main .hh-hero__content--main {
    text-align: center !important;
}

.hh-hero--main .hh-eyebrow,
.hh-hero--main .hh-eyebrow--hero {
    display: table !important;
    margin: 0 auto 16px !important;
    padding: 10px 18px !important;
    text-align: center !important;

    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    box-shadow: none !important;

    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}

.hh-hero--main .hh-section-title,
.hh-hero--main .hh-section-title--hero,
.hh-hero--main .hh-section-title--hero-light {
    color: #ffffff !important;
    text-align: center !important;
}

.hh-hero--main .hh-hero__text,
.hh-hero--main .hh-hero__text--light,
.hh-hero--main p.hh-hero__text,
.hh-hero--main p.hh-hero__text--light {
    color: rgba(255, 255, 255, 0.94) !important;
    text-align: center !important;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(198, 40, 40, 0.28);
    outline-offset: 3px;
}