:root {
  --ink: #245a8a;
  --ink-deep: #112a42;
  --ink-soft: #3e739f;
  --orange: #f47d20;
  --green: #59b947;
  --plum: #8f2d82;
  --red: #ef4a26;
  --cream: #f5f1ea;
  --sand: #e7dfd1;
  --paper: #fffdf8;
  --mist: #edf3f8;
  --text: #203344;
  --muted: #5b6c79;
  --line: rgba(17, 42, 66, 0.12);
  --line-strong: rgba(17, 42, 66, 0.2);
  --shadow-sm: 0 12px 30px rgba(17, 42, 66, 0.08);
  --shadow-md: 0 20px 60px rgba(17, 42, 66, 0.12);
  --shadow-lg: 0 28px 90px rgba(17, 42, 66, 0.16);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(89, 185, 71, 0.06), transparent 22%),
    radial-gradient(circle at top right, rgba(244, 125, 32, 0.08), transparent 28%),
    linear-gradient(180deg, #fbf9f5 0%, #f4efe7 100%);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.brand-rail {
  position: fixed;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--plum) 0%, #da2b9c 22%, var(--orange) 52%, var(--red) 74%, var(--green) 100%);
  z-index: 200;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 150;
  backdrop-filter: blur(18px);
  background: rgba(255, 252, 246, 0.86);
  border-bottom: 1px solid rgba(17, 42, 66, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 28px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: min(100%, 275px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-deep);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transition: width 0.24s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #dd6621);
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(244, 125, 32, 0.26);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink-deep);
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 64px 0 88px;
  overflow: hidden;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 125, 32, 0.16), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(89, 185, 71, 0.14), transparent 22%),
    linear-gradient(145deg, rgba(17, 42, 66, 0.97), rgba(36, 90, 138, 0.95));
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 52px;
  align-items: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.section-heading .section-kicker,
.section-about .section-kicker,
.section-advantage .section-kicker,
.section-contact .section-kicker {
  color: var(--ink);
}

.hero h1,
.section h2,
.closing-inner h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: #fff;
  max-width: 11ch;
}

.hero h1 span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.6rem, 2.9vw, 2.45rem);
  line-height: 1.08;
}

.hero-text {
  max-width: 62ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #de6721);
  color: #fff;
  box-shadow: 0 18px 38px rgba(244, 125, 32, 0.28);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-dark {
  color: var(--ink-deep);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
}

.section-contact .btn-secondary,
.closing-band .btn-secondary {
  color: var(--ink-deep);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.64);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
  max-width: 640px;
}

.metric-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.metric-card strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
}

.metric-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.hero-stack {
  position: relative;
  min-height: 660px;
}

.hero-panel {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-lg);
}

.hero-panel img,
.about-photo-card img,
.board-photo img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel-main {
  inset: 48px 0 120px 88px;
}

.hero-panel-top {
  top: 0;
  left: 0;
  width: 230px;
  height: 230px;
  transform: rotate(-8deg);
}

.hero-panel-bottom {
  right: 24px;
  bottom: 0;
  width: 250px;
  height: 220px;
  transform: rotate(6deg);
}

.panel-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(17, 42, 66, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  left: 24px;
  bottom: 46px;
  width: min(100%, 320px);
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.96);
  border: 1px solid rgba(17, 42, 66, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-note-mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(36, 90, 138, 0.1), rgba(244, 125, 32, 0.08));
}

.hero-note-mark img {
  width: 38px;
}

.hero-note span {
  display: block;
  color: var(--ink-deep);
  font-size: 0.94rem;
  line-height: 1.65;
  font-weight: 700;
}

.overview-strip {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.overview-card {
  padding: 24px;
  background: rgba(255, 252, 246, 0.94);
  border: 1px solid rgba(17, 42, 66, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.overview-label,
.contact-card-label {
  display: inline-block;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overview-card p {
  margin: 10px 0 0;
  color: var(--text);
  line-height: 1.7;
}

.overview-card a {
  color: var(--ink-deep);
  font-weight: 700;
}

.section {
  padding: 110px 0;
}

.section h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.98;
  color: var(--ink-deep);
  max-width: 15ch;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-heading .section-kicker {
  justify-content: center;
}

.section-heading p,
.about-copy p,
.advantage-list p,
.contact-copy p,
.about-brand-card p,
.contact-panel-head p,
.site-footer p,
.closing-inner p {
  color: var(--muted);
  line-height: 1.9;
}

.section-about {
  position: relative;
}

.about-layout,
.advantage-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  align-items: start;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.value-card,
.team-card,
.contact-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 42, 66, 0.08);
  box-shadow: var(--shadow-sm);
}

.value-card h3,
.service-card h3,
.advantage-list h3,
.contact-card h3 {
  margin: 0 0 10px;
  color: var(--ink-deep);
  font-size: 1.06rem;
}

.value-card p,
.service-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-visual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.about-brand-card {
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(236, 244, 250, 0.92));
  border: 1px solid rgba(17, 42, 66, 0.08);
  box-shadow: var(--shadow-md);
}

.about-wordmark {
  width: min(100%, 340px);
  margin-bottom: 14px;
}

.about-photo-card {
  min-height: 270px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.about-photo-card.accent {
  transform: translateY(36px);
}

.section-services {
  position: relative;
  background:
    linear-gradient(180deg, rgba(17, 42, 66, 0.02), transparent 14%),
    linear-gradient(180deg, #f9f5ed 0%, #f5efe6 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 42, 66, 0.08);
  box-shadow: var(--shadow-sm);
}

.service-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--ink-deep));
}

.service-card ul,
.team-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.team-card li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
  color: var(--text);
  line-height: 1.6;
}

.service-card li::before,
.team-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.section-advantage {
  background:
    radial-gradient(circle at left center, rgba(89, 185, 71, 0.08), transparent 20%),
    linear-gradient(180deg, #f6f3ed 0%, #f9f7f2 100%);
}

.advantage-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.advantage-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 42, 66, 0.08);
}

.advantage-list span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(36, 90, 138, 0.12), rgba(244, 125, 32, 0.12));
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.advantage-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.board-card {
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 245, 249, 0.92));
  border: 1px solid rgba(17, 42, 66, 0.08);
  box-shadow: var(--shadow-sm);
}

.board-card strong {
  display: block;
  color: var(--ink-deep);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
}

.board-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.board-photo {
  grid-column: 1 / -1;
  min-height: 360px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
}

.section-team {
  background:
    linear-gradient(180deg, rgba(17, 42, 66, 0.03), transparent 14%),
    linear-gradient(180deg, #faf7f2 0%, #f4efe8 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  position: relative;
  min-height: 100%;
}

.team-role {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-role.partner {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--ink-deep));
}

.team-role.associate {
  color: var(--ink-deep);
  background: rgba(36, 90, 138, 0.1);
}

.team-card h3 {
  margin: 18px 0 10px;
  color: var(--ink-deep);
  font-size: 1.42rem;
}

.team-qualifications {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-insights {
  background:
    radial-gradient(circle at top left, rgba(244, 125, 32, 0.08), transparent 22%),
    linear-gradient(180deg, #f8f4ed 0%, #f5efe6 100%);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 42, 66, 0.08);
  box-shadow: var(--shadow-sm);
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.insight-meta span,
.insight-meta time {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-meta span {
  color: var(--orange);
}

.insight-meta time {
  color: var(--muted);
}

.insight-card h3 {
  margin: 0;
  color: var(--ink-deep);
  font-size: 1.28rem;
  line-height: 1.35;
}

.insight-card p {
  margin: 16px 0 20px;
  color: var(--muted);
  line-height: 1.8;
}

.insight-card a {
  margin-top: auto;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.insight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.section-gallery {
  background:
    radial-gradient(circle at top right, rgba(244, 125, 32, 0.08), transparent 18%),
    #f8f4ed;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(17, 42, 66, 0.72) 100%);
}

.gallery-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  text-align: left;
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card-tall {
  grid-row: span 2;
}

.section-contact {
  background:
    linear-gradient(180deg, rgba(17, 42, 66, 0.02), transparent 18%),
    linear-gradient(180deg, #f6f2eb 0%, #f4eee5 100%);
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-panel {
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(17, 42, 66, 0.98), rgba(36, 90, 138, 0.94));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-panel-head img {
  width: min(100%, 320px);
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
}

.contact-panel-head p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-links a {
  display: block;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-links span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-links strong {
  display: block;
  margin-top: 7px;
  font-size: 1.02rem;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.closing-band {
  padding: 0 0 100px;
}

.closing-inner {
  display: grid;
  gap: 18px;
  padding: 38px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(17, 42, 66, 0.96), rgba(36, 90, 138, 0.92)),
    var(--ink-deep);
  box-shadow: var(--shadow-lg);
}

.closing-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.closing-inner h2 {
  max-width: 18ch;
  color: #fff;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 0.98;
}

.closing-inner .btn {
  justify-self: start;
}

.site-footer {
  padding: 0 0 40px;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-wordmark {
  width: min(100%, 240px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
}

.lightbox {
  width: min(calc(100% - 30px), 960px);
  padding: 18px;
  border: 0;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.lightbox::backdrop {
  background: rgba(17, 42, 66, 0.74);
  backdrop-filter: blur(6px);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 18px;
  background: #f2f2f2;
}

.lightbox-caption {
  margin: 12px 4px 0;
  color: var(--text);
  font-weight: 700;
}

.lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0 0 12px auto;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-deep);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 1100px) {
  .hero-layout,
  .about-layout,
  .advantage-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    min-height: 560px;
  }

  .hero-panel-main {
    inset: 48px 24px 120px 96px;
  }

  .service-grid,
  .team-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 252, 246, 0.98);
    border: 1px solid rgba(17, 42, 66, 0.08);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 8px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-metrics,
  .overview-grid,
  .value-grid,
  .service-grid,
  .team-grid,
  .insight-grid,
  .gallery-grid,
  .advantage-board {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-card-wide,
  .gallery-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-photo-card.accent {
    transform: none;
  }

  .hero-stack {
    min-height: unset;
    display: grid;
    gap: 16px;
  }

  .hero-panel,
  .hero-note {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    width: auto;
    height: auto;
    transform: none;
  }

  .hero-panel-main {
    aspect-ratio: 4 / 4.2;
  }

  .hero-panel-top,
  .hero-panel-bottom {
    aspect-ratio: 4 / 3;
  }

  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 80px;
  }

  .brand img {
    width: 220px;
  }

  .section,
  .closing-band {
    padding-top: 82px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .section h2,
  .closing-inner h2 {
    font-size: clamp(2.1rem, 12vw, 3rem);
    max-width: none;
  }

  .hero-actions,
  .contact-cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .metric-card,
  .overview-card,
  .value-card,
  .service-card,
  .team-card,
  .contact-card,
  .advantage-list article,
  .board-card,
  .contact-panel,
  .closing-inner {
    border-radius: 22px;
  }

  .lightbox {
    padding: 14px;
  }
}


/* HORIZONTAL NAVIGATION BAR FIX */
@media (min-width: 992px) {
  nav#navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 5.5% !important;
    height: 70px !important;
    background: #ffffff !important;
    border-bottom: 1px solid #E2E8F0 !important;
  }

  ul.nav-links, .nav-links, .site-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  ul.nav-links li, .nav-links li, .site-nav li {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  ul.nav-links a, .nav-links a, .site-nav a {
    text-decoration: none !important;
    color: #152A4E !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    transition: color 0.2s ease !important;
  }

  ul.nav-links a:hover, .nav-links a:hover, .site-nav a:hover {
    color: #0284C7 !important;
  }

  ul.nav-links a.nav-cta, .nav-links a.nav-cta {
    background: #152A4E !important;
    color: #ffffff !important;
    padding: 8px 18px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
  }
}


/* RESTORE FULL COVER PHOTO CARDS WITHOUT WHITE GAP */
.about-main-photo img,
.about-side-photo img,
.hero-photo-main img,
.hero-photo-card img,
.gallery-card img,
.tc-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
  display: block !important;
}

.about-main-photo,
.about-side-photo,
.hero-photo-main,
.hero-photo-card,
.gallery-card {
  height: 100% !important;
  overflow: hidden !important;
}

/* ABOUT SECTION PHOTO STACK FULL COVER FIX */
.about-main-photo,
.about-side-photo {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 24px !important;
}

.about-main-photo img,
.about-side-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}


/* PERFECT ABOUT VISUAL STACK PHOTO FIT */
.about-visual-stack {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.about-main-photo {
  grid-row: span 2 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  position: relative !important;
  height: 100% !important;
  min-height: 380px !important;
  background: #0F172A !important;
}

.about-side-photo {
  border-radius: 22px !important;
  overflow: hidden !important;
  position: relative !important;
  height: 180px !important;
  background: #0F172A !important;
}

.about-detail-card {
  border-radius: 22px !important;
  overflow: hidden !important;
  position: relative !important;
  height: 180px !important;
  background: #152A4E !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

.about-main-photo img,
.about-side-photo img,
.about-detail-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
}

.about-detail-card .tagline {
  position: relative !important;
  z-index: 2 !important;
  padding: 14px 18px !important;
  background: linear-gradient(180deg, transparent 0%, rgba(15,23,42,0.9) 100%) !important;
  color: #ffffff !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
}


/* WIDE & ELEGANT ABOUT US PHOTO GRID (NO SQUISHED STRIPS) */
.about-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px !important;
  align-items: center !important;
}

.about-visual {
  width: 100% !important;
  max-width: 100% !important;
}

.about-visual-stack {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.about-main-photo {
  grid-row: span 2 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  position: relative !important;
  min-height: 420px !important;
  box-shadow: 0 12px 32px rgba(21,42,78,0.12) !important;
}

.about-side-photo {
  border-radius: 18px !important;
  overflow: hidden !important;
  position: relative !important;
  min-height: 200px !important;
  box-shadow: 0 8px 24px rgba(21,42,78,0.08) !important;
}

.about-detail-card {
  border-radius: 18px !important;
  overflow: hidden !important;
  position: relative !important;
  min-height: 200px !important;
  box-shadow: 0 8px 24px rgba(21,42,78,0.08) !important;
  background: #152A4E !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

.about-main-photo img,
.about-side-photo img,
.about-detail-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* Keep the homepage About collage aligned across desktop, tablet and mobile. */
#about .about-grid > * {
  min-width: 0;
}

#about .about-visual {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
}

#about .about-visual-stack {
  width: 100% !important;
  min-width: 0;
}

@media (max-width: 1100px) {
  #about .about-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 44px !important;
  }

  #about .about-visual {
    width: min(100%, 760px) !important;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  #about .about-visual {
    padding-bottom: 0;
  }

  #about .about-visual-stack {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  #about .about-main-photo {
    grid-row: auto !important;
    height: 320px !important;
    min-height: 320px !important;
  }

  #about .about-side-photo,
  #about .about-detail-card {
    height: 220px !important;
    min-height: 220px !important;
  }

  #about .about-yr-card {
    position: static;
    width: min(100%, 300px);
    margin: 18px auto 0;
  }
}

@media (min-width: 1101px) {
  #about .about-grid {
    align-items: stretch !important;
  }

  #about .about-visual {
    align-self: stretch;
    height: auto !important;
    margin-top: 75px;
    padding-bottom: 104px;
  }

  #about .about-visual-stack {
    height: 100% !important;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  #about .about-main-photo,
  #about .about-side-photo,
  #about .about-detail-card {
    height: auto !important;
    min-height: 0 !important;
  }

  #about .about-yr-card {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 86px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: left;
  }

  #about .about-yr-card .yr {
    flex: 0 0 auto;
    font-size: 40px;
  }

  #about .about-yr-card .yr-l {
    max-width: 220px;
    margin-top: 0;
  }
}

/* Shared site footer */
body > footer {
  position: relative;
  padding: 64px 5.5% 28px;
  color: #ffffff;
  background: #071324;
  border-top: 4px solid var(--orange);
}

body > footer .fgrid {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) repeat(3, minmax(150px, 1fr));
  gap: 44px;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body > footer .f-brand { min-width: 0; }
body > footer .f-logo-row { margin-bottom: 20px; }

body > footer .f-logo-row img {
  width: min(100%, 300px);
  height: 72px;
  padding: 9px 16px;
  object-fit: contain;
  object-position: left center;
  background: #ffffff;
  border-radius: 6px;
}

body > footer .f-brand p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

body > footer .f-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

body > footer .fsb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body > footer .fsb:hover {
  background: rgba(244, 125, 32, 0.22);
  border-color: rgba(244, 125, 32, 0.7);
  transform: translateY(-2px);
}

body > footer .f-color-bar {
  width: min(100%, 390px);
  height: 5px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--red), var(--plum), var(--green), var(--orange));
  border-radius: 3px;
}

body > footer .fcol h4 {
  margin: 2px 0 20px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

body > footer .fcol h4::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 9px;
  background: var(--orange);
}

body > footer .fcol ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body > footer .fcol li { margin: 0; padding: 0; }

body > footer .fcol a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

body > footer .fcol a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

body > footer .fbot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 28px;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12.5px;
  line-height: 1.6;
}

body > footer .fbot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

body > footer .fbot a { color: rgba(255, 255, 255, 0.58); }
body > footer .fbot a:hover { color: var(--orange); }

@media (max-width: 980px) {
  body > footer .fgrid {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  }

  body > footer .fcol:last-child { grid-column: 2 / -1; }
}

@media (max-width: 700px) {
  body > footer { padding: 48px 24px 24px; }

  body > footer .fgrid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 34px;
  }

  body > footer .fcol:last-child { grid-column: auto; }

  body > footer .f-logo-row img {
    width: min(100%, 280px);
    height: 68px;
  }

  body > footer .fbot {
    align-items: flex-start;
    flex-direction: column;
  }
}
