:root {
    --orange: #F24C00;
    --orange-dark: #D5540C;
    --ink: #202020;
    --ink-soft: #2A2A2A;
    --paper: #EEECEA;
    --surface: #E5E3E1;
    --surface-2: #DAD7D5;
    --card: #F5F3F1;
    --line: #D9D7D8;
    --text: #252525;
    --muted: #666666;
    --radius: 22px;
    --shadow: 0 18px 50px rgba(32, 32, 32, .10);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration-thickness: .08em; text-underline-offset: .16em; }
a:hover { color: var(--orange-dark); }
address { font-style: normal; }

.skip-link {
    position: fixed;
    left: 1rem;
    top: -4rem;
    z-index: 999;
    padding: .8rem 1rem;
    background: #fff;
    color: #111;
    border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

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

.site-header {
    position: relative;
    z-index: 10;
    background: var(--ink);
    color: #fff;
    border-bottom: 5px solid var(--orange);
}
.header-accent {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(31vw, 420px);
    background: var(--orange);
    clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
    opacity: .98;
}
.header-inner {
    position: relative;
    min-height: 142px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1.15rem;
    min-width: 0;
    color: #fff;
    text-decoration: none;
}
.brand:hover { color: #fff; }
.brand__mark {
    position: relative;
    width: 112px;
    aspect-ratio: 1;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255,255,255,.18);
    isolation: isolate;
}
.brand__mark::after {
    content: "";
    position: absolute;
    inset: -5px;
    z-index: -1;
    border: 2px solid rgba(255, 132, 75, .72);
    border-radius: 50%;
    pointer-events: none;
    animation: brand-ring-pulse 3.2s ease-in-out infinite;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

@keyframes brand-ring-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: .58;
        box-shadow: 0 0 0 0 rgba(242, 76, 0, .16);
    }
    50% {
        transform: scale(1.075);
        opacity: .92;
        box-shadow: 0 0 0 7px rgba(242, 76, 0, .08);
    }
}
.brand__wordmark { display: grid; line-height: 1; }
.brand__claim { color: var(--orange); font-weight: 800; font-size: clamp(.85rem, 1.2vw, 1.1rem); margin-bottom: .35rem; }
.brand__name { color: var(--orange); font-size: clamp(1.45rem, 3.1vw, 2.8rem); font-weight: 900; letter-spacing: -.045em; white-space: nowrap; }
.brand__suffix { justify-self: end; margin-top: .28rem; color: var(--orange); font-size: clamp(.8rem, 1.25vw, 1rem); font-weight: 800; }

.nav { align-self: end; display: flex; gap: .35rem; padding-bottom: 1.15rem; }
.nav__link {
    color: #fff;
    text-decoration: none;
    font-weight: 750;
    font-size: .94rem;
    padding: .72rem .9rem;
    border-radius: 10px;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav__link:hover, .nav__link:focus-visible { background: #333; color: #fff; }
.nav__link--active { background: var(--orange); }
.nav__link--active:hover { background: var(--orange-dark); }

.hero {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 90% 15%, rgba(242,76,0,.10), transparent 30%),
      linear-gradient(180deg, var(--surface) 0%, var(--paper) 100%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto -12vw -21vw auto;
    width: 42vw;
    aspect-ratio: 1;
    border: 1px solid rgba(242,76,0,.18);
    border-radius: 50%;
}
.hero__grid { min-height: 585px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); padding-block: clamp(4rem, 7vw, 7rem); }
.eyebrow { margin: 0 0 .85rem; color: var(--orange); font-size: .79rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--dark { color: var(--ink); }
.hero h1, .page-hero h1 {
    margin: 0;
    max-width: 820px;
    color: var(--ink);
    font-size: clamp(2.7rem, 7vw, 6.1rem);
    line-height: .94;
    letter-spacing: -.055em;
}
.hero__lead { max-width: 690px; margin: 1.7rem 0 .8rem; font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 700; }
.hero__text { margin: 0; font-size: 1.02rem; color: var(--muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .78rem 1.1rem; border-radius: 12px; font-weight: 800; text-decoration: none; }
.button--primary { background: var(--orange); color: #fff; }
.button--primary:hover { background: var(--orange-dark); color: #fff; }
.button--ghost { color: var(--ink); border: 1px solid #c8c5c6; background: rgba(245,243,241,.82); }
.button--ghost:hover { color: var(--orange); border-color: var(--orange); }

.hero__visual {
    position: relative;
    min-height: 410px;
}
.hero__roof {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(100%, 430px);
    aspect-ratio: 1.1;
    background: var(--orange);
    clip-path: polygon(50% 0, 100% 43%, 89% 43%, 89% 100%, 11% 100%, 11% 43%, 0 43%);
    transform: translate(-50%, -50%);
    transform-origin: center;
    box-shadow: var(--shadow);
}
.hero__logo-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: min(60%, 248px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
}
.hero__logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 26px rgba(0,0,0,.22));
}

.contact-strip { background: var(--orange); color: #fff; }
.contact-strip__grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 2rem; align-items: center; padding-block: 2rem; }
.contact-strip h2 { margin: .1rem 0 0; font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.2; }
.contact-strip address { font-weight: 650; }
.contact-strip__links { display: grid; gap: .35rem; }
.contact-strip a { color: #fff; font-weight: 800; overflow-wrap: anywhere; }

.page-hero { padding-block: clamp(4rem, 7vw, 6.5rem); background: linear-gradient(135deg, var(--surface) 0%, var(--paper) 72%); border-bottom: 1px solid var(--line); }
.page-hero--compact { padding-block: clamp(3.2rem, 6vw, 5rem); }
.page-hero--compact h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
.page-hero p:not(.eyebrow) { max-width: 680px; font-size: 1.12rem; color: var(--muted); }
.section { padding-block: clamp(3rem, 7vw, 6rem); }

.contact-cards { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 1rem; align-items: stretch; }
.contact-card {
    padding: clamp(1.35rem, 3vw, 2.2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 12px 34px rgba(32,32,32,.06);
}
.contact-card--wide { background: var(--ink); color: #fff; border-color: var(--ink); }
.contact-card h2 { margin: 0 0 .75rem; line-height: 1.2; }
.contact-card--wide h2 { color: var(--orange); }
.text-link { font-weight: 800; overflow-wrap: anywhere; }
.muted { color: var(--muted); font-size: .93rem; }
.contact-card--wide .muted { color: #bbb; }

.legal-card {
    max-width: 920px;
    padding: clamp(1.3rem, 4vw, 3.5rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
}
.legal-content { overflow-wrap: anywhere; }
.legal-content > h2:first-child { margin-top: 0; color: var(--orange); font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; }
.legal-content h1 { margin: .2rem 0 2rem; color: var(--ink); font-size: clamp(1.7rem, 4vw, 2.65rem); line-height: 1.1; letter-spacing: -.03em; }
.legal-content h2 { margin: 2rem 0 .75rem; color: var(--orange); font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.3; border-bottom: 1px solid rgba(242,76,0,.24); padding-bottom: .45rem; }
.legal-content h3 { margin: 2rem 0 .85rem; color: var(--ink); font-size: 1.15rem; line-height: 1.35; }
.legal-content p { margin: .65rem 0; }
.legal-content p[style*="text-align: justify"] { text-align: left !important; }
.legal-content a { font-weight: 750; }

.site-footer { background: var(--ink); color: #cfcfcf; }
.footer-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-inner p { margin: 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-nav a { color: #fff; text-decoration: none; font-weight: 700; }
.footer-nav a:hover { color: var(--orange); }

:focus-visible { outline: 3px solid rgba(242,76,0,.45); outline-offset: 3px; }

@media (max-width: 980px) {
    .header-accent { width: 175px; }
    .header-inner { min-height: 126px; align-items: center; }
    .brand__mark { width: 88px; }
    .brand__name { font-size: clamp(1.25rem, 4vw, 2.1rem); }
    .nav { position: absolute; right: 20px; bottom: -50px; padding: .35rem; border-radius: 12px; background: var(--ink); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
    .hero { padding-top: 48px; }
    .hero__grid { grid-template-columns: 1fr 380px; min-height: 540px; }
    .contact-strip__grid, .contact-cards { grid-template-columns: 1fr 1fr; }
    .contact-strip__grid > :first-child, .contact-card--wide { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .site-header { border-bottom-width: 4px; }
    .header-accent { width: 120px; opacity: .8; }
    .header-inner { min-height: 122px; align-items: flex-start; padding-top: 15px; }
    .brand { gap: .7rem; }
    .brand__mark { width: 72px; }
    .brand__claim { font-size: .67rem; }
    .brand__name { font-size: clamp(1.05rem, 5.5vw, 1.55rem); }
    .brand__suffix { font-size: .68rem; }
    .nav { left: 14px; right: 14px; bottom: -49px; justify-content: space-between; overflow-x: auto; }
    .nav__link { flex: 0 0 auto; padding: .65rem .72rem; font-size: .82rem; }
    .hero { padding-top: 49px; }
    .hero__grid { min-height: 0; grid-template-columns: 1fr; padding-block: 4.6rem 3.5rem; }
    .hero__content { position: relative; z-index: 2; }
    .hero__visual { min-height: 320px; }
    .hero__roof { width: 310px; }
    .hero__logo-wrap { width: 190px; }
    .hero h1 { font-size: clamp(3rem, 17vw, 4.9rem); }
    .contact-strip__grid, .contact-cards { grid-template-columns: 1fr; }
    .contact-strip__grid > :first-child, .contact-card--wide { grid-column: auto; }
    .footer-inner { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
