@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #13233a;
  --ink-soft: #33445b;
  --cream: #fff9ef;
  --paper: #ffffff;
  --coral: #ff6f5e;
  --coral-deep: #e95142;
  --yellow: #ffd84d;
  --blue: #72d2f4;
  --blue-soft: #dff5ff;
  --mint: #78d9b4;
  --mint-soft: #def8ed;
  --lavender: #b7a2f6;
  --lavender-soft: #eee9ff;
  --peach: #ffb46b;
  --line: rgba(19, 35, 58, 0.16);
  --shadow: 0 24px 60px rgba(19, 35, 58, 0.15);
  --radius-lg: 42px;
  --radius-md: 28px;
  --ease: cubic-bezier(0.2, 0.75, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 7%, rgba(255, 216, 77, 0.22), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(114, 210, 244, 0.2), transparent 28rem);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
p { text-wrap: pretty; }
h1, h2, h3, blockquote { text-wrap: balance; }
::selection { color: var(--ink); background: var(--yellow); }

.page-shell { width: min(calc(100% - 44px), 1180px); margin-inline: auto; }
.section-pad { padding-block: clamp(88px, 10vw, 148px); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 18px; border-radius: 12px; background: var(--yellow); color: var(--ink); font-weight: 800; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 4px solid var(--blue); outline-offset: 4px; }

.site-header { position: sticky; top: 12px; z-index: 100; padding-top: 12px; }
.nav-shell {
  width: min(calc(100% - 28px), 1220px);
  min-height: 76px;
  margin-inline: auto;
  padding: 11px 13px 11px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(19, 35, 58, 0.96);
  box-shadow: 0 14px 38px rgba(19, 35, 58, 0.2);
  backdrop-filter: blur(16px);
}
.brand { flex: 0 0 auto; }
.brand img { width: 196px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 5px; }
.site-nav a { padding: 10px 14px; border-radius: 999px; color: rgba(255,255,255,.76); font-size: .88rem; font-weight: 750; transition: color .2s ease, background .2s ease, transform .2s ease; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: white; background: rgba(255,255,255,.12); }
.site-nav .nav-cta { margin-left: 4px; padding: 11px 18px; color: var(--ink); background: var(--yellow); }
.site-nav .nav-cta:hover, .site-nav .nav-cta[aria-current="page"] { color: var(--ink); background: var(--peach); transform: translateY(-1px); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; place-content: center; gap: 7px; background: var(--yellow); color: var(--ink); cursor: pointer; }
.menu-toggle > span:not(.sr-only) { width: 22px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.eyebrow, .section-label { margin: 0; font-size: .72rem; line-height: 1.4; letter-spacing: .17em; font-weight: 900; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 11px; }
.eyebrow > span { width: 34px; height: 8px; border-radius: 999px; background: var(--coral); }
.section-label { color: var(--coral-deep); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 54px; padding: 13px 22px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border-radius: 999px; font-size: .92rem; font-weight: 850; transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-4px); }
.button-primary { color: white; background: var(--coral); box-shadow: 0 14px 30px rgba(233,81,66,.25); }
.button-primary:hover { background: var(--coral-deep); box-shadow: 0 18px 36px rgba(233,81,66,.3); }
.button-light { border: 1px solid var(--line); background: rgba(255,255,255,.7); }
.button-light:hover { background: white; }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { background: #243a58; }

/* Home */
.home-hero { min-height: 760px; padding-block: clamp(80px, 9vw, 130px) 100px; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 7vw, 105px); align-items: center; }
.home-hero-copy { position: relative; z-index: 2; }
.home-hero h1, .inner-hero h1, .work-hero h1, .contact-hero h1 { margin: 24px 0 0; font-size: clamp(3.5rem, 6.6vw, 6.8rem); line-height: 1.03; letter-spacing: -.075em; font-weight: 900; }
.home-hero h1 em, .inner-hero h1 em, .work-hero h1 em, .contact-hero h1 em { color: var(--coral); font-style: normal; }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: var(--ink-soft); font-size: clamp(1.05rem, 1.45vw, 1.24rem); line-height: 1.95; }
.home-hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.sun-dot { position: absolute; top: 3%; right: 2%; width: 88%; aspect-ratio: 1; border-radius: 50%; background: var(--blue); opacity: .78; }
.sun-dot::before { content: ""; position: absolute; left: -34px; top: 38%; width: 95px; height: 95px; border-radius: 25px; background: var(--lavender); transform: rotate(18deg); }
.hero-photo-frame { position: relative; z-index: 2; width: min(100%, 475px); aspect-ratio: 4/5; overflow: hidden; border: 10px solid white; border-radius: 48% 48% 30px 30px; box-shadow: var(--shadow); transform: rotate(2deg); }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.float-card { position: absolute; z-index: 4; min-width: 138px; padding: 14px 18px; border-radius: 18px; box-shadow: 0 17px 38px rgba(19,35,58,.16); }
.float-card small, .float-card strong { display: block; }
.float-card small { font-size: .62rem; letter-spacing: .12em; font-weight: 900; }
.float-card strong { margin-top: 2px; font-size: 1.03rem; }
.float-card-top { left: -2%; top: 15%; color: var(--ink); background: var(--yellow); transform: rotate(-5deg); }
.float-card-bottom { right: -7%; bottom: 14%; color: white; background: var(--coral); transform: rotate(4deg); }
.journey-doodle { position: absolute; z-index: 3; inset: 4% -9% auto auto; width: 95%; height: 95%; overflow: visible; pointer-events: none; }
.journey-doodle path { fill: none; stroke: var(--coral); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 12 15; }
.journey-doodle circle { fill: var(--yellow); stroke: var(--ink); stroke-width: 3; }
.color-ribbon { overflow: hidden; color: white; background: var(--ink); transform: rotate(-1deg) scale(1.01); }
.color-ribbon > div { width: max-content; min-width: 100%; padding: 17px 28px; display: flex; justify-content: center; align-items: center; gap: 26px; font-size: .86rem; letter-spacing: .08em; font-weight: 850; }
.color-ribbon i { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.color-ribbon i:nth-of-type(2) { background: var(--coral); }
.color-ribbon i:nth-of-type(3) { background: var(--mint); }
.color-ribbon i:nth-of-type(4) { background: var(--lavender); }
.home-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 8vw, 112px); align-items: center; }
.intro-statement h2, .path-head h2 { margin: 18px 0 0; font-size: clamp(2.75rem, 5.8vw, 5.7rem); line-height: 1.11; letter-spacing: -.06em; }
.intro-journey { width: min(100%, 470px); justify-self: end; display: grid; }
.intro-goal { padding: 20px 22px; display: flex; align-items: center; gap: 18px; border: 1px solid rgba(19,35,58,.14); border-radius: 22px; background: #e7d9b0; box-shadow: 8px 9px 0 rgba(36,54,74,.1); }
.intro-goal small, .intro-goal strong { display: block; }
.intro-goal small, .intro-note > small { color: #5b6878; font-size: .72rem; line-height: 1.4; letter-spacing: .13em; font-weight: 900; }
.intro-goal strong { margin-top: 3px; font-size: 1.12rem; }
.intro-target { position: relative; flex: 0 0 auto; width: 54px; height: 54px; display: grid; place-items: center; border: 2px solid #24364a; border-radius: 50%; }
.intro-target::before { content: ""; width: 30px; height: 30px; border: 2px solid #24364a; border-radius: 50%; }
.intro-target i { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #24364a; }
.intro-connector { position: relative; height: 60px; margin-left: 48px; color: #73877f; }
.intro-connector span { display: block; width: 2px; height: 42px; background: repeating-linear-gradient(to bottom, #73877f 0 6px, transparent 6px 12px); }
.intro-connector b { position: absolute; left: -8px; bottom: -2px; font-size: 1.35rem; line-height: 1; }
.intro-note { position: relative; padding: 30px 32px 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: 12px 12px 0 var(--mint); }
.intro-note > small { display: block; margin-bottom: 12px; color: #6b7e77; }
.intro-note p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; }
.path-section { overflow: hidden; background: var(--lavender-soft); }
.path-head { max-width: 760px; }
.path-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.path-card { min-height: 430px; padding: 30px; display: flex; flex-direction: column; border: 2px solid var(--ink); border-radius: 32px; box-shadow: 8px 8px 0 var(--ink); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.path-card:hover { transform: translate(-3px,-5px); box-shadow: 13px 15px 0 var(--ink); }
.path-coral { background: var(--coral); color: white; }
.path-blue { background: var(--blue); }
.path-yellow { background: var(--yellow); }
.path-no { font-size: .72rem; font-weight: 900; letter-spacing: .16em; }
.path-symbol { margin: 42px 0 auto; font-size: 4.5rem; line-height: 1; }
.path-card p { margin: 38px 0 7px; font-size: .82rem; font-weight: 700; opacity: .76; }
.path-card h3 { margin: 0; font-size: clamp(1.6rem, 2.6vw, 2.35rem); line-height: 1.25; letter-spacing: -.04em; }
.text-link { margin-top: 24px; font-size: .82rem; font-weight: 850; }
.home-promise { display: grid; grid-template-columns: 190px 1fr auto; gap: clamp(35px, 6vw, 85px); align-items: center; }
.promise-shape { position: relative; width: 180px; height: 180px; }
.promise-shape span { position: absolute; width: 105px; height: 105px; border-radius: 50%; mix-blend-mode: multiply; }
.promise-shape span:nth-child(1) { left: 0; top: 37px; background: var(--yellow); }
.promise-shape span:nth-child(2) { right: 0; top: 0; background: var(--blue); }
.promise-shape span:nth-child(3) { right: 7px; bottom: 0; background: var(--coral); }
.home-promise blockquote { margin: 16px 0 0; font-size: clamp(2.1rem, 4.2vw, 4.15rem); line-height: 1.24; letter-spacing: -.05em; font-weight: 850; }
.circle-link { width: 150px; height: 150px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; border: 2px solid var(--ink); border-radius: 50%; background: var(--mint); font-weight: 850; transition: transform .25s var(--ease), background .2s ease; }
.circle-link b { align-self: flex-end; font-size: 1.6rem; }
.circle-link:hover { transform: rotate(6deg) scale(1.04); background: var(--yellow); }

/* Shared inner heroes */
.inner-hero { min-height: 710px; padding-block: clamp(80px, 9vw, 124px) 100px; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 7vw, 105px); align-items: center; }
.inner-hero-copy > p:last-of-type { max-width: 580px; margin: 28px 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.inner-hero h1 { font-size: clamp(3.25rem, 6.2vw, 6.1rem); }

/* About */
.page-about::before { background: radial-gradient(circle at 90% 13%, rgba(183,162,246,.28), transparent 27rem), radial-gradient(circle at 7% 34%, rgba(120,217,180,.2), transparent 22rem); }
.about-hero-image { position: relative; margin: 0; }
.about-hero-image::before { content: ""; position: absolute; inset: -30px 34px 28px -26px; border: 3px solid var(--ink); border-radius: 44px; background: var(--yellow); transform: rotate(-4deg); }
.about-hero-image img { position: relative; width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 8px solid white; border-radius: 38px; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.about-hero-image figcaption { position: absolute; left: -22px; bottom: -24px; max-width: 310px; padding: 18px 22px; border-radius: 18px; color: white; background: var(--coral); box-shadow: 0 14px 28px rgba(19,35,58,.18); transform: rotate(-2deg); }
.about-hero-image figcaption b, .about-hero-image figcaption span { display: block; }
.about-hero-image figcaption span { margin-top: 3px; font-size: .78rem; opacity: .84; }
.name-story { background: var(--blue-soft); }
.story-heading { max-width: 880px; }
.story-heading h2, .team-model-head h2, .belief-title h2, .map-heading h2, .engagement-head h2, .watch-heading h2, .case-heading h2, .brief-title h2, .contact-details-head h2, .faq-title h2 { margin: 16px 0 0; font-size: clamp(2.65rem, 5.3vw, 5.2rem); line-height: 1.12; letter-spacing: -.055em; }
.name-grid { margin-top: 58px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.name-card { min-height: 320px; padding: 34px; display: grid; grid-template-columns: 120px 1fr; gap: 30px; align-items: center; border: 2px solid var(--ink); border-radius: 32px; }
.name-card > span { display: grid; place-items: center; width: 116px; height: 116px; border: 2px solid currentColor; border-radius: 50%; font-size: 4.8rem; line-height: 1; font-weight: 900; }
.name-card small { font-size: .72rem; letter-spacing: .2em; font-weight: 900; }
.name-card h3 { margin: 10px 0 8px; font-size: 1.65rem; line-height: 1.35; }
.name-card p { margin: 0; font-size: .92rem; }
.name-one { color: white; background: var(--coral); box-shadow: 8px 8px 0 var(--ink); }
.name-journey { background: var(--yellow); transform: translateY(32px); }
.story-body { max-width: 920px; margin: 94px auto 0; font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.75; font-weight: 650; text-align: center; }
.team-model { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.team-model-head > p:last-child { max-width: 460px; margin: 26px 0 0; color: var(--ink-soft); }
.craft-orbit { position: relative; min-height: 650px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-content: center; }
.craft-orbit::before { content: ""; position: absolute; inset: 50% auto auto 50%; width: 74%; aspect-ratio: 1; border: 2px dashed var(--coral); border-radius: 50%; transform: translate(-50%,-50%); opacity: .55; }
.orbit-center { position: absolute; z-index: 3; left: 50%; top: 50%; width: 190px; height: 190px; padding: 28px; display: grid; place-content: center; border: 3px solid var(--ink); border-radius: 50%; color: white; background: var(--ink); text-align: center; transform: translate(-50%,-50%) rotate(-3deg); box-shadow: 9px 9px 0 var(--yellow); }
.orbit-center strong { font-size: 1.45rem; }
.orbit-center span { font-size: .72rem; color: rgba(255,255,255,.7); }
.craft-card { position: relative; z-index: 2; min-height: 185px; padding: 26px; border: 2px solid var(--ink); border-radius: 26px; background: white; }
.craft-card b { font-size: .68rem; letter-spacing: .15em; }
.craft-card h3 { margin: 35px 0 4px; font-size: 1.35rem; }
.craft-card p { margin: 0; color: var(--ink-soft); font-size: .82rem; }
.craft-a { background: var(--yellow); transform: rotate(-2deg); }
.craft-b { background: var(--lavender); transform: translateY(-22px) rotate(2deg); }
.craft-c { background: var(--mint); transform: translateY(22px) rotate(2deg); }
.craft-d { background: var(--blue); transform: rotate(-2deg); }
.belief-section { background: var(--mint-soft); }
.belief-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 9vw, 145px); align-items: start; }
.belief-title { position: sticky; top: 130px; }
.belief-list article { padding: 34px 0; display: grid; grid-template-columns: 84px 1fr; gap: 8px 24px; border-top: 1px solid rgba(19,35,58,.23); }
.belief-list article:last-child { border-bottom: 1px solid rgba(19,35,58,.23); }
.belief-list span { grid-row: span 2; width: 70px; height: 70px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; background: var(--yellow); font-weight: 900; }
.belief-list article:nth-child(2) span { background: var(--blue); }
.belief-list article:nth-child(3) span { background: var(--coral); color: white; }
.belief-list h3 { margin: 2px 0 0; font-size: 1.42rem; }
.belief-list p { margin: 4px 0 0; color: var(--ink-soft); }

/* Services */
.page-services::before { background: radial-gradient(circle at 8% 7%, rgba(255,111,94,.2), transparent 23rem), radial-gradient(circle at 93% 25%, rgba(255,216,77,.3), transparent 29rem); }
.services-hero-image { position: relative; margin: 0; }
.services-hero-image::before { content: ""; position: absolute; inset: -30px -28px 40px 44px; border-radius: 42% 42% 28px 28px; background: var(--yellow); }
.services-hero-image img { position: relative; width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 8px solid white; border-radius: 42% 42% 28px 28px; box-shadow: var(--shadow); }
.services-hero-image figcaption { position: absolute; left: 25px; right: 25px; bottom: 22px; padding: 16px 18px; display: flex; justify-content: center; gap: 8px; border-radius: 18px; color: white; background: rgba(19,35,58,.82); backdrop-filter: blur(12px); }
.services-hero-image figcaption span { padding: 5px 9px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; font-size: .64rem; letter-spacing: .11em; font-weight: 850; }
.service-map { overflow: hidden; color: white; background: var(--ink); }
.service-map .section-label { color: var(--yellow); }
.map-heading { display: grid; grid-template-columns: 1.15fr .65fr; gap: 80px; align-items: end; }
.map-heading > p { margin: 0 0 8px; color: rgba(255,255,255,.67); }
.service-deck { margin-top: 68px; display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.service-panel { grid-column: span 4; min-height: 440px; padding: 30px; display: flex; flex-direction: column; border: 2px solid rgba(255,255,255,.7); border-radius: 30px; color: var(--ink); transition: transform .25s var(--ease); }
.service-panel:hover { transform: translateY(-7px) rotate(.5deg); }
.panel-top { display: flex; justify-content: space-between; align-items: center; }
.panel-top span { width: 42px; height: 42px; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-size: .7rem; font-weight: 900; }
.panel-top small { font-size: .64rem; letter-spacing: .14em; font-weight: 900; }
.service-panel h3 { margin: 52px 0 12px; font-size: 1.7rem; line-height: 1.3; letter-spacing: -.035em; }
.service-panel > p { margin: 0; font-size: .9rem; }
.service-panel ul { margin: auto 0 0; padding: 30px 0 0; display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.service-panel li { padding: 6px 10px; border: 1px solid rgba(19,35,58,.24); border-radius: 999px; background: rgba(255,255,255,.26); font-size: .72rem; font-weight: 750; }
.panel-coral { background: var(--coral); color: white; }
.panel-coral li { border-color: rgba(255,255,255,.4); }
.panel-blue { background: var(--blue); }
.panel-yellow { background: var(--yellow); }
.panel-mint { background: var(--mint); }
.panel-lavender { background: var(--lavender); }
.panel-peach { background: var(--peach); }
.focus-lane { background: var(--lavender-soft); }
.focus-lane-grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(50px, 9vw, 135px); align-items: center; }
.focus-stamp { min-height: 500px; padding: 38px; display: flex; flex-direction: column; justify-content: space-between; border: 3px solid var(--ink); border-radius: 50% 50% 34px 34px; color: white; background: var(--coral); box-shadow: 12px 12px 0 var(--yellow); transform: rotate(-2deg); }
.focus-stamp small, .focus-stamp span { font-size: .7rem; letter-spacing: .16em; font-weight: 900; }
.focus-stamp strong { font-size: clamp(3rem, 5.5vw, 5.3rem); line-height: 1.03; letter-spacing: -.06em; }
.focus-copy h2 { margin: 18px 0 22px; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1.16; letter-spacing: -.055em; }
.focus-copy > p:not(.section-label):not(.clarify-note) { color: var(--ink-soft); font-size: 1.05rem; }
.focus-tags { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; }
.focus-tags span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: white; font-size: .78rem; font-weight: 800; }
.clarify-note { margin: 34px 0 0; padding: 20px 22px; border-left: 6px solid var(--coral); border-radius: 0 15px 15px 0; background: rgba(255,255,255,.65); color: var(--ink-soft); font-size: .82rem; }
.engagement-head { max-width: 790px; }
.engagement-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.engagement-grid article { min-height: 280px; padding: 30px; border: 2px solid var(--ink); border-radius: 28px; background: white; }
.engagement-grid article:nth-child(1) { box-shadow: 8px 8px 0 var(--blue); }
.engagement-grid article:nth-child(2) { box-shadow: 8px 8px 0 var(--mint); }
.engagement-grid article:nth-child(3) { box-shadow: 8px 8px 0 var(--lavender); }
.engagement-grid span { color: var(--coral-deep); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.engagement-grid h3 { margin: 44px 0 8px; font-size: 1.48rem; }
.engagement-grid p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

/* Work */
.page-work { background: #fff7ed; }
.work-hero { min-height: 720px; padding-block: clamp(80px, 9vw, 126px) 105px; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px,8vw,120px); align-items: center; }
.work-hero-copy > p:last-child { max-width: 590px; margin: 28px 0 0; color: var(--ink-soft); font-size: 1.07rem; }
.work-poster { position: relative; min-height: 570px; overflow: hidden; border: 3px solid var(--ink); border-radius: 36px; color: white; background: var(--coral); box-shadow: 14px 14px 0 var(--ink); transform: rotate(1.5deg); }
.work-poster b { position: absolute; left: 44px; bottom: 42px; z-index: 3; font-size: clamp(4rem,7vw,7rem); line-height: .84; letter-spacing: -.09em; }
.work-poster span { position: absolute; padding: 9px 14px; border: 2px solid var(--ink); border-radius: 999px; color: var(--ink); font-size: .76rem; letter-spacing: .12em; font-weight: 900; }
.poster-a { left: 34px; top: 36px; background: var(--yellow); transform: rotate(-7deg); }
.poster-b { right: 28px; top: 120px; background: var(--blue); transform: rotate(5deg); }
.poster-c { left: 54px; top: 205px; background: var(--mint); transform: rotate(5deg); }
.poster-d { right: 46px; top: 290px; background: var(--lavender); transform: rotate(-6deg); }
.work-poster i { position: absolute; right: -70px; bottom: -70px; width: 290px; height: 290px; border: 42px solid var(--yellow); border-radius: 50%; }
.work-poster::before, .work-poster::after { content: ""; position: absolute; width: 110px; height: 110px; background: var(--blue); }
.work-poster::before { top: -26px; right: 24px; border-radius: 50%; }
.work-poster::after { left: 220px; bottom: 58px; border-radius: 24px; background: var(--mint); transform: rotate(18deg); }
.watch-section { color: white; background: var(--ink); }
.watch-section .section-label { color: var(--yellow); }
.watch-heading { display: grid; grid-template-columns: 1.15fr .65fr; gap: 80px; align-items: end; }
.watch-heading > p { margin: 0 0 8px; color: rgba(255,255,255,.67); }
.video-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.video-card { grid-column: span 4; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 26px; color: var(--ink); background: white; }
.video-card.video-large { grid-column: 1 / -1; display: grid; grid-template-columns: 1.4fr .6fr; }
.video-frame { aspect-ratio: 16/9; background: #080f18; }
.video-frame iframe { width: 100%; height: 100%; display: block; border: 0; }
.video-copy { padding: 25px; }
.video-large .video-copy { padding: 34px; display: flex; flex-direction: column; justify-content: center; background: var(--yellow); }
.video-copy > span { color: var(--coral-deep); font-size: .66rem; letter-spacing: .15em; font-weight: 900; }
.video-copy h3 { margin: 10px 0 8px; font-size: 1.35rem; line-height: 1.35; }
.video-large .video-copy h3 { font-size: clamp(1.75rem,3vw,2.6rem); }
.video-copy p { margin: 0; color: var(--ink-soft); font-size: .84rem; }
.video-copy a { display: inline-flex; margin-top: 22px; color: var(--coral-deep); font-size: .78rem; font-weight: 850; }
.more-media { margin-top: 22px; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.06); }
.more-media p { margin: 0; font-weight: 800; }
.more-media > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.more-media a { padding: 7px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.78); font-size: .72rem; font-weight: 750; }
.more-media a:hover { color: var(--ink); background: var(--yellow); }
.case-heading { max-width: 960px; }
.case-heading > p:last-child { max-width: 720px; margin: 25px 0 0; color: var(--ink-soft); }
.case-grid { margin-top: 58px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.case-card { min-height: 390px; padding: 32px; border: 2px solid var(--ink); border-radius: 30px; }
.case-index { float: right; width: 52px; height: 52px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 17px; background: white; font-size: 1.1rem; font-weight: 900; transform: rotate(5deg); }
.case-card > p { margin: 0; font-size: .68rem; letter-spacing: .15em; font-weight: 900; }
.case-card h3 { margin: 42px 0 0; font-size: clamp(2rem,3.5vw,3.3rem); letter-spacing: -.055em; }
.case-card ul { margin: 52px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.case-card li { padding: 7px 12px; border: 1px solid rgba(19,35,58,.22); border-radius: 999px; background: rgba(255,255,255,.48); font-size: .8rem; font-weight: 750; }
.case-brand { background: var(--yellow); }
.case-health { background: var(--blue); }
.case-sport { background: var(--mint); }
.case-event { background: var(--lavender); }
.case-disclaimer { max-width: 900px; margin: 38px auto 0; padding: 24px 28px; display: grid; grid-template-columns: .35fr 1fr; gap: 26px; border-left: 6px solid var(--coral); background: white; }
.case-disclaimer p { margin: 0; color: var(--ink-soft); font-size: .86rem; }

/* Contact */
.page-contact { background: #f5f0ff; }
.page-contact::before { background: radial-gradient(circle at 7% 18%, rgba(255,216,77,.32), transparent 25rem), radial-gradient(circle at 92% 12%, rgba(120,217,180,.25), transparent 26rem); }
.contact-hero { min-height: 730px; padding-block: clamp(80px,9vw,125px) 110px; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,7vw,100px); align-items: center; }
.contact-hero-copy > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.contact-hero-image { position: relative; margin: 0; }
.contact-hero-image::before { content: ""; position: absolute; inset: -28px 36px 26px -24px; border: 3px solid var(--ink); border-radius: 38px; background: var(--mint); transform: rotate(-4deg); }
.contact-hero-image img { position: relative; width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 8px solid white; border-radius: 34px; box-shadow: var(--shadow); }
.contact-hero-image figcaption { position: absolute; right: -18px; bottom: -24px; padding: 18px 21px; border: 2px solid var(--ink); border-radius: 18px; background: var(--yellow); box-shadow: 7px 7px 0 var(--ink); transform: rotate(2deg); }
.contact-hero-image figcaption strong, .contact-hero-image figcaption span { display: block; }
.contact-hero-image figcaption span { margin-top: 2px; font-size: .75rem; color: var(--ink-soft); }
.brief-section { background: var(--yellow); }
.brief-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px,9vw,145px); align-items: start; }
.brief-title { position: sticky; top: 130px; }
.brief-title > p:last-child { margin: 24px 0 0; color: var(--ink-soft); }
.brief-list { margin: 0; padding: 0; list-style: none; }
.brief-list li { padding: 32px 0; display: grid; grid-template-columns: 72px 1fr; gap: 24px; border-top: 2px solid var(--ink); }
.brief-list li:last-child { border-bottom: 2px solid var(--ink); }
.brief-list li > span { width: 64px; height: 64px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; color: white; background: var(--coral); font-size: .72rem; font-weight: 900; }
.brief-list li:nth-child(2) > span { color: var(--ink); background: var(--blue); }
.brief-list li:nth-child(3) > span { color: var(--ink); background: var(--mint); }
.brief-list h3 { margin: 1px 0 7px; font-size: 1.45rem; }
.brief-list p { margin: 0; color: var(--ink-soft); }
.contact-details-head { max-width: 850px; }
.contact-detail-grid { margin-top: 58px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; }
.detail-card { position: relative; min-height: 300px; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border: 2px solid var(--ink); border-radius: 30px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.detail-card:hover { transform: translateY(-6px); box-shadow: 10px 12px 0 var(--ink); }
.detail-card small { position: absolute; left: 30px; top: 28px; font-size: .68rem; letter-spacing: .16em; font-weight: 900; }
.detail-card > span { margin-bottom: 6px; font-size: .8rem; font-weight: 800; }
.detail-card strong { max-width: 650px; font-size: clamp(1.7rem,3.5vw,3.35rem); line-height: 1.28; letter-spacing: -.045em; }
.detail-card b { position: absolute; right: 28px; top: 26px; font-size: 1.7rem; }
.detail-phone { color: white; background: var(--coral); }
.detail-map { background: var(--blue); }
.contact-faq { background: var(--mint-soft); }
.faq-grid { display: grid; grid-template-columns: .74fr 1.26fr; gap: clamp(50px,9vw,145px); }
.faq-list details { border-top: 1px solid rgba(19,35,58,.28); }
.faq-list details:last-child { border-bottom: 1px solid rgba(19,35,58,.28); }
.faq-list summary { padding: 27px 0; display: flex; justify-content: space-between; gap: 22px; cursor: pointer; list-style: none; font-size: 1.12rem; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--ink); transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--coral); }
.faq-list details p { max-width: 720px; margin: -6px 54px 28px 0; color: var(--ink-soft); }
.contact-finale { margin-block: clamp(80px,10vw,145px); padding: clamp(42px,7vw,78px); display: grid; grid-template-columns: auto 1fr auto; gap: clamp(35px,6vw,80px); align-items: center; border: 3px solid var(--ink); border-radius: 38px; color: white; background: var(--ink); box-shadow: 12px 12px 0 var(--lavender); }
.contact-finale > div { width: 120px; height: 120px; display: grid; place-content: center; border-radius: 50%; color: var(--ink); background: var(--yellow); text-align: center; transform: rotate(-8deg); }
.contact-finale > div span { font-weight: 900; }
.contact-finale > div span:first-child { font-size: .65rem; letter-spacing: .14em; }
.contact-finale p { margin: 0; font-size: clamp(2rem,4vw,3.8rem); line-height: 1.25; font-weight: 850; letter-spacing: -.05em; }
.contact-finale > a { width: 145px; height: 145px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 50%; color: var(--ink); background: var(--coral); font-weight: 850; transition: transform .25s var(--ease); }
.contact-finale > a b { align-self: flex-end; font-size: 1.5rem; }
.contact-finale > a:hover { transform: rotate(7deg) scale(1.04); }

/* Next-page banners and footer */
.next-page { margin-block: 40px 120px; padding: clamp(42px,6vw,72px); display: grid; grid-template-columns: 1fr auto; gap: 20px 70px; align-items: end; border: 3px solid var(--ink); border-radius: 38px; background: var(--yellow); box-shadow: 12px 12px 0 var(--ink); }
.next-page > p { grid-column: 1/-1; margin: 0; color: var(--coral-deep); font-size: .7rem; letter-spacing: .18em; font-weight: 900; }
.next-page h2 { margin: 0; max-width: 850px; font-size: clamp(2.2rem,4.6vw,4.5rem); line-height: 1.15; letter-spacing: -.055em; }
.next-page-services { background: var(--blue); }
.next-page-work { background: var(--mint); }
.site-footer { margin-bottom: 22px; padding: 30px 34px; display: grid; grid-template-columns: auto 1fr auto auto; gap: 20px 34px; align-items: center; border-radius: 26px; color: rgba(255,255,255,.72); background: var(--ink); font-size: .75rem; }
.site-footer img { width: 165px; }
.site-footer p, .site-footer small { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-links a { padding: 6px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; }
.footer-links a:hover { color: var(--ink); background: var(--yellow); }

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

@media (max-width: 980px) {
  .site-header { top: 8px; padding-top: 8px; }
  .nav-shell { min-height: 68px; padding: 9px 10px 9px 17px; }
  .brand img { width: 175px; }
  .menu-toggle { display: grid; }
  .site-nav { position: absolute; top: calc(100% + 8px); left: 14px; right: 14px; padding: 14px; display: grid; gap: 3px; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; background: var(--ink); box-shadow: var(--shadow); opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: 11px 13px; }
  .site-nav .nav-cta { margin: 5px 0 0; text-align: center; }
  .home-hero, .inner-hero, .work-hero, .contact-hero { min-height: auto; grid-template-columns: 1fr; }
  .home-hero-copy, .inner-hero-copy, .work-hero-copy, .contact-hero-copy { max-width: 800px; }
  .home-hero-visual { min-height: 540px; }
  .hero-photo-frame { width: min(78vw,500px); }
  .inner-hero { padding-bottom: 120px; }
  .about-hero-image, .services-hero-image, .contact-hero-image { width: min(90%,760px); justify-self: center; }
  .home-intro, .team-model, .belief-grid, .focus-lane-grid, .brief-grid, .faq-grid { grid-template-columns: 1fr; }
  .intro-journey { width: min(100%, 640px); justify-self: start; }
  .path-grid { grid-template-columns: 1fr 1fr; }
  .path-card:last-child { grid-column: 1/-1; min-height: 330px; }
  .home-promise { grid-template-columns: 150px 1fr; }
  .home-promise .circle-link { grid-column: 2; }
  .map-heading, .watch-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-panel { grid-column: span 6; }
  .focus-stamp { width: min(100%,500px); min-height: 400px; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-grid article { min-height: 230px; }
  .video-card { grid-column: span 6; }
  .video-card.video-large { display: block; }
  .video-card:nth-child(4) { grid-column: span 12; display: grid; grid-template-columns: 1.2fr .8fr; }
  .case-grid { grid-template-columns: 1fr; }
  .belief-title, .brief-title { position: static; }
  .contact-detail-grid { grid-template-columns: 1fr; }
  .contact-finale { grid-template-columns: auto 1fr; }
  .contact-finale > a { grid-column: 2; }
  .site-footer { grid-template-columns: auto 1fr auto; }
  .site-footer small { grid-column: 1/-1; }
}

@media (max-width: 680px) {
  .page-shell { width: min(calc(100% - 30px),1180px); }
  .section-pad { padding-block: 82px; }
  .home-hero, .inner-hero, .work-hero, .contact-hero { padding-block: 68px 90px; gap: 58px; }
  .home-hero h1, .inner-hero h1, .work-hero h1, .contact-hero h1 { font-size: clamp(3rem,15vw,4.5rem); }
  .button-row { display: grid; }
  .button { width: 100%; }
  .home-hero-visual { min-height: 430px; }
  .hero-photo-frame { width: 86vw; border-width: 7px; }
  .float-card { min-width: 110px; padding: 10px 13px; }
  .float-card-top { left: -2%; }
  .float-card-bottom { right: -2%; }
  .color-ribbon > div { justify-content: flex-start; }
  .home-intro { gap: 48px; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card, .path-card:last-child { grid-column: auto; min-height: 370px; }
  .home-promise { grid-template-columns: 1fr; text-align: left; }
  .home-promise .circle-link { grid-column: auto; }
  .promise-shape { transform: scale(.8); transform-origin: left center; }
  .about-hero-image, .services-hero-image, .contact-hero-image { width: calc(100% - 16px); }
  .about-hero-image figcaption, .contact-hero-image figcaption { left: 12px; right: 12px; bottom: -44px; }
  .name-grid { grid-template-columns: 1fr; gap: 18px; }
  .name-card { min-height: 0; padding: 26px; grid-template-columns: 78px 1fr; }
  .name-card > span { width: 75px; height: 75px; font-size: 3.1rem; }
  .name-journey { transform: none; }
  .story-body { margin-top: 55px; text-align: left; }
  .craft-orbit { min-height: 0; padding-top: 185px; grid-template-columns: 1fr; }
  .craft-orbit::before { top: 100px; width: 220px; }
  .orbit-center { top: 92px; width: 160px; height: 160px; }
  .craft-card, .craft-a, .craft-b, .craft-c, .craft-d { min-height: 150px; transform: none; }
  .belief-list article { grid-template-columns: 64px 1fr; gap: 8px 16px; }
  .belief-list span { width: 58px; height: 58px; font-size: .8rem; }
  .service-deck { grid-template-columns: 1fr; }
  .service-panel { grid-column: auto; min-height: 390px; }
  .focus-stamp { min-height: 390px; padding: 30px; }
  .focus-lane-grid { gap: 70px; }
  .work-poster { min-height: 480px; }
  .work-poster b { left: 28px; bottom: 34px; }
  .poster-c { left: 28px; top: 210px; }
  .poster-d { right: 20px; top: 285px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card, .video-card.video-large, .video-card:nth-child(4) { grid-column: auto; display: block; }
  .more-media { align-items: flex-start; flex-direction: column; }
  .more-media > div { justify-content: flex-start; }
  .case-card { min-height: 340px; padding: 27px; }
  .case-disclaimer { grid-template-columns: 1fr; gap: 8px; }
  .brief-list li { grid-template-columns: 56px 1fr; gap: 17px; }
  .brief-list li > span { width: 52px; height: 52px; }
  .detail-card { min-height: 260px; padding: 26px; }
  .contact-finale { padding: 36px 25px; grid-template-columns: 1fr; }
  .contact-finale > div { width: 95px; height: 95px; }
  .contact-finale > a { grid-column: auto; width: 125px; height: 125px; }
  .next-page { margin-bottom: 90px; padding: 36px 25px; grid-template-columns: 1fr; }
  .next-page > p { grid-column: auto; }
  .next-page .button { margin-top: 10px; }
  .site-footer { padding: 28px 24px; grid-template-columns: 1fr; gap: 13px; }
  .footer-links { flex-wrap: wrap; }
  .site-footer small { grid-column: auto; }
}

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

/* Refined visual system: lively, warm and composed */
:root {
  --ink: #18283a;
  --ink-soft: #586676;
  --cream: #f7f5ef;
  --paper: #fffdf8;
  --coral: #c86756;
  --coral-deep: #a94d3f;
  --yellow: #d6b96d;
  --blue: #8eb4c0;
  --blue-soft: #e9f0f2;
  --mint: #91afa4;
  --mint-soft: #edf2ef;
  --lavender: #aaa6b2;
  --lavender-soft: #efedef;
  --peach: #c59372;
  --line: rgba(24, 40, 58, .14);
  --shadow: 0 24px 60px rgba(24, 40, 58, .13);
}

body { background: var(--cream); }
body::before {
  background:
    radial-gradient(circle at 8% 8%, rgba(214, 185, 109, .13), transparent 25rem),
    radial-gradient(circle at 92% 18%, rgba(142, 180, 192, .12), transparent 29rem);
}
::selection { background: #e5ce91; }
:focus-visible { outline-color: #6f9eae; }

.nav-shell {
  border-color: rgba(24, 40, 58, .12);
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 12px 34px rgba(24, 40, 58, .12);
}
.brand img { width: 222px; }
.site-nav a { color: #526171; }
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); background: var(--blue-soft); }
.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] { color: white; background: var(--ink); }
.menu-toggle { color: var(--ink); background: #e7edf0; }

.button-primary { background: var(--coral); box-shadow: 0 14px 30px rgba(169, 77, 63, .18); }
.button-primary:hover { background: var(--coral-deep); box-shadow: 0 18px 36px rgba(169, 77, 63, .22); }
.sun-dot { background: #a9c2c9; opacity: .68; }
.sun-dot::before { background: #d8c59a; }
.hero-photo-frame img { filter: saturate(.82) contrast(1.02); }
.float-card-top { background: #e2ca8c; }
.float-card-bottom { background: var(--ink); }
.color-ribbon { background: #24364a; }
.color-ribbon i:nth-of-type(2) { background: #d58a7e; }
.color-ribbon i:nth-of-type(3) { background: #a9c2b8; }
.color-ribbon i:nth-of-type(4) { background: #beb9c2; }
.intro-note { box-shadow: 10px 10px 0 #b8cbc4; }

.decision-section { overflow: hidden; background: #e9edef; }
.decision-head { display: grid; grid-template-columns: 1.05fr .7fr; gap: 72px; align-items: end; }
.decision-head h2,
.proof-heading h2,
.field-heading h2,
.senior-story-intro h2 { margin: 16px 0 0; font-size: clamp(2.65rem, 5.3vw, 5.2rem); line-height: 1.12; letter-spacing: -.055em; }
.decision-head > p { margin: 0 0 8px; color: var(--ink-soft); }
.decision-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.decision-card { min-height: 360px; padding: 27px; display: flex; flex-direction: column; border: 1px solid rgba(24, 40, 58, .13); border-radius: 26px; background: var(--paper); box-shadow: 0 14px 34px rgba(24, 40, 58, .07); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.decision-card:hover { transform: translateY(-6px); box-shadow: 0 20px 42px rgba(24, 40, 58, .12); }
.decision-card > div { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.decision-card > div span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--ink); font-size: .7rem; font-weight: 900; }
.decision-card small { color: var(--ink-soft); font-size: .6rem; letter-spacing: .13em; font-weight: 900; text-align: right; }
.decision-card h3 { margin: 46px 0 13px; font-size: 1.38rem; line-height: 1.48; letter-spacing: -.025em; }
.decision-card p { margin: 0; color: var(--ink-soft); font-size: .86rem; }
.decision-card b { margin-top: auto; padding-top: 26px; color: var(--coral-deep); font-size: .73rem; }
.decision-card:nth-child(2) > div span { background: #6f98a7; }
.decision-card:nth-child(3) > div span { color: var(--ink); background: #d4b76e; }
.decision-card:nth-child(4) > div span { background: #789b8f; }
.decision-action { margin-top: 20px; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 253, 248, .72); }
.decision-action p { margin: 0; color: var(--ink-soft); font-size: .84rem; }
.decision-action a { flex: 0 0 auto; font-size: .8rem; font-weight: 850; }

.partner-proof { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(54px, 8vw, 120px); align-items: start; }
.proof-heading { position: sticky; top: 130px; }
.proof-heading h2 { font-size: clamp(2.5rem, 4.5vw, 4.4rem); }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
.proof-grid article { min-height: 245px; padding: 30px 2px; border-top: 1px solid var(--line); }
.proof-grid article:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
.proof-grid span { color: var(--coral-deep); font-size: .67rem; letter-spacing: .15em; font-weight: 900; }
.proof-grid h3 { margin: 32px 0 8px; font-size: 1.38rem; }
.proof-grid p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
.promise-shape span:nth-child(1) { background: #d8bd79; }
.promise-shape span:nth-child(2) { background: #96b7c1; }
.promise-shape span:nth-child(3) { background: #c87969; }
.circle-link { background: #a5bdb5; }

.page-about::before { background: radial-gradient(circle at 90% 13%, rgba(170, 166, 178, .16), transparent 27rem), radial-gradient(circle at 7% 34%, rgba(145, 175, 164, .14), transparent 22rem); }
.about-hero-image img,
.services-hero-image img,
.contact-hero-image img { filter: saturate(.78) contrast(1.02); }
.about-hero-image figcaption { background: var(--ink); }
.name-one { background: #24364a; box-shadow: 8px 8px 0 #c7a75d; }
.name-journey { background: #e3d19f; }
.craft-a { background: #e8d8ac; }
.craft-b { background: #e5e2e8; }
.craft-c { background: #dce7e2; }
.craft-d { background: #dce9ed; }
.about-craft-photo { margin-block: 18px clamp(90px, 10vw, 145px); }
.about-craft-photo figure { position: relative; margin: 0; overflow: hidden; border-radius: 34px; box-shadow: var(--shadow); }
.about-craft-photo img { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; filter: saturate(.8) contrast(1.02); }
.about-craft-photo figure::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(to top, rgba(16, 29, 43, .86), transparent); pointer-events: none; }
.about-craft-photo figcaption { position: absolute; z-index: 2; left: clamp(25px, 4vw, 52px); right: clamp(25px, 4vw, 52px); bottom: clamp(25px, 4vw, 48px); display: flex; justify-content: space-between; align-items: end; gap: 40px; color: white; }
.about-craft-photo figcaption span { max-width: 240px; font-size: .78rem; letter-spacing: .12em; font-weight: 900; }
.about-craft-photo figcaption strong { max-width: 680px; font-size: clamp(1.65rem, 3.3vw, 3.1rem); line-height: 1.3; text-align: right; }

.page-services::before { background: radial-gradient(circle at 8% 7%, rgba(200, 103, 86, .11), transparent 23rem), radial-gradient(circle at 93% 25%, rgba(214, 185, 109, .15), transparent 29rem); }
.services-hero-image::before { background: #d8c38c; }
.services-hero-image figcaption { background: rgba(24, 40, 58, .88); }
.service-map { background: #1e3044; }
.service-panel { grid-column: span 6; min-height: 690px; padding: 36px; border: 1px solid rgba(255, 255, 255, .34); color: var(--ink); background: #f8f7f3; box-shadow: 0 14px 32px rgba(5, 15, 26, .12); }
.service-panel:hover { transform: translateY(-6px); }
.service-panel h3 { margin: 38px 0 14px; font-size: clamp(1.75rem, 2.6vw, 2.35rem); }
.service-panel .service-summary { font-size: 1rem; line-height: 1.85; }
.service-fit { margin-top: 27px; padding: 20px 21px; border: 1px solid rgba(24, 40, 58, .12); border-radius: 18px; background: rgba(255, 255, 255, .56); }
.service-fit b { display: block; margin-bottom: 5px; color: var(--coral-deep); font-size: .83rem; letter-spacing: .04em; }
.service-fit p { margin: 0; color: var(--ink-soft); font-size: .95rem; line-height: 1.75; }
.service-panel ul { margin: 24px 0 0; padding-top: 0; }
.service-panel li { padding: 7px 11px; background: rgba(255, 255, 255, .68); font-size: .86rem; }
.service-panel .service-value { margin-top: auto; padding-top: 25px; border-top: 1px solid rgba(24, 40, 58, .14); font-size: .96rem; line-height: 1.75; }
.service-value b { display: block; margin-bottom: 4px; color: var(--coral-deep); font-size: .82rem; letter-spacing: .04em; }
.panel-coral,
.panel-blue,
.panel-yellow,
.panel-mint,
.panel-lavender,
.panel-peach { color: var(--ink); }
.panel-coral { --panel-accent: #7d673f; border-top: 5px solid #9b835d; border-color: #9b835d rgba(255, 255, 255, .34) rgba(255, 255, 255, .34); background: #ece7de; }
.panel-coral li { border-color: rgba(24, 40, 58, .18); background: rgba(255, 255, 255, .68); }
.panel-coral .service-summary,
.panel-coral .service-fit p { color: var(--ink-soft); }
.panel-coral .service-fit { border-color: rgba(24, 40, 58, .12); background: rgba(255, 255, 255, .56); }
.panel-coral .service-fit b,
.panel-coral .service-value b { color: #7d673f; }
.panel-coral .service-value { border-color: rgba(24, 40, 58, .14); }
.panel-blue { --panel-accent: #567584; border-top: 5px solid #728e9c; background: #e2eaee; }
.panel-yellow { --panel-accent: #7c6636; border-top: 5px solid #a48b54; background: #eee8d8; }
.panel-mint { --panel-accent: #4f7367; border-top: 5px solid #6f8e83; background: #e2e9e5; }
.panel-lavender { --panel-accent: #686471; border-top: 5px solid #85818d; background: #e6e5e8; }
.panel-peach { --panel-accent: #765c4d; border-top: 5px solid #9a7965; background: #ece4de; }
.service-panel .panel-top small,
.service-panel .service-fit b,
.service-panel .service-value b { color: var(--panel-accent); }
.service-scenes-head { display: grid; grid-template-columns: 1.05fr .7fr; gap: 72px; align-items: end; }
.service-scenes-head h2 { margin: 16px 0 0; font-size: clamp(2.65rem, 5.1vw, 5rem); line-height: 1.12; letter-spacing: -.055em; }
.service-scenes-head > p { margin: 0 0 8px; color: var(--ink-soft); font-size: 1.03rem; }
.service-scenes-grid { margin-top: 58px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-scene { overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: var(--paper); box-shadow: 0 18px 44px rgba(24, 40, 58, .09); }
.service-scene img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.82) contrast(1.02); }
.service-scene > div { padding: 28px 30px 32px; }
.service-scene span { color: var(--coral-deep); font-size: .78rem; letter-spacing: .12em; font-weight: 900; }
.service-scene h3 { margin: 18px 0 9px; font-size: 1.65rem; line-height: 1.38; }
.service-scene p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
.focus-lane { background: #eaeeef; }
.focus-stamp { color: white; background: #25384c; box-shadow: 12px 12px 0 #cdb16b; }
.sport-tourism-lane { background: #f1eee6; }
.sport-focus-grid { grid-template-columns: 1.38fr .62fr; }
.sport-stamp { justify-self: end; background: #587785; box-shadow: 12px 12px 0 #c9ae68; transform: rotate(2deg); }
.sport-tourism-lane .clarify-note { border-left-color: #587785; }
.sport-tourism-lane .focus-tags span { border-color: rgba(88, 119, 133, .28); background: rgba(255, 255, 255, .72); }
.engagement-grid article:nth-child(1) { box-shadow: 7px 7px 0 #99b8c1; }
.engagement-grid article:nth-child(2) { box-shadow: 7px 7px 0 #a8beb6; }
.engagement-grid article:nth-child(3) { box-shadow: 7px 7px 0 #bdb9c2; }

.page-work { background: #f7f4ed; }
.work-poster { border-color: #23364a; background: #2a3d51; box-shadow: 14px 14px 0 #cbb06c; }
.work-poster::before { background: #91b1bb; }
.work-poster::after { background: #8ba99f; }
.poster-a { background: #d8bd79; }
.poster-b { background: #9dbbc4; }
.poster-c { background: #9eb6ae; }
.poster-d { background: #b7b3bd; }
.work-poster i { border-color: #c6a759; }

.field-section { color: white; background: #1e3044; }
.field-section .section-label { color: #d8bd79; }
.field-heading { display: grid; grid-template-columns: 1.05fr .7fr; gap: 72px; align-items: end; }
.field-heading > p { margin: 0 0 8px; color: rgba(255, 255, 255, .76); font-size: 1.02rem; }
.field-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.field-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(255, 255, 255, .16); border-radius: 28px; color: var(--ink); background: #faf8f2; box-shadow: 0 18px 40px rgba(4, 12, 22, .18); }
.field-media { aspect-ratio: 4 / 3; overflow: hidden; background: #0d1824; }
.field-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(.82) contrast(1.03); transition: transform .55s var(--ease); }
.field-card:hover .field-media img { transform: scale(1.035); }
.field-copy { flex: 1; padding: 25px 25px 29px; display: flex; flex-direction: column; }
.field-copy > div { display: flex; justify-content: space-between; gap: 15px; align-items: center; }
.field-copy span { padding: 6px 11px; border-radius: 999px; color: white; background: #6f98a7; font-size: .78rem; font-weight: 800; }
.field-card:nth-child(2) .field-copy span { background: #ae6557; }
.field-card:nth-child(3) .field-copy span { background: #778f87; }
.field-card:nth-child(4) .field-copy span { background: #9a7b47; }
.field-card:nth-child(5) .field-copy span { background: #6e7f99; }
.field-card:nth-child(6) .field-copy span { background: #9b6850; }
.field-card:nth-child(7) .field-copy span { background: #587b89; }
.field-card:nth-child(8) .field-copy span { background: #8f7449; }
.field-card:nth-child(9) .field-copy span { background: #786d86; }
.field-copy small { color: var(--ink-soft); font-size: .78rem; letter-spacing: .1em; font-weight: 900; text-align: right; }
.field-copy h3 { margin: 20px 0 9px; font-size: 1.5rem; line-height: 1.4; }
.field-copy p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.platform-strip { margin-top: 20px; padding: 23px 26px; display: flex; justify-content: space-between; align-items: center; gap: 25px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 20px; background: rgba(255, 255, 255, .055); }
.platform-strip strong { font-size: .96rem; }
.platform-strip > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.platform-strip span { padding: 7px 11px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 999px; color: rgba(255, 255, 255, .78); font-size: .8rem; font-weight: 750; }

.senior-story { background: #edf1ef; }
.senior-story-intro { display: grid; grid-template-columns: 1.05fr .7fr; gap: 72px; align-items: end; }
.senior-story-intro > p { margin: 0 0 8px; color: var(--ink-soft); font-size: 1.04rem; }
.senior-gallery { margin-top: 62px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.senior-photo { min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--paper); box-shadow: 0 14px 34px rgba(24, 40, 58, .08); }
.senior-photo img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center 43%; filter: saturate(.78) contrast(1.02); }
.senior-photo figcaption { min-height: 116px; padding: 16px 18px 18px; display: flex; align-items: flex-start; gap: 11px; }
.senior-photo figcaption span { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--ink); font-size: .72rem; font-weight: 850; }
.senior-photo figcaption b { display: block; font-size: 1.05rem; }
.senior-photo figcaption small { display: block; margin-top: 4px; color: var(--ink-soft); font-size: .9rem; font-weight: 500; line-height: 1.7; }
.visual-note { margin: 18px 0 0; color: var(--ink-soft); font-size: .88rem; }
.senior-capabilities { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.senior-capabilities article { min-height: 255px; padding: 30px; border-top: 4px solid #819f95; border-radius: 4px 4px 22px 22px; background: rgba(255, 253, 248, .74); }
.senior-capabilities article:nth-child(2) { border-color: #b2944f; }
.senior-capabilities article:nth-child(3) { border-color: #8da7b0; }
.senior-capabilities span { color: var(--coral-deep); font-size: .76rem; letter-spacing: .12em; font-weight: 900; }
.senior-capabilities h3 { margin: 26px 0 8px; font-size: 1.5rem; }
.senior-capabilities p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

.case-card { border-width: 1px; }
.case-brand { background: #eee5cd; }
.case-health { background: #e1ebee; }
.case-sport { background: #e1eae6; }
.case-event { background: #e8e6ea; }
.next-page { background: #e5d6a8; box-shadow: 10px 10px 0 var(--ink); }
.next-page-services { background: #dbe8ec; }
.next-page-work { background: #dfe9e5; }

.page-contact { background: #f4f2ec; }
.page-contact::before { background: radial-gradient(circle at 7% 18%, rgba(214, 185, 109, .17), transparent 25rem), radial-gradient(circle at 92% 12%, rgba(145, 175, 164, .14), transparent 26rem); }
.contact-hero-image::before { background: #a8bdb5; }
.contact-hero-image figcaption { background: #ddca95; }
.brief-section { background: #e7d9b0; }
.contact-details-head > p:last-child { max-width: 720px; margin: 24px 0 0; color: var(--ink-soft); font-size: 1rem; }
.contact-detail-grid { grid-template-columns: 1fr; }
.detail-email { color: white; background: #2a3d51; }
.detail-email strong { overflow-wrap: anywhere; font-size: clamp(1.85rem, 4.4vw, 3.7rem); }
.contact-finale { box-shadow: 11px 11px 0 #b9b4be; }
.contact-finale > a { color: var(--ink); background: #d9c075; }
/* Readability pass */
.site-nav a { font-size: .95rem; }
.eyebrow,
.section-label { font-size: .875rem; }
.button { font-size: .98rem; }
.color-ribbon > div { font-size: .94rem; }
.float-card small { font-size: .72rem; }
.name-card small,
.craft-card b,
.panel-top small,
.engagement-grid span,
.case-card > p,
.detail-card small { font-size: .78rem; }
.name-card p,
.craft-card p,
.belief-list p,
.engagement-grid p,
.case-disclaimer p,
.brief-list p,
.faq-list details p { font-size: 1rem; }
.decision-card small { font-size: .76rem; }
.decision-card p,
.proof-grid p,
.decision-action p { font-size: .96rem; }
.decision-card b,
.decision-action a { font-size: .86rem; }
.proof-grid span,
.services-hero-image figcaption span,
.focus-stamp small,
.focus-stamp span { font-size: .76rem; }
.focus-tags span,
.clarify-note,
.case-card li,
.detail-card > span { font-size: .9rem; }
.site-footer { font-size: .88rem; }

@media (max-width: 980px) {
  .brand img { width: 190px; }
  .site-nav { border-color: rgba(24, 40, 58, .12); background: #fffdf8; }
  .site-nav a { color: #526171; }
  .decision-head,
  .field-heading,
  .senior-story-intro,
  .service-scenes-head,
  .sport-focus-grid { grid-template-columns: 1fr; gap: 24px; }
  .decision-grid { grid-template-columns: 1fr 1fr; }
  .partner-proof { grid-template-columns: 1fr; }
  .proof-heading { position: static; max-width: 720px; }
  .field-grid { grid-template-columns: repeat(2, 1fr); }
  .field-copy { padding: 21px; }
  .field-copy > div { align-items: flex-start; flex-direction: column; }
  .platform-strip { align-items: flex-start; flex-direction: column; }
  .platform-strip > div { justify-content: flex-start; }
  .service-panel { min-height: 720px; }
  .sport-stamp { justify-self: start; }
}

@media (max-width: 680px) {
  .brand img { width: 176px; }
  .decision-grid,
  .proof-grid,
  .field-grid,
  .senior-capabilities,
  .service-scenes-grid { grid-template-columns: 1fr; }
  .decision-card { min-height: 325px; }
  .decision-action { align-items: flex-start; flex-direction: column; }
  .proof-grid article,
  .proof-grid article:nth-last-child(-n+2) { min-height: 0; border-bottom: 0; }
  .proof-grid article:last-child { border-bottom: 1px solid var(--line); }
  .field-media { aspect-ratio: 4 / 3; }
  .field-copy > div { flex-direction: row; align-items: center; }
  .senior-gallery { grid-template-columns: 1fr; }
  .service-panel { min-height: 0; padding: 29px 25px; }
  .about-craft-photo img { aspect-ratio: 4 / 5; }
  .about-craft-photo figcaption { align-items: flex-start; flex-direction: column; gap: 13px; }
  .about-craft-photo figcaption strong { text-align: left; }
}
