:root {
  --navy: #0d2d9e;
  --navy-2: #1055c4;
  --blue: #0d2d9e;
  --cyan: #00acd1;
  --cyan-dark: #087ea4;
  --ice: #eaf8fb;
  --ice-2: #f4fbfd;
  --white: #ffffff;
  --ink: #10213f;
  --muted: #5e6c84;
  --line: #d9e5ec;
  --sand: #f0ae32;
  --page: #ffffff;
  --container: 1220px;
  --shadow: 0 22px 60px rgba(7, 29, 73, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
p { margin: 0 0 1.2rem; }
h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h1 { font-size: clamp(3.1rem, 6vw, 6.2rem); }
h2 { font-size: clamp(2.35rem, 4vw, 4.25rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
ul { margin: 0; padding: 0; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 9999;
  padding: 10px 14px; color: #fff; background: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 106px;
  background: #ffffff;
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 28px rgba(7, 29, 73, .08); }
.header-inner { display: flex; align-items: center; gap: 22px; height: 100%; }
.brand { flex: 0 0 auto; }
.brand img { width: 155px; height: 90px; object-fit: contain; }
.site-navigation { display: flex; align-items: center; justify-content: center; flex: 1; min-width: 0; }
.site-navigation .mod-menu,
.site-navigation .mod-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.site-navigation li { position: relative; }
.site-navigation a,
.site-navigation .separator {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 10px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 750;
  white-space: nowrap;
}
.site-navigation > .mod-menu > li > a::after,
.site-navigation > .mod-list > li > a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-navigation a:hover::after,
.site-navigation .current > a::after,
.site-navigation .active > a::after { transform: scaleX(1); }
.site-navigation .current > a,
.site-navigation .active > a { color: var(--cyan-dark); }
.site-navigation li > ul {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 260px;
  padding: 12px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.site-navigation li:hover > ul,
.site-navigation li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-navigation li > ul a { min-height: 40px; border-radius: 6px; }
.site-navigation li > ul a:hover { color: var(--cyan-dark); background: var(--ice); }
.header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  color: #fff;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.nav-toggle { display: none; }

/* Shared */
.section { padding: 110px 0; }
.section-compact { padding: 80px 0; }
.section-ice { background: var(--ice-2); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--cyan-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .19em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--cyan); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading p { max-width: 650px; margin-top: 22px; color: var(--muted); font-size: 1.12rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: .94rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); }
.button-primary:hover { background: var(--navy); }
.button-secondary { color: var(--navy); background: transparent; border-color: rgba(7, 29, 73, .24); }
.button-secondary:hover { border-color: var(--navy); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--cyan-dark); font-weight: 800; }
.text-link:hover { color: var(--blue); }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.check-list { display: grid; gap: 14px; list-style: none; margin-top: 28px; }
.check-list li { position: relative; padding-left: 32px; color: var(--ink); }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  display: grid; place-items: center;
  width: 21px; height: 21px;
  color: #fff; background: var(--cyan);
  border-radius: 4px;
  font-size: .72rem; font-weight: 900;
}
.reveal { opacity: 1; transform: none; }

/* Home hero */
.home-hero {
  position: relative;
  min-height: calc(100vh - 92px);
  padding: 72px 0 64px;
  overflow: hidden;
  background: var(--ice);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  background: rgba(255, 255, 255, .32);
  clip-path: polygon(0 0, 100% 0, 74% 100%, 0 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  align-items: center;
  gap: 56px;
  min-height: 650px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 730px; font-size: clamp(3.6rem, 5.2vw, 5.4rem); }
.hero-copy h1 span { color: var(--cyan-dark); }
.hero-copy > p:not(.eyebrow) { max-width: 630px; margin-top: 26px; color: #3b5274; font-size: 1.18rem; }
.hero-proof { display: flex; align-items: center; gap: 16px; margin-top: 34px; color: var(--navy); font-size: .9rem; font-weight: 750; }
.hero-proof-icons { display: flex; }
.hero-proof-icons span {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  margin-left: -8px;
  color: #fff; background: var(--navy);
  border: 3px solid var(--ice);
  border-radius: 50%;
  font-size: .72rem;
}
.hero-proof-icons span:first-child { margin-left: 0; background: var(--cyan-dark); }
.hero-visual { position: relative; min-height: 620px; }
.hero-visual::before {
  content: "";
  position: absolute;
  left: -30px; bottom: 18px;
  width: 150px; height: 150px;
  border: 26px solid rgba(0, 172, 209, .18);
  border-radius: 50%;
}
.hero-visual > img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center center;
  border-radius: 210px 22px 150px 22px;
  box-shadow: var(--shadow);
}
.hero-float-card {
  position: absolute;
  left: -22px;
  bottom: 52px;
  width: min(310px, 70%);
  padding: 22px 24px;
  background: #fff;
  border-left: 5px solid var(--cyan);
  box-shadow: 0 20px 48px rgba(7, 29, 73, .2);
}
.hero-float-card strong { display: block; color: var(--navy); font-size: 1.12rem; }
.hero-float-card span { color: var(--muted); font-size: .9rem; }

/* About */
.about-media { position: relative; padding: 0 60px 64px 0; }
.about-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px 90px 18px 18px; box-shadow: var(--shadow); }
.experience-badge {
  position: absolute;
  right: 0; bottom: 0;
  display: grid; place-items: center;
  width: 190px; height: 190px;
  padding: 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 20px 42px rgba(7, 29, 73, .1);
}
.experience-badge strong { display: block; color: var(--cyan); font-size: 2.65rem; line-height: 1; }
.experience-badge span { display: block; color: var(--navy); font-size: .95rem; font-weight: 800; line-height: 1.3; }
.about-copy p { color: var(--muted); font-size: 1.06rem; }
.about-copy .lead { margin-top: 26px; color: var(--ink); font-size: 1.18rem; }

/* President */
.president-section { background: var(--ice-2); scroll-margin-top: 110px; }
.president-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: 76px; align-items: center; }
.president-portrait { margin: 0; position: relative; padding: 0 22px 28px 0; }
.president-portrait::before { content: ''; position: absolute; inset: 36px 0 0 34px; border: 2px solid var(--blue); border-radius: 24px 24px 90px 24px; }
.president-portrait img { position: relative; width: 100%; height: auto; border-radius: 24px 24px 80px 24px; }
.president-portrait figcaption { position: absolute; bottom: 7px; left: 24px; right: 44px; padding: 18px 22px; background: var(--blue); color: #fff; border-radius: 10px; }
.president-portrait figcaption strong, .president-portrait figcaption span { display: block; }
.president-portrait figcaption strong { font-size: 1.15rem; }
.president-portrait figcaption span { font-size: .87rem; opacity: .85; }
.president-copy h2 { font-size: clamp(2.1rem,3.1vw,3.35rem); margin-bottom: 26px; }
.president-copy p:not(.eyebrow) { color: var(--muted); }
.president-copy blockquote { margin: 26px 0; padding: 3px 0 3px 23px; border-left: 3px solid var(--cyan); font-size: 1.2rem; font-weight: 650; line-height: 1.55; color: var(--blue); }

/* Service split */
.service-band { display: grid; grid-template-columns: 1fr 1fr; min-height: 610px; }
.service-band-copy { display: grid; align-content: center; padding: 84px max(48px, calc((100vw - var(--container)) / 2)); background: var(--ice); }
.service-band-copy > div { max-width: 570px; }
.service-band-copy p { margin-top: 22px; color: #395373; }
.service-band-media { min-height: 610px; }
.service-band-media img { width: 100%; height: 100%; object-fit: cover; }

/* Expertise cards */
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.expertise-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.expertise-card:hover { transform: translateY(-7px); border-color: rgba(0, 172, 209, .6); box-shadow: var(--shadow); }
.expertise-number { display: block; margin-bottom: 52px; color: var(--cyan); font-size: .78rem; font-weight: 850; letter-spacing: .15em; }
.expertise-card h3 { margin-bottom: 16px; }
.expertise-card p { color: var(--muted); font-size: .96rem; }
.expertise-card .text-link { position: absolute; left: 34px; bottom: 30px; }
.expertise-icon {
  position: absolute; top: 26px; right: 26px;
  display: grid; place-items: center;
  width: 54px; height: 54px;
  color: var(--navy); background: var(--ice);
  border-radius: 50%; font-size: 1.4rem;
}

/* Facts */
.facts-section { color: #fff; background: var(--navy); }
.facts-section .eyebrow { color: #76def0; }
.facts-section h2 { max-width: 780px; color: #fff; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.fact { padding: 38px 28px; border-right: 1px solid rgba(255,255,255,.18); }
.fact:first-child { padding-left: 0; }
.fact:last-child { border-right: 0; }
.fact strong { display: block; color: #fff; font-size: clamp(2.4rem, 4vw, 4.2rem); letter-spacing: -.05em; line-height: 1; }
.fact span { display: block; margin-top: 12px; color: #b7cae4; font-size: .92rem; }
.fact-source { margin-top: 20px; color: #91a8c8; font-size: .78rem; }

/* Projects */
.projects-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.project-card { position: relative; min-height: 340px; overflow: hidden; color: #fff; background: var(--navy); border-radius: 14px; }
.project-card:first-child { grid-row: span 2; min-height: 704px; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover img { transform: scale(1.035); }
.project-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 46%; background: rgba(3,18,47,.86); }
.project-info { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 28px; }
.project-info span { color: #72d7ea; font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.project-info h3 { max-width: 520px; margin-top: 8px; color: #fff; }

/* Method */
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.method-card { position: relative; padding-left: 38px; }
.method-image { aspect-ratio: 1.18 / 1; overflow: hidden; margin-bottom: 30px; border-radius: 14px 74px 14px 74px; }
.method-image img { width: 100%; height: 100%; object-fit: cover; }
.method-number { position: absolute; left: 0; top: calc(100% - 158px); color: var(--cyan); font-size: 4.5rem; font-weight: 850; line-height: 1; }
.method-card h3, .method-card p { margin-left: 48px; }
.method-card p { margin-top: 12px; color: var(--muted); font-size: .94rem; }

/* News and CTA */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { padding: 30px; background: #fff; border-top: 4px solid var(--cyan); box-shadow: 0 12px 34px rgba(7,29,73,.08); }
.news-card time { color: var(--cyan-dark); font-size: .78rem; font-weight: 850; text-transform: uppercase; }
.news-card h3 { margin: 18px 0 16px; font-size: 1.42rem; }
.news-card p { color: var(--muted); font-size: .94rem; }
.cta-section { padding: 90px 0; background: var(--cyan); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 780px; color: var(--navy); }
.cta-inner p { max-width: 720px; margin: 18px 0 0; color: #083c5d; }
.cta-section .button-primary { color: #fff; background: var(--navy); white-space: nowrap; }

/* Inner pages */
.page-hero { padding: 94px 0 84px; color: #fff; background: var(--navy); }
.page-hero .eyebrow { color: #75d9ea; }
.page-hero h1 { max-width: 1000px; color: #fff; font-size: clamp(3.2rem, 6vw, 5.8rem); }
.page-hero p { max-width: 760px; margin-top: 24px; color: #c6d4e8; font-size: 1.18rem; }
.page-hero .button-secondary { color: #fff; border-color: rgba(255,255,255,.42); }
.page-hero .button-secondary:hover { border-color: #fff; }
.page-intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.page-intro-grid p { color: var(--muted); font-size: 1.08rem; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 46px; }
.value-card { padding: 28px; border-top: 3px solid var(--cyan); background: var(--ice-2); }
.value-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.value-card p { color: var(--muted); font-size: .92rem; }
.detail-hero { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; min-height: 590px; background: var(--ice); }
.detail-hero-copy { display: grid; align-content: center; padding: 80px max(46px, calc((100vw - var(--container)) / 2)); }
.detail-hero-copy p { max-width: 600px; margin-top: 24px; color: var(--muted); }
.detail-hero-media img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; }
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 42px; }
.capability { padding: 28px; border: 1px solid var(--line); }
.capability h3 { margin-bottom: 12px; font-size: 1.2rem; }
.capability p { color: var(--muted); font-size: .94rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid figure { margin: 0; overflow: hidden; background: var(--ice-2); }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-grid figcaption { padding: 18px 20px; color: var(--navy); font-size: .9rem; font-weight: 750; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
.contact-list { display: grid; gap: 18px; margin-top: 34px; }
.contact-item { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; padding: 22px 0; border-top: 1px solid var(--line); }
.contact-item-icon { display: grid; place-items: center; width: 48px; height: 48px; color: #fff; background: var(--navy); border-radius: 8px; }
.contact-item strong { display: block; color: var(--navy); }
.contact-item span, .contact-item a { color: var(--muted); }
.contact-panel { padding: 46px; background: var(--ice); border-left: 6px solid var(--cyan); }
.contact-panel h2 { font-size: 2.4rem; }
.contact-panel p { margin-top: 20px; color: var(--muted); }
.contact-actions { display: grid; gap: 12px; margin-top: 30px; }
.article-page > .item-page { padding: 0; }
.item-page > .page-header { display: none; }
.item-page .article-info,
.item-page .icons,
.com-content-article__navigation { display: none !important; }
.com-content-article__body { margin: 0; }

/* Joomla messages */
.joomla-alert { width: min(calc(100% - 48px), var(--container)); margin: 20px auto; }

/* Footer */
.site-footer { padding: 74px 0 26px; color: #b9c8dc; background: #04122f; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .85fr .8fr 1fr; gap: 54px; }
.footer-brand img { width: 225px; height: auto; margin-bottom: 24px; padding: 14px; background: #fff; border-radius: 10px; }
.footer-brand p { max-width: 340px; font-size: .95rem; }
.site-footer h2 { margin-bottom: 22px; color: #fff; font-size: 1rem; letter-spacing: .04em; }
.site-footer ul { display: grid; gap: 10px; list-style: none; }
.site-footer a { color: #b9c8dc; }
.site-footer a:hover { color: #6fdbed; }
.footer-contact { display: grid; align-content: start; gap: 9px; }
.footer-contact h2 { margin-bottom: 12px; }
.footer-contact address { margin-bottom: 8px; font-style: normal; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 58px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); font-size: .82rem; }
.footer-bottom p { margin: 0; }

.error-page { display: grid; min-height: 100vh; place-items: center; padding: 40px; background: var(--ice); text-align: center; }
.error-page > div { max-width: 760px; }
.error-page p:not(.eyebrow) { margin: 24px auto; color: var(--muted); }

@media (max-width: 1180px) {
  .header-inner { gap: 18px; }
  .brand img { width: 145px; }
  .site-navigation a, .site-navigation .separator { padding-inline: 8px; font-size: 1rem; }
  .header-cta { display: none; }
}

@media (max-width: 1049px) {
  .site-header { height: 90px; }
  .header-inner { justify-content: space-between; }
  .brand img { width: 135px; height: 78px; }
  .header-cta { display: none; }
  .nav-toggle {
    display: grid;
    width: 48px; height: 44px;
    padding: 11px;
    background: var(--navy);
    border: 0;
    border-radius: 8px;
  }
  .nav-toggle span:not(.visually-hidden) { display: block; height: 2px; margin: 3px 0; background: #fff; }
  .site-navigation {
    position: fixed;
    top: 90px; left: 0; right: 0; bottom: 0;
    display: block;
    padding: 28px 24px 60px;
    overflow-y: auto;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .site-navigation.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-navigation .mod-menu, .site-navigation .mod-list { display: grid; gap: 4px; }
  .site-navigation a, .site-navigation .separator { min-height: 54px; padding: 0 10px; font-size: 1.15rem; border-bottom: 1px solid var(--line); }
  .site-navigation > .mod-menu > li > a::after, .site-navigation > .mod-list > li > a::after { display: none; }
  .site-navigation li > ul { position: static; display: grid; min-width: 0; padding: 4px 0 12px 18px; box-shadow: none; border: 0; opacity: 1; visibility: visible; transform: none; }
  .site-navigation li > ul a { min-height: 42px; font-size: .9rem; }
  .home-hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 560px; }
  .hero-visual > img { height: 560px; }
  .split, .page-intro-grid, .contact-grid, .president-grid { grid-template-columns: 1fr; }
  .president-grid { gap: 42px; }
  .president-portrait { max-width: 490px; width: 100%; margin-inline: auto; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .method-grid { gap: 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 76px 0; }
  .home-hero { padding: 52px 0; }
  .home-hero::before { width: 100%; }
  .hero-grid { gap: 38px; }
  .hero-copy h1 { font-size: clamp(3rem, 13vw, 4.3rem); }
  .hero-visual { min-height: 450px; }
  .hero-visual > img { height: 450px; border-radius: 100px 18px 80px 18px; }
  .hero-float-card { left: 12px; bottom: 22px; }
  .button-row { display: grid; }
  .button { width: 100%; }
  .split { gap: 44px; }
  .about-media { padding: 0 36px 52px 0; }
  .experience-badge { width: 142px; height: 142px; padding: 16px; }
  .experience-badge strong { font-size: 2rem; }
  .service-band { grid-template-columns: 1fr; }
  .service-band-copy { padding: 70px 24px; }
  .service-band-media { min-height: 420px; }
  .expertise-grid, .news-grid, .method-grid, .gallery-grid, .value-grid, .capability-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact { padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .fact:last-child { border-bottom: 0; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card, .project-card:first-child { grid-row: auto; min-height: 420px; }
  .method-card { padding-left: 22px; }
  .method-number { font-size: 3.7rem; }
  .cta-inner { display: grid; }
  .page-hero { padding: 70px 0; }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-hero-copy { padding: 70px 24px; }
  .detail-hero-media img { min-height: 420px; }
  .contact-panel { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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