
/* --- Jost --- */
@font-face {
  font-family: 'Jost';
  src: url('/fonts/Jost-Regular.woff2') format('woff2'),
       url('/fonts/Jost-Regular.woff') format('woff'); 
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('/fonts/Jost-SemiBold.woff2') format('woff2'),
       url('/fonts/Jost-SemiBold.woff') format('woff'); 
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('/fonts/Jost-Italic.woff2') format('woff2'),
       url('/fonts/Jost-Italic.woff') format('woff'); 
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* --- Uncage --- */
@font-face {
  font-family: 'Uncage';
  src: url('/fonts/Uncage-Regular.woff2') format('woff2'),
       url('/fonts/Uncage-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Uncage';
  src: url('/fonts/Uncage-Medium.woff2') format('woff2'),
       url('/fonts/Uncage-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Uncage';
  src: url('/fonts/Uncage-SemiBold.woff2') format('woff2'),
       url('/fonts/Uncage-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Uncage';
  src: url('/fonts/Uncage-Bold.woff2') format('woff2'),
       url('/fonts/Uncage-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === BASE STYLES === */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html, body {
  font-family: 'Jost', system-ui, -apple-system, Arial, sans-serif;
  font-size: 16px;
  background: rgba(7, 14, 110, 1);
  min-height: 100%;
}

body {
  min-height: 100vh;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  background: rgb(23, 29, 116);
  font-family: 'Jost', sans-serif;
}

a { text-decoration: none; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.45s ease;
  background: transparent;
}

.site-header.is-scrolled,
body.no-scroll-header .site-header {
  background: rgb(23, 29, 116);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.header-inner {
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.logo {
  height: 32px;
  width: auto;
}

/* === NAVIGATION === */
.nav-links.desktop {
  display: flex;
  gap: 40px;
  margin-left: auto;
}

.nav-links.desktop a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.04em;
  opacity: 0.9;
  transition: 0.2s;
}

.nav-links.mobile { display: none; }

.nav-toggle {
  display: none;
  gap: 40px;
  margin-left: auto;
  font-size: 1.8rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: white;
}

/* === TYPOGRAPHY === */
h1 {
  font-family: 'Uncage';
  color: #ffffff;
  font-size: 80px;
  font-weight: 100;
  letter-spacing: 0.1em;
  margin: 0;
}

h2 {
  font-family: 'Jost', sans-serif;
  color: #d8d8d8;
  font-size: 26px;
  font-weight: 300;
  line-height: 2;
  margin: 20px 0 20px;
}

/* === BUTTONS === */
.button-primary,
.button-secondary,
.strategy-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 200px;
  padding: 10px;
  border-radius: 20px;
  overflow: hidden;
  font-size: 24px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button-primary {
  background-color: #0088FF;
  color: #ffffff;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.button-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.button-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 4px solid #0088FF;
  box-shadow: none;
}

.button-secondary:hover {
  transform: translateY(-2px);
  background: rgba(0,136,255,0.08);
  border-color: #0088FF;
}

.button-secondary:active {
  transform: translateY(0);
}

.buttons {
  display: flex;
  gap: 40px;
  align-items: center;}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 100px 200px 80px;
  overflow: hidden;
  background: linear-gradient(rgba(3, 44, 179, 0.699), rgba(7, 14, 110, 1)),
              url("images/BlurPresentation.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding-left: 130px;
}

.hero-image {
  position: absolute;
  right: 20%;
  top: 52%;
  transform: translateY(-50%);
  padding-left: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-image svg {
  display: block;
  width: clamp(320px, 28vw, 400px);
  height: auto;
  max-height: 72vh;
}

/* === VALUE STRIP === */
.value-strip {
  width: 100%;
  padding: 40px 0;
  background: #f6f8fc;
  overflow: hidden;
}

.value-inner {
  width: 94%;
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  animation: fadeUp 0.8s ease-out forwards;
}

.value-inner > * {
  flex-shrink: 1;
  min-width: 0;
}

.value-inner span {
  color: rgba(0, 0, 0, 0.9);
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: normal;
}

.divider {
  opacity: 1;
  font-size: 26px;
  transform: translateY(-2px);
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* === STUDIO BRIDGE === */
.studio-bridge {
  position: relative;
  background: #f6f8fc;
  padding: 100px 50px;
  overflow: hidden;
}

.studio-wrap {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 72px);
  background: #f6f8fc;
}

.studio-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 1vw, 84px);
  align-items: start;
}

.studio-title {
  margin: 18px 0 0;
  font-family: "Uncage", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.1;
  color: #0d1b4c;
  font-size: 80px;
  letter-spacing: 0.1em;
}

.studio-accent {
  position: relative;
  display: inline-block;
}

.studio-accent::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: .08em;
  height: .28em;
  background: rgba(43,108,255,.20);
  transform: skewX(-12deg);
  border-radius: 999px;
  z-index: -1;
}

.studio-lead {
  margin: 18px 0 0;
  max-width: 56ch;
  font-size: clamp(18px, 2.0vw, 22px);
  line-height: 1.65;
  color: rgba(13,27,76,.78);
}

.studio-principles {
  margin-top: 6px;
  border-left: 2px solid rgba(13,27,76,.14);
  padding-left: clamp(16px, 2.4vw, 26px);
}

.studio-row {
  padding: 60px 0;
  border-bottom: 1px solid rgba(13,27,76,.10);
  opacity: 0;
  transform: translateY(18px);
  filter: blur(2px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.9,.2,1), filter 650ms ease;
  will-change: transform, opacity;
}

.studio-row:last-child { border-bottom: none; }

.studio-row.is-inview {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.studio-key {
  font-size: 20px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(13,27,76,.70);
  margin-bottom: 8px;
}

.studio-desc {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(13,27,76,.76);
  max-width: 42ch;
}

.studio-left {
  padding-top: 50px;
  min-height: 55vh;
  align-items: center;
}

@keyframes shineSweep {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

/* === SERVICES === */
.services {
  background: #ffffff;
  padding: 130px 0 100px;
  height: auto;
  min-height: 1100px;
}

.services-container {
  width: 96%;
  max-width: 1700px;
  margin: 0 auto;
  height: auto;
}

.services-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.services-header h2 {
  font-family: 'Uncage';
  letter-spacing: 0.15em;
  font-size: 38px;
  font-weight: 400;
  color: #0d1b4c;
}

.line {
  flex: 1;
  height: 2px;
  background: rgba(13,27,76,.14);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  min-height: 350px;
  height: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  border: 1px solid rgba(13,27,76,.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 90, 210, 0.72), rgba(7, 14, 110, 0.72));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.service-card.is-active::after {
  opacity: 1;
}

.service-card.is-active h3,
.service-card.is-active p,
.service-card.is-active a,
.service-card.is-active .service-text,
.service-card.is-active .service-text li {
  color: #ffffff;
}

.service-card.is-active svg { stroke: #ffffff; }

.service-card.is-active {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
}

.service-card:hover {
  transform: translateY(-12px);
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.service-card .service-text {
  font-size: 24px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
  text-align: left;
}

.service-text ul {
  margin: 0;
  padding-left: 30px;
}

.service-text li {
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 28px;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 14px 0 12px;
  color: #111;
}

.service-card p {
  font-size: 26px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

.service-card a {
  margin-top: auto;
  font-size: 20px;
  color: #0088ff;
  text-decoration: none;
  font-weight: 600;
}

.icon { font-size: 22px; }

.read-more {
  font-size: 14px;
  color: #0088ff;
  text-decoration: none;
  font-weight: 600;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: 0.3s;
}

.read-more::after {
  content: "→";
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(6px);
}

/* === STRATEGY SECTION === */
.strategy {
  position: relative;
  width: 100%;
  min-height: 40vh;
  padding: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(rgba(0, 80, 200, 0.5), rgba(7, 14, 110, 0.9)),
              url("images/BrainstormPoint.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.strategy-content {
  position: relative;
  z-index: 2;
  color: white;
  background-color: rgba(6, 27, 122, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid #0088FF;
  border-radius: 0px;
  width: min(100%, 1200px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.strategy-header {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.strategy-header h2 {
  font-family: 'Uncage';
  font-size: 38px;
  letter-spacing: 0.15em;
  font-weight: 400;
  margin: 0px;
}

.strategy p {
  font-size: 24px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 35px;
  text-align: center;
}

.strategy-link {
  height: 50px;
  width: 200px;
  background-color: #0088FF;
  color: #ffffff;
  font-size: 20px;
}

.strategy-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.strategy-link:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* === PROCESS HEADER === */
.process-header {
  position: relative;
  min-height: 60vh;
  background: linear-gradient(rgba(0, 80, 200, 0.5), rgba(7, 14, 110, 1)),
              url("images/Brainstorming.jpg") center / cover no-repeat;
  background-size: cover;
  background-position: center 30%;
  color: #ffffff;
  overflow: hidden;
}

section.process-intro {
  --process-blue: #1d2386;
  --process-text: #2f3140;
  width: 100%;
  max-width: none;
  padding: 48px 24px 56px;
  margin: 0;
  background: #ffffff;
}

.process-intro-container {
  max-width: 1500px;
  margin: 0 auto;
}

.process-intro-text{
  font-size: 22px;
}

.process-intro-left {
  margin: 0;
  max-width: 52ch;
  font-size: 22px;
  line-height: 1.55;
  color: var(--process-text);
}

.process-intro-left strong {
  font-weight: 600;
  color: var(--process-blue);
}

/* === PROCESS SECTION === */
.process-section {
  --process-blue: #1d2386;
  --process-text: #1b1b1b;
  --process-muted: #4f4f5a;
  --process-bg: #f8f8f6;
  --process-max-width: 1180px;
  padding: 50px 24px;
  background: #ffffff;
}

.process-container {
  max-width: 1500px;
  margin: 0 auto;
}

.process-intro {
  max-width: 1000px;
  margin-bottom: 96px;
}

.process-eyebrow {
  margin: 0 0 30px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--process-blue);
}

.process-intro h2 {
  font-family: 'Uncage';
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.95;
  font-weight: 400;
}

.process-step {
  display: grid;
  grid-template-columns: minmax(320px, 700px) minmax(320px, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 128px;
}

.process-step.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 700px);
}

.process-step:last-child { margin-bottom: 0; }

.process-text { max-width: 100%; }

.process-number {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1;
  color: #6d72b4;
  letter-spacing: 0.02em;
}

.process-text h3 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  line-height: 1.02;
  font-weight: 500;
  color: var(--process-blue);
  text-transform: uppercase;
}

.process-text p {
  margin: 0;
  font-size: 20px;
  line-height: 1.8;
  color: var(--process-muted);
}

.process-media { position: relative; }

.process-media img {
  display: block;
  width: 700px;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.media-single { width: min(100%, px); }

.media-single img { aspect-ratio: 2 / 1; }

.media-right { justify-self: end; }
.media-left { justify-self: start; }

.media-accent {
  position: absolute;
  background: var(--process-blue);
  z-index: 0;
}

.step-1 .media-accent,
.step-3 .media-accent {
  width: 88%;
  height: 88%;
  right: -18px;
  top: -18px;
}

.media-double {
  width: min(100%, 700px);
  min-height: 360px;
}

.media-double .media-accent {
  width: 700px;
  height: 300px;
  left: 14px;
  top: 20px;
}

.media-double .media-main {
  position: relative;
  width: 58%;
  aspect-ratio: 1 / 1;
  z-index: 2;
}

.media-double .media-secondary {
  position: absolute;
  width: 40%;
  right: 0;
  top: 0;
  aspect-ratio: 1 / 1;
  z-index: 3;
}

/* === STUDIO CONTACT === */
.studio-contact {
  position: relative;
  background: #f6f8fc;
  padding: clamp(80px, 9vw, 50px) 0;
  overflow: hidden;
}

.contact-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 34px;
}

.contact-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--process-blue);
}

.contact-lead {
  margin: 18px 0 0;
  max-width: 42rem;
  font-size: 22px;
  line-height: 1.65;
  color: rgba(13, 27, 76, 0.78);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(13,27,76,.65);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: "Jost", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(13,27,76,.92);
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(13,27,76,.14);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 200px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(43,108,255,.55);
  box-shadow: 0 0 0 4px rgba(43,108,255,.14);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(13,27,76,.45);
  font-size: 18px;
}

.contact-submit {
  margin-top: 6px;
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 16px 18px;
  background-color: #0088FF;
  color: #fff;
  font-family: "Jost", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(11,26,122,.18);
}

.contact-submit:active {
  transform: translateY(0);
}

/* === ABOUT HEADER === */
.about-header {
  position: relative;
  min-height: 60vh;
  background: linear-gradient(rgba(0, 80, 200, 0.5), rgba(7, 14, 110, 1)),
              url("images/BlurPresentation.jpg") center / cover no-repeat;
  background-size: cover;
  background-position: center 30%;
  color: #ffffff;
  overflow: hidden;
}

.about-header-content {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 475px 0px 0px;
}

.about-header-title {
  margin: 0;
  font-size: 78px;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
}

.about-header-line {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  margin: 24px 0;
}

.about-header-text {
  margin: 0;
  max-width: 620px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.92);
}

/* === ABOUT STORY === */
.about-story-section {
  background-color: #f9f9f9;
  padding: 100px 24px 150px;
}

.about-story-container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 20px;
}

.about-story-title {
  margin: 0 0 22px;
  font-size: 58px;
  font-family: 'Uncage';
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  color:  #0d1b4c;
;
}

.about-story-text {
  margin: 0;
  max-width: 600px;
  font-size: 20px;
  line-height: 1.8;
  color: #1b1b1b;
}

.about-story-left {
  min-height: 250px;
  gap: 20px;
}

.about-story-right {
  height: 250px;
  gap: 35px;
  padding-left: 32px;
  border-left: 1px solid rgba(29, 43, 114, 0.12);
  display: grid;
}

.about-story-card { max-height: 150px; }

.about-story-card-title {
  font-family: 'Uncage';
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
}

.about-story-card-text {
  margin: 0;
  line-height: 1.8;
  font-size: 20px;
  color: #2f3140;
}

/* === ABOUT NAME === */
.about-name-section {
  background: rgb(36, 43, 141);
  padding: 50px 24px 90px;
  border-top: 1px solid rgba(29, 43, 114, 0.12);
  border-bottom: 1px solid rgba(29, 43, 114, 0.12);
}

.about-name-container {
  max-width: 1180px;
  margin: 0 auto;
  background: rgb(36, 43, 141);
  overflow: hidden;
  display: grid;
  grid-template-columns: 360px 1fr;
}

.about-name-image {
  min-height: 320px;
  background-image: linear-gradient(rgba(23, 36, 120, 0.08), rgba(23, 36, 120, 0.08)),
    url("https://images.unsplash.com/photo-1444464666168-49d633b86797?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
}

.about-name-content {
  padding: 56px 100px 0px;
  padding-right: 0px;
}

.about-name-title {
  color: #ffffff;
  text-align: center;
  font-family: 'Uncage';
  font-weight: 400;
  margin: 0 0 30px;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-name-text {
  margin: 0;
  max-width: 720px;
  font-size: 20px;
  color: #ffffff;
  line-height: 2;
}

/* === BIRD SVG === */
.bird {
  width: min(500px, 100%);
}

.bird-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* === ABOUT TEAM === */
.about-team-section {
  background-color: #f9f9f9;
  padding: 150px 24px 100px;
}

.about-team-container {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.about-team-title {
  font-family: 'uncage';
  font-weight: 400;
  margin: 0 0 16px;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: left;
}

.about-team-intro {
  max-width: 700px;
  font-size: 20px;
  color: #2f3140;
  text-align: left;
  line-height: 2;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
  gap: 100px;
  margin-top: 100px;
}

.about-team-card {
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  flex: content;
  justify-content: center;
}

.about-team-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.about-team-body {
  padding: 24px 24px 28px;
  text-align: center;
}

.about-team-name {
  margin: 0 0 6px;
  font-size: 28px;
  color: #1d2b72;
}

.about-team-role {
  margin: 0;
  font-size: 16px;
  color: #5c678f;
}

.about-team-contact {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1d2b72;
  color: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.about-team-linkedin:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.about-team-linkedin svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.about-team-email {
  font-size: 20px;
  color: #1d2b72;
  text-decoration: none;
  word-break: break-word;
}

.about-team-email:hover {
  text-decoration: underline;
}

/* === FOOTER === */
footer {
  position: relative;
  background: rgba(7, 14, 110, 1);
  color: #fff;
  padding: 90px 20px 70px;
  text-align: center;
  font-family: 'Jost', sans-serif;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1400px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
}

footer p {
  padding-top: 15px;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .55;
}

footer a {
  display: inline-block;
  margin: 0 18px;
}

.footer-menu {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: .08em;
  opacity: .85;
  transition: .3s;
}

.footer-menu::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: #4aa3ff;
  transition: .35s;
  transform: translateX(-50%);
  border-radius: 2px;
}

.footer-menu:hover {
  opacity: 1;
  transform: translateY(-2px);
  text-shadow: 0 0 18px rgba(74,163,255,.35);
}

.footer-menu:hover::after {
  width: 100%;
}

/* === ANIMATIONS === */
@keyframes menu-animate-svg-stroke-1 {
  0% { stroke-dashoffset: 16px; stroke-dasharray: 16px; }
  100% { stroke-dashoffset: 0; stroke-dasharray: 16px; }
}
.menu-svg-elem-1 { animation: menu-animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both; }

@keyframes menu-animate-svg-stroke-2 {
  0% { stroke-dashoffset: 20px; stroke-dasharray: 20px; }
  100% { stroke-dashoffset: 0; stroke-dasharray: 20px; }
}
.menu-svg-elem-2 { animation: menu-animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both; }

@keyframes menu-animate-svg-stroke-3 {
  0% { stroke-dashoffset: 20px; stroke-dasharray: 20px; }
  100% { stroke-dashoffset: 0; stroke-dasharray: 20px; }
}
.menu-svg-elem-3 { animation: menu-animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both; }

@keyframes menu-animate-svg-stroke-4 {
  0% { stroke-dashoffset: 16px; stroke-dasharray: 16px; }
  100% { stroke-dashoffset: 0; stroke-dasharray: 16px; }
}
.menu-svg-elem-4 { animation: menu-animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both; }

@keyframes logo-animate-svg-stroke-1 {
  0% { stroke-dashoffset: 5773.96142578125px; stroke-dasharray: 5773.96142578125px; }
  100% { stroke-dashoffset: 11547.9228515625px; stroke-dasharray: 5773.96142578125px; }
}
.logo-svg-elem-1 { animation: logo-animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both; }

@keyframes logo-animate-svg-stroke-2 {
  0% { stroke-dashoffset: 877.7014770507812px; stroke-dasharray: 877.7014770507812px; }
  100% { stroke-dashoffset: 1755.4029541015625px; stroke-dasharray: 877.7014770507812px; }
}
.logo-svg-elem-2 { animation: logo-animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.1s both; }

@keyframes logo-animate-svg-stroke-3 {
  0% { stroke-dashoffset: 968.4200439453125px; stroke-dasharray: 968.4200439453125px; }
  100% { stroke-dashoffset: 1936.840087890625px; stroke-dasharray: 968.4200439453125px; }
}
.logo-svg-elem-3 { animation: logo-animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both; }

@keyframes logo-animate-svg-stroke-4 {
  0% { stroke-dashoffset: 544.197021484375px; stroke-dasharray: 544.197021484375px; }
  100% { stroke-dashoffset: 1088.39404296875px; stroke-dasharray: 544.197021484375px; }
}
.logo-svg-elem-4 { animation: logo-animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.30000000000000004s both; }

@keyframes logo-animate-svg-stroke-5 {
  0% { stroke-dashoffset: 301.8236999511719px; stroke-dasharray: 301.8236999511719px; }
  100% { stroke-dashoffset: 603.6473999023438px; stroke-dasharray: 301.8236999511719px; }
}
.logo-svg-elem-5 { animation: logo-animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both; }

@keyframes logo-animate-svg-stroke-6 {
  0% { stroke-dashoffset: 59.449134826660156px; stroke-dasharray: 59.449134826660156px; }
  100% { stroke-dashoffset: 118.89826965332031px; stroke-dasharray: 59.449134826660156px; }
}
.logo-svg-elem-6 { animation: logo-animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both; }

@keyframes logo-animate-svg-stroke-7 {
  0% { stroke-dashoffset: 592.3345336914062px; stroke-dasharray: 592.3345336914062px; }
  100% { stroke-dashoffset: 1184.6690673828125px; stroke-dasharray: 592.3345336914062px; }
}
.logo-svg-elem-7 { animation: logo-animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6000000000000001s both; }

@keyframes logo-animate-svg-stroke-8 {
  0% { stroke-dashoffset: 1500.16455078125px; stroke-dasharray: 1500.16455078125px; }
  100% { stroke-dashoffset: 3000.3291015625px; stroke-dasharray: 1500.16455078125px; }
}
.logo-svg-elem-8 { animation: logo-animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7000000000000001s both; }

@keyframes logo-animate-svg-stroke-9 {
  0% { stroke-dashoffset: 3760.692626953125px; stroke-dasharray: 3760.692626953125px; }
  100% { stroke-dashoffset: 7521.38525390625px; stroke-dasharray: 3760.692626953125px; }
}
.logo-svg-elem-9 { animation: logo-animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both; }

@keyframes logo-animate-svg-stroke-10 {
  0% { stroke-dashoffset: 477.91448974609375px; stroke-dasharray: 477.91448974609375px; }
  100% { stroke-dashoffset: 955.8289794921875px; stroke-dasharray: 477.91448974609375px; }
}
.logo-svg-elem-10 { animation: logo-animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both; }

@keyframes logo-animate-svg-stroke-11 {
  0% { stroke-dashoffset: 1449.5870361328125px; stroke-dasharray: 1449.5870361328125px; }
  100% { stroke-dashoffset: 2899.174072265625px; stroke-dasharray: 1449.5870361328125px; }
}
.logo-svg-elem-11 { animation: logo-animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both; }

@keyframes logo-animate-svg-stroke-12 {
  0% { stroke-dashoffset: 1294.213623046875px; stroke-dasharray: 1294.213623046875px; }
  100% { stroke-dashoffset: 2588.42724609375px; stroke-dasharray: 1294.213623046875px; }
}
.logo-svg-elem-12 { animation: logo-animate-svg-stroke-12 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both; }


/* =========================================
   MEDIA QUERIES - CONSOLIDATED
   ========================================= */

/* === 1700px === */
@media (max-width: 1700px) {
  .hero {
    min-height: 89vh;
    padding: 100px 0px 80px;
  }
  .hero-image { right: 5%; }
}

/* === 1480px === */
@media (max-width: 1480px) {
  .value-inner { gap: 20px; }
  .value-inner span { font-size: 20px; }
}

/* === 1024px === */
@media (max-width: 1024px) {
  .nav-links.desktop { display: none; }
  .nav-toggle { display: block; }

  .site-header {
    background-color: rgba(11, 26, 122, 0);
    transition: background-color .45s ease, backdrop-filter .45s ease;
  }

  body.menu-open .site-header {
    background-color: rgba(11, 26, 122, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  #nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 2999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 30vh;
    padding: 1rem 0;
    overflow-y: auto;
    background: rgba(11, 26, 122, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
    transition: opacity .5s ease, transform .5s ease;
  }

  #nav-links.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  #nav-links a {
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: color 0.2s ease;
    border-top: rgba(255, 255, 255, 0.4) solid 1px;
  }

  .hero {
    padding: 120px 48px 72px;
    background-position: center;
  }
  .hero-content {
    max-width: 620px;
    padding-left: 40px;
  }
  .hero-image { right: 4%; }
  .hero-image svg { width: clamp(260px, 30vw, 380px); }
}

/* === 980px === */
@media (max-width: 980px) {
  .about-header-title { font-size: 58px; }
  .about-story-container,
  .about-name-container { grid-template-columns: 1fr; }
  .about-story-right {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(29, 43, 114, 0.12);
    padding-top: 24px;
  }
  .about-name-image { min-height: 260px; }
}

/* === 900px === */
@media (max-width: 900px) {
  .studio-split {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .studio-principles {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(13,27,76,.12);
    padding-top: 18px;
  }
}

/* === 768px === */
@media (max-width: 768px) {
  .value-strip { display: none; }

  .hero {
    position: relative;
    min-height: 100svh;
    height: auto;
    padding: 125px 20px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 20px;
    background-position: center center;
  }

  .hero-content {
    max-width: 400px;
    width: 100%;
    height: auto;
    padding-top: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-image {
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 200px 0 0;
    pointer-events: none;
    flex: 0 0 auto;
  }

  .hero-image svg {
    display: block;
    width: 120px;
    max-width: 60vw;
    height: auto;
    aspect-ratio: 1212 / 1713;
    flex: 0 0 auto;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.15;
    margin: 0 0 20px;
    max-width: 40ch;
    line-height: 1.15;
    letter-spacing: 0.1em;
  }

  .hero h2 {
  font-size: 18px;
    line-height: 1.5;
    max-width: 30ch;
    margin: 0 0 20px;
    text-align: center;
  }

  .buttons {
     flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .buttons a {
   width: 35vh;
    height: 65px;
    font-size: 20px;
    border-radius: 20px;
    text-align: center;
  }

  .services { min-height: auto; }
  .services-grid {
    grid-template-columns: 2fr;
    gap: 30px;
  }
  .service-card {
    min-height: 280px;
    height: auto;
    padding: 24px;
    text-align: center;
  }
  .service-card h3 { font-size: 20px; }
  .service-card .service-text {
    padding-left: 20px;
    padding-right: 0;
    font-size: 18px;
  }
  .services-header { margin-bottom: 60px; }
  .services-header h2 {
    font-size: 28px;
    text-align: center;
  }

  .process-intro-text{
  font-size: 17px;
}


  .process-section { padding: 72px 24px; }
  .process-intro {
    max-width: 100%;
    margin-bottom: 56px;
  }
  .process-intro h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1;
  }
  .process-step,
  .process-step.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 100px;
  }
  .process-text,
  .media-single,
  .media-double {
    width: 100%;
    max-width: 100%;
  }
  .process-text { order: 1; }
  .process-media {
    order: 2;
    justify-self: stretch;
  }
  .process-text h3 { font-size: 1.8rem; }
  .process-text p { font-size: 17px; line-height: 1.7; }
  .process-media img { width: 100%; }
  .media-single img { aspect-ratio: 1.6 / 1; }
  .step-1 .media-accent,
  .step-3 .media-accent {
    width: 92%;
    height: 92%;
    right: -10px;
    top: -10px;
  }
  .media-double { min-height: 260px; }
  .media-double .media-accent {
    width: 75%;
    height: 70%;
    left: 10px;
    top: 20px;
  }
  .media-double .media-main { width: 58%; }
  .media-double .media-secondary { width: 42%; }

  .strategy {
    min-height: 40vh;
    padding: 50px;
    background-attachment: scroll;
  }
  .strategy-header {
    text-align: center;
    gap: 0px;
    margin-bottom: 0px;
  }
  .strategy-header h2 { font-size: 24px; }
  .strategy p { font-size: 17px; }

  section.process-intro { padding: 32px 16px 40px; }
  .process-intro-left {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.7;
  }

  .studio-bridge {
    position: relative;
    background: #f6f8fc;
    padding: 100px 10px;
    overflow: hidden;
  }
  .studio-wrap {
    width: 100%;
    padding: 0px;
  }
  .studio-left { padding-top: 0px; }
  .studio-title {
    font-size: 1.8rem;
    text-align: left;
    letter-spacing: 0.10em;
  }
  .studio-lead { font-size: 17px; }
  .studio-split { gap: 0px; }
  .studio-left { min-height: 50vh; }
  .studio-row { padding: 40px 0; }
  .studio-desc {font-size: 17px;}


  .contact-form {
    max-width: 400px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
    padding: 20px;
  }
  .contact-head {
    text-align: center;
    max-width: 900px;
    margin: 0;
  }
  .contact-lead {
    position: relative;
    display: inline-block;
    align-items: center;
    width: 380px;
    font-size: 20px;
  }

  .about-header {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 500px;
  }
  .process-header {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 500px;
  }
  .about-header-content {
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: 32px;
    padding: 20px;
  }
  .about-header-title { font-size: 36px; }
  .about-header-text { font-size: 17px; }
  .about-story-title { font-size: 22px; }
  .about-story-text { font-size: 17px; }
  .about-story-card-text { font-size: 17px; }
  .about-name-text { font-size: 17px; }
  .about-team-intro { font-size: 17px; } 
  .about-story-left { margin-top: 0px; }
  .about-story-right { margin-bottom: 50px; }
  .about-team-section { padding: 50px 24px 50px; }
  .about-name-content { padding: 32px 24px; }
  .about-name-title,
  .about-team-title { font-size: 32px; }
  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-team-contact {
    flex-direction: column;
    gap: 20px;
  }
  .about-team-email { font-size: 20px; }

  footer {
    padding: 70px 20px 60px;
  }
  footer a {
    display: block;
    margin: 14px 0;
  }
  .footer-menu { font-size: 18px; }

  .studio-contact {
    position: relative;
    background: #ffffff;
    padding: clamp(80px, 9vw, 50px) 0;
    overflow: hidden;
  }
}

/* === PREFERS REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .studio-next { transition: none; }
  .studio-row {
    transition: none;
    transform: none;
    filter: none;
    opacity: 1;
  }
}
