:root {
    --ira-orange: #ea5a21;
    --ira-orange-deep: #c94716;
    --ira-ink: #141414;
    --ira-charcoal: #262626;
    --ira-cream: #f8f1e7;
    --ira-sand: #f0dfcb;
    --ira-white: #ffffff;
    --ira-muted: #5a5a5a;
    --ira-border: rgba(20, 20, 20, 0.12);
    --ira-shadow: 0 24px 60px rgba(20, 20, 20, 0.12);
    --ira-radius: 28px;
}

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

html {
    scroll-behavior: smooth;
}

body.ira-landing-body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--ira-ink);
    background:
        radial-gradient(circle at top left, rgba(234, 90, 33, 0.16), transparent 30%),
        linear-gradient(180deg, #fffdfa 0%, #fff6ed 100%);
}

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

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-section {
    padding: 24px 0 54px;
}

.hero-shell {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 231, 0.98)),
        var(--ira-white);
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 36px;
    box-shadow: var(--ira-shadow);
    overflow: hidden;
    position: relative;
}

.hero-shell::before,
.hero-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(234, 90, 33, 0.24), rgba(234, 90, 33, 0));
    pointer-events: none;
}

.hero-shell::before {
    width: 300px;
    height: 300px;
    top: -90px;
    right: -90px;
}

.hero-shell::after {
    width: 220px;
    height: 220px;
    left: -70px;
    bottom: -70px;
}

.hero-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.brandmark img {
    width: min(360px, 52vw);
    height: auto;
}

.brandmark-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 12px 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(20, 20, 20, 0.08);
    box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
}

.brandmark-frame img {
    width: 100%;
    max-height: 68px;
    object-fit: contain;
}

.topbar-cta,
.btn {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.topbar-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

.topbar-cta,
.btn-primary,
.btn-submit {
    color: var(--ira-white);
    background: linear-gradient(135deg, var(--ira-orange), var(--ira-orange-deep));
    box-shadow: 0 16px 30px rgba(234, 90, 33, 0.24);
}

.btn-secondary {
    background: rgba(20, 20, 20, 0.92);
    color: var(--ira-white);
}

.btn-outline-dark {
    border: 2px solid rgba(20, 20, 20, 0.82);
    background: linear-gradient(135deg, #222222, #111111);
    color: var(--ira-white);
    box-shadow: 0 14px 28px rgba(20, 20, 20, 0.18);
}

.btn-secondary.light {
    background: var(--ira-white);
    color: var(--ira-ink);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 40px;
    padding: 44px 24px 30px;
}

.eyebrow,
.mini-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ira-orange-deep);
}

.mini-tag {
    margin-bottom: 10px;
}

.hero-copy h1,
.section-heading h2,
.why-copy h2,
.cta-shell h2,
.hero-form-card h2 {
    margin: 0;
    font-family: 'Roboto Slab', serif;
    line-height: 1.08;
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 4.8vw, 4.4rem);
    max-width: 12ch;
}

.hero-subtitle {
    max-width: 48rem;
    margin: 18px 0 0;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--ira-charcoal);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
}

.hero-points {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.hero-points li,
.reason-list li {
    position: relative;
    padding-left: 30px;
    line-height: 1.7;
    color: var(--ira-charcoal);
}

.hero-points li::before,
.reason-list li::before {
    content: "•";
    position: absolute;
    left: 6px;
    top: -2px;
    font-size: 1.4rem;
    color: var(--ira-orange);
}

.hero-form-card {
    position: relative;
    z-index: 1;
    padding: 34px;
    border-radius: 28px;
    background: rgba(20, 20, 20, 0.95);
    color: var(--ira-white);
    box-shadow: 0 28px 50px rgba(20, 20, 20, 0.28);
}

.hero-form-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.booking-points {
    margin: 20px 0 28px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.booking-points li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.booking-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ira-orange);
    box-shadow: 0 0 0 5px rgba(234, 90, 33, 0.16);
}

.lead-form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.lead-form label {
    display: grid;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--ira-white);
    padding: 0 16px;
    font: inherit;
}

.lead-form input,
.lead-form select {
    min-height: 54px;
}

.lead-form textarea {
    min-height: 112px;
    padding-top: 14px;
    resize: vertical;
}

.lead-form span em {
    color: var(--ira-orange);
    font-style: normal;
}

.lead-form option {
    color: var(--ira-ink);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: 2px solid rgba(234, 90, 33, 0.6);
    outline-offset: 2px;
}

.form-message {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
}

.form-message.success {
    background: rgba(22, 163, 74, 0.16);
    color: #c4ffd1;
}

.form-message.error {
    background: rgba(220, 38, 38, 0.18);
    color: #ffd1d1;
}

.btn.full {
    width: 100%;
}

.about-section,
.services-section,
.why-section,
.process-section,
.cta-section {
    padding: 72px 0;
}

.section-heading {
    max-width: 900px;
}

.section-heading.center {
    text-align: center;
    margin: 0 auto;
}

.section-heading h2,
.why-copy h2,
.cta-shell h2,
.hero-form-card h2 {
    font-size: clamp(1.9rem, 3.6vw, 3.2rem);
}

.section-heading p,
.why-copy p,
.cta-shell p,
.process-card p,
.service-card p {
    margin-top: 16px;
    line-height: 1.8;
    color: var(--ira-muted);
}

.services-section {
    background: linear-gradient(180deg, rgba(240, 223, 203, 0.35), rgba(255, 255, 255, 0));
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
}

.service-card,
.process-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--ira-border);
    border-radius: var(--ira-radius);
    padding: 28px;
    box-shadow: 0 18px 36px rgba(20, 20, 20, 0.06);
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card h3,
.process-card h3,
.visual-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ira-ink);
}

.service-media {
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 4 / 3;
    background: #f4f4f4;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.service-card:hover .service-media img {
    transform: scale(1.04);
}

.service-link {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    min-height: 52px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ira-orange), var(--ira-orange-deep));
    box-shadow: 0 16px 30px rgba(234, 90, 33, 0.18);
    font: inherit;
    font-weight: 700;
    color: var(--ira-white);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-link::after {
    content: "→";
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(234, 90, 33, 0.26);
}

.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: stretch;
}

.visual-panel {
    min-height: 100%;
    padding: 0;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(20, 20, 20, 0.86), rgba(20, 20, 20, 0.95)),
        linear-gradient(135deg, rgba(234, 90, 33, 0.3), transparent);
    color: var(--ira-white);
    display: grid;
    grid-template-rows: minmax(220px, 0.9fr) auto;
    overflow: hidden;
    box-shadow: var(--ira-shadow);
}

.visual-image {
    position: relative;
    min-height: 240px;
    clip-path: ellipse(115% 88% at 50% 0%);
}

.visual-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.04), rgba(20, 20, 20, 0.28));
}

.visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-content {
    padding: 34px 38px 38px;
    display: grid;
    gap: 14px;
}

.visual-panel p {
    margin: 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.reason-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.process-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(240, 223, 203, 0.32));
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: var(--ira-ink);
    color: var(--ira-white);
    font-weight: 800;
}

.process-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    background:
        radial-gradient(circle at top right, rgba(234, 90, 33, 0.14), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(234, 90, 33, 0.18);
    pointer-events: none;
}

.process-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -42px;
    bottom: -42px;
    border-radius: 50%;
    background: rgba(234, 90, 33, 0.1);
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(234, 90, 33, 0.34);
    box-shadow: 0 26px 50px rgba(20, 20, 20, 0.1);
}

.process-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.process-top .step-number {
    margin-bottom: 0;
    background: linear-gradient(135deg, #111111, #2a2a2a);
    box-shadow: 0 14px 26px rgba(20, 20, 20, 0.18);
}

.step-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(234, 90, 33, 0.55), rgba(234, 90, 33, 0));
}

.process-body {
    position: relative;
    z-index: 1;
}

.cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 38px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--ira-orange), var(--ira-orange-deep));
    color: var(--ira-white);
    box-shadow: 0 24px 60px rgba(201, 71, 22, 0.28);
}

.cta-shell p {
    color: rgba(255, 255, 255, 0.86);
}

.ira-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.ira-modal.is-open {
    display: block;
}

.ira-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.72);
    backdrop-filter: blur(8px);
}

.ira-modal__dialog {
    position: relative;
    width: min(560px, calc(100% - 24px));
    max-height: calc(100vh - 32px);
    margin: 16px auto;
    border-radius: 28px;
    overflow: auto;
    background: #111111;
    color: var(--ira-white);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.ira-modal__content {
    padding: 28px;
}

.ira-modal__content p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.ira-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 1;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--ira-white);
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 1080px) {
    .service-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        align-items: start;
    }
}

@media (max-width: 767px) {
    .hero-topbar,
    .cta-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-grid,
    .why-grid,
    .service-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding-top: 28px;
    }

    .brandmark img {
        width: min(290px, 74vw);
    }

    .hero-form-card,
    .service-card,
    .process-card,
    .cta-shell,
    .ira-modal__content {
        padding: 24px;
    }

    .visual-panel {
        padding: 0;
    }

    .visual-content {
        padding: 24px;
    }

    .visual-image {
        min-height: 190px;
    }

    .hero-topbar {
        gap: 16px;
    }

    .brandmark-frame {
        width: 100%;
        min-height: 78px;
        padding: 10px 14px;
    }

    .topbar-cta,
    .btn,
    .service-link {
        width: 100%;
    }

    .ira-modal__dialog {
        width: min(100% - 16px, 560px);
        margin: 8px auto;
        max-height: calc(100vh - 16px);
        border-radius: 22px;
    }
}
