@font-face {
    font-family: "OPTICirrus";
    src: url("../fonts/OPTICirrus-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f4f2ed;
    --surface: #ffffff;
    --ink: #17202a;
    --muted: #67717d;
    --dark: #101923;
    --dark-soft: #182430;
    --accent: #ee9b23;
    --accent-dark: #c9780b;
    --border: rgba(23, 32, 42, .12);
    --shadow: 0 24px 70px rgba(13, 23, 33, .14);
    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

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

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    color: #fff;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 92px;
}

.wordmark {
    color: #fff;
    font-family: "OPTICirrus", Impact, sans-serif;
    font-size: clamp(1.45rem, 2.3vw, 2.05rem);
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.main-nav a {
    color: rgba(255,255,255,.82);
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a:hover {
    color: #fff;
}

.hero {
    position: relative;
    display: grid;
    min-height: 760px;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8,16,24,.96) 0%, rgba(8,16,24,.78) 48%, rgba(8,16,24,.28) 100%),
        url("../images/hero.jpg") center / cover no-repeat,
        var(--dark);
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.28));
}

.sound-wave {
	display: none;
    position: absolute;
    right: -8%;
    bottom: 7%;
    width: 58%;
    height: 38%;
    opacity: .16;
    background: repeating-linear-gradient(
        90deg,
        transparent 0 18px,
        var(--accent) 18px 22px,
        transparent 22px 34px
    );
    clip-path: polygon(0 45%, 5% 25%, 10% 70%, 16% 34%, 23% 62%, 31% 15%, 38% 76%, 45% 30%, 53% 66%, 61% 20%, 70% 72%, 79% 37%, 88% 61%, 100% 44%, 100% 56%, 88% 39%, 79% 63%, 70% 28%, 61% 80%, 53% 34%, 45% 70%, 38% 24%, 31% 85%, 23% 38%, 16% 66%, 10% 30%, 5% 75%, 0 55%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(3.4rem, 7vw, 6.6rem);
    line-height: .98;
    letter-spacing: -.045em;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -.035em;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.45rem;
    line-height: 1.2;
}

.hero-text {
    max-width: 650px;
    margin-bottom: 34px;
    color: rgba(255,255,255,.78);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: var(--accent);
    color: #17120a;
    cursor: pointer;
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: #ffad36;
    border-color: #ffad36;
}

.button-small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: .9rem;
}

.button-secondary {
    border-color: rgba(255,255,255,.45);
    background: rgba(255,255,255,.06);
    color: #fff;
}

.button-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,.13);
}

.button-secondary-dark {
    border-color: rgba(255,255,255,.25);
    background: transparent;
    color: #fff;
}

.button-full {
    width: 100%;
}

.section {
    padding: 110px 0;
}

.section-dark {
    background: var(--dark);
    color: #fff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading > p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
}

.section-heading-light > p:last-child {
    color: rgba(255,255,255,.66);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.benefit-card {
    position: relative;
    min-height: 270px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 35px rgba(19,31,42,.06);
}

.benefit-card::after {
    position: absolute;
    right: -28px;
    bottom: -58px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(238,155,35,.12);
    content: "";
}

.benefit-number {
    display: block;
    margin-bottom: 54px;
    color: var(--accent-dark);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.benefit-card p {
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.contact-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: var(--radius);
    background: var(--dark-soft);
    transition: transform .2s ease, border-color .2s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(238,155,35,.55);
}

.contact-photo-wrap {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #24303b;
}

.contact-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-card-body {
    padding: 30px;
}

.contact-role {
    margin-bottom: 6px;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-phone {
    display: inline-block;
    margin-bottom: 24px;
    color: rgba(255,255,255,.72);
    text-decoration: none;
}

.location-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: stretch;
    gap: 54px;
}

address {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 1.15rem;
    font-style: normal;
}

.text-link {
    font-size: 1.2rem;
    font-weight: 800;
}

.map-card {
    display: grid;
    min-height: 360px;
    place-items: end start;
    padding: 34px;
    border-radius: var(--radius);
    background:
        linear-gradient(0deg, rgba(16,25,35,.8), rgba(16,25,35,.1)),
        url("../images/map-placeholder.jpg") center / cover no-repeat,
        #d9d4c9;
    box-shadow: var(--shadow);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.notice {
    margin-top: 34px;
    padding: 18px 22px;
    border-radius: 14px;
    font-weight: 700;
}

.notice-success {
    background: #dcf7e6;
    color: #155f32;
}

.notice-error {
    background: #fde3e3;
    color: #8a2424;
}

.site-footer {
    padding: 28px 0;
    background: #0a1118;
    color: rgba(255,255,255,.62);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.wordmark-small {
    font-size: 1.05rem;
}

.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5,10,15,.78);
    backdrop-filter: blur(7px);
}

.modal-dialog {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: calc(100vh - 40px);
    padding: 38px;
    overflow-y: auto;
    padding: 1.5rem;
    background: #fff;
    box-shadow: var(--shadow);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #eef0f2;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
}

.modal-intro {
    color: var(--muted);
}

.contact-form {
    display: grid;
     gap: 0.85rem;
    margin-top: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
}

.contact-form label {
    display: inline;
    gap: 8px;
    font-size: .92rem;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cfd5da;
    border-radius: 12px;
    background: #fff;
    padding: 13px 14px;
    color: var(--ink);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-dark);
    box-shadow: 0 0 0 4px rgba(238,155,35,.16);
}

.contact-form textarea {
    resize: vertical;
}

.consent-row {
    grid-template-columns: auto 1fr !important;
    align-items: start;
    font-weight: 400 !important;
}

.consent-row input {
    width: 18px;
    margin-top: 4px;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .hero {
        min-height: 700px;
        background-position: 62% center;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: auto;
    }

    .benefit-number {
        margin-bottom: 28px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        min-height: 76px;
    }

    .header-inner > .button {
        display: none;
    }

    .hero {
        min-height: 680px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .section {
        padding: 78px 0;
    }

    .contact-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-actions .button {
        flex: 1 1 150px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal-dialog {
        padding: 30px 20px 22px;
    }
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-message {
    margin-bottom: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 10px;
}

.form-message-success {
    background: #e8f7ed;
    color: #176b35;
    border: 1px solid #b8e2c5;
}

.form-message-error {
    background: #fff0f0;
    color: #9d2222;
    border: 1px solid #efc2c2;
}
