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

html {
    font-size: 62.5%;
}

:root {
    --font-impact: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --font-montserrat: "Montserrat", sans-serif;

    /* Brand */
    --light-green: #38b24d;
    --dark-green: #25492d;
    --color-primary: var(--light-green);
    --color-primary-hover: var(--dark-green);
    --white: #F1F1F1;
    --black: #222222;
}

body {
    margin: 0;
    font-family: var(--font-montserrat);
    font-size: 1.6rem;
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-impact);
    font-weight: 400;
    text-transform: capitalize;
}

h1 {
    font-size: 5.4rem;
}

h2 {
    font-size: 3.8rem;
}

h3 {
    font-size: 2.8rem;
}

h4 {
    font-size: 2.4rem;
}

h5 {
    font-size: 2rem;
}

h6 {
    font-size: 1.8rem;
}

p {
    font-size: 1.6rem;
}
section {
    margin-top: -3px;
}

button,
.btn {
    display: inline-block;
    font-family: var(--font-montserrat);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.divider {
    position: absolute;
    width: 100%;
    left: 0;
}
.divider-top {
    top: 0;
}
.divider-bottom {
    bottom: 0;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2.4rem;
}

/* Shown as fixed bottom bar on narrow viewports (see responsive.css). */
.mobile-action-bar {
    display: none;
}

/* Header */
.site-header {
    background: var(--white);
    /* border-bottom: 1px solid var(--color-border-subtle); */
    padding: 0 10rem;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    min-height: 8.8rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    display: block;
    height: auto;
    max-height: 6rem;
    width: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.8rem 2.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* WP menu: dropdown panel stacks vertically (top-level ul stays row) */
.main-nav > ul > li > ul.sub-menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
}

.main-nav a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.main-nav a:hover {
    color: var(--color-primary);
}

/* Green active state only for simple top-level links, not dropdown triggers */
.main-nav > ul > li:not(.has-submenu) > a.is-active {
    color: var(--color-primary);
}

.has-submenu > a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.has-submenu .nav-chevron {
    display: block;
    flex-shrink: 0;
    margin-top: 0.1rem;
    transition: transform 180ms ease-in;
}

.main-nav .has-submenu {
    position: relative;
}

.main-nav .has-submenu:hover .nav-chevron,
.main-nav .has-submenu:focus-within .nav-chevron,
.main-nav .has-submenu.is-open .nav-chevron {
    transform: rotate(180deg);
}

.main-nav .submenu,
.main-nav ul.sub-menu {
    position: absolute;
    /* Keep the submenu flush with the trigger so it doesn't "gap-hide" on hover */
    top: 100%;
    left: 0;
    background: var(--white);
    color: var(--black);
    min-width: 30rem;
    padding: 1.6rem;
    border-radius: 1.2rem;
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.6rem) scale(0.985);
    pointer-events: none;
    transition: opacity 180ms ease-in, transform 220ms ease-in,
        visibility 0s linear 220ms;
    z-index: 50;
}

/* li:hover includes the absolutely positioned submenu (descendant), so moving from trigger into the panel stays open */
.main-nav .has-submenu:hover .submenu,
.main-nav .has-submenu:focus-within .submenu,
.main-nav .submenu:hover,
.main-nav .has-submenu:hover ul.sub-menu,
.main-nav .has-submenu:focus-within ul.sub-menu,
.main-nav ul.sub-menu:hover,
.main-nav .has-submenu.is-open .submenu,
.main-nav .has-submenu.is-open ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition: opacity 200ms ease-in, transform 250ms ease-in,
        visibility 0s linear 0s;
}

.submenu__inner {
    display: flex;
    gap: 2.4rem;
    width: 100%;
}

.submenu__col {
    min-width: 18rem;
    width: 100%;
}

.main-nav .submenu a,
.main-nav ul.sub-menu a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.8rem 1.2rem;
    border-radius: 0.8rem;
    text-decoration: none;
    color: var(--black);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    background: transparent;
    transition: 0.3s ease all;
}

.main-nav .submenu a:hover,
.main-nav ul.sub-menu a:hover {
    color: var(--light-green);
    background: transparent;
}

.main-nav .submenu a:focus-visible,
.main-nav ul.sub-menu a:focus-visible {
    color: var(--light-green);
    background: transparent;
    outline: 2px solid var(--light-green);
    outline-offset: 2px;
}

.btn-header {
    flex-shrink: 0;
    background: var(--color-primary);
    color: var(--white);
}

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

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 8.8rem);
    padding: 6rem 0;
    text-align: center;
    background-color: var(--hero-bg-fallback);
    background-image:url("../images/home-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.hero-content {
    max-width: 110rem;
}

.hero h1 {
    margin: 0 0 2rem;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.hero p {
    margin: 0 auto 3.2rem;
    max-width: 70rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.5;
}

.btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
}

.hero-google-badge {
    display: flex;
    justify-content: center;
    margin-top: 2.8rem;
}

.estimate-google-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 3.2rem;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    max-width: 100%;
    padding: 1rem 1.6rem 1rem 1.2rem;
    background: rgba(34, 34, 34, 0.88);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: 0.8rem;
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.28);
    text-align: left;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a.google-rating-badge:hover {
    background: rgba(34, 34, 34, 0.95);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 0.6rem 2.4rem rgba(0, 0, 0, 0.35);
}

a.google-rating-badge:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.google-rating-badge__g {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-rating-badge__g-svg {
    display: block;
    width: 2.8rem;
    height: auto;
}

.google-rating-badge__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.google-rating-badge__tagline {
    font-family: var(--font-montserrat);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--white);
    text-transform: none;
    letter-spacing: 0.01em;
}

.google-rating-badge__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem 0.75rem;
}

.google-rating-badge__stars {
    display: inline-flex;
    align-items: center;
    gap: 0.12rem;
    color: #e8b923;
}

.google-rating-badge__star {
    display: flex;
    line-height: 0;
}

.google-rating-badge__star svg {
    display: block;
    width: 1.35rem;
    height: auto;
}

.google-rating-badge__score {
    font-family: var(--font-montserrat);
    font-size: clamp(1.25rem, 2.2vw, 1.45rem);
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--white);
}

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

.btn-secondary {
    background: var(--black);
    color: var(--white);
}

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

/* Get Estimate section */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.estimate {
    padding: 20rem 0;
    background-image: url("../images/bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -70px;
    position: relative;
}

.estimate .container {
    padding: 0 20rem;
}

.estimate-panel {
    margin: 0 auto;
    border-radius: 1.2rem;
}

.estimate-header {
    text-align: center;
    margin-bottom: 4.8rem;
}

.estimate h2 {
    margin: 0 0 1.2rem;
    color: var(--dark-green);
}

.estimate-lead {
    margin: 0;
    font-family: var(--font-montserrat);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--black);
}

.estimate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 1.6rem;
    align-items: start;
}

.form-block {
    margin-bottom: 3.2rem;
}

.form-block:last-child {
    margin-bottom: 0;
}

.form-block-title {
    margin: 0 0 1.2rem;
    font-family: var(--font-montserrat);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.35;
}

.form-block-title--inline {
    margin-top: 2.4rem;
    margin-bottom: 1.2rem;
}

.form-block-sub {
    font-weight: 500;
    color: var(--black);
}

.req {
    color: var(--color-primary);
}

.field-label {
    display: block;
    margin-bottom: 0.6rem;
    font-family: var(--font-montserrat);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
}

.field-label--small {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.35;
}

.field-input {
    display: block;
    width: 100%;
    padding: 1.2rem 1.4rem;
    font-family: var(--font-montserrat);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--black);
    background-color: transparent;
    border: 1px solid var(--black);
    border-radius: 0.8rem;
    outline: none;
}

.field-input::placeholder {
    color: var(--black);
}

.field-input:focus {
    border-color: var(--light-green);
    box-shadow: 0 0 0 1px var(--light-green);
}

.date-field {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    overflow: visible;
    z-index: 1;
}

.date-field:has(.date-picker-popover--anchored) {
    z-index: 20;
}

.field-input--date-display {
    cursor: pointer;
    flex: 1;
    min-width: 0;
    width: auto;
    min-height: 0;
    padding: 1.2rem 1rem;
    line-height: 1.25;
    caret-color: transparent;
    text-align: center;
}

.date-field__open-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    padding: 0;
    border: 1px solid var(--black);
    border-radius: 0.8rem;
    background: transparent;
    color: var(--black);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
    display: none;
}

.date-field__open-btn:hover,
.date-field__open-btn:focus-visible {
    border-color: var(--light-green);
    background: rgba(56, 178, 77, 0.1);
    color: var(--dark-green);
    outline: none;
}

.date-field__open-icon {
    display: block;
}

.field-input--date-display:hover,
.field-input--date-display:focus-visible {
    border-color: var(--light-green);
    box-shadow: 0 0 0 1px var(--light-green);
    outline: none;
}

/* CF7 / paragraph auto-wrap: keep date row compact */
.estimate-form .date-field > p,
.wpcf7-form.estimate-form .date-field > p {
    margin: 0;
    padding: 0;
    display: contents;
}

.estimate-form .date-field .wpcf7-form-control-wrap,
.wpcf7-form.estimate-form .date-field .wpcf7-form-control-wrap {
    display: contents;
    margin: 0;
    padding: 0;
}

/* Contact Form 7: inline field validation (e.g. “Please fill out this field.”) */
.wpcf7-form.estimate-form .wpcf7-not-valid-tip {
    font-family: var(--font-montserrat);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
}

.date-picker-popover {
    box-sizing: border-box;
    width: min(100%, 32rem);
    max-width: 32rem;
    padding: 1.6rem;
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: 0.8rem;
    box-shadow: 0 1.2rem 3.2rem rgba(34, 34, 34, 0.18);
    font-family: var(--font-montserrat);
}

/* Calendar is moved into .date-field when open so it is not clipped or lost in stacking contexts */
.date-picker-popover--anchored {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.8rem;
    z-index: 500;
}

.date-picker-popover[hidden] {
    display: none !important;
}

.date-picker-popover__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.date-picker-popover__title {
    margin: 0;
    font-family: var(--font-montserrat);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    text-transform: none;
    letter-spacing: 0.02em;
}

.date-picker-popover__nav {
    display: flex;
    gap: 0.6rem;
}

.date-picker-popover__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    padding: 0;
    border: 1px solid var(--black);
    border-radius: 0.6rem;
    background: transparent;
    color: var(--black);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.date-picker-popover__nav-btn:hover:not(:disabled),
.date-picker-popover__nav-btn:focus-visible {
    background: var(--light-green);
    color: var(--white);
    border-color: var(--light-green);
    outline: none;
}

.date-picker-popover__nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.date-picker-popover__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.4rem;
    margin-bottom: 0.6rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--black);
    opacity: 0.65;
}

.date-picker-popover__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.4rem;
}

.date-picker-popover__day {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4rem;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 0.6rem;
    background: transparent;
    font-family: var(--font-montserrat);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.date-picker-popover__day:hover:not(:disabled):not(.date-picker-popover__day--muted),
.date-picker-popover__day:focus-visible:not(:disabled):not(.date-picker-popover__day--muted) {
    background: rgba(56, 178, 77, 0.18);
    border-color: var(--light-green);
    outline: none;
}

.date-picker-popover__day--muted {
    color: var(--black);
    opacity: 0.28;
    cursor: default;
    pointer-events: none;
}

.date-picker-popover__day--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.date-picker-popover__day--today:not(.date-picker-popover__day--selected) {
    border-color: var(--light-green);
}

.date-picker-popover__day--selected {
    background: var(--light-green);
    color: var(--white);
    border-color: var(--light-green);
}

.date-picker-popover__day--selected:hover,
.date-picker-popover__day--selected:focus-visible {
    background: var(--dark-green);
    border-color: var(--dark-green);
    color: var(--white);
}

.field-textarea {
    min-height: 21rem;
    resize: vertical;
}

.form-row {
    display: grid;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
}

.form-row:last-child {
    margin-bottom: 0;
    margin-top: 1.6rem;
}

.form-row--2 {
    grid-template-columns: 1fr 1fr;
}

.form-row--city {
    grid-template-columns: 2.2fr 1fr 1fr;
}

.toggle-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

.toggle-group--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.toggle-btn {
    position: relative;
    flex: 1;
    min-width: 0;
    cursor: pointer;
    font-family: var(--font-montserrat);
}

.toggle-btn input {
    position: absolute;
    opacity: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 1;
}

.toggle-btn span {
    display: block;
    padding: 1.2rem 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    color: var(--black);
    background: transparent;
    border-radius: 0.8rem;
    border: 1px solid var(--black);
    transition: background 0.15s ease, color 0.15s ease;
}

.toggle-btn:hover span {
    background: var(--toggle-bg-hover);
}

.toggle-btn:has(input:checked) span {
    background: var(--black);
    color: var(--white);
}

.toggle-btn:has(input:focus-visible) {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 1rem;
}

/* Contact Form 7: radios/checkboxes inside .toggle-group use wrappers; flatten for flex/grid + match .toggle-btn */
.toggle-group > p {
    margin: 0;
    padding: 0;
    display: contents;
}

.toggle-group .wpcf7-form-control-wrap {
    display: contents;
    margin: 0;
    padding: 0;
}

.toggle-group .wpcf7-form-control.wpcf7-radio,
.toggle-group .wpcf7-form-control.wpcf7-checkbox {
    display: contents;
}

.toggle-group .wpcf7-list-item {
    position: relative;
    flex: 1;
    min-width: 0;
    margin: 0;
    display: block;
    cursor: pointer;
    font-family: var(--font-montserrat);
}

.toggle-group .wpcf7-list-item label {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1.25;
    cursor: pointer;
    font-weight: inherit;
}

.toggle-group .wpcf7-list-item input[type="radio"],
.toggle-group .wpcf7-list-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 1;
}

.toggle-group .wpcf7-list-item-label {
    display: block;
    margin: 0;
    padding: 1.2rem 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    color: var(--black);
    background: transparent;
    border-radius: 0.8rem;
    border: 1px solid var(--black);
    transition: background 0.15s ease, color 0.15s ease;
}

.toggle-group .wpcf7-list-item label:hover .wpcf7-list-item-label {
    background: var(--toggle-bg-hover);
}

.toggle-group .wpcf7-list-item:has(input:checked) .wpcf7-list-item-label {
    background: var(--black);
    color: var(--white);
}

.toggle-group .wpcf7-list-item:has(input:focus-visible) {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 1rem;
}

.estimate-submit {
    margin-top: 4.8rem;
    text-align: center;
}

.btn-estimate-submit {
    /* min-width: 28rem; */
    padding: 1.8rem 4.8rem;
    font-size: 1.4rem;
}
#est-service-type, #est-street {
    margin-bottom: 1.6rem;
}


/* About */
.about {
    padding: 15rem 20rem;
    padding-right: 0;
    background-color: var(--dark-green);
    overflow: hidden;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6.4rem 12.6rem;
    align-items: end;
    padding: 0;
}

.about-content {
    text-align: left;
}

.about h2 {
    margin: 0 0 2.4rem;
    line-height: 1.15;
    color: var(--white);
}

.about-content p {
    margin: 0 0 1.6rem;
    line-height: 1.7;
    color: var(--white);
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content__cta {
    margin-top: 2.8rem;
}

.about-media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.about-photo {
    position: relative;
    margin: 0;
    width: 100%;
    /* max-width: 56rem; */
}

.about-photo::before {
    content: '';
    position: absolute;
    top: -8.4rem;
    left: -8.4rem;
    border: 1px solid var(--light-green);
    border-radius: 1.4rem;
    z-index: 0;
    pointer-events: none;
    width: 120%;
    height: 100%;
    opacity: 0.5;
}

.about-photo__img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}



/* Services strip section */
.services-strip {
    background: var(--dark-green);
    padding: 0;
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
}
.services-strip:before {
    content: '';
    position: absolute;
    top: -0rem;
    left: -10rem;
    width: 100%;
    height: 100%;
    border: 1px solid var(--light-green);
    z-index: 0;
    pointer-events: none;
    border-radius: 1.4rem;
    opacity: 0.5;
}
.services-strip h2 {
    margin: 0;
    color: var(--white);
}
.services-strip p {
    color: var(--white);
    font-size: 1.6rem;
    line-height: 1.5;
}
.service-intro p {
    color: var(--white);
    width: 70rem;
    font-size: 1.6rem;
    line-height: 1.5;
}
.service-intro {
    display: flex;
    padding: 0rem 20rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
.services-inner {
    display: grid;
    grid-template-columns: 38rem 1fr;
    gap: 0;
    align-items: start;
    padding: 0;
}
  
  .container.services-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .card{
    display: grid;
    overflow: hidden;
    flex: 15%;
    height: 60rem;
    transition: all 0.3s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  .card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    z-index: 0;
    pointer-events: none;
    transition: 0.5s ease all;
  }
  
  .card .content{
    margin-top: auto;
    display: block;
    opacity: 0;
    z-index: 1;
    transition: none;
    padding: 6rem;
  }

  .card h3 {
    color: var(--white);
    margin-bottom: 1rem;
  }
  .card p {
    color: var(--white);
    line-height: 1.5;
  }
  .card-label {
    transform: rotate(-90deg);
    font-size: 3rem;
    font-family: var(--font-impact);
    width: 300px;
    color: var(--white);
    position: absolute;
    bottom: 180px;
    left: -50px;
  }
  
  .card:hover,
  .card.is-active{
    flex: 50vw;
  }
  .card:hover .content,
  .card.is-active .content{
    opacity: 1;
    /* Fade in after a short delay; base state keeps transition:none so .content hides instantly when inactive */
    transition: opacity 0.5s ease 0.2s;
  }
  .card:hover:before,
  .card.is-active:before{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)) !important;
  }
  .card:hover .card-label,
  .card.is-active .card-label{
    opacity: 0;
  }
  .card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

/* Gallery */
.gallery {
    position: relative;
    padding: 22rem 0 10rem;
    background: var(--black);
    overflow: hidden;
}

.gallery-watermark {
    position: absolute;
    left: 50%;
    top: 11rem;
    transform: translateX(-50%);
    margin: 0;
    font-family: var(--font-impact);
    font-weight: 400;
    text-transform: lowercase;
    line-height: 0.85;
    color: var(--white);
    opacity: 0.07;
    pointer-events: none;
    white-space: nowrap;
    font-size: clamp(12rem, 22vw, 16rem);
    z-index: 0;
}

.gallery-shell {
    position: relative;
    z-index: 1;
    padding: 0;
}

.gallery-viewport {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.gallery-track {
    display: flex;
    gap: 1.6rem;
    transition: transform 0.45s ease;
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 36rem;
    width: 28rem;
    height: 56rem;
    padding: 0;
    border: none;
    border-radius: 1.2rem;
    overflow: hidden;
    cursor: pointer;
    background: var(--black);
    position: relative;
}

.gallery-slide img,
.gallery-slide__media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-slide:focus-visible {
    outline: 2px solid var(--light-green);
    outline-offset: 4px;
}

.gallery-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 7.2rem;
    height: 7.2rem;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.35);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-green);
}

.gallery-play svg {
    display: block;
    width: 2.4rem;
    height: auto;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 2.4rem;
    margin-top: 4rem;
}

.gallery-nav-btn {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.gallery-nav-btn__icon svg {
    display: block;
}

.gallery-nav-btn:hover,
.gallery-nav-btn:focus-visible {
    background: var(--white);
    color: var(--black);
    outline: none;
}

.gallery-lightbox[hidden] {
    display: none !important;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: var(--black);
    opacity: 0.92;
}

.gallery-lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
    width: 4.8rem;
    height: 4.8rem;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
    background: var(--white);
    color: var(--black);
    outline: none;
}

.gallery-lightbox__frame {
    position: relative;
    z-index: 1;
    max-width: min(96vw, 120rem);
    max-height: 85vh;
}

.gallery-lightbox__img,
.gallery-lightbox__video {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.8rem;
}

.gallery-lightbox__video {
    background: var(--black);
}

.gallery-lightbox__img[hidden],
.gallery-lightbox__video[hidden] {
    display: none !important;
}

.gallery-lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.gallery-lightbox__arrow-icon svg {
    display: block;
}

.gallery-lightbox__arrow:hover,
.gallery-lightbox__arrow:focus-visible {
    background: var(--white);
    color: var(--black);
    outline: none;
}

.gallery-lightbox__prev {
    left: 2rem;
}

.gallery-lightbox__next {
    right: 2rem;
}

.gallery-lightbox--solo .gallery-lightbox__prev,
.gallery-lightbox--solo .gallery-lightbox__next {
    display: none !important;
}


/* Why choose us */
.why-choose {
    background: var(--black);
    padding: 20rem 20rem;
    overflow: hidden;
    position: relative;
    padding-top: 10rem;
}

.why-choose__inner {
    display: grid;
    grid-template-columns: 1fr minmax(0, 1.15fr);
    align-items: center;
    gap: 0;
    position: relative;
    padding: 0;
}

.why-choose__inner:before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    width: calc(100% - 60px);
    height: 100%;
    border: 1px solid var(--light-green);
    z-index: 0;
    pointer-events: none;
    border-radius: 1.4rem;
    opacity: 0.5;
}

/* .why-choose__panel {
    position: relative;
    z-index: 1;
    padding: 4.8rem 4rem;
    border: 1px solid var(--light-green);
    border-radius: 1.2rem;
} */

.why-choose h2 {
    margin: 0 0 3.2rem;
    color: var(--white);
    line-height: 1.15;
}

.why-choose__brand {
    color: var(--light-green);
}
.why-choose__panel {
    margin-left: 10rem;
    margin-right: 10rem;
    margin-bottom: 1rem;
    margin-top: auto;
}
.why-choose__list {
    margin: 0 0 3.2rem;
    padding: 0;
    list-style: none;
}

.why-choose__item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.why-choose__item:last-child {
    margin-bottom: 0;
}

.why-choose__icon {
    flex-shrink: 0;
    display: flex;
    color: var(--white);
}

.why-choose__icon svg {
    display: block;
}

.why-choose__item-text {
    font-weight: 600;
}

.why-choose__media {
    cursor: pointer;
}

.why-choose__video {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 1.2rem;
    overflow: hidden;
}

.why-choose__video:focus-visible {
    outline: 2px solid var(--light-green);
    outline-offset: 4px;
}

.why-choose__video img {
    display: block;
    width: 100%;
    height: 50rem;
    border-radius: 1.2rem;
    object-fit: cover;
}

/* Reviews / testimonials */
.reviews {
    padding: 20rem 0;
    background-image: url(../images/bg1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.reviews__shell {
    padding: 0 20rem;
    margin: 0 auto;
}

.reviews__header {
    text-align: center;
    margin-bottom: 3.2rem;
}

.reviews__title {
    margin: 0 0 1rem;
    color: var(--dark-green);
}

.reviews__subtitle {
    margin: 0;
    color: var(--black);
    font-weight: 500;
}

.reviews__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
}

.reviews-google {
    display: flex;
    flex-direction: column;
    gap: 1rem 1.2rem;
}

.reviews-google__brand {
    display: inline-flex;
    align-items: center;
    color: var(--black);
}

.reviews-google__logo {
    display: block;
    width: 18.8rem;
    height: auto;
    max-width: min(100%, 18.8rem);
}

.reviews-google__score {
    font-weight: 700;
    color: var(--black);
}

.reviews-google__count {
    color: var(--black);
    opacity: 0.65;
}

.reviews-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--light-green);
}

.reviews-stars--meta .reviews-star {
    width: 1.6rem;
    height: 1.6rem;
}

.reviews-stars--card .reviews-star {
    width: 1.4rem;
    height: 1.4rem;
}

.reviews-star {
    flex-shrink: 0;
    display: block;
}

.reviews__viewport {
    overflow: hidden;
    width: 100%;
    margin-bottom: 4rem;
}

.reviews__track {
    display: flex;
    gap: 1.6rem;
    transition: transform 0.45s ease;
    will-change: transform;
}

.reviews-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: 26rem;
    min-height: 26rem;
    padding: 14px;
    border: 1px solid var(--black);
    border-radius: 1rem;
    box-sizing: border-box;
}

.reviews-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
}

.reviews-card__byline {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.reviews-card__name {
    color: var(--black);
    font-size: 1.8rem;
    font-weight: 600;
}

.reviews-card__when {
    color: var(--black);
    opacity: 0.8;
    font-size: 1.2rem;
}

.reviews-card__text {
    margin: 0;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.6rem;
    color: var(--black);
    line-height: 1.55;
    font-size: 1.6rem;
    font-weight: 500;
    scrollbar-width: thin;
    scrollbar-color: var(--black) rgba(34, 34, 34, 0.1);
    overscroll-behavior: contain;
}

.reviews-card__text::-webkit-scrollbar {
    width: 0.6rem;
}

.reviews-card__text::-webkit-scrollbar-track {
    background: rgba(34, 34, 34, 0.1);
    border-radius: 999px;
}

.reviews-card__text::-webkit-scrollbar-thumb {
    background: var(--light-green);
    border-radius: 999px;
}

.reviews-card__text::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

.reviews__nav {
    display: flex;
    justify-content: center;
    gap: 2.4rem;
}

.reviews-nav-btn {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    border: 2px solid var(--black);
    background: transparent;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.reviews-nav-btn__icon svg {
    display: block;
}

.reviews-nav-btn:hover,
.reviews-nav-btn:focus-visible {
    background: var(--black);
    color: var(--white);
    outline: none;
}

.btn-light {
    background: var(--white);
    color: var(--black);
}

.btn-light:hover,
.btn-light:focus-visible {
    background: rgba(241, 241, 241, 0.85);
    color: var(--black);
}

/* CTA band */
.cta-band {
    padding: 8rem 0 9rem;
    background: var(--black);
    text-align: center;
    position: relative;
}

.cta-band__inner {
    padding: 0 20rem;
    margin: 0 auto;
}

.cta-band__title {
    margin: 0 0 2.4rem;
    color: var(--white);
    line-height: 1.2;
}

.cta-band__text {
    color: var(--white);
    line-height: 1.6;
    font-weight: 500;
    width: 90rem;
    margin: 0 auto;
    margin-bottom: 3.2rem;

}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
}

/* Footer */
.site-footer {
    background: var(--black);
    color: var(--white);
    border-top: 1px solid rgba(241, 241, 241, 0.12);
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 4rem 10rem;
    padding: 5.6rem 2.4rem 4.8rem;
    padding: 5rem 10rem;
    margin: 0 auto;
}

.site-footer__logo-wrap {
    display: inline-block;
    margin-bottom: 2rem;
}

.site-footer__logo-wrap img {
    display: block;
    height: auto;
    max-height: 5.6rem;
    width: auto;
}

.site-footer__blurb {
    margin: 0 0 2.4rem;
    color: var(--white);
    line-height: 1.55;
    font-size: 1.6rem;
    font-weight: 400;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 1rem;
    background: var(--white);
    color: var(--black);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
    opacity: 0.9;
    transform: translateY(-2px);
    outline: none;
}

.site-footer__social-link svg {
    display: block;
}

.site-footer__heading {
    margin: 0 0 2rem;
    color: var(--white);
}

.site-footer__heading--caps {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-footer__heading--plain {
    text-transform: none;
    letter-spacing: normal;
}

.site-footer__contact,
.site-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
}

.site-footer__contact li:last-child {
    margin-bottom: 0;
}

.site-footer__contact-icon {
    flex-shrink: 0;
    color: var(--white);
    opacity: 0.9;
    margin-top: 0.2rem;
}

.site-footer__contact a,
.site-footer__links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.site-footer__contact a:hover,
.site-footer__links a:hover,
.site-footer__contact a:focus-visible,
.site-footer__links a:focus-visible {
    color: var(--light-green);
    opacity: 1;
    outline: none;
}

.site-footer__links li {
    margin-bottom: 1rem;
}

.site-footer__links li:last-child {
    margin-bottom: 0;
}

.site-footer__legal-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem 2.4rem;
    margin: 0 auto;
    padding: 2rem 10rem;
}

.site-footer__copy {
    margin: 0;
    color: var(--white);
    opacity: 0.65;
    font-size: 1.3rem;
}

.site-footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem 2.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__legal-links a {
    color: var(--white);
    opacity: 0.65;
    text-decoration: none;
    font-size: 1.3rem;
}

.site-footer__legal-links a:hover,
.site-footer__legal-links a:focus-visible {
    color: var(--light-green);
    opacity: 1;
    outline: none;
}


.hero.inner-page {
    align-items: flex-end;
    min-height: calc(100vh - 18rem);
    background-position: center bottom;
}
.hero.inner-page h1 {
    margin-bottom: 1rem;
}

.about.inner-page {
    background: var(--white);
    position: relative;
    margin-top: -80px;
    padding-top: 20rem;
}

.about.inner-page h2 {
    color: var(--dark-green);
}
.about.inner-page p {
    color: var(--black);
}
.why-choose.inner-page {
    background: var(--dark-green);
    position: relative;
    padding-top: 20rem;
}
.gallery.inner-page {
    background: var(--dark-green);
    position: relative;
    padding-top: 30rem;
}
.gallery.inner-page .gallery-watermark {
    top: 19rem;
}
.services-strip.inner-page {
    padding-top: 10rem;
}

.services-strip.inner-page:before {
    top: 6rem;
}

.contact .cta-band {
    display: none;
}
.contact .hero.inner-page::before {
    display: none;
}

.hero.inner-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 0;
    pointer-events: none;
    border-radius: 1.4rem;
    opacity: 0.5;
    z-index: -1;
}

.form-row p, .field p {
    margin: 0;
}
.form-row--city, textarea {
    margin-top: 1.6rem;
}
input.btn {
    margin-right: auto;
    margin-left: auto;
    display: block;
}
