:root {
  --navy: #0B1D2D;
  --deep: #0E2F45;
  --cyan: #0FB5C4;
  --turquoise: #38D6D0;
  --light: #E6ECF1;
  --white: #FFFFFF;
  --ink: #11283a;
  --muted: #5f7080;
  --line: rgba(11, 29, 45, .12);
  --shadow: 0 24px 70px rgba(11, 29, 45, .12);
  --radius: 24px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: var(--container); margin-inline: auto; }
.section-pad { padding: 110px 0; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 2000;
  padding: 12px 18px; background: var(--navy); color: var(--white); border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(11, 29, 45, .08);
  box-shadow: 0 8px 30px rgba(11, 29, 45, .08);
  backdrop-filter: blur(14px);
}
.header-inner { height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 8px 24px rgba(11,29,45,.10); }
.brand img { width: 220px; height: auto; }
.site-header.scrolled .brand { background: transparent; box-shadow: none; padding-left: 0; }
.main-nav { display: flex; align-items: center; gap: 30px; color: var(--white); font-size: .86rem; font-weight: 600; }
.site-header.scrolled .main-nav { color: var(--navy); }
.main-nav > a { position: relative; padding: 12px 0; }
.main-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 5px; width: 0; height: 2px; background: var(--cyan); transition: width .25s ease;
}
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { width: 100%; }
.nav-cta {
  padding: 12px 20px !important; border-radius: 12px; color: var(--white) !important;
  background: linear-gradient(135deg, var(--cyan), #0797aa); box-shadow: 0 10px 28px rgba(15, 181, 196, .26);
}
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--white); transition: transform .25s, opacity .25s, background .25s; }
.site-header.scrolled .menu-toggle span { background: var(--navy); }

.hero { min-height: 790px; position: relative; display: grid; align-items: center; overflow: hidden; background: var(--navy); color: var(--white); }
.hero-media { position: absolute; inset: 0; background: url("assets/images/haut-de-page.png") center/cover no-repeat; transform: scale(1.015); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 25, 40, .95) 0%, rgba(7, 25, 40, .82) 36%, rgba(7, 25, 40, .32) 68%, rgba(7, 25, 40, .12) 100%),
    linear-gradient(180deg, rgba(11, 29, 45, .24), rgba(11, 29, 45, .6));
}
.hero::before, .hero::after { content: ""; position: absolute; pointer-events: none; }
.hero::before { width: 600px; height: 600px; right: -240px; top: -250px; border: 1px solid rgba(56, 214, 208, .28); border-radius: 50%; box-shadow: 0 0 0 70px rgba(56, 214, 208, .03), 0 0 0 140px rgba(56, 214, 208, .02); }
.hero::after { width: 420px; height: 420px; right: 17%; bottom: -300px; transform: rotate(45deg); background: linear-gradient(135deg, rgba(15,181,196,.22), transparent 58%); }
.hero-grid { position: relative; z-index: 2; padding-top: 90px; }
.hero-copy { max-width: 760px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--turquoise); font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 38px; height: 2px; background: currentColor; }
.eyebrow.dark { color: var(--cyan); }
.hero h1, .section-heading h2, .quote-copy h2 { margin: 0; letter-spacing: -.045em; line-height: 1.06; }
.hero h1 { max-width: 780px; font-size: clamp(3.2rem, 6.2vw, 5.9rem); font-weight: 500; }
.hero h1 em, .section-heading h2 em, .quote-copy h2 em { color: var(--cyan); font-style: normal; }
.hero-lead { max-width: 680px; margin: 30px 0 0; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.7vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 15px 24px; border: 1px solid transparent; border-radius: 14px; font-size: .82rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button svg { width: 21px; height: 21px; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--cyan), #098fa5); color: var(--white); box-shadow: 0 16px 40px rgba(15,181,196,.3); }
.button-primary:hover { box-shadow: 0 20px 46px rgba(15,181,196,.38); }
.button-ghost { border-color: rgba(255,255,255,.35); color: var(--white); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 700px; margin-top: 55px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.hero-trust > div { display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: center; padding: 17px 18px; background: rgba(4,21,35,.3); }
.hero-trust .check { grid-row: 1 / 3; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(56,214,208,.55); border-radius: 50%; color: var(--turquoise); }
.hero-trust strong { font-size: .78rem; }
.hero-trust small { color: rgba(255,255,255,.58); font-size: .68rem; }
.hero-scroll { position: absolute; z-index: 2; right: 36px; bottom: 30px; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.65); font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; transform: rotate(90deg); transform-origin: right bottom; }
.hero-scroll svg { width: 18px; }

.intro { border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 90px; align-items: end; }
.section-heading h2, .quote-copy h2 { font-size: clamp(2.4rem, 4.5vw, 4.3rem); font-weight: 600; color: var(--navy); }
.section-heading > p:last-child { max-width: 710px; margin: 24px auto 0; color: var(--muted); }
.intro-copy { margin: 0; color: var(--muted); font-size: 1.05rem; }
.centered { max-width: 850px; margin-inline: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }

.services { background: #f8fafb; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 58px; }
.service-card { position: relative; min-height: 430px; overflow: hidden; padding: 38px; border: 1px solid rgba(11,29,45,.08); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 34px rgba(11,29,45,.055); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.service-card::before { content: ""; position: absolute; width: 150px; height: 150px; right: -75px; top: -75px; border-radius: 50%; background: rgba(15,181,196,.08); transition: transform .35s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(15,181,196,.35); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scale(1.35); }
.service-icon { width: 86px; height: 86px; display: grid; place-items: center; border-radius: 18px; color: var(--navy); background: linear-gradient(145deg, rgba(56,214,208,.18), rgba(15,181,196,.05)); }
.service-icon img { width: 74px; height: 74px; object-fit: contain; }
.service-number { position: absolute; top: 26px; right: 28px; margin: 0; color: rgba(11,29,45,.13); font-size: 2.5rem; font-weight: 800; }
.service-card h3 { margin: 26px 0 10px; color: var(--navy); font-size: 1.45rem; }
.service-card > p:not(.service-number) { color: var(--muted); }
.service-card ul { display: grid; gap: 7px; margin: 20px 0 28px; padding: 0; list-style: none; color: #465d6e; font-size: .88rem; }
.service-card li::before { content: "✓"; margin-right: 9px; color: var(--cyan); font-weight: 800; }
.service-card a, .text-link { color: var(--navy); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.service-card a span, .text-link span { color: var(--cyan); font-size: 1.1rem; margin-left: 4px; }

.why { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.why::before { content: ""; position: absolute; inset: auto -10% -65% 30%; height: 680px; background: radial-gradient(circle, rgba(15,181,196,.16), transparent 65%); }
.why-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; }
.why-visual { position: relative; min-height: 610px; border-radius: 0 70px 0 70px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.22); }
.why-visual img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; }
.why .section-heading h2 { color: var(--white); }
.why .section-heading > p:last-child { margin-left: 0; color: rgba(255,255,255,.64); }
.experience-feature {
  position: relative;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
  padding: 25px 28px;
  overflow: hidden;
  border: 1px solid rgba(56,214,208,.3);
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(15,181,196,.18), rgba(255,255,255,.035)),
    rgba(255,255,255,.025);
  box-shadow: 0 24px 55px rgba(0,0,0,.17);
}
.experience-feature::after {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  right: -64px;
  top: -68px;
  border: 1px solid rgba(56,214,208,.25);
  transform: rotate(45deg);
}
.experience-date span,
.experience-date strong,
.experience-date small { display: block; }
.experience-date span {
  color: rgba(255,255,255,.52);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.experience-date strong {
  margin: 3px 0 1px;
  color: var(--white);
  font-size: 2.55rem;
  line-height: .95;
  letter-spacing: -.07em;
}
.experience-date small {
  color: var(--turquoise);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.experience-divider {
  align-self: stretch;
  background: linear-gradient(transparent, var(--turquoise), transparent);
}
.experience-message p { margin: 0; color: var(--white); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: .035em; }
.experience-message p strong { color: var(--turquoise); font-size: 2rem; letter-spacing: -.04em; }
.experience-message span { display: block; margin-top: 7px; color: rgba(255,255,255,.6); font-size: .78rem; }
.benefit-list { margin-top: 34px; border-top: 1px solid rgba(255,255,255,.12); }
.benefit { display: grid; grid-template-columns: 52px 1fr; gap: 12px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.benefit > span { color: var(--turquoise); font-size: .76rem; font-weight: 700; letter-spacing: .12em; }
.benefit h3 { margin: 0 0 6px; font-size: 1rem; }
.benefit p { margin: 0; color: rgba(255,255,255,.6); font-size: .86rem; }

.realisations-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 50px; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery-item { position: relative; min-height: 300px; overflow: hidden; border-radius: 20px; background: var(--navy); }
.gallery-large, .gallery-wide { grid-column: span 2; min-height: 410px; }
.gallery-item img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: var(--white); background: linear-gradient(180deg, transparent 38%, rgba(11,29,45,.82)); }
.gallery-overlay p { margin: 0; font-size: 1.45rem; font-weight: 700; }
.gallery-overlay span { color: rgba(255,255,255,.7); font-size: .84rem; }

.method { position: relative; overflow: hidden; background: linear-gradient(145deg, var(--deep), var(--navy)); color: var(--white); }
.method::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(56,214,208,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(56,214,208,.15) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(90deg, transparent, black 40%, black 60%, transparent); }
.method .container { position: relative; }
.method .section-heading h2 { color: var(--white); }
.method .section-heading > p:last-child { color: rgba(255,255,255,.62); }
.steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 58px 0 0; padding: 0; list-style: none; }
.steps::before { content: ""; position: absolute; top: 64px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), var(--cyan), transparent); opacity: .55; }
.steps li { position: relative; padding: 24px 17px; text-align: center; }
.steps li > span { color: rgba(255,255,255,.35); font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.step-icon { position: relative; z-index: 2; width: 62px; height: 62px; display: grid; place-items: center; margin: 14px auto 22px; border: 1px solid rgba(56,214,208,.55); border-radius: 18px; color: var(--turquoise); background: var(--navy); font-size: 1.25rem; box-shadow: 0 0 0 7px rgba(15,181,196,.08); }
.step-icon img { width: 30px; height: 30px; object-fit: contain; filter: invert(77%) sepia(51%) saturate(680%) hue-rotate(124deg) brightness(94%) contrast(89%); }
.steps h3 { margin: 0 0 8px; font-size: .98rem; }
.steps p { margin: 0; color: rgba(255,255,255,.56); font-size: .79rem; }

.reviews { background: #f8fafb; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.review-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 12px 40px rgba(11,29,45,.05); }
.review-label { display: inline-block; margin: 0 0 18px; padding: 6px 10px; border-radius: 50px; color: #60717e; background: #edf2f5; font-size: .64rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.stars { color: var(--cyan); letter-spacing: .12em; }
.review-card > p:not(.review-label) { color: var(--muted); font-size: .92rem; }
.review-card footer { display: flex; flex-direction: column; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-card footer span { color: var(--navy); font-weight: 700; }
.review-card footer small { color: var(--muted); }

.quote-section { position: relative; overflow: hidden; background: var(--light); }
.quote-section::before { content: ""; position: absolute; width: 700px; height: 700px; left: -380px; bottom: -430px; border-radius: 50%; background: rgba(15,181,196,.12); }
.quote-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start; }
.quote-copy { position: sticky; top: 130px; }
.quote-copy > p:not(.eyebrow) { color: var(--muted); }
.quote-points { display: grid; gap: 13px; margin: 30px 0; }
.quote-points div { display: flex; align-items: center; gap: 12px; color: var(--navy); font-weight: 600; }
.quote-points span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--cyan); }
.direct-contact { margin-top: 42px; padding-top: 28px; border-top: 1px solid rgba(11,29,45,.14); }
.direct-contact p { margin: 0 0 10px; color: var(--muted); font-size: .85rem; }
.direct-contact a { display: block; width: fit-content; margin: 4px 0; color: var(--navy); font-weight: 700; }
.direct-contact a:hover { color: var(--cyan); }
.email-contact-card { position: relative; overflow: hidden; padding: 48px; border: 1px solid rgba(15,181,196,.16); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.email-contact-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -110px; top: -120px; border-radius: 50%; background: rgba(15,181,196,.09); }
.email-contact-icon { position: relative; z-index: 1; width: 68px; height: 68px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 20px; background: linear-gradient(135deg, var(--cyan), var(--turquoise)); box-shadow: 0 12px 28px rgba(15,181,196,.25); }
.email-contact-icon img { width: 34px; height: 34px; object-fit: contain; filter: brightness(0) invert(1); }
.email-contact-kicker { margin: 0 0 9px; color: var(--cyan); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.email-contact-card h3 { max-width: 490px; margin: 0 0 16px; color: var(--navy); font-size: clamp(1.65rem, 3vw, 2.3rem); line-height: 1.15; }
.email-contact-card > p:not(.email-contact-kicker) { max-width: 590px; margin: 0 0 28px; color: var(--muted); }
.email-contact-button { position: relative; z-index: 1; width: 100%; }
.email-contact-address { display: block; margin-top: 15px; color: var(--muted); font-size: .75rem; font-weight: 600; text-align: center; }

.site-footer { padding: 75px 0 0; color: rgba(255,255,255,.68); background: #071827; }
.footer-main { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 60px; padding-bottom: 55px; }
.footer-brand img { display: block; width: 245px; max-width: 100%; height: auto; object-fit: contain; object-position: left center; opacity: 1; }
.footer-brand p { max-width: 340px; font-size: .82rem; }
.footer-motto { color: var(--turquoise); font-size: .68rem !important; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-main h2 { margin: 0 0 18px; color: var(--white); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-main a { margin: 5px 0; font-size: .8rem; }
.footer-main a:hover { color: var(--turquoise); }
.footer-cta { margin-top: 13px !important; color: var(--turquoise); font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .69rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 18px; }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  :root { --container: min(100% - 36px, 900px); }
  .section-pad { padding: 85px 0; }
  .main-nav { gap: 18px; }
  .hero { min-height: 760px; }
  .intro-grid, .why-grid, .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-grid { align-items: start; }
  .why-visual { min-height: 500px; }
  .why-visual img { min-height: 500px; }
  .quote-copy { position: static; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps::before { display: none; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .header-inner { height: 78px; }
  .brand img { width: 180px; }
  .menu-toggle { display: block; z-index: 1002; }
  .main-nav { position: fixed; inset: 0; z-index: 1001; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; padding: 90px 28px 40px; color: var(--white) !important; background: rgba(7,24,39,.98); transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 12px 0; font-size: 1.15rem; }
  .nav-cta { margin-top: 16px; text-align: center; }
  .menu-toggle.active span { background: var(--white) !important; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { min-height: 720px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,25,40,.92), rgba(7,25,40,.65)), linear-gradient(180deg, rgba(11,29,45,.2), rgba(11,29,45,.75)); }
  .hero-trust { grid-template-columns: 1fr; max-width: 420px; }
  .hero-scroll { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-large, .gallery-wide { grid-column: auto; min-height: 330px; }
  .realisations-head { align-items: flex-start; flex-direction: column; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > .footer-brand { grid-column: span 2; }
  .footer-main > div:last-child { grid-column: auto; }
}

@media (max-width: 580px) {
  :root { --container: calc(100% - 28px); --radius: 18px; }
  .section-pad { padding: 68px 0; }
  .hero { min-height: 790px; align-items: start; }
  .hero-grid { padding-top: 145px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-lead { font-size: .95rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-trust { margin-top: 32px; }
  .hero-trust > div { padding: 12px 14px; }
  .section-heading h2, .quote-copy h2 { font-size: 2.45rem; }
  .service-card { min-height: 0; padding: 28px 24px; }
  .why-visual, .why-visual img { min-height: 390px; }
  .experience-feature { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
  .experience-divider { width: 72px; height: 1px; }
  .gallery-item, .gallery-large, .gallery-wide { min-height: 300px; }
  .steps { grid-template-columns: 1fr; }
  .steps li { display: grid; grid-template-columns: 54px 1fr; grid-template-areas: "icon title" "icon text"; gap: 4px 15px; text-align: left; padding: 12px 0; }
  .steps li > span { display: none; }
  .step-icon { grid-area: icon; width: 48px; height: 48px; margin: 0; }
  .steps h3 { grid-area: title; }
  .steps p { grid-area: text; }
  .email-contact-card { padding: 30px 22px; border-radius: 20px; }
  .field-full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-main > .footer-brand { grid-column: auto; }
  .footer-bottom { padding-bottom: 88px; flex-direction: column; }
  .footer-bottom div { flex-direction: column; gap: 4px; }
  .mobile-call { position: fixed; z-index: 900; left: 14px; right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; border-radius: 14px; color: var(--white); background: linear-gradient(135deg, var(--cyan), #078ea3); box-shadow: 0 13px 35px rgba(11,29,45,.3); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
  .mobile-call svg { width: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
