:root {
--accent: #ff6900;
--accent-dim: #e05e00;
--dark: #0f2c49;
--dark-2: #0a2238;
--light: #f6f4ef;
--white: #ffffff;
--text: #1c1c1c;
--text-mid: #555;
--text-light: rgba(255,255,255,0.82);
--border: #d9d4ca;
--border-dark: rgba(255,255,255,0.12);
--radius: 2px;
--maxw: 1140px;
--nav-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
font-family: 'Sora', sans-serif;
font-weight: 400;
font-size: 16px;
line-height: 1.6;
color: var(--text);
background: var(--white);
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
max-width: var(--maxw);
margin: 0 auto;
padding: 0 24px;
}

/* === Buttons === */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
font-family: inherit;
font-weight: 600;
font-size: 15px;
letter-spacing: 0.01em;
border: none;
cursor: pointer;
transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
border-radius: var(--radius);
white-space: nowrap;
}

.btn--filled {
background: var(--accent);
color: var(--white);
padding: 12px 22px;
min-height: 44px;
}
.btn--filled:hover, .btn--filled:focus-visible {
background: var(--accent-dim);
}

.btn--lg { padding: 16px 30px; font-size: 16px; min-height: 52px; }

.btn--block { width: 100%; }

/* === Eyebrow === */
.eyebrow {
display: inline-block;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--accent);
}
.eyebrow--dark { color: var(--accent); }

/* === Section heads === */
.section-head {
text-align: center;
max-width: 640px;
margin: 0 auto 56px;
}
.section-title {
font-size: clamp(26px, 4.5vw, 40px);
font-weight: 700;
line-height: 1.18;
letter-spacing: -0.01em;
margin-top: 10px;
}
.section-title--light { color: var(--white); }

/* === Nav === */
.nav {
position: sticky;
top: 42px;
z-index: 100;
background: var(--dark);
border-bottom: 1px solid var(--border-dark);
}
.nav__inner {
max-width: var(--maxw);
margin: 0 auto;
padding: 0 24px;
height: var(--nav-h);
display: flex;
align-items: center;
gap: 20px;
}
.nav__brand {
display: flex;
align-items: center;
gap: 10px;
font-weight: 700;
font-size: 17px;
color: var(--white);
letter-spacing: -0.01em;
}
.nav__brand svg { color: var(--accent); flex-shrink: 0; }
.nav__links {
display: flex;
align-items: center;
gap: 28px;
margin-left: auto;
}
.nav__links a {
font-size: 14px;
font-weight: 400;
color: var(--text-light);
transition: color 180ms ease;
min-height: 44px;
display: flex;
align-items: center;
}
.nav__links a:hover, .nav__links a:focus-visible {
color: var(--white);
}
.nav__cta { flex-shrink: 0; }
.nav__toggle {
display: none;
background: none;
border: none;
color: var(--white);
cursor: pointer;
padding: 8px;
margin-left: auto;
min-width: 44px;
min-height: 44px;
align-items: center;
justify-content: center;
}

/* === Hero === */
.hero {
background: var(--dark);
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
}
.hero__pattern {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 200px;
opacity: 0.08;
pointer-events: none;
}
.hero__content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
max-width: var(--maxw);
margin: 0 auto;
padding: 80px 24px 56px;
width: 100%;
position: relative;
z-index: 2;
}
.hero__title {
font-size: clamp(32px, 6.5vw, 64px);
font-weight: 700;
line-height: 1.05;
letter-spacing: -0.025em;
color: var(--white);
max-width: 900px;
margin-top: 16px;
}
.hero__support {
display: flex;
align-items: center;
gap: 32px;
margin-top: 36px;
flex-wrap: wrap;
}
.hero__desc {
font-size: clamp(15px, 2.2vw, 19px);
color: var(--text-light);
max-width: 440px;
line-height: 1.5;
}
.hero__image {
position: relative;
z-index: 1;
width: 100%;
overflow: hidden;
}
.hero__image img {
width: 100%;
height: auto;
object-fit: cover;
max-height: 420px;
object-position: center;
}

/* === Trust === */
.trust {
background: var(--light);
padding: 100px 0;
}
.trust__grid {
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 56px;
align-items: start;
}
.trust__checklist ul {
display: flex;
flex-direction: column;
gap: 20px;
}
.trust__checklist li {
display: flex;
align-items: flex-start;
gap: 14px;
font-size: 16px;
font-weight: 500;
line-height: 1.45;
color: var(--text);
}
.trust__checklist svg {
color: var(--accent);
flex-shrink: 0;
margin-top: 2px;
}
.trust__copy p {
font-size: 16px;
line-height: 1.65;
color: var(--text-mid);
margin-bottom: 18px;
max-width: 56ch;
}
.trust__copy img {
margin-top: 28px;
border-radius: var(--radius);
width: 100%;
}

/* === Products menu === */
.products {
background: var(--white);
padding: 100px 0;
}
.menu {
max-width: 760px;
margin: 0 auto;
}
.menu__item {
display: flex;
align-items: baseline;
gap: 28px;
padding: 26px 0;
border-bottom: 1px solid var(--border);
}
.menu__item--last { border-bottom: none; }
.menu__num {
font-size: 14px;
font-weight: 600;
color: var(--accent);
letter-spacing: 0.05em;
flex-shrink: 0;
width: 28px;
}
.menu__name {
font-size: clamp(20px, 3.5vw, 28px);
font-weight: 600;
letter-spacing: -0.01em;
line-height: 1.2;
}
.menu__desc {
font-size: 15px;
color: var(--text-mid);
line-height: 1.55;
margin-top: 6px;
max-width: 52ch;
}

/* === Work / Gallery === */
.work {
background: var(--light);
padding: 100px 0;
}
.gallery {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.gallery__item {
position: relative;
overflow: hidden;
border-radius: var(--radius);
}
.gallery__item--wide {
grid-column: 1 / -1;
}
.gallery__item img {
width: 100%;
height: 100%;
object-fit: cover;
aspect-ratio: 16/9;
}
.gallery__item--wide img {
aspect-ratio: 21/9;
}
.gallery__item figcaption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 14px 18px;
background: linear-gradient(transparent, rgba(15,44,73,0.85));
color: var(--white);
font-size: 14px;
font-weight: 500;
}

/* === Story + Areas === */
.story {
background: var(--white);
padding: 100px 0;
}
.story__grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 56px;
align-items: start;
}
.story__text .section-title {
text-align: left;
}
.story__text p {
font-size: 16px;
line-height: 1.65;
color: var(--text-mid);
margin-top: 18px;
max-width: 50ch;
}
.story__areas img {
border-radius: var(--radius);
width: 100%;
margin-bottom: 32px;
}
.areas__title {
font-size: 14px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--dark);
margin-bottom: 18px;
}
.areas__list {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px 24px;
}
.areas__list li {
font-size: 15px;
color: var(--text);
padding-left: 18px;
position: relative;
}
.areas__list li::before {
content: '';
position: absolute;
left: 0;
top: 50%;
width: 8px;
height: 1.5px;
background: var(--accent);
transform: translateY(-50%);
}

/* === Contact / CTA === */
.contact {
background: var(--dark);
padding: 100px 0;
position: relative;
overflow: hidden;
}
.contact__pattern {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 200px;
opacity: 0.08;
pointer-events: none;
}
.contact__inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 56px;
position: relative;
z-index: 2;
align-items: start;
}
.contact__copy .section-title { text-align: left; margin-top: 12px; }
.contact__lead {
font-size: 17px;
color: var(--text-light);
line-height: 1.55;
margin-top: 16px;
max-width: 42ch;
}
.contact__phones {
display: flex;
flex-direction: column;
gap: 18px;
margin-top: 32px;
}
.contact__phone {
display: flex;
flex-direction: column;
gap: 2px;
transition: color 180ms ease;
}
.contact__phone:hover .contact__phone-num { color: var(--accent); }
.contact__phone-label {
font-size: 12px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(255,255,255,0.5);
}
.contact__phone-num {
font-size: 22px;
font-weight: 600;
color: var(--white);
transition: color 180ms ease;
}
.contact__address {
font-size: 14px;
font-style: normal;
color: rgba(255,255,255,0.6);
margin-top: 24px;
}

/* Form */
.contact-form {
background: var(--white);
padding: 32px;
border-radius: var(--radius);
display: flex;
flex-direction: column;
gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
font-size: 13px;
font-weight: 600;
color: var(--text);
letter-spacing: 0.01em;
}
.field__input {
font-family: inherit;
font-size: 15px;
padding: 11px 14px;
border: 1.5px solid var(--border);
border-radius: var(--radius);
background: var(--light);
color: var(--text);
transition: border-color 180ms ease;
}
.field__input:focus {
outline: none;
border-color: var(--accent);
}
.field__input--area { resize: vertical; min-height: 70px; }
.contact-form__notice {
font-size: 14px;
color: var(--dark);
background: var(--light);
padding: 12px 16px;
border-left: 3px solid var(--accent);
border-radius: var(--radius);
line-height: 1.5;
}

/* === Footer === */
.footer {
background: var(--dark-2);
color: var(--text-light);
padding: 64px 0 24px;
}
.footer__inner {
display: grid;
grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
gap: 40px;
}