:root {
    --black: #0b0b0b;
    --black-soft: #141414;
    --olive: #3d3d18;
    --olive-light: #55551f;
    --olive-deep: #262610;
    --yellow: #f2e200;
    --yellow-dark: #d4c700;
    --orange: #e2622c;
    --white: #ffffff;
    --grey: #b9b9ac;
    --grey-dark: #6f6f63;
    --line: rgba(242, 226, 0, 0.18);
    --header-h: 78px;
    --radius: 4px;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Barlow", "Segoe UI", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--grey);
    background: var(--black);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3 {
    font-family: "Barlow Condensed", "Barlow", sans-serif;
    color: var(--white);
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

p {
    margin: 0 0 18px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: min(1200px, 100% - 48px);
    margin-inline: auto;
}

.section {
    padding: clamp(64px, 9vw, 120px) 0;
    position: relative;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--yellow);
}

.section-title {
    font-size: clamp(34px, 5.2vw, 62px);
    font-weight: 700;
    margin-bottom: 22px;
}

.section-title .accent {
    color: var(--yellow);
}

.section-lead {
    max-width: 62ch;
    font-size: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(11, 11, 11, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
    background: rgba(11, 11, 11, 0.97);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: var(--header-h);
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-right: auto;
}

.brand-name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.06em;
    color: var(--white);
    transition: color 0.25s var(--ease);
}

.brand-owner {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-top: 4px;
}

.brand:hover .brand-name {
    color: var(--yellow);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    position: relative;
    display: block;
    padding: 10px 14px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey);
    transition: color 0.25s var(--ease);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link.is-active {
    color: var(--yellow);
}

.nav-link.is-active::after {
    transform: scaleX(1);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 18px;
    border: 2px solid var(--yellow);
    border-radius: var(--radius);
    color: var(--white);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.header-phone:hover {
    background: var(--yellow);
    color: var(--black);
}

.header-phone-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.header-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.header-phone-text small {
    font-family: "Barlow", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 4px;
}

.header-phone:hover .header-phone-text small {
    color: var(--black);
}

.header-stripe {
    height: 4px;
    background: repeating-linear-gradient(115deg, var(--yellow) 0 18px, var(--black) 18px 36px);
    opacity: 0.85;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 0;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
    transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 100svh;
    padding: calc(var(--header-h) + 60px) 0 70px;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(11, 11, 11, 0.95) 0%, rgba(11, 11, 11, 0.86) 34%, rgba(38, 38, 16, 0.55) 62%, rgba(11, 11, 11, 0.35) 100%),
        linear-gradient(to top, rgba(11, 11, 11, 0.95) 0%, rgba(11, 11, 11, 0) 55%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-right: auto;
}

.hero-eyebrow {
    display: inline-block;
    padding: 7px 16px;
    background: var(--yellow);
    color: var(--black);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.hero-title-main {
    font-size: clamp(42px, 8.4vw, 92px);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 0.95;
    color: var(--white);
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
}

.hero-title-sub {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(22px, 3.4vw, 36px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-top: 10px;
}

.hero-lead {
    max-width: 58ch;
    font-size: clamp(17px, 2vw, 20px);
    color: #ded9c6;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
}

.hero-badges li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.hero-badges li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--yellow);
    transform: rotate(45deg);
}

.section-about {
    background: linear-gradient(180deg, var(--black) 0%, var(--olive-deep) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(36px, 6vw, 80px);
    align-items: start;
}

.about-intro p {
    font-size: 17.5px;
}

.about-stats {
    display: grid;
    gap: 18px;
}

.about-stats li {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.035);
    border-left: 4px solid var(--yellow);
    border-radius: var(--radius);
}

.about-stats strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--yellow);
}

.about-stats span {
    font-size: 15.5px;
    line-height: 1.6;
}

.section-services {
    background: var(--olive-deep);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin-top: 48px;
}

.service-card {
    position: relative;
    padding: 34px 30px 30px;
    background: rgba(11, 11, 11, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--yellow);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--line);
    background: rgba(11, 11, 11, 0.8);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    background: var(--yellow);
    color: var(--black);
    border-radius: var(--radius);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.services-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 44px;
    padding: 30px 34px;
    background: var(--yellow);
    border-radius: var(--radius);
}

.services-cta p {
    margin: 0;
    max-width: 62ch;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    text-transform: uppercase;
}

.services-cta .btn-primary {
    background: var(--black);
    color: var(--yellow);
    font-size: 24px;
}

.services-cta .btn-primary:hover {
    background: var(--white);
    color: var(--black);
}

.services-insurance {
    --cuk-blue: #1a5278;
    --cuk-blue-deep: #0d2847;
    --cuk-green: #6abf4b;
    --cuk-green-light: #a8d86a;

    position: relative;
    margin-top: 60px;
    padding: 0;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(106, 191, 75, 0.18) 0%, transparent 55%),
        linear-gradient(155deg, var(--cuk-blue) 0%, var(--cuk-blue-deep) 58%, #081a2e 100%);
    border: 2px solid rgba(106, 191, 75, 0.5);
    border-radius: var(--radius);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.07) inset;
    overflow: hidden;
}

.services-insurance::before {
    content: "";
    display: block;
    height: 6px;
    background: linear-gradient(90deg, var(--cuk-green), var(--cuk-green-light), #d4e157);
}

.services-insurance-header {
    margin-bottom: 0;
    padding: 34px 38px 0;
}

.services-insurance-eyebrow {
    margin: 0 0 10px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cuk-green-light);
}

.services-insurance-title {
    font-size: clamp(30px, 3.8vw, 44px);
    font-weight: 700;
    color: var(--white);
}

.services-insurance-accent {
    color: var(--cuk-green-light);
}

.services-insurance-body {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 36px;
    align-items: start;
    padding: 28px 38px 38px;
}

.services-insurance-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.services-insurance-logo-link {
    display: block;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.services-insurance-logo-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.services-insurance-logo {
    width: min(240px, 100%);
    height: auto;
}

.services-insurance-tagline {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
}

.services-insurance-fb {
    gap: 10px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 600;
    background: #1877f2;
    border-color: #1877f2;
    color: var(--white);
}

.services-insurance-fb:hover,
.services-insurance-fb:focus-visible {
    background: #166fe5;
    border-color: #166fe5;
    color: var(--white);
    transform: translateY(-2px);
}

.services-insurance-fb svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.services-insurance-features {
    display: grid;
    gap: 14px;
}

.services-insurance-features li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(4px);
}

.services-insurance-features strong {
    color: var(--white);
    font-weight: 600;
}

.services-insurance-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-top: 1px;
    background: linear-gradient(145deg, var(--cuk-green-light), var(--cuk-green));
    color: var(--cuk-blue-deep);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(106, 191, 75, 0.35);
}

.services-insurance-check svg {
    width: 15px;
    height: 15px;
}

.section-gallery {
    background: linear-gradient(180deg, var(--olive-deep) 0%, var(--black) 60%);
}

.carousel {
    position: relative;
    width: min(1200px, 100% - 48px);
    margin: 46px auto 0;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s var(--ease);
    will-change: transform;
}

.carousel-slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 0;
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 60px 30px 24px;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.92) 20%, rgba(11, 11, 11, 0));
    font-family: "Barlow Condensed", sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white);
    text-transform: uppercase;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    padding: 0;
    background: rgba(11, 11, 11, 0.7);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    color: var(--yellow);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-btn:hover {
    background: var(--yellow);
    color: var(--black);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}

.carousel-dot {
    width: 42px;
    height: 5px;
    padding: 0;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.25s var(--ease), width 0.25s var(--ease);
}

.carousel-dot.is-active {
    width: 64px;
    background: var(--yellow);
}

.section-faq {
    background: linear-gradient(180deg, var(--olive-deep) 0%, var(--black) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 42px;
    max-width: 880px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
}

.faq-item summary {
    position: relative;
    cursor: pointer;
    padding: 20px 56px 20px 24px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    list-style: none;
    transition: color 0.25s var(--ease);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.25s var(--ease);
}

.faq-item[open] summary {
    color: var(--yellow);
}

.faq-item[open] summary::after {
    transform: translateY(-20%) rotate(225deg);
}

.faq-item p {
    padding: 0 24px 22px;
    margin: 0;
    max-width: 72ch;
}

.faq-item a {
    color: var(--yellow);
    font-weight: 600;
}

.faq-item a:hover {
    color: var(--white);
}

.section-contact {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 66px);
    margin-top: 42px;
    align-items: start;
}

.contact-lead {
    font-size: 17.5px;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.035);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: var(--yellow);
    color: var(--black);
    border-radius: var(--radius);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-list li > span:last-child {
    display: flex;
    flex-direction: column;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.contact-list small {
    font-family: "Barlow", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 4px;
}

.contact-list a:hover {
    color: var(--yellow);
}

.contact-address {
    font-size: clamp(18px, 2vw, 22px);
}

.contact-form-wrap {
    padding: clamp(28px, 4vw, 42px);
    background: linear-gradient(160deg, var(--olive) 0%, var(--olive-deep) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 16px;
    color: #d3d0be;
    margin-bottom: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-field label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: inherit;
    font-size: 16px;
    color: var(--white);
    background: rgba(11, 11, 11, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f2e200' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
    cursor: pointer;
}

.form-field select option {
    background: var(--olive-deep);
    color: var(--white);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--yellow);
    background: rgba(11, 11, 11, 0.75);
}

.form-field.has-error input,
.form-field.has-error textarea {
    border-color: var(--orange);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 8px 0 22px;
}

.form-consent input {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--yellow);
    cursor: pointer;
}

.form-consent label {
    font-size: 14px;
    line-height: 1.6;
    color: #cfccbb;
    cursor: pointer;
}

.form-consent.has-error label {
    color: var(--orange);
}

.form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.btn-submit {
    width: 100%;
}

.btn-submit[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-recaptcha-note {
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: #9a9788;
}

.form-recaptcha-note a {
    color: #cfccbb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-recaptcha-note a:hover {
    color: var(--yellow);
}

.form-status {
    margin: 16px 0 0;
    font-size: 15.5px;
    font-weight: 500;
    min-height: 24px;
}

.form-status.is-success {
    color: var(--yellow);
}

.form-status.is-error {
    color: var(--orange);
}

.site-footer {
    background: var(--black-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-stripe {
    height: 6px;
    background: repeating-linear-gradient(115deg, var(--yellow) 0 22px, var(--black) 22px 44px);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 35px 0 20px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.footer-brand .brand-name {
    font-size: 40px;
}

.footer-meta {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 19px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey);
}

.footer-address {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
    font-weight: 600;
    color: var(--white);
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-copy {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--grey-dark);
}

.footer-credit {
    margin: 10px 0 0;
    font-size: 14px;
    color: var(--grey-dark);
}

.footer-credit a {
    color: var(--yellow);
    font-weight: 600;
    transition: color 0.25s var(--ease);
}

.footer-credit a:hover {
    color: var(--white);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .header-phone-text small {
        display: none;
    }
}

@media (max-width: 980px) {
    :root {
        --header-h: 70px;
    }

    .nav-toggle {
        display: block;
        order: 3;
    }

    .header-phone {
        order: 2;
        padding: 8px 14px;
        font-size: 19px;
    }

    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        max-height: calc(100svh - var(--header-h));
        overflow-y: auto;
        background: var(--black);
        border-bottom: 3px solid var(--yellow);
        transform: translateY(-140%);
        transition: transform 0.4s var(--ease);
    }

    .nav.is-open {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 24px 24px;
    }

    .nav-link {
        padding: 16px 0;
        font-size: 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link::after {
        left: 0;
        right: auto;
        bottom: 10px;
        width: 34px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        width: 46px;
        height: 46px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 16px;
    }

    .container,
    .carousel {
        width: min(1200px, 100% - 32px);
    }

    .header-phone-icon svg {
        width: 20px;
        height: 20px;
    }

    .header-phone-text {
        display: none;
    }

    .header-phone {
        padding: 10px 13px;
        background: var(--yellow);
        color: var(--black);
    }

    .brand-name {
        font-size: 28px;
    }

    .brand-owner {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-h) + 70px) 0 90px;
    }

    .hero-media img {
        object-position: 65% center;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-badges {
        flex-direction: column;
        gap: 10px;
    }

    .about-stats li {
        grid-template-columns: 84px 1fr;
        gap: 14px;
        padding: 18px;
    }

    .about-stats strong {
        font-size: 34px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px 22px;
    }

    .services-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px 22px;
    }

    .services-cta .btn-primary {
        width: 100%;
    }

    .services-insurance {
        padding: 0;
    }

    .services-insurance-header {
        padding: 26px 22px 0;
    }

    .services-insurance-body {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 22px 22px 28px;
    }

    .services-insurance-fb {
        width: 100%;
    }

    .carousel-caption {
        padding: 40px 54px 14px;
        font-size: 15px;
        line-height: 1.35;
        text-align: center;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        top: 42%;
    }

    .carousel-btn svg {
        width: 17px;
        height: 17px;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-list li {
        padding: 15px 16px;
        gap: 14px;
    }

    .contact-list li > span:last-child {
        font-size: 21px;
    }

    .faq-item summary {
        padding: 16px 48px 16px 18px;
        font-size: 17px;
    }

    .faq-item p {
        padding: 0 18px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
