:root {
  --bg: #edf2f6;
  --white: #ffffff;
  --text: #20354d;
  --muted: #6a7d90;
  --line: #d8e1e9;
  --primary: #55799b;
  --primary-dark: #294661;
  --soft: #f5f8fb;
  --hero-fade-target: #e7edf3;
  --hero: linear-gradient(90deg, rgba(18, 33, 48, 0.9) 0%, rgba(32, 52, 74, 0.72) 48%, rgba(214, 223, 233, 0.2) 100%);
  --shadow: 0 10px 28px rgba(28, 42, 58, 0.05);
  --card-shadow: 0 14px 30px rgba(28, 42, 58, 0.06);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eff3f7 0%, #e8eef4 100%);
}

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

img,
video {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.site-header .container {
  padding: 0;
}

body:not(.inner-page) .site-header {
  margin-bottom: -118px;
}

.header-bar {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 18px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.7) 0%, rgba(229, 237, 246, 0.58) 100%);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow:
    0 16px 34px rgba(27, 44, 64, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-mark {
  width: 68px;
  height: 68px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(229, 237, 246, 0.18) 100%);
  box-shadow: 0 10px 24px rgba(32, 53, 77, 0.08);
  backdrop-filter: blur(12px) saturate(135%);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong,
.brand-copy small,
.nav a,
.section-title span,
.service-head strong,
.crew-callout span,
.inner-hero-box span,
.team-card-simple span {
  font-family: "Sora", sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
  color: #213a56;
}

.brand-copy small {
  font-size: 0.82rem;
  color: rgba(32, 53, 77, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav a {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--primary-dark);
}

.nav a:not(.nav-cta):hover {
  transform: translateY(-1px);
}

.nav a.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #5f87ad 0%, #294661 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 24px rgba(41, 70, 97, 0.22);
}

.nav a.nav-cta:hover,
.nav a.nav-cta.is-active {
  color: #ffffff;
  transform: translateY(-1px);
  background: linear-gradient(135deg, #6e96bc 0%, #335271 100%);
  box-shadow: 0 16px 28px rgba(41, 70, 97, 0.26);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, rgba(67, 104, 141, 0.92) 0%, rgba(41, 70, 97, 0.96) 100%);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  box-shadow: 0 10px 22px rgba(32, 53, 77, 0.18);
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  transition: 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  padding: 0;
  position: relative;
  z-index: 0;
  background: var(--hero-fade-target);
}

.hero-banner {
  min-height: 75vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  position: relative;
  isolation: isolate;
  background: #cfd9e3 url("assets/hero-servis.png") center bottom / cover no-repeat;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  padding-bottom: 56px;
}

body:not(.inner-page) .hero-banner {
  padding-top: 104px;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 28, 40, 0.9) 0%, rgba(22, 38, 55, 0.84) 18%, rgba(33, 55, 76, 0.64) 36%, rgba(47, 70, 93, 0.28) 58%, rgba(47, 70, 93, 0.06) 100%),
    linear-gradient(180deg, rgba(15, 25, 35, 0.05) 0%, rgba(15, 25, 35, 0.02) 28%, rgba(231, 237, 243, 0) 64%, rgba(231, 237, 243, 0.16) 84%, rgba(231, 237, 243, 0.34) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(
    to bottom,
    rgba(231, 237, 243, 0) 0%,
    rgba(231, 237, 243, 0.08) 24%,
    rgba(231, 237, 243, 0.22) 52%,
    rgba(231, 237, 243, 0.56) 78%,
    rgba(231, 237, 243, 1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  width: 100%;
  max-width: 720px;
  padding: 86px 56px 72px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

body:not(.inner-page) .hero-content {
  padding-top: 116px;
}

.hero-label,
.media-title span {
  margin: 0 0 16px;
  color: rgba(220, 229, 239, 0.84);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-content h1,
.section-title h2,
.crew-callout h2,
.inner-hero-box h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-content h1 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 6px 24px rgba(8, 18, 31, 0.18);
}

.hero-text,
.section-title p,
.content-card p,
.mini-card p,
.service-card p,
.image-card p,
.crew-callout p,
.contact-card p,
.team-card-simple p,
.inner-hero-box p {
  color: rgba(255, 255, 255, 0.86);
}

.hero-text {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.2s ease;
}

.button.primary {
  color: #fff;
  background: var(--primary-dark);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(233, 241, 248, 0.62);
  background: rgba(24, 48, 75, 0.18);
}

.button:hover {
  transform: translateY(-1px);
}

.content-card,
.mini-card,
.service-card,
.media-card,
.crew-callout,
.contact-card,
.inner-hero-box,
.team-card-simple {
  background: #ffffff;
  border: 1px solid rgba(32, 53, 77, 0.06);
  box-shadow: var(--card-shadow);
}

.section-title span,
.crew-callout span,
.inner-hero-box span,
.team-card-simple span {
  display: inline-block;
  margin-bottom: 10px;
  color: #7d8792;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content-card h3,
.mini-card h3,
.service-card h3,
.media-title h3,
.contact-card h3,
.team-card-simple h2 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.4;
}

.content-card p,
.mini-card p,
.service-card p,
.image-card p,
.contact-card p,
.team-card-simple p {
  margin: 0;
  color: var(--muted);
}

.section {
  position: relative;
  padding: 36px 0 72px;
  background: linear-gradient(180deg, #f2f6f9 0%, #ebf1f6 100%);
}

.section > .container,
.site-footer > .container {
  position: relative;
  z-index: 1;
}

.about-section {
  z-index: 1;
  margin-top: 0;
  padding-top: 4px;
  background-color: var(--hero-fade-target);
  padding-bottom: 10px;
  background:
    radial-gradient(circle at top left, rgba(112, 136, 158, 0.05), transparent 24%),
    radial-gradient(circle at top right, rgba(132, 156, 178, 0.035), transparent 22%),
    linear-gradient(180deg, var(--hero-fade-target) 0%, #eef3f7 24%, #ebf1f6 52%, #f2f6f9 100%);
}

.about-section::before,
.contact-section::before,
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -72px;
  height: 104px;
  pointer-events: none;
  z-index: 0;
}

.about-section::before {
  display: none;
}

.section-alt {
  background: linear-gradient(180deg, #ebf1f6 0%, #f2f6f9 100%);
  border-top: 0;
  border-bottom: 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-title h2,
.crew-callout h2,
.inner-hero-box h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  color: var(--text);
}

.section-title p,
.crew-callout p,
.inner-hero-box p {
  margin: 14px 0 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.about-section .section-title {
  max-width: 860px;
  margin: 0 auto 20px;
  padding-top: 4px;
  text-align: center;
}

.about-section .section-title h2 {
  font-size: clamp(1.7rem, 2.65vw, 2.35rem);
  color: var(--primary-dark);
}

.about-section .section-title p {
  max-width: 760px;
  margin: 12px auto 0;
  color: #747e89;
}

.content-card,
.service-card,
.crew-callout,
.contact-card,
.inner-hero-box {
  padding: 28px;
}

.stack-list {
  display: grid;
  gap: 16px;
}

.about-main-card {
  padding: 22px 22px 20px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(32, 53, 77, 0.06);
  box-shadow: var(--card-shadow);
}

.about-main-card p {
  color: #6d7782;
  line-height: 1.68;
}

.about-check-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.about-check-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(32, 53, 77, 0.06);
  box-shadow: 0 8px 18px rgba(45, 47, 44, 0.04);
}

.about-check-icon,
.about-feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #edf4fa;
  color: #355a80;
  border: 1px solid rgba(83, 102, 123, 0.12);
  box-shadow: 0 8px 18px rgba(45, 47, 44, 0.06);
}

.about-check-icon svg,
.about-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-check-item h4 {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: #284560;
}

.about-check-item p {
  margin: 0;
  color: #72808d;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.about-feature-card {
  padding: 18px 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(32, 53, 77, 0.06);
  box-shadow: var(--card-shadow);
}

.about-feature-card h3 {
  margin: 12px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: #284560;
}

.about-feature-card p {
  margin: 0;
  color: #72808d;
  line-height: 1.6;
}

.about-media-block {
  position: relative;
  margin-top: 28px;
  padding: 30px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(32, 53, 77, 0.06);
  box-shadow: var(--card-shadow);
}

.about-media-block::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -56px;
  height: 112px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(238, 243, 248, 0.62) 54%, rgba(235, 241, 246, 1) 100%);
  pointer-events: none;
  z-index: 0;
}

.about-media-head {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.about-media-head span {
  display: inline-block;
  margin-bottom: 10px;
  color: #7d8792;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Sora", sans-serif;
}

.about-media-head h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  color: #284560;
}

.about-media-head p {
  margin: 12px 0 0;
  color: #72808d;
  line-height: 1.7;
}

.service-showcase {
  display: grid;
  gap: 18px;
}

.service-media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.service-video-panel,
.service-gallery-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(32, 53, 77, 0.06);
  box-shadow: var(--card-shadow);
}

.service-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-panel-head span {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  color: #284560;
}

.gallery-head {
  margin-bottom: 14px;
}

.service-video-frame,
.gallery-feature {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #f4f8fb 0%, #eaf1f7 100%);
  box-shadow: inset 0 0 0 1px rgba(32, 53, 77, 0.06);
}

.service-video-frame video,
.gallery-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #dce6f0;
}

.service-video-frame {
  margin-top: 14px;
  flex: 1;
}

.service-video-frame video {
  height: 100%;
}

.gallery-open-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(134, 132, 126, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #5d6c7b;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-feature {
  width: 100%;
  padding: 0;
  cursor: pointer;
  margin-bottom: 12px;
  touch-action: pan-y;
}

.gallery-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
}

.gallery-thumb {
  padding: 0;
  border: 1px solid rgba(145, 141, 133, 0.18);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb:nth-child(n + 4) {
  display: none;
}

.gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eef4fa;
}

.gallery-thumb:hover,
.gallery-thumb.is-active,
.gallery-feature:hover,
.gallery-open-button:hover {
  transform: translateY(-2px);
  border-color: rgba(112, 123, 137, 0.22);
  box-shadow: 0 16px 28px rgba(45, 47, 44, 0.07);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(10, 14, 22, 0.84);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  touch-action: none;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal-close,
.gallery-modal-nav {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.gallery-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
}

.gallery-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.gallery-modal-nav.prev {
  left: 28px;
}

.gallery-modal-nav.next {
  right: 28px;
}

.gallery-modal-body {
  width: min(1500px, calc(100vw - 56px));
  height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  touch-action: none;
  overscroll-behavior: contain;
}

.gallery-modal-body img {
  max-width: 100%;
  max-height: calc(100vh - 96px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
}

.gallery-modal-meta {
  min-width: 78px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: "Sora", sans-serif;
  backdrop-filter: blur(8px);
}

body.gallery-modal-open .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-24px);
}

.mini-card {
  padding: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card a,
.contact-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary-dark);
  font-weight: 700;
}

.service-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.service-head strong {
  color: #7d8792;
  font-size: 1.2rem;
}

.media-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin-top: 28px;
}

#hizmetlerimiz .media-layout {
  margin-top: 0;
}

.media-card {
  padding: 22px;
}

.video-card video,
.image-card img {
  width: 100%;
  border: 1px solid var(--line);
  margin-top: 14px;
}

.crew-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 244, 239, 0.98) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-card p {
  color: var(--text);
}

.contact-section {
  position: relative;
  z-index: 1;
  margin-top: -28px;
  padding-top: 0;
  padding-bottom: 54px;
  background:
    radial-gradient(circle at top left, rgba(118, 144, 172, 0.04), transparent 24%),
    linear-gradient(180deg, #eef3f7 0%, #ebf1f6 40%, #f2f6f9 100%);
  border-top: 0;
}

.contact-section::before {
  top: -56px;
  height: 96px;
  background: linear-gradient(180deg, rgba(238, 243, 247, 0) 0%, rgba(238, 243, 247, 0.78) 56%, rgba(238, 243, 247, 1) 100%);
}

.contact-title {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.contact-title h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  color: var(--primary-dark);
}

.contact-title p {
  max-width: 720px;
  margin: 16px auto 0;
  color: #72808d;
}

.contact-shell {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 36px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid rgba(32, 53, 77, 0.08);
  box-shadow: 0 18px 44px rgba(45, 47, 44, 0.07);
}

.contact-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(112, 146, 178, 0.1) 0%, rgba(112, 146, 178, 0) 100%);
  pointer-events: none;
}

.contact-shell::after {
  content: "";
  position: absolute;
  top: -70px;
  left: 50%;
  width: 360px;
  height: 180px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(130, 166, 198, 0.14) 0%, rgba(130, 166, 198, 0) 72%);
  pointer-events: none;
}

.contact-shell-intro {
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  text-align: center;
}

.contact-shell-copy {
  max-width: 860px;
}

.contact-shell-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: #7d8792;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Sora", sans-serif;
}

.contact-shell-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--primary-dark);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.contact-shell-copy p {
  max-width: 700px;
  margin: 16px auto 0;
  color: #72808d;
  line-height: 1.7;
}

.contact-badge {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #f1f6fb 0%, #e8f0f8 100%);
  border: 1px solid rgba(88, 120, 149, 0.12);
  color: #4e6a86;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(45, 47, 44, 0.07);
}

.contact-grid-premium {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.contact-card-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: center;
  align-items: center;
  padding: 22px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(32, 53, 77, 0.08);
  box-shadow: 0 12px 26px rgba(45, 47, 44, 0.05);
  text-align: center;
}

.contact-card-premium h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.contact-card-premium p {
  margin: 0;
  color: #6d7c89;
  line-height: 1.65;
}

.contact-card-premium a {
  display: inline-block;
  margin-top: 10px;
  color: #5c7085;
  font-weight: 700;
}

.contact-card-premium > div:last-child {
  display: grid;
  justify-items: center;
}

.contact-icon-box {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #557391 0%, #294661 100%);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(41, 70, 97, 0.18);
}

.contact-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  position: relative;
  padding: 28px 0;
  background: linear-gradient(180deg, #eef3f7 0%, #e8eef4 100%);
  border-top: 0;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.floating-contact__link {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(24, 40, 61, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.floating-contact__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(24, 40, 61, 0.24);
  filter: saturate(1.05);
}

.floating-contact__link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-contact__link--phone {
  background: linear-gradient(180deg, #2e5f91 0%, #1f446a 100%);
}

.floating-contact__link--whatsapp {
  background: linear-gradient(180deg, #25d366 0%, #159c49 100%);
}

.site-footer::before {
  background: linear-gradient(180deg, rgba(235, 241, 246, 0) 0%, rgba(235, 241, 246, 0.76) 56%, rgba(235, 241, 246, 1) 100%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-inner nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.inner-page {
  background: linear-gradient(180deg, #eef3f7 0%, #e8eef4 100%);
}

.inner-hero-simple {
  padding: 20px 0 6px;
  background: transparent;
}

.team-hero-section {
  padding-bottom: 0;
}

.inner-hero-box {
  max-width: 900px;
  background: #ffffff;
}

.team-hero {
  display: block;
  padding: 8px 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.team-hero-shell {
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
  padding: 22px 28px 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 253, 0.98) 100%);
  border: 1px solid rgba(32, 53, 77, 0.06);
  box-shadow: 0 12px 26px rgba(45, 47, 44, 0.05);
  text-align: center;
}

.team-hero-shell::before {
  content: "";
  position: absolute;
  top: -76px;
  left: 50%;
  width: 320px;
  height: 160px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(130, 166, 198, 0.12) 0%, rgba(130, 166, 198, 0) 72%);
  pointer-events: none;
}

.team-hero-shell::after {
  display: none;
}

.team-hero-copy span,
.team-section-head span,
.team-card-modern span,
.team-card-compact span {
  display: inline-block;
  margin-bottom: 12px;
  color: #7d8792;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Sora", sans-serif;
}

.team-hero-copy h1,
.team-section-head h2,
.team-lead-copy h2,
.team-side-panel h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: #17365c;
  line-height: 1.15;
}

.team-hero-copy h1 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  max-width: none;
}

.team-hero-copy p {
  max-width: 680px;
  margin: 10px auto 0;
  color: #72808d;
  line-height: 1.65;
}

.team-page {
  display: grid;
  gap: 12px;
}

.team-section-head {
  max-width: 680px;
}

.team-section {
  margin-top: -6px;
  padding-top: 0;
  background: linear-gradient(180deg, #eef3f7 0%, #e8eef4 100%);
}

.team-lead-card {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 22px;
  border-radius: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(32, 53, 77, 0.08);
  box-shadow: 0 18px 38px rgba(45, 47, 44, 0.06);
  text-align: left;
}

.team-lead-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #edf4fa 0%, #e5eef7 100%);
}

.team-lead-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(20, 39, 62, 0) 0%, rgba(20, 39, 62, 0.28) 100%);
  pointer-events: none;
}

.team-lead-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.team-lead-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f1f6fb 0%, #e8f0f8 100%);
  border: 1px solid rgba(88, 120, 149, 0.12);
  color: #4e6a86;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Sora", sans-serif;
}

.team-lead-copy h2 {
  margin: 16px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 2.35rem);
  color: #17365c;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.team-lead-copy p {
  max-width: 54ch;
  margin: 0;
  color: #6f7d8a;
  line-height: 1.8;
}

.team-lead-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.team-lead-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef4fa;
  border: 1px solid rgba(32, 53, 77, 0.08);
  color: #5f7080;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.team-grid-modern,
.team-grid-compact {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.team-grid-compact {
  grid-template-columns: repeat(5, minmax(160px, 188px));
  justify-content: center;
  gap: 12px;
}

.team-card-modern,
.team-card-compact {
  position: relative;
  border: 1px solid rgba(32, 53, 77, 0.06);
  box-shadow: 0 12px 24px rgba(24, 40, 61, 0.04);
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-card-compact {
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(24, 40, 61, 0.03);
  background: #ffffff;
}

.team-card-modern::before,
.team-card-compact::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(91, 116, 140, 0.95) 0%, rgba(41, 70, 97, 0.85) 100%);
  z-index: 1;
}

.team-card-compact::before {
  height: 2px;
}

.team-card-modern:hover,
.team-card-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(24, 40, 61, 0.07);
  border-color: rgba(42, 87, 127, 0.12);
}

.team-card-compact:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(24, 40, 61, 0.04);
}

.team-card-modern img,
.team-card-compact img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  object-position: center;
  background: #eee7de;
}

.team-card-compact img {
  aspect-ratio: 1 / 0.82;
}

.team-card-modern div,
.team-card-compact div {
  padding: 14px 14px 16px;
}

.team-card-compact div {
  display: grid;
  gap: 4px;
  padding: 9px 10px 11px;
  text-align: center;
}

.team-card-modern h3,
.team-card-compact h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: #17365c;
  line-height: 1.35;
}

.team-card-compact h3 {
  font-size: 0.88rem;
  line-height: 1.22;
}

.team-card-compact span {
  margin-bottom: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #7d8792;
}

.team-card-compact span {
  margin-bottom: 6px;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: #828b96;
}

.team-card-modern p,
.team-card-compact p {
  margin: 0;
}

.team-grid-simple {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.team-card-simple {
  overflow: hidden;
  background: #ffffff;
}

.team-card-simple img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  background: #f0f0f0;
}

.team-card-simple div {
  padding: 24px;
}

.team-card-simple h2 {
  font-size: 1.3rem;
}

.team-card-simple span {
  margin-bottom: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-banner,
  .about-grid,
  .media-layout,
  .team-grid-simple,
  .team-grid-modern {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    grid-template-columns: 1fr;
    background-position: center bottom;
  }

  .service-media-split {
    grid-template-columns: 1fr;
  }

  .team-lead-card {
    grid-template-columns: 1fr;
  }

  .team-lead-media {
    max-width: 320px;
  }

  .team-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-content h1 {
    max-width: 100%;
  }

  .hero-content {
    max-width: 640px;
    padding: 72px 40px 64px;
  }

  .service-grid,
  .contact-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid-premium {
    grid-template-columns: 1fr;
  }

  .about-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  section[id] {
    scroll-margin-top: 98px;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px;
    background: linear-gradient(180deg, rgba(32, 48, 66, 0.96) 0%, rgba(39, 58, 80, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    box-shadow: 0 20px 36px rgba(16, 24, 34, 0.22);
    backdrop-filter: blur(18px) saturate(145%);
    max-height: min(70vh, 520px);
    overflow-y: auto;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 16px;
    color: rgba(244, 248, 252, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
  }

  .nav a:hover,
  .nav a.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav a.nav-cta {
    margin-top: 6px;
    border-bottom: 0;
    background: linear-gradient(135deg, #6f99c2 0%, #3c6388 100%);
    color: #ffffff;
  }

  .header-bar {
    min-height: 78px;
    position: relative;
    padding: 10px 14px;
    border-radius: 0;
  }

  .hero-banner {
    min-height: 72vh;
  }

  body:not(.inner-page) .site-header {
    margin-bottom: -104px;
  }

  body:not(.inner-page) .hero-banner {
    padding-top: 92px;
  }

  .hero-content {
    padding: 28px 22px;
  }

  body:not(.inner-page) .hero-content {
    padding-top: 104px;
  }

  .hero-content h1 {
    font-size: clamp(2.15rem, 8vw, 3.5rem);
    line-height: 1.06;
    max-width: 10ch;
  }

  .hero-text {
    max-width: 44ch;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .section {
    padding: 28px 0 56px;
  }

  .section-title {
    margin-bottom: 22px;
  }

  .section-title h2,
  .contact-shell-copy h2 {
    font-size: clamp(1.8rem, 5vw, 2.3rem);
  }

  .content-card,
  .service-card,
  .crew-callout,
  .contact-card,
  .inner-hero-box,
  .about-main-card {
    padding: 22px 20px;
  }

  .about-check-item {
    gap: 12px;
    padding: 12px;
  }

  .about-check-icon,
  .about-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .crew-callout,
  .footer-inner,
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-shell-intro {
    flex-direction: column;
    align-items: center;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .team-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .team-card-compact img {
    aspect-ratio: 1 / 0.9;
  }

  .team-hero-section {
    padding-top: 4px;
  }

  .team-hero-shell {
    padding: 18px 20px 16px;
  }

  .team-hero-copy h1 {
    font-size: clamp(1.55rem, 4vw, 1.95rem);
  }

  .team-hero-copy p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .footer-inner,
  .footer-inner nav {
    justify-content: center;
    text-align: center;
  }

  .gallery-modal {
    padding: 18px;
  }

  .gallery-modal-body {
    width: min(100%, calc(100vw - 72px));
    height: calc(100vh - 44px);
  }

  .gallery-modal-nav.prev {
    left: 18px;
  }

  .gallery-modal-nav.next {
    right: 18px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 10px;
  }

  section[id] {
    scroll-margin-top: 90px;
  }

  .site-header {
    padding: 0;
  }

  .brand-copy small {
    display: none;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 0;
  }

  .brand-copy strong {
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .nav {
    left: 0;
    right: 0;
    top: 100%;
    padding: 7px;
    border-radius: 0;
  }

  .nav a {
    padding: 13px 14px;
    font-size: 0.92rem;
  }

  .nav a.nav-cta {
    min-height: 44px;
  }

  .header-bar {
    min-height: 72px;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 0;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .hero-banner {
    min-height: 78vh;
    padding-bottom: 40px;
  }

  body:not(.inner-page) .site-header {
    margin-bottom: -94px;
  }

  body:not(.inner-page) .hero-banner {
    padding-top: 84px;
  }

  .hero-content {
    max-width: 100%;
    padding: 22px 14px 24px;
  }

  body:not(.inner-page) .hero-content {
    padding-top: 96px;
  }

  .hero-content h1 {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
    max-width: 9.5ch;
    letter-spacing: -0.045em;
  }

  .hero-label {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.52;
    max-width: 34ch;
  }

  .button {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.96rem;
  }

  .section {
    padding: 24px 0 44px;
  }

  .about-section .section-title {
    margin-bottom: 18px;
  }

  .section-title h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
    line-height: 1.16;
  }

  .section-title p,
  .about-main-card p,
  .about-check-item p,
  .about-feature-card p,
  .contact-shell-copy p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .about-grid {
    gap: 14px;
  }

  .about-main-card {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .about-check-list {
    gap: 9px;
    margin-top: 14px;
  }

  .about-check-item {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
  }

  .about-check-icon,
  .about-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .about-check-icon svg,
  .about-feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .about-check-item h4,
  .about-feature-card h3 {
    font-size: 0.95rem;
  }

  .team-hero-shell {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .team-page {
    gap: 10px;
  }

  .team-section {
    padding-top: 6px;
  }

  .team-hero-copy h1 {
    font-size: 1.45rem;
  }

  .team-hero-copy p {
    max-width: 34ch;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .about-media-block {
    margin-top: 20px;
    padding: 20px 14px;
    border-radius: 24px;
  }

  .about-media-head {
    margin-bottom: 16px;
  }

  .contact-shell {
    padding: 18px 14px;
    border-radius: 24px;
  }

  .contact-shell-intro {
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 2px;
  }

  .contact-shell-copy h2 {
    font-size: 1.6rem;
  }

  .contact-badge {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .about-media-head h3 {
    font-size: 1.28rem;
  }

  .service-media-split {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-video-panel,
  .service-gallery-panel {
    padding: 14px;
    border-radius: 22px;
  }

  .service-panel-head span {
    font-size: 0.9rem;
  }

  .service-video-frame,
  .gallery-feature {
    border-radius: 20px;
  }

  .team-hero,
  .team-card-modern div,
  .team-card-compact div {
    padding: 8px;
  }

  .team-lead-card {
    padding: 16px;
    border-radius: 24px;
  }

  .team-lead-copy h2 {
    font-size: 1.65rem;
  }

  .gallery-thumb-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .team-grid-compact {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .team-card-compact {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: stretch;
    border-radius: 16px;
  }

  .team-card-compact img {
    width: 100%;
    height: 100%;
    min-height: 96px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .team-card-compact div {
    gap: 4px;
    padding: 12px 12px 12px 14px;
    align-content: center;
    text-align: left;
  }

  .team-card-compact h3 {
    font-size: 0.92rem;
    line-height: 1.24;
  }

  .team-card-compact span {
    font-size: 0.62rem;
    letter-spacing: 0.07em;
    margin-bottom: 2px;
  }

  .gallery-modal {
    padding: 14px;
  }

  .gallery-modal-body {
    width: 100%;
    height: calc(100vh - 28px);
  }

  .gallery-modal-body img {
    max-height: calc(100vh - 88px);
    border-radius: 18px;
  }

  .gallery-modal-nav {
    width: 48px;
    height: 48px;
  }

  .gallery-modal-nav.prev {
    left: 10px;
  }

  .gallery-modal-nav.next {
    right: 10px;
  }

  .gallery-modal-close {
    top: 14px;
    right: 14px;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .floating-contact__link {
    width: 50px;
    height: 50px;
  }

  .floating-contact__link svg {
    width: 22px;
    height: 22px;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-inner nav {
    justify-content: center;
    gap: 10px 14px;
  }
}

@media (max-width: 430px) {
  .container {
    padding: 0 8px;
  }

  .header-bar {
    min-height: 68px;
    padding: 8px 10px;
    gap: 10px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 0;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  body:not(.inner-page) .site-header {
    margin-bottom: -90px;
  }

  body:not(.inner-page) .hero-banner {
    padding-top: 82px;
  }

  body:not(.inner-page) .hero-content {
    padding-top: 92px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 10.5vw, 2.35rem);
    max-width: 9ch;
  }

  .hero-text {
    font-size: 0.9rem;
    max-width: 30ch;
  }

  .team-grid-compact {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .team-hero-shell {
    padding: 18px 14px 14px;
  }

  .team-hero-copy h1 {
    font-size: 1.3rem;
  }

  .team-hero-copy p {
    font-size: 0.86rem;
  }

  .team-card-compact {
    grid-template-columns: 76px minmax(0, 1fr);
    border-radius: 14px;
  }

  .team-card-compact img {
    min-height: 84px;
  }

  .team-card-compact div {
    padding: 10px 10px 10px 12px;
  }

  .team-card-compact h3 {
    font-size: 0.84rem;
  }

  .team-card-compact span {
    font-size: 0.56rem;
  }

  .contact-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .floating-contact {
    right: 10px;
    bottom: 10px;
  }
}
