@font-face {
  font-family: "Symbols Satoshi";
  src: url("../fonts/satoshi-symbols-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Symbols Satoshi";
  src: url("../fonts/satoshi-symbols-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #102037;
  --ink-muted: #53657a;
  --blue-950: #0d47a1;
  --blue-700: #1976d2;
  --blue-500: #2196f3;
  --blue-300: #90caf9;
  --blue-100: #e3f2fd;
  --paper: #ffffff;
  --paper-soft: #f5faff;
  --line: #d8e6f1;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 24px 60px rgba(13, 71, 161, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Symbols Satoshi", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

body,
button,
input,
textarea,
select {
  font-family: "Symbols Satoshi", Arial, Helvetica, sans-serif;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--blue-300);
  color: var(--blue-950);
}

.site-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: var(--paper-soft);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1,
h2 {
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.75rem);
}

h3 {
  font-size: 1.4rem;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.65;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(216, 230, 241, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand-logo {
  position: relative;
  z-index: 52;
  display: block;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 104px;
  height: 72px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #27405f;
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--blue-500);
  color: white;
  box-shadow: 0 8px 22px rgba(13,71,161,.22);
}

.button-primary:hover {
  background: var(--blue-950);
}

.button-light {
  background: var(--blue-500);
  color: white;
  box-shadow: 0 8px 22px rgba(13,71,161,.20);
}
.button-light:hover {
  background: var(--blue-500);
  color: white;
  box-shadow: 0 12px 28px rgba(13,71,161,.30);
}

.header-cta {
  min-height: 46px;
  padding-inline: 21px;
}

.menu-button {
  position: relative;
  z-index: 52;
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue-950);
  content: "";
  transition: 180ms ease;
}

.menu-button span::before {
  transform: translateY(-6px);
}

.menu-button span::after {
  transform: translateY(4px);
}

.menu-button.is-open span {
  background: transparent;
}

.menu-button.is-open span::before {
  transform: translateY(0) rotate(45deg);
}

.menu-button.is-open span::after {
  transform: translateY(-2px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 51;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 108px 24px 36px;
  background: var(--paper-soft);
}

.mobile-nav a:not(.button) {
  border-bottom: 1px solid var(--line);
  padding: 16px 2px;
  color: var(--blue-950);
  font-size: clamp(1.8rem, 9vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-nav .button {
  margin-top: 22px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 92px;
  background:
    radial-gradient(circle at 88% 12%, rgba(144, 202, 249, 0.32), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.home-hero::after {
  position: absolute;
  right: -150px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(33, 150, 243, 0.04),
    0 0 0 108px rgba(33, 150, 243, 0.025);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 78px;
}

.hero-copy h1 {
  max-width: 730px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 7.1vw, 7.2rem);
}

.hero-copy h1 span {
  display: block;
  color: var(--blue-500);
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-muted);
  font-size: clamp(1.06rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--blue-950);
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero-proof {
  display: flex;
  max-width: 440px;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-proof strong {
  color: var(--blue-950);
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-proof span {
  color: var(--ink-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-image-frame {
  position: absolute;
  inset: 38px 10px 20px 34px;
  overflow: hidden;
  border-radius: 44% 44% 24px 24px;
  background: var(--blue-100);
  box-shadow: var(--shadow);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 71, 161, 0.38));
}

.hero-stamp {
  position: absolute;
  right: -12px;
  bottom: 0;
  display: flex;
  width: 152px;
  height: 152px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 10px solid white;
  border-radius: 50%;
  background: var(--blue-950);
  box-shadow: 0 18px 38px rgba(13, 71, 161, 0.22);
  color: white;
  text-align: center;
}

.hero-stamp span {
  font-size: 0.57rem;
  letter-spacing: 0.14em;
}

.hero-stamp strong {
  margin: 3px 0;
  font-size: 0.95rem;
}

.floating-label {
  position: absolute;
  border: 1px solid rgba(33, 150, 243, 0.22);
  border-radius: 999px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 12px 28px rgba(13, 71, 161, 0.12);
  color: var(--blue-950);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.label-signage {
  top: 74px;
  left: 0;
}

.label-print {
  top: 41%;
  right: -18px;
}

.label-packaging {
  bottom: 86px;
  left: 6px;
}

.service-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--blue-950);
  color: white;
}

.service-marquee div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  animation: ticker 26s linear infinite;
}

.service-marquee span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.service-marquee i {
  color: var(--blue-300);
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 80px;
  margin-bottom: 54px;
}

.section-heading p:last-child {
  margin-bottom: 6px;
  color: var(--ink-muted);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 315px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  background: white;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.service-card:first-child,
.service-card:nth-child(5) {
  grid-column: span 2;
}

.service-card:first-child {
  background: var(--blue-100);
}

.service-card:nth-child(5) {
  background: var(--blue-950);
  color: white;
}

.service-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 20px 45px rgba(13, 71, 161, 0.1);
  transform: translateY(-5px);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-card:nth-child(5) .service-card-top {
  color: var(--blue-300);
}

.service-card h3 {
  margin: 42px 0 14px;
  text-transform: uppercase;
}

.service-card p {
  max-width: 480px;
  margin-bottom: 24px;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.service-card:nth-child(5) p {
  color: #c9d8e9;
}

.service-card small {
  color: var(--blue-700);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card:nth-child(5) small {
  color: var(--blue-300);
}

.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 90px;
}

.story-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-950);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.story-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 5.2vw, 5rem);
}

.story-copy p {
  color: var(--ink-muted);
}

.story-copy .lead {
  color: var(--ink);
}

.story-copy .text-link {
  margin-top: 15px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.process-step {
  min-height: 280px;
  padding: 34px 34px 30px 0;
}

.process-step + .process-step {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.process-step > span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 64px;
  background: var(--blue-100);
  color: var(--blue-950);
  font-size: 0.7rem;
  font-weight: 700;
}

.process-step h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
}

.process-step p {
  max-width: 300px;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.project-cta {
  padding: 0 0 32px;
}

.project-cta-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  border-radius: var(--radius-lg);
  padding: 72px;
  background: var(--blue-950);
  color: white;
}

.project-cta-inner::before,
.project-cta-inner::after {
  position: absolute;
  border: 1px solid rgba(144, 202, 249, 0.18);
  border-radius: 50%;
  content: "";
}

.project-cta-inner::before {
  top: -130px;
  right: 70px;
  width: 320px;
  height: 320px;
}

.project-cta-inner::after {
  top: -78px;
  right: 122px;
  width: 216px;
  height: 216px;
}

.project-cta .eyebrow {
  color: var(--blue-300);
}

.project-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 830px;
  font-size: clamp(2.5rem, 5.3vw, 5.3rem);
}

.project-cta .button {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  background:
    linear-gradient(90deg, rgba(227, 242, 253, 0.82), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.page-hero::after {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(33, 150, 243, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(33, 150, 243, 0.035),
    0 0 0 108px rgba(33, 150, 243, 0.025);
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 80px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(3.6rem, 8vw, 8rem);
}

.page-hero h1 span {
  display: block;
  color: var(--blue-500);
}

.page-hero-copy {
  max-width: 430px;
  margin-bottom: 8px;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.service-explorer-wrap {
  padding-top: 84px;
}

.service-explorer {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 56px;
}

.service-tabs {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.service-tab {
  display: grid;
  align-items: center;
  grid-template-columns: 38px 1fr auto;
  gap: 8px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 19px 4px;
  background: transparent;
  color: var(--ink-muted);
  text-align: left;
  transition:
    color 180ms ease,
    padding 180ms ease;
}

.service-tab span:first-child,
.service-tab span:last-child {
  color: var(--blue-700);
  font-size: 0.66rem;
  font-weight: 700;
}

.service-tab strong {
  font-size: 0.84rem;
  text-transform: uppercase;
}

.service-tab:hover,
.service-tab.active {
  padding-left: 12px;
  color: var(--blue-950);
}

.service-tab.active {
  background: var(--blue-100);
}

.service-panel {
  min-height: 590px;
  border-radius: var(--radius-lg);
  padding: 50px;
  background: var(--paper-soft);
}

.service-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}

.service-panel-header h2 {
  max-width: 650px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.service-panel-header span {
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--blue-950);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 14px 10px 14px 23px;
  color: #2d4663;
  font-size: 0.92rem;
}

.service-list li::before {
  position: absolute;
  top: 23px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--blue-500);
  content: "";
  transform: rotate(45deg);
}

.services-summary {
  padding-top: 40px;
}

.services-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.summary-tile {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  background: white;
}

.summary-tile strong {
  display: block;
  margin-bottom: 42px;
  color: var(--blue-500);
  font-size: 2.4rem;
  letter-spacing: -0.05em;
}

.summary-tile h3 {
  margin-bottom: 0;
  text-transform: uppercase;
}

.summary-tile:last-child {
  background: var(--blue-950);
  color: white;
}

.about-hero {
  padding-bottom: 88px;
}

.about-intro-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 86px;
}

.about-intro-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.about-intro-copy p {
  color: var(--ink-muted);
}

.about-intro-copy .lead {
  color: var(--ink);
}

.about-intro-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blue-100);
}

.about-intro-image img {
  width: 100%;
  min-height: 570px;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border-block: 1px solid var(--line);
}

.about-stat {
  padding: 34px 0;
}

.about-stat + .about-stat {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.about-stat strong {
  display: block;
  color: var(--blue-950);
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.about-stat span {
  color: var(--ink-muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  background: white;
}

.value-card > span {
  display: block;
  margin-bottom: 70px;
  color: var(--blue-500);
  font-size: 0.7rem;
  font-weight: 700;
}

.value-card h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
}

.value-card p {
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.founder-section {
  background: var(--blue-950);
  color: white;
}

.founder-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 410px minmax(0, 1fr);
  gap: 84px;
}

.founder-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
}

.founder-image img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.founder-copy .eyebrow {
  color: var(--blue-300);
}

.founder-quote {
  max-width: 710px;
  margin-bottom: 34px;
  font-size: clamp(2rem, 4.3vw, 4.3rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-transform: uppercase;
}

.founder-name {
  margin-bottom: 0;
  color: var(--blue-300);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
}

.contact-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.contact-intro > p {
  color: var(--ink-muted);
}

.contact-detail {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.contact-detail span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-700);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong {
  font-size: 1.15rem;
}

.contact-form {
  border-radius: var(--radius-lg);
  padding: 46px;
  background: var(--paper-soft);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--blue-950);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: 0;
  padding: 15px 16px;
  background: white;
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .button {
  margin-top: 28px;
}

.form-note {
  margin: 20px 0 0;
  color: var(--ink-muted);
  font-size: 0.75rem;
}

.form-success {
  display: flex;
  min-height: 500px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--blue-300);
  border-radius: var(--radius-lg);
  padding: 46px;
  background: var(--blue-100);
  text-align: center;
}

.form-success span {
  display: flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 26px;
  background: var(--blue-500);
  color: white;
  font-size: 1.6rem;
}

.form-success h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.form-success p {
  max-width: 460px;
  margin-bottom: 28px;
  color: var(--ink-muted);
}

.site-footer {
  padding: 76px 0 28px;
  background: #071f45;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 80px;
  padding-bottom: 62px;
}

.footer-brand img {
  width: 155px;
  height: auto;
  margin-bottom: 28px;
  border-radius: 0;
  padding: 0;
  background: transparent;
  object-fit: contain;
  display: block;
}

.footer-brand h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
}

.footer-brand p {
  max-width: 520px;
  margin-bottom: 0;
  color: #b9cce3;
}

.footer-column h3 {
  margin-bottom: 22px;
  color: var(--blue-300);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin-bottom: 12px;
  color: #dbe8f5;
  font-size: 0.88rem;
}

.footer-column a:hover {
  color: var(--blue-300);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(144, 202, 249, 0.2);
  padding-top: 24px;
  color: #89a4c2;
  font-size: 0.72rem;
}

.footer-bottom strong {
  color: var(--blue-300);
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    max-width: 790px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-image-frame {
    inset: 22px 40px 20px;
  }

  .label-signage {
    left: 20px;
  }

  .label-print {
    right: 20px;
  }

  .label-packaging {
    left: 28px;
  }

  .hero-stamp {
    right: 25px;
  }

  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:first-child,
  .service-card:nth-child(5) {
    grid-column: span 1;
  }

  .service-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .story-grid,
  .about-intro-grid {
    gap: 50px;
  }

  .project-cta-inner {
    grid-template-columns: 1fr;
    padding: 56px;
  }

  .project-cta .button {
    justify-self: start;
  }

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

  .service-tabs {
    position: static;
    overflow-x: auto;
    flex-direction: row;
    border: 0;
    padding-bottom: 8px;
  }

  .service-tab {
    min-width: 205px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 16px;
  }

  .service-tab + .service-tab {
    margin-left: 8px;
  }

  .service-tab:hover,
  .service-tab.active {
    padding-left: 16px;
  }

  .service-tab span:first-child {
    display: none;
  }

  .service-panel {
    min-height: 0;
  }

  .founder-grid {
    grid-template-columns: 340px 1fr;
    gap: 50px;
  }
}

@media (max-width: 760px) {
  .site-container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-logo img {
    width: 92px;
    height: 62px;
  }

  .home-hero {
    padding: 54px 0 70px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 16vw, 5.2rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-proof {
    margin-top: 36px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-image-frame {
    inset: 22px 12px 14px;
    border-radius: 42% 42% 22px 22px;
  }

  .hero-stamp {
    right: 0;
    width: 124px;
    height: 124px;
    border-width: 7px;
  }

  .hero-stamp strong {
    font-size: 0.8rem;
  }

  .label-print {
    right: -4px;
  }

  .label-signage {
    left: 0;
  }

  .label-packaging {
    bottom: 74px;
    left: 0;
  }

  .section-heading,
  .page-hero-grid,
  .story-grid,
  .about-intro-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .service-card-grid,
  .process-grid,
  .services-summary-grid,
  .values-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(5) {
    min-height: 275px;
    grid-column: auto;
  }

  .story-image img,
  .about-intro-image img {
    min-height: 430px;
  }

  .process-grid {
    border: 0;
  }

  .process-step {
    min-height: 0;
    border-top: 1px solid var(--line);
    padding: 26px 0;
  }

  .process-step + .process-step {
    border-left: 0;
    padding-left: 0;
  }

  .process-step > span {
    margin-bottom: 38px;
  }

  .project-cta-inner {
    gap: 38px;
    border-radius: var(--radius-md);
    padding: 44px 28px;
  }

  .page-hero {
    padding: 74px 0 64px;
  }

  .page-hero h1 {
    font-size: clamp(3.3rem, 17vw, 6.2rem);
  }

  .service-explorer-wrap {
    padding-top: 60px;
  }

  .service-panel {
    border-radius: var(--radius-md);
    padding: 30px 22px;
  }

  .service-panel-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 26px;
  }

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

  .about-stat + .about-stat {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .founder-image {
    max-width: 440px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    border-radius: var(--radius-md);
    padding: 30px 22px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 46px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 440px) {
  .image-caption {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
    gap: 3px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Aqua-inspired floating contact motion */
.contact-floating::before{content:"";position:absolute;left:7px;top:4px;width:64px;height:64px;border-radius:50%;border:2px solid rgba(37,211,102,.48);pointer-events:none;animation:whatsappRing 2.4s ease-out infinite}
.contact-floating-icon{animation:whatsappPulse 2.4s ease-in-out infinite}
.contact-floating-text{animation:contactLabelIn 2.4s ease-in-out infinite}
@keyframes whatsappRing{0%{transform:scale(.86);opacity:.65}65%,100%{transform:scale(1.34);opacity:0}}
@keyframes whatsappPulse{0%,58%,100%{transform:scale(1)}63%{transform:scale(1.08)}68%{transform:scale(1)}}
@keyframes contactLabelIn{0%,55%,100%{transform:translateX(0)}61%{transform:translateX(-3px)}67%{transform:translateX(0)}}
@media (prefers-reduced-motion:reduce){.contact-floating::before,.contact-floating-icon,.contact-floating-text{animation:none!important}}

/* Floating Contact Us button */
.contact-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  background: #1677e8;
  color: #fff;
  box-shadow: 0 12px 30px rgba(16, 32, 55, 0.22);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-floating:hover,
.contact-floating:focus-visible {
  transform: translateY(-3px);
  background: #0f68d1;
  box-shadow: 0 16px 36px rgba(16, 32, 55, 0.28);
}

.contact-floating-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.contact-floating-icon svg {
  width: 25px;
  height: 25px;
}

.contact-floating-text {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .contact-floating {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .contact-floating-icon {
    width: 40px;
    height: 40px;
    background: transparent;
  }

  .contact-floating-icon svg {
    width: 30px;
    height: 30px;
  }

  .contact-floating-text {
    display: none;
  }
}

/* Three-slide homepage hero — smooth, subtle motion */
.hero-slider {
  position: relative;
  min-height: 700px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 18%, rgba(144,202,249,.34), transparent 28%),
    linear-gradient(180deg,#fff 0%,#f5faff 100%);
}
.hero-slides {
  position: relative;
  min-height: 700px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 700px;
  opacity: 0;
  transform: scale(1.018);
  animation: heroSlide 21s infinite;
}
.hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-slide:nth-child(3) { animation-delay: 14s; }

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 80% 45%, rgba(33,150,243,.14), transparent 24%),
    linear-gradient(100deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 48%, rgba(233,245,255,.62) 100%);
  pointer-events: none;
}
.hero-slide:nth-child(2)::before {
  background:
    radial-gradient(circle at 82% 48%, rgba(0,126,255,.17), transparent 26%),
    linear-gradient(100deg, rgba(255,255,255,.96) 0%, rgba(248,252,255,.83) 48%, rgba(219,239,255,.68) 100%);
}
.hero-slide:nth-child(3)::before {
  background:
    radial-gradient(circle at 82% 48%, rgba(29,130,220,.15), transparent 27%),
    linear-gradient(100deg, rgba(255,255,255,.97) 0%, rgba(247,251,255,.84) 48%, rgba(226,242,255,.7) 100%);
}
.hero-slide .hero-grid {
  min-height: 700px;
  z-index: 2;
}
.hero-slide .hero-copy,
.hero-slide .hero-visual {
  animation: heroContent 21s infinite;
}
.hero-slide:nth-child(2) .hero-copy,
.hero-slide:nth-child(2) .hero-visual { animation-delay: 7s; }
.hero-slide:nth-child(3) .hero-copy,
.hero-slide:nth-child(3) .hero-visual { animation-delay: 14s; }
.hero-slide .hero-image-frame {
  transform-origin: center center;
  animation: heroImage 21s infinite;
}
.hero-slide:nth-child(2) .hero-image-frame { animation-delay: 7s; }
.hero-slide:nth-child(3) .hero-image-frame { animation-delay: 14s; }
.hero-slide .hero-image-tint {
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(13,71,161,.28)),
    linear-gradient(115deg, rgba(255,255,255,.10), transparent 45%, rgba(33,150,243,.16));
  animation: heroShade 6s ease-in-out infinite alternate;
}
.hero-slide:nth-child(2) .hero-image-tint {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,80,180,.30)),
    linear-gradient(115deg, rgba(33,150,243,.18), transparent 50%, rgba(255,255,255,.08));
}
.hero-slide:nth-child(3) .hero-image-tint {
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(13,71,161,.24)),
    linear-gradient(115deg, rgba(255,255,255,.15), transparent 48%, rgba(0,126,255,.14));
}
.hero-slider-nav {
  position: absolute;
  left: max(24px, calc((100% - 1180px) / 2));
  bottom: 28px;
  z-index: 8;
  display: flex;
  gap: 7px;
}
.hero-slider-nav span {
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: rgba(13,71,161,.18);
}


@keyframes heroSlide {
  0%, 2% { opacity: 0; transform: scale(1.018); }
  5%, 29% { opacity: 1; transform: scale(1); }
  33%, 100% { opacity: 0; transform: scale(1.012); }
}
@keyframes heroContent {
  0%, 2% { opacity: 0; transform: translateY(18px); }
  5%, 27% { opacity: 1; transform: translateY(0); }
  30%, 100% { opacity: 0; transform: translateY(-8px); }
}
@keyframes heroImage {
  0%, 2% { transform: scale(1.05); }
  5%, 30% { transform: scale(1); }
  33%, 100% { transform: scale(1.03); }
}
@keyframes heroShade {
  from { filter: saturate(.95) brightness(1); transform: translateX(-1%); }
  to { filter: saturate(1.08) brightness(1.03); transform: translateX(1%); }
}
@keyframes heroDot1 {
  0%,33% { background: var(--blue-500); }
  34%,100% { background: rgba(13,71,161,.18); }
}
@keyframes heroDot2 {
  0%,33% { background: rgba(13,71,161,.18); }
  34%,66% { background: var(--blue-500); }
  67%,100% { background: rgba(13,71,161,.18); }
}
@keyframes heroDot3 {
  0%,66% { background: rgba(13,71,161,.18); }
  67%,99% { background: var(--blue-500); }
  100% { background: rgba(13,71,161,.18); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide .hero-copy,
  .hero-slide .hero-visual,
  .hero-slide .hero-image-frame,
  .hero-slide .hero-image-tint,
  .hero-slider-nav span {
    animation: none !important;
  }
  .hero-slide { opacity: 0; transform: none; }
  .hero-slide:first-child { opacity: 1; }
}
@media (max-width: 900px) {
  .hero-slider, .hero-slides, .hero-slide, .hero-slide .hero-grid { min-height: 820px; }
}
@media (max-width: 640px) {
  .hero-slider, .hero-slides, .hero-slide, .hero-slide .hero-grid { min-height: 760px; }
  .hero-slide .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 54px;
  }
  .hero-slide .hero-visual { min-height: 350px; }
  .hero-slide .hero-image-frame { inset: 10px 10px 20px 24px; }
  .hero-slider-nav { left: 24px; bottom: 18px; }
}


/* Gallery page */
.gallery-page {
  padding: 120px 0 90px;
  background: linear-gradient(180deg, #fff, #f5faff);
}
.gallery-page h1 {
  margin: 8px 0 14px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .95;
  letter-spacing: -.045em;
}
.gallery-intro {
  max-width: 650px;
  margin: 0 0 46px;
  color: #64748b;
  font-size: 18px;
  line-height: 1.65;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 45, 80, .10);
}
.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  padding: 18px 20px 20px;
  font-weight: 700;
  color: #12233d;
}
@media (max-width: 640px) {
  .gallery-page { padding: 90px 0 60px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Service category visuals */
.service-tab {
  position: relative;
  overflow: hidden;
}
.service-tab::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(33,150,243,.08));
  pointer-events: none;
}
.service-tab strong,
.service-tab span { position: relative; z-index: 1; }

.service-panel {
  position: relative;
}
.service-panel-image {
  position: relative;
  width: 100%;
  margin-bottom: 34px;
  overflow: hidden;
  border-radius: 22px;
  background: #eaf5ff;
  border: 1px solid rgba(33,150,243,.18);
  box-shadow: 0 18px 45px rgba(20,55,90,.10);
}
.service-panel-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .28s ease, transform .45s ease;
}
.service-panel-image img.is-visible {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 700px) {
  .service-panel-image img { aspect-ratio: 16 / 9; }
}

.service-panel-image img {
  background: #eef8ff;
}
.service-panel-image {
  position: relative;
}
.service-panel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(9,48,88,.10));
}

.service-panel-image img {
  object-fit: cover;
  object-position: center;
}

/* Seven service categories */
.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-tab[data-number="06"],
.service-tab[data-number="07"] {
  min-height: 320px;
}
@media (min-width: 1100px) {
  .service-tab[data-number="06"] {
    grid-column: span 1;
  }
  .service-tab[data-number="07"] {
    grid-column: span 1;
  }
}
@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Real service photography supplied for the Services section */
.service-tab {
  position: relative;
  isolation: isolate;
  min-height: 320px;
}
.service-card-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  opacity: .15;
  transition: opacity .35s ease, transform .5s ease;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.65) 35%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.65) 35%, #000 100%);
}
.service-tab:hover .service-card-image,
.service-tab.is-active .service-card-image,
.service-tab.active .service-card-image {
  opacity: .28;
  transform: scale(1.035);
}
.service-tab > *:not(.service-card-image) {
  position: relative;
  z-index: 2;
}
.service-panel-image img {
  object-fit: cover;
  object-position: center;
}
@media (max-width: 700px) {
  .service-card-image {
    width: 55%;
    opacity: .12;
  }
}

/* Premium animated services grid */
.service-cards-section {
  padding-top: 22px;
}
.services-grid-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}
.services-grid-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.services-grid-heading > p {
  margin: 0;
  color: var(--muted, #64748b);
  font-size: 1.05rem;
  line-height: 1.75;
}
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-showcase-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(45, 130, 225, .18);
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 38px rgba(16, 52, 86, .06);
  transform: translateY(0);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease, border-color .45s ease;
}
.service-showcase-card--featured {
  background: #eaf6ff;
  border-color: rgba(55, 158, 247, .5);
}
.service-showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(42, 139, 237, .45);
  box-shadow: 0 24px 60px rgba(16, 52, 86, .12);
}
.service-showcase-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.service-showcase-media {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: #f4f8fc;
}
.service-showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 30, 55, .03) 25%, rgba(7, 30, 55, .24) 100%);
  pointer-events: none;
  opacity: .7;
  transition: opacity .4s ease;
}
.service-showcase-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.service-showcase-card:nth-child(5) .service-showcase-media img {
  object-fit: contain;
  background: #fbf8f3;
  padding: 10px;
}
.service-showcase-card:hover .service-showcase-media img {
  transform: scale(1.09);
  filter: saturate(1.08);
}
.service-showcase-card:hover .service-showcase-media::after {
  opacity: .45;
}
.service-showcase-number,
.service-showcase-arrow {
  position: absolute;
  top: 22px;
  z-index: 2;
  color: #147be5;
  font-weight: 700;
  letter-spacing: .02em;
}
.service-showcase-number {
  left: 22px;
  font-size: .9rem;
}
.service-showcase-arrow {
  right: 22px;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.service-showcase-card:hover .service-showcase-arrow {
  transform: translate(4px, -4px) rotate(4deg);
}
.service-showcase-content {
  padding: 25px 28px 28px;
  min-height: 184px;
  display: flex;
  flex-direction: column;
}
.service-showcase-content h3 {
  margin: 0 0 12px;
  color: #10243d;
  font-size: clamp(1.2rem, 1.55vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.service-showcase-content p {
  margin: 0;
  color: #637892;
  font-size: .98rem;
  line-height: 1.65;
}
.service-showcase-count {
  margin-top: auto;
  padding-top: 24px;
  color: #147be5;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
  transition-delay: 0ms;
}
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 701px) {
  .services-card-grid .service-showcase-card:nth-child(1) { transition-delay: 0ms; }
  .services-card-grid .service-showcase-card:nth-child(2) { transition-delay: 90ms; }
  .services-card-grid .service-showcase-card:nth-child(3) { transition-delay: 180ms; }
  .services-card-grid .service-showcase-card:nth-child(4) { transition-delay: 90ms; }
  .services-card-grid .service-showcase-card:nth-child(5) { transition-delay: 180ms; }
  .services-card-grid .service-showcase-card:nth-child(6) { transition-delay: 270ms; }
}
@media (max-width: 1050px) {
  .services-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid-heading { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 700px) {
  .services-card-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-showcase-media { height: 220px; }
  .service-showcase-content { min-height: 170px; padding: 23px; }
  .service-showcase-content h3 { font-size: 1.35rem; }
  .service-showcase-content p { font-size: .94rem; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .service-showcase-card,
  .service-showcase-media img,
  .service-showcase-arrow,
  .service-showcase-media::after { transition: none !important; }
}

/* Homepage slide image framing */
.hero-slide:nth-child(2) .hero-image-frame img { object-position: center center; }
.hero-slide:nth-child(3) .hero-image-frame img { object-position: center center; }
.hero-slide .hero-image-frame img { transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter 1.2s ease; }
.hero-slide .hero-image-frame:hover img { transform: scale(1.025); filter: saturate(1.04); }

/* Added What We Make service cards */
.service-card-with-image {
  padding-top: 0;
}

.service-card-image {
  width: calc(100% + 60px);
  height: 155px;
  margin: 0 -30px 24px;
  display: block;
  object-fit: cover;
  background: var(--blue-100);
}

.service-card-with-image .service-card-top {
  margin-bottom: 0;
}

.service-card-with-image h3 {
  margin-top: 22px;
}

@media (max-width: 900px) {
  .service-card-image {
    height: 190px;
  }
}

/* Full-screen hero inspired by the supplied reference: photographic/video banner with strong left-aligned copy. */
.hero-site-header {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,0));
  backdrop-filter: none;
  color: #fff;
}
.hero-site-header .desktop-nav a,
.hero-site-header .header-cta {
  color: #fff;
}
.hero-site-header .desktop-nav a::after {
  background: #fff;
}
.hero-site-header .header-cta {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
}
.hero-site-header .header-cta:hover,
.hero-site-header .header-cta:focus-visible {
  background: #fff;
  color: #111;
}

.hero-slider {
  position: relative;
  min-height: clamp(680px, 92vh, 920px);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #111;
}
.hero-backgrounds,
.hero-background,
.hero-background-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-background {
  z-index: 0;
  opacity: 0;
  transition: opacity 1200ms cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
}
.hero-background.is-active { opacity: 1; }
.hero-background-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}
.hero-background.is-active .hero-background-media {
  animation: heroKenBurns 8s ease-out both;
}
.hero-background.is-active .hero-banner-video {
  animation: heroVideoMotion 14s cubic-bezier(.22,.61,.36,1) both;
}
.hero-banner-video {
  background: #111;
  will-change: transform, opacity;
}
@keyframes heroVideoMotion {
  from { transform: scale(1.055); opacity: .88; }
  to { transform: scale(1); opacity: 1; }
}
.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.52) 38%, rgba(0,0,0,.18) 72%, rgba(0,0,0,.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 32%, rgba(0,0,0,.30) 100%);
  pointer-events: none;
}
.hero-content-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: clamp(680px, 92vh, 920px);
  align-items: flex-end;
  padding-top: 130px;
  padding-bottom: 110px;
}
.hero-content-wrap .hero-copy {
  max-width: 820px;
  color: #fff;
}
.hero-content-wrap .eyebrow {
  margin-bottom: 18px;
  color: #29b6f6;
  letter-spacing: .2em;
}
.hero-content-wrap .hero-copy h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(3.1rem, 7vw, 6.9rem);
  line-height: .96;
  text-transform: none;
}
.hero-content-wrap .hero-copy h1 span {
  display: block;
  color: #fff;
}
.hero-content-wrap .hero-intro {
  max-width: 710px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.92);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}
.hero-content-wrap .hero-actions { gap: 14px; }
.hero-content-wrap .button-primary {
  background: #29b6f6;
  border-color: #29b6f6;
  color: #07131d;
}
.hero-content-wrap .button-primary:hover,
.hero-content-wrap .button-primary:focus-visible { background: #fff; border-color: #fff; }
.hero-secondary-button {
  min-height: 52px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: #111;
}
.hero-secondary-button:hover,
.hero-secondary-button:focus-visible { background: var(--blue-500); color: #fff; }
.hero-content-wrap .hero-proof {
  max-width: 500px;
  margin-top: 34px;
  padding-top: 17px;
  border-top-color: rgba(255,255,255,.35);
}
.hero-content-wrap .hero-proof strong { color: #fff; }
.hero-content-wrap .hero-proof span { color: rgba(255,255,255,.8); }
.hero-slider-nav {
  position: absolute;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 34px;
  left: auto;
  z-index: 5;
  display: flex;
  gap: 8px;
}
.hero-slider-nav button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.4);
  transition: width 220ms ease, background 220ms ease;
}
.hero-slider-nav button.is-active { width: 62px; background: #fff; }

/* WhatsApp treatment matching the supplied reference: green round icon + Contact us pill + unread badge. */
.contact-floating {
  right: 24px;
  bottom: 24px;
  min-height: 68px;
  gap: 10px;
  padding: 6px 18px 6px 7px;
  border-radius: 999px;
  background: transparent;
  color: #333;
  box-shadow: none;
  overflow: visible;
}
.contact-floating:hover,
.contact-floating:focus-visible {
  background: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}
.contact-floating-icon {
  width: 60px;
  height: 60px;
  background: #25d366;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
  color: #fff;
}
.contact-floating-icon svg { width: 38px; height: 38px; }
.contact-floating-text {
  min-width: 122px;
  padding: 11px 17px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(0,0,0,.16);
  color: #3c4651;
  font-size: .94rem;
  font-weight: 700;
  text-align: center;
}
.contact-floating-badge {
  position: absolute;
  top: 0;
  left: 49px;
  z-index: 2;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ef2020;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .hero-site-header .header-cta { display: none; }
  .hero-site-header .desktop-nav { display: none; }
  .hero-site-header .menu-button span,
  .hero-site-header .menu-button span::before,
  .hero-site-header .menu-button span::after { background: #fff; }
  .hero-content-wrap { padding-bottom: 105px; }
  .hero-content-wrap .hero-copy h1 { font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.35) 90%); }
}
@media (max-width: 640px) {
  .hero-slider,
  .hero-content-wrap { min-height: 760px; }
  .hero-content-wrap { padding-top: 115px; padding-bottom: 115px; }
  .hero-content-wrap .hero-copy h1 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .hero-content-wrap .hero-intro { font-size: 1rem; }
  .hero-content-wrap .hero-actions { flex-wrap: wrap; }
  .hero-content-wrap .hero-proof { margin-top: 25px; }
  .hero-slider-nav { right: 20px; bottom: 30px; }
  .contact-floating { right: 14px; bottom: 14px; }
  .contact-floating-icon { width: 58px; height: 58px; }
  .contact-floating-text { min-width: 108px; padding: 10px 12px; }
  .contact-floating-badge { left: 45px; }
}
@keyframes heroKenBurns {
  from { transform: scale(1.03); }
  to { transform: scale(1.10); }
}

/* Number counter animation */
[data-animate-number] {
  display: inline-block;
  min-width: 1ch;
  font-variant-numeric: tabular-nums;
  transform: translateY(8px);
  opacity: .25;
  transition: opacity .45s ease, transform .45s ease;
}
[data-animate-number].number-counted {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-animate-number] {
    transition: none;
    transform: none;
    opacity: 1;
  }
}


/* Refined What We Make motion and imagery */
.service-card-with-image {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1), border-color 220ms ease, box-shadow 220ms ease;
}
.service-card-with-image.is-revealed { opacity: 1; transform: translateY(0); }
.service-card-with-image:nth-child(2) { transition-delay: .06s; }
.service-card-with-image:nth-child(3) { transition-delay: .12s; }
.service-card-with-image:nth-child(4) { transition-delay: .18s; }
.service-card-with-image:nth-child(5) { transition-delay: .24s; }
.service-card-with-image:nth-child(6) { transition-delay: .30s; }
.service-card-with-image:nth-child(7) { transition-delay: .36s; }
.service-card-with-image:nth-child(8) { transition-delay: .42s; }
.service-card-with-image .service-card-image {
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .8s ease;
}
.service-card-with-image:hover .service-card-image {
  transform: scale(1.055);
  filter: saturate(1.08);
}
.hero-copy.hero-text-animated {
  animation: heroTextIn .72s cubic-bezier(.2,.7,.2,1) both;
}
.hero-copy.hero-text-animated .eyebrow { animation: heroTextItem .42s .18s ease both; }
.hero-copy.hero-text-animated h1 { animation: heroTextItem .48s .24s ease both; }
.hero-copy.hero-text-animated .hero-intro { animation: heroTextItem .48s .30s ease both; }
.hero-copy.hero-text-animated .hero-actions { animation: heroTextItem .48s .36s ease both; }
.hero-copy.hero-text-animated .hero-proof { animation: heroTextItem .48s .42s ease both; }
@keyframes heroTextIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroTextItem { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.hero-content-wrap .hero-proof strong { font-size: 2.6rem; }

/* Responsive contact location map */
.contact-location-section { padding-top: 80px; }
.contact-location-heading { margin-bottom: 30px; }
.location-map-wrap {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #e9edf1;
  box-shadow: var(--shadow);
}
.location-map {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}
.location-map-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  max-width: 330px;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
}
.location-map-card .eyebrow { margin-bottom: 2px; }
.location-map-card strong { font-size: 1.08rem; line-height: 1.35; }
.location-map-card > span:not(.eyebrow) { color: var(--ink-muted); font-size: .9rem; }
.location-map-card .button { margin-top: 8px; width: fit-content; }
@media (max-width: 700px) {
  .location-map-wrap { min-height: 440px; border-radius: 20px; }
  .location-map { height: 440px; }
  .location-map-card { left: 14px; right: 14px; bottom: 14px; max-width: none; padding: 18px; }
  .contact-location-section { padding-top: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  .service-card-with-image, .service-card-with-image .service-card-image, .hero-copy.hero-text-animated, .hero-copy.hero-text-animated * {
    animation: none !important; transition: none !important; transform: none !important; opacity: 1 !important;
  }
}

/* What We Make — supplied blue palette */
.service-card-grid .service-card-with-image {
  position: relative;
  isolation: isolate;
  border-color: rgba(13, 71, 161, .14);
}
.service-card-grid .service-card-with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(255,255,255,.82);
}
.service-card-grid .service-card-with-image > *:not(.service-card-image) {
  position: relative;
  z-index: 2;
}
.service-card-grid .service-card-with-image .service-card-image {
  z-index: 0;
  opacity: .32;
  transition: opacity .35s ease, transform .5s ease;
}
.service-card-grid .service-card-with-image:hover .service-card-image {
  opacity: .42;
  transform: scale(1.035);
}

.service-card-grid .service-card-with-image:nth-child(4n + 1) {
  background: #E3F2FD;
  color: #12304f;
}
.service-card-grid .service-card-with-image:nth-child(4n + 1)::before {
  background: rgba(227,242,253,.84);
}

.service-card-grid .service-card-with-image:nth-child(4n + 2) {
  background: #90CAF9;
  color: #12304f;
}
.service-card-grid .service-card-with-image:nth-child(4n + 2)::before {
  background: rgba(144,202,249,.84);
}

.service-card-grid .service-card-with-image:nth-child(4n + 3) {
  background: #2196F3;
  color: #fff;
}
.service-card-grid .service-card-with-image:nth-child(4n + 3)::before {
  background: rgba(33,150,243,.84);
}
.service-card-grid .service-card-with-image:nth-child(4n + 3) .service-card-top,
.service-card-grid .service-card-with-image:nth-child(4n + 3) small,
.service-card-grid .service-card-with-image:nth-child(4n + 3) p {
  color: #fff;
}

.service-card-grid .service-card-with-image:nth-child(4n + 4) {
  background: #0D47A1;
  color: #fff;
}
.service-card-grid .service-card-with-image:nth-child(4n + 4)::before {
  background: rgba(13,71,161,.84);
}
.service-card-grid .service-card-with-image:nth-child(4n + 4) .service-card-top,
.service-card-grid .service-card-with-image:nth-child(4n + 4) small,
.service-card-grid .service-card-with-image:nth-child(4n + 4) p {
  color: #fff;
}

.service-card-grid .service-card-with-image:nth-child(4n + 1) .service-card-top,
.service-card-grid .service-card-with-image:nth-child(4n + 2) .service-card-top,
.service-card-grid .service-card-with-image:nth-child(4n + 1) small,
.service-card-grid .service-card-with-image:nth-child(4n + 2) small {
  color: #0D47A1;
}
.service-card-grid .service-card-with-image:nth-child(4n + 1) p,
.service-card-grid .service-card-with-image:nth-child(4n + 2) p {
  color: #294765;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(144,202,249,.28);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0D47A1 0%, #2196F3 60%, #90CAF9 100%);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.footer-social a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 22px rgba(13,71,161,.28);
}

/* Never apply headline gradient to banner/hero text or text over images */
.hero h1, .hero h2, .hero h3,
.hero-title, .hero-heading,
.hero-content, .hero-content *,
.banner h1, .banner h2, .banner h3,
.banner-title, .banner-content, .banner-content *,
.image-overlay, .image-overlay *,
.card-image, .card-image *,
[data-hero-slide] h1, [data-hero-slide] h2, [data-hero-slide] h3 {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: inherit;
}

/* Brand gradient for regular section/page headlines.
   Hero/banner text and text over images remain unchanged. */
.section-title,
.section-heading,
.page-title,
.content-title,
.about-title,
.services-title,
.contact-title,
.gallery-title {
  background: linear-gradient(90deg, #00A9D8 0%, #0D47A1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Gradient headings outside image/hero contexts */
main > section h2:not(.hero-title):not(.banner-title),
main > section h3:not(.hero-title):not(.banner-title),
.page-content h2:not(.hero-title):not(.banner-title),
.page-content h3:not(.hero-title):not(.banner-title) {
  background: linear-gradient(90deg, #00A9D8 0%, #0D47A1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Keep all social icons in the bottom/footer contact area white,
   inspired by the clean icon treatment on ICON's footer. */
.footer-social,
.footer-social a,
.footer-social button,
.footer-social svg,
.social-icons,
.social-icons a,
.social-icons button,
.social-icons svg,
.social-links,
.social-links a,
.social-links button,
.social-links svg {
  color: #fff !important;
  fill: #fff !important;
  stroke: #fff !important;
}

.footer-social a,
.social-icons a,
.social-links a {
  background: transparent !important;
  box-shadow: none !important;
}

.footer-social a:hover,
.social-icons a:hover,
.social-links a:hover {
  color: #fff !important;
  fill: #fff !important;
  stroke: #fff !important;
  opacity: .78;
}

/* Brand gradient running banner */
.running-banner,
.running_banner,
.ticker,
.marquee,
.scroll-banner,
.announcement-bar,
[data-running-banner],
[data-ticker] {
  background: linear-gradient(90deg, #00A9D8 0%, #0D47A1 100%) !important;
  color: #fff !important;
}
.running-banner *,
.running_banner *,
.ticker *,
.marquee *,
.scroll-banner *,
.announcement-bar *,
[data-running-banner] *,
[data-ticker] * {
  color: #fff !important;
}

/* About page refinements */
.about-bottom-message {
  padding: 78px 0 92px;
  text-align: center;
  background: transparent;
}
.about-bottom-message .about-bottom-eyebrow {
  margin: 0 0 12px;
  font-weight: 700;
  background: linear-gradient(90deg, #00A9D8 0%, #0D47A1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-bottom-message h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  background: linear-gradient(90deg, #00A9D8 0%, #0D47A1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.founder-image {
  overflow: hidden;
}
.founder-image img {
  filter: grayscale(1);
  transform: scale(1.5);
  transform-origin: center center;
  transition: transform 1.2s ease, filter .6s ease;
}
.founder-image:hover img {
  transform: scale(1.55);
}
.about-stat .stat-typewriter {
  display: inline-block;
  min-width: 1ch;
  white-space: nowrap;
}
.about-stat strong {
  font-variant-numeric: tabular-nums;
}

/* Gallery: premium project-grid concept inspired by modern agency portfolios */
.gallery-projects { padding: 72px 0 110px; }
.gallery-projects-head { display:grid; grid-template-columns:minmax(0,1.35fr) minmax(260px,.65fr); gap:50px; align-items:end; margin-bottom:42px; }
.gallery-projects-head h1 { margin:0; max-width:850px; font-size:clamp(2.7rem,6vw,6.4rem); line-height:.95; letter-spacing:-.055em; }
.gallery-projects-head h1 span { display:block; background:linear-gradient(90deg,#00A9D8,#0D47A1); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.gallery-projects-intro { max-width:430px; margin:0 0 4px auto; line-height:1.7; color:#59636f; }
.gallery-filters { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:38px; border-top:1px solid rgba(15,23,42,.12); padding-top:24px; }
.gallery-filter { border:1px solid rgba(15,23,42,.16); background:transparent; border-radius:999px; padding:10px 17px; font:inherit; cursor:pointer; color:#172033; transition:.3s ease; }
.gallery-filter:hover,.gallery-filter.active { color:#fff; border-color:transparent; background:linear-gradient(90deg,#00A9D8,#0D47A1); transform:translateY(-1px); }
.projects-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:22px; }
.project-card { grid-column:span 6; }
.project-card:nth-child(3n) { grid-column:span 12; }
.project-card-button { width:100%; padding:0; border:0; background:none; text-align:left; cursor:pointer; }
.project-card-media { position:relative; overflow:hidden; aspect-ratio:1.48/1; background:#eaf0f5; }
.project-card:nth-child(3n) .project-card-media { aspect-ratio:2.15/1; }
.project-card-media img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .8s cubic-bezier(.2,.7,.2,1),filter .5s ease; }
.project-card-button:hover img { transform:scale(1.045); filter:saturate(1.06); }
.project-card-number { position:absolute; left:18px; top:18px; color:#fff; font-weight:700; font-size:.82rem; mix-blend-mode:difference; }
.project-card-arrow { position:absolute; right:18px; top:18px; width:44px; height:44px; border-radius:50%; display:grid; place-items:center; background:#fff; color:#0D47A1; transform:translateY(-8px); opacity:0; transition:.35s ease; font-size:1.15rem; }
.project-card-button:hover .project-card-arrow { opacity:1; transform:none; }
.project-card-info { padding:16px 2px 18px; }
.project-card-info span { font-size:.72rem; text-transform:uppercase; letter-spacing:.12em; color:#697586; }
.project-card-info h2 { margin:5px 0 0; font-size:1.35rem; letter-spacing:-.02em; }
.project-lightbox { position:fixed; inset:0; z-index:9999; background:rgba(5,13,24,.9); display:grid; place-items:center; padding:5vw; opacity:0; pointer-events:none; transition:.3s ease; }
.project-lightbox.open { opacity:1; pointer-events:auto; }
.project-lightbox img { max-width:min(1100px,92vw); max-height:78vh; object-fit:contain; box-shadow:0 25px 80px rgba(0,0,0,.35); }
.project-lightbox p { color:#fff; margin:16px 0 0; font-size:1.1rem; }
.project-lightbox-close { position:absolute; right:24px; top:18px; border:0; background:none; color:#fff; font-size:42px; cursor:pointer; }
@media(max-width:800px) {
  .gallery-projects-head { grid-template-columns:1fr; gap:20px; }
  .gallery-projects-intro { margin:0; }
  .project-card,.project-card:nth-child(3n) { grid-column:span 12; }
  .project-card:nth-child(3n) .project-card-media { aspect-ratio:1.48/1; }
}

/* Gallery: no large Symbols logo */
.gallery-logo,
.gallery-page-logo,
.gallery-hero-logo,
.gallery .large-logo,
.gallery-projects .large-logo {
  display: none !important;
}

/* Gallery: remove oversized brand/header area */
.gallery-projects {
  padding-top: 86px;
}

/* Subtle, smooth headline reveal */
.gallery-projects-head h1,
.gallery-projects-head .eyebrow,
.gallery-projects-intro,
.section-title,
.section-heading,
.page-title,
.content-title,
.about-title,
.services-title,
.contact-title,
.gallery-title {
  animation: headlineSoftReveal 1.1s cubic-bezier(.22,.7,.2,1) both;
}
.gallery-projects-head h1 { animation-delay: .08s; }
.gallery-projects-head .eyebrow { animation-delay: 0s; }
.gallery-projects-intro { animation-delay: .18s; }

@keyframes headlineSoftReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-projects-head h1,
  .gallery-projects-head .eyebrow,
  .gallery-projects-intro,
  .section-title,
  .section-heading,
  .page-title,
  .content-title,
  .about-title,
  .services-title,
  .contact-title,
  .gallery-title {
    animation: none !important;
  }
}

/* Text-only CTA: remove blue box while keeping the message */
.project-cta-text-only {
  padding: 72px 0 88px;
  background: transparent !important;
}
.project-cta-text-only .project-cta-inner {
  display: block;
  padding: 0 !important;
  background: transparent !important;
  color: inherit !important;
  overflow: visible;
}
.project-cta-text-only .project-cta-inner::before,
.project-cta-text-only .project-cta-inner::after {
  display: none !important;
}
.project-cta-text-only .eyebrow {
  margin-bottom: 12px;
  background: linear-gradient(90deg, #00A9D8 0%, #0D47A1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.project-cta-text-only h2 {
  max-width: 900px;
  margin: 0;
  background: linear-gradient(90deg, #00A9D8 0%, #0D47A1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 1;
}
.project-cta-text-only .button {
  display: none !important;
}

/* 20-year growth story timeline */
.growth-story-section {
  overflow: hidden;
  background: var(--paper);
}
.growth-story-heading {
  margin-bottom: 68px;
}
.growth-story-heading h2 span {
  display: block;
  background: linear-gradient(90deg, #00A9D8 0%, #0D47A1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.growth-timeline {
  position: relative;
  padding: 8px 0 16px;
}
.growth-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #00A9D8 0%, #2196F3 45%, #0D47A1 100%);
  transform: translateX(-50%);
  transform-origin: top;
  animation: timelineGrow 2.2s cubic-bezier(.22,.7,.2,1) both;
}
.growth-node {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  min-height: 220px;
}
.growth-node:nth-of-type(even) .growth-card {
  grid-column: 3;
  grid-row: 1;
}
.growth-node:nth-of-type(even) .growth-year {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}
.growth-node:nth-of-type(odd) .growth-card {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}
.growth-node:nth-of-type(odd) .growth-year {
  grid-column: 3;
  grid-row: 1;
}
.growth-year {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -.06em;
  color: #0D47A1;
  opacity: .95;
}
.growth-dot {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00A9D8, #0D47A1);
  box-shadow: 0 0 0 8px rgba(33,150,243,.10), 0 0 24px rgba(33,150,243,.28);
  position: relative;
  z-index: 2;
  animation: growthDotPulse 3.2s ease-in-out infinite;
}
.growth-card {
  max-width: 480px;
  padding: 26px 30px;
  border: 1px solid rgba(13,71,161,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 40px rgba(13,71,161,.06);
  opacity: 0;
  transform: translateY(18px);
  animation: growthCardReveal .9s cubic-bezier(.22,.7,.2,1) forwards;
}
.growth-node:nth-child(2) .growth-card { animation-delay: .35s; }
.growth-node:nth-child(3) .growth-card { animation-delay: .55s; }
.growth-node:nth-child(4) .growth-card { animation-delay: .75s; }
.growth-node:nth-child(5) .growth-card { animation-delay: .95s; }
.growth-node:nth-child(6) .growth-card { animation-delay: 1.15s; }
.growth-kicker {
  display: block;
  margin-bottom: 8px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #2196F3;
}
.growth-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}
.growth-card p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.7;
}
.growth-card strong {
  color: #0D47A1;
}
.growth-link {
  display: inline-block;
  margin-top: 15px;
  color: #0D47A1;
  font-weight: 750;
  text-decoration: none;
}
.growth-link:hover { color: #00A9D8; }
.growth-bottom-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 58px;
}
.growth-bottom-stats div {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,169,216,.08), rgba(13,71,161,.06));
  text-align: center;
}
.growth-bottom-stats strong {
  display: block;
  font-size: clamp(2rem,4vw,3.6rem);
  letter-spacing: -.05em;
  background: linear-gradient(90deg,#00A9D8,#0D47A1);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.growth-bottom-stats span {
  display:block;
  margin-top:4px;
  color:var(--ink-muted);
}
@keyframes timelineGrow {
  from { transform: translateX(-50%) scaleY(0); opacity: .2; }
  to { transform: translateX(-50%) scaleY(1); opacity: 1; }
}
@keyframes growthCardReveal {
  to { opacity:1; transform:translateY(0); }
}
@keyframes growthDotPulse {
  0%, 70%, 100% { transform:scale(1); }
  80% { transform:scale(1.18); }
}
@media (max-width: 760px) {
  .growth-line {
    left: 10px;
    transform: none;
  }
  .growth-node {
    display: grid;
    grid-template-columns: 34px 1fr;
    min-height: 0;
    padding: 24px 0;
    gap: 18px;
  }
  .growth-dot {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 18px;
    height: 18px;
  }
  .growth-card,
  .growth-node:nth-of-type(even) .growth-card,
  .growth-node:nth-of-type(odd) .growth-card {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    max-width: none;
  }
  .growth-year,
  .growth-node:nth-of-type(even) .growth-year,
  .growth-node:nth-of-type(odd) .growth-year {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
    font-size: 1.8rem;
    margin-top: 12px;
  }
  .growth-bottom-stats { grid-template-columns:1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .growth-line, .growth-dot, .growth-card { animation: none !important; opacity:1; transform:none; }
}

/* Footer logo: use supplied logo directly, with no white patch/container */
.footer-logo,
.site-footer-logo,
.footer-brand .logo,
.footer-brand-logo {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.footer-logo img,
.site-footer-logo img,
.footer-brand .logo img,
.footer-brand-logo img {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain;
}

.footer-logo-card,
.footer-brand .logo-card,
.footer-branding .logo-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* AD highlight in the tagline */
.ad-highlight {
  color: #E3F2FD !important;
  -webkit-text-fill-color: #E3F2FD !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

/* Supplied footer logo: no white patch/card */
.footer-logo,
.site-footer-logo,
.footer-brand .logo,
.footer-brand-logo,
.footer-logo-card,
.footer-brand .logo-card,
.footer-branding .logo-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.footer-logo img,
.site-footer-logo img,
.footer-brand .logo img,
.footer-brand-logo img {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* Footer logo must remain fully transparent — no white patch */
.footer-logo,
.site-footer-logo,
.footer-brand .logo,
.footer-brand-logo,
.footer-logo-card,
.footer-brand .logo-card,
.footer-branding .logo-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.footer-logo img,
.site-footer-logo img,
.footer-brand .logo img,
.footer-brand-logo img {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Final footer design */
.site-footer {
  padding: 82px 0 28px;
  background: #071f45;
}
.footer-top {
  grid-template-columns: 1.25fr .7fr .7fr;
  gap: 90px;
  padding-bottom: 62px;
}
.footer-brand img,
.footer-logo,
.site-footer-logo {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.footer-brand h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.045em;
  color: #fff;
  text-transform: uppercase;
}
.footer-brand h2 .ad-highlight {
  background: linear-gradient(90deg, #00A9D8 0%, #0D47A1 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.footer-brand p {
  max-width: 560px;
  color: #b9cce3;
  font-size: 1rem;
  line-height: 1.7;
}
.footer-column h3 {
  color: #90CAF9;
}
.footer-column a:hover {
  color: #90CAF9;
}
.footer-social a {
  border-color: rgba(144,202,249,.45);
  color: #fff !important;
}
.footer-social a:hover {
  border-color: #90CAF9;
  color: #fff !important;
}
.footer-bottom strong {
  color: #90CAF9;
}
@media (max-width: 760px) {
  .footer-brand img {
    width: 135px;
    height: auto;
  }
  .footer-brand h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
}

/* FINAL SHARED FOOTER — applies to every page */
.site-footer {
  background: #071f45 !important;
  color: #fff !important;
}
.site-footer .footer-brand img {
  width: 155px !important;
  height: auto !important;
  margin-bottom: 28px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: block !important;
  object-fit: contain !important;
}
.site-footer .footer-brand h2 {
  color: #fff !important;
}
.site-footer .footer-brand h2 .ad-highlight {
  background: linear-gradient(90deg, #00A9D8 0%, #0D47A1 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.site-footer .footer-brand p {
  color: #b9cce3 !important;
}
.site-footer .footer-column h3 {
  color: #90CAF9 !important;
}
.site-footer .footer-column a {
  color: #dbe8f5 !important;
}
.site-footer .footer-column a:hover {
  color: #90CAF9 !important;
}
.site-footer .footer-social a {
  color: #fff !important;
  border-color: rgba(144,202,249,.45) !important;
}
.site-footer .footer-social a:hover {
  color: #fff !important;
  border-color: #90CAF9 !important;
}
.site-footer .footer-bottom strong {
  color: #90CAF9 !important;
}
@media (max-width: 760px) {
  .site-footer .footer-brand img {
    width: 135px !important;
  }
}

/* About page — smooth 20-year timeline animation */
.growth-timeline {
  position: relative;
  overflow: visible;
}
.growth-line {
  transform-origin: top center;
  animation: timelineDraw 2.8s cubic-bezier(.16,1,.3,1) both;
}
.growth-node {
  opacity: 0;
  animation: timelineNodeIn .9s cubic-bezier(.16,1,.3,1) forwards;
}
.growth-node:nth-child(2) { animation-delay: .25s; }
.growth-node:nth-child(3) { animation-delay: .55s; }
.growth-node:nth-child(4) { animation-delay: .85s; }
.growth-node:nth-child(5) { animation-delay: 1.15s; }
.growth-node:nth-child(6) { animation-delay: 1.45s; }

.growth-node .growth-year {
  transition: transform .7s cubic-bezier(.16,1,.3,1), letter-spacing .7s ease;
}
.growth-node:hover .growth-year {
  transform: scale(1.04);
  letter-spacing: -.07em;
}
.growth-node .growth-dot {
  transition: transform .5s ease, box-shadow .5s ease;
}
.growth-node:hover .growth-dot {
  transform: scale(1.28);
  box-shadow: 0 0 0 10px rgba(33,150,243,.12), 0 0 30px rgba(33,150,243,.35);
}

@keyframes timelineDraw {
  from { transform: translateX(-50%) scaleY(0); opacity: 0; }
  to { transform: translateX(-50%) scaleY(1); opacity: 1; }
}
@keyframes timelineNodeIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Enquire Now — same headline gradient, white text */
a[href="../contact/"].button,
a[href="../contact/"].button-primary,
a[href="../contact/"][class*="button"] {
  background: linear-gradient(90deg, #00A9D8 0%, #0D47A1 100%) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: 0 !important;
  box-shadow: 0 10px 28px rgba(13,71,161,.18);
}
a[href="../contact/"].button:hover,
a[href="../contact/"].button-primary:hover,
a[href="../contact/"][class*="button"]:hover {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(13,71,161,.25);
}

/* How we work — small animated icons */
.process-step {
  position: relative;
  overflow: hidden;
}
.process-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 28px;
  border-radius: 50%;
  background: #E3F2FD;
  color: #0D47A1;
  transition: transform .5s cubic-bezier(.16,1,.3,1), background .5s ease, color .5s ease, box-shadow .5s ease;
  animation: processIconFloat 4s ease-in-out infinite;
}
.process-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-step:nth-child(2) .process-icon { animation-delay: .45s; }
.process-step:nth-child(3) .process-icon { animation-delay: .9s; }

.process-step:hover .process-icon {
  transform: translateY(-4px) rotate(-3deg) scale(1.08);
  background: linear-gradient(135deg, #E3F2FD 0%, #90CAF9 100%);
  color: #0D47A1;
  box-shadow: 0 10px 24px rgba(13,71,161,.14);
}
.process-step > span:first-child {
  display: inline-flex;
  margin-bottom: 18px;
}
@keyframes processIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .process-icon { animation: none !important; }
}

/* Contact page: remove top banner and move Project Enquiries up */
.contact-layout {
  padding-top: 96px;
}
@media (max-width: 760px) {
  .contact-layout {
    padding-top: 64px;
  }
}

/* About page: remove top banner and bring Our Growth Story upward */
.about-page .growth-section,
.growth-story-section {
  padding-top: 72px;
}
@media (max-width: 760px) {
  .about-page .growth-section,
  .growth-story-section {
    padding-top: 52px;
  }
}

/* Process cards — number and icon kept separate */
.process-step {
  position: relative;
}
.process-number {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #E3F2FD;
  color: #0D47A1;
  font-weight: 700;
  font-size: 1.05rem;
}
.process-step .process-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: #E3F2FD;
  color: #0D47A1;
  animation: processIconFloat 4s ease-in-out infinite;
}
.process-step:nth-child(2) .process-icon { animation-delay: .45s; }
.process-step:nth-child(3) .process-icon { animation-delay: .9s; }
.process-step .process-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-step:hover .process-icon {
  transform: translateY(-4px) scale(1.08);
  background: linear-gradient(135deg, #E3F2FD 0%, #90CAF9 100%);
  box-shadow: 0 10px 24px rgba(13,71,161,.14);
}
@media (max-width: 760px) {
  .process-number {
    width: 60px;
    height: 60px;
  }
}

/* About: growth story is the first section, with no hero/banner above it */
.growth-story-section {
  padding-top: 78px !important;
}
@media (max-width: 760px) {
  .growth-story-section {
    padding-top: 54px !important;
  }
}

/* Home — nine service families */
@media (min-width: 980px) {
  .service-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Process section — numbers removed, icons remain */
.process-step .process-number {
  display: none !important;
}

/* Services page hero — shorter banner with a clean two-line headline */
body:has(.service-cards-section) .page-hero {
  padding: 58px 0 54px !important;
}
body:has(.service-cards-section) .page-hero-grid {
  gap: 52px;
}
body:has(.service-cards-section) .page-hero h1 {
  max-width: 1000px;
  font-size: clamp(3.2rem, 6.2vw, 6.4rem);
  line-height: .94;
}
body:has(.service-cards-section) .page-hero-copy {
  margin-bottom: 4px;
}
@media (max-width: 760px) {
  body:has(.service-cards-section) .page-hero {
    padding: 44px 0 40px !important;
  }
  body:has(.service-cards-section) .page-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
    line-height: .96;
  }
  body:has(.service-cards-section) .page-hero-grid {
    gap: 28px;
  }
}

/* =========================================================
   Signage & Boards detail page
   ========================================================= */
.signage-hero {
  padding-bottom: 70px;
}
.signage-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}
.signage-feature-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #E3F2FD;
}
.signage-feature-image img {
  width: 100%;
  display: block;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.signage-feature-image:hover img {
  transform: scale(1.035);
}
.signage-feature-copy h2 {
  max-width: 650px;
}
.signage-feature-copy p:not(.eyebrow) {
  color: #60758e;
  line-height: 1.8;
  margin: 20px 0 28px;
}
.signage-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #d8e8f5;
}
.signage-type-grid article {
  padding: 34px 42px 38px 0;
  border-bottom: 1px solid #d8e8f5;
}
.signage-type-grid article:nth-child(even) {
  padding-left: 42px;
  border-left: 1px solid #d8e8f5;
}
.signage-type-grid span,
.signage-process-grid span {
  display: block;
  color: #0D47A1;
  font-weight: 700;
  margin-bottom: 18px;
}
.signage-type-grid h3 {
  margin: 0 0 10px;
}
.signage-type-grid p {
  margin: 0;
  color: #60758e;
  line-height: 1.65;
}
.signage-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.signage-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #E3F2FD;
}
.signage-gallery-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.signage-gallery-grid figure:hover img {
  transform: scale(1.04);
}
.signage-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d8e8f5;
}
.signage-process-grid article {
  padding: 34px 28px 36px 0;
  border-right: 1px solid #d8e8f5;
}
.signage-process-grid article + article {
  padding-left: 28px;
}
.signage-process-grid article:last-child {
  border-right: 0;
}
.signage-process-grid h3 {
  margin: 0 0 10px;
}
.signage-process-grid p {
  margin: 0;
  color: #60758e;
  line-height: 1.65;
}
.signage-cta {
  background: #071f45;
  color: #fff;
}
.signage-cta h2 {
  margin: 10px 0 28px;
  color: #fff;
}
.signage-cta h2 span {
  background: linear-gradient(90deg, #00A9D8 0%, #90CAF9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 760px) {
  .signage-feature {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .signage-type-grid,
  .signage-gallery-grid {
    grid-template-columns: 1fr;
  }
  .signage-type-grid article,
  .signage-type-grid article:nth-child(even) {
    padding: 28px 0;
    border-left: 0;
  }
  .signage-process-grid {
    grid-template-columns: 1fr;
  }
  .signage-process-grid article,
  .signage-process-grid article + article {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid #d8e8f5;
  }
  .signage-process-grid article:last-child {
    border-bottom: 0;
  }
}

/* =========================================================
   Large Format Print detail page
   ========================================================= */
.large-format-hero {
  padding-bottom: 70px;
}
.large-format-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}
.large-format-feature-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #E3F2FD;
}
.large-format-feature-image img {
  width: 100%;
  display: block;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.large-format-feature-image:hover img {
  transform: scale(1.035);
}
.large-format-feature-copy p:not(.eyebrow) {
  color: #60758e;
  line-height: 1.8;
  margin: 18px 0;
}
.large-format-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #d8e8f5;
}
.large-format-service-grid article {
  padding: 34px 42px 38px 0;
  border-bottom: 1px solid #d8e8f5;
}
.large-format-service-grid article:nth-child(even) {
  padding-left: 42px;
  border-left: 1px solid #d8e8f5;
}
.large-format-service-grid span {
  display: block;
  color: #0D47A1;
  font-weight: 700;
  margin-bottom: 18px;
}
.large-format-service-grid h3 {
  margin: 0 0 10px;
}
.large-format-service-grid p {
  margin: 0;
  color: #60758e;
  line-height: 1.65;
}
.large-format-material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d8e8f5;
}
.large-format-material-grid div {
  min-height: 150px;
  padding: 34px 28px 34px 0;
  border-bottom: 1px solid #d8e8f5;
}
.large-format-material-grid div:nth-child(3n+2),
.large-format-material-grid div:nth-child(3n+3) {
  padding-left: 28px;
  border-left: 1px solid #d8e8f5;
}
.large-format-material-grid strong {
  display: block;
  color: #0D47A1;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.large-format-material-grid span {
  color: #60758e;
  line-height: 1.6;
}
.large-format-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.large-format-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #E3F2FD;
}
.large-format-gallery-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.large-format-gallery-grid figure:hover img {
  transform: scale(1.04);
}
.large-format-cta {
  background: #071f45;
  color: #fff;
}
.large-format-cta h2 {
  margin: 10px 0 28px;
  color: #fff;
}
.large-format-cta h2 span {
  background: linear-gradient(90deg, #00A9D8 0%, #90CAF9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 760px) {
  .large-format-feature {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .large-format-service-grid,
  .large-format-material-grid,
  .large-format-gallery-grid {
    grid-template-columns: 1fr;
  }
  .large-format-service-grid article,
  .large-format-service-grid article:nth-child(even),
  .large-format-material-grid div,
  .large-format-material-grid div:nth-child(3n+2),
  .large-format-material-grid div:nth-child(3n+3) {
    padding: 28px 0;
    border-left: 0;
  }
}

/* =========================================================
   Wedding Card detail page
   ========================================================= */
.wedding-card-hero {
  padding-bottom: 70px;
}
.wedding-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.wedding-feature-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f9f4ee;
}
.wedding-feature-image img {
  width: 100%;
  display: block;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.wedding-feature-image:hover img {
  transform: scale(1.035);
}
.wedding-feature-copy p:not(.eyebrow) {
  color: #60758e;
  line-height: 1.8;
  margin: 18px 0;
}
.wedding-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid #c9dceb;
  border-radius: 999px;
  color: #0D47A1;
  background: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button-secondary:hover {
  transform: translateY(-2px);
  border-color: #90CAF9;
  box-shadow: 0 10px 24px rgba(13,71,161,.08);
}
.wedding-style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #e7ddd5;
}
.wedding-style-grid article {
  padding: 34px 42px 38px 0;
  border-bottom: 1px solid #e7ddd5;
}
.wedding-style-grid article:nth-child(even) {
  padding-left: 42px;
  border-left: 1px solid #e7ddd5;
}
.wedding-style-grid span {
  display: block;
  color: #0D47A1;
  font-weight: 700;
  margin-bottom: 18px;
}
.wedding-style-grid h3 {
  margin: 0 0 10px;
}
.wedding-style-grid p {
  margin: 0;
  color: #60758e;
  line-height: 1.65;
}
.wedding-theme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.wedding-theme-tags span {
  padding: 13px 18px;
  border: 1px solid #e7ddd5;
  border-radius: 999px;
  color: #0D47A1;
  background: #fff;
}
.wedding-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.wedding-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f9f4ee;
}
.wedding-gallery-grid img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.wedding-gallery-grid figure:hover img {
  transform: scale(1.04);
}
.wedding-reference-note {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid #e7ddd5;
  border-radius: 18px;
  background: #fffaf6;
}
.wedding-reference-note p {
  margin: 0 0 12px;
  color: #60758e;
  line-height: 1.65;
}
.wedding-reference-note a {
  color: #0D47A1;
  font-weight: 700;
}
.wedding-cta {
  background: #071f45;
  color: #fff;
}
.wedding-cta h2 {
  margin: 10px 0 28px;
  color: #fff;
}
.wedding-cta h2 span {
  background: linear-gradient(90deg, #00A9D8 0%, #90CAF9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 760px) {
  .wedding-feature {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .wedding-style-grid,
  .wedding-gallery-grid {
    grid-template-columns: 1fr;
  }
  .wedding-style-grid article,
  .wedding-style-grid article:nth-child(even) {
    padding: 28px 0;
    border-left: 0;
  }
}

/* =========================================================
   Offset Printing detail page
   ========================================================= */
.offset-hero {
  padding-bottom: 70px;
}
.offset-feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}
.offset-feature-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #E3F2FD;
}
.offset-feature-image img {
  width: 100%;
  display: block;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.offset-feature-image:hover img {
  transform: scale(1.035);
}
.offset-feature-copy p:not(.eyebrow) {
  color: #60758e;
  line-height: 1.8;
  margin: 18px 0;
}
.offset-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #d8e8f5;
}
.offset-service-grid article {
  padding: 34px 42px 38px 0;
  border-bottom: 1px solid #d8e8f5;
}
.offset-service-grid article:nth-child(even) {
  padding-left: 42px;
  border-left: 1px solid #d8e8f5;
}
.offset-service-grid span {
  display: block;
  color: #0D47A1;
  font-weight: 700;
  margin-bottom: 18px;
}
.offset-service-grid h3 {
  margin: 0 0 10px;
}
.offset-service-grid p {
  margin: 0;
  color: #60758e;
  line-height: 1.65;
}
.offset-finish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d8e8f5;
}
.offset-finish-grid div {
  min-height: 150px;
  padding: 34px 28px 34px 0;
  border-bottom: 1px solid #d8e8f5;
}
.offset-finish-grid div:nth-child(3n+2),
.offset-finish-grid div:nth-child(3n+3) {
  padding-left: 28px;
  border-left: 1px solid #d8e8f5;
}
.offset-finish-grid strong {
  display: block;
  color: #0D47A1;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.offset-finish-grid span {
  color: #60758e;
  line-height: 1.6;
}
.offset-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.offset-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #E3F2FD;
}
.offset-gallery-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.offset-gallery-grid figure:hover img {
  transform: scale(1.04);
}
.offset-cta {
  background: #071f45;
  color: #fff;
}
.offset-cta h2 {
  margin: 10px 0 28px;
  color: #fff;
}
.offset-cta h2 span {
  background: linear-gradient(90deg, #00A9D8 0%, #90CAF9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 760px) {
  .offset-feature {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .offset-service-grid,
  .offset-finish-grid,
  .offset-gallery-grid {
    grid-template-columns: 1fr;
  }
  .offset-service-grid article,
  .offset-service-grid article:nth-child(even),
  .offset-finish-grid div,
  .offset-finish-grid div:nth-child(3n+2),
  .offset-finish-grid div:nth-child(3n+3) {
    padding: 28px 0;
    border-left: 0;
  }
}

/* Brand hero — compact two-line banner */
body:has(.dm-hero) .page-hero,
body:has(.signage-hero) .page-hero,
body:has(.large-format-hero) .page-hero,
body:has(.offset-hero) .page-hero {
  padding-top: 52px !important;
  padding-bottom: 48px !important;
}
body:has(.dm-hero) .page-hero h1,
body:has(.signage-hero) .page-hero h1,
body:has(.large-format-hero) .page-hero h1,
body:has(.offset-hero) .page-hero h1 {
  max-width: 900px;
  line-height: .94;
}
@media (max-width: 760px) {
  body:has(.dm-hero) .page-hero,
  body:has(.signage-hero) .page-hero,
  body:has(.large-format-hero) .page-hero,
  body:has(.offset-hero) .page-hero {
    padding-top: 40px !important;
    padding-bottom: 38px !important;
  }
}

/* Compact brand banner: exactly two lines */
.brand-hero,
.home-hero {
  min-height: 0 !important;
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}
.brand-hero h1,
.home-hero h1 {
  max-width: 850px;
  margin-bottom: 0;
  line-height: .94;
}
.brand-hero h1 span,
.home-hero h1 span {
  display: inline;
}
@media (max-width: 760px) {
  .brand-hero,
  .home-hero {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }
}

/* Compact Large Format Print hero */
.large-format-hero {
  min-height: 0 !important;
  padding-top: 50px !important;
  padding-bottom: 48px !important;
}
.large-format-hero h1 {
  max-width: 760px;
  line-height: .94;
  margin-bottom: 0;
}
@media (max-width: 760px) {
  .large-format-hero {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
}

/* Final compact brand hero */
.brand-hero,
.home-hero {
  min-height: 0 !important;
  height: auto !important;
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}
.brand-hero h1,
.home-hero h1 {
  max-width: 820px;
  line-height: .92;
  margin-bottom: 0;
}
.brand-hero h1 span,
.home-hero h1 span {
  display: inline;
}
@media (max-width: 760px) {
  .brand-hero,
  .home-hero {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
}

/* =========================================================
   Digital Marketing hero — creative media icon background
   ========================================================= */
.dm-media-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 35%, rgba(144,202,249,.28), transparent 25%),
    radial-gradient(circle at 92% 78%, rgba(0,169,216,.16), transparent 30%);
}
.dm-media-content {
  position: relative;
  z-index: 4;
}
.dm-media-orbit {
  position: absolute;
  z-index: 1;
  right: 2%;
  top: 50%;
  width: min(560px, 45vw);
  height: min(560px, 45vw);
  transform: translateY(-50%);
  pointer-events: none;
}
.dm-media-ring {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(144,202,249,.30);
  border-radius: 50%;
  animation: dmOrbitSpin 24s linear infinite;
}
.dm-media-ring.ring-two {
  inset: 22%;
  border-style: dashed;
  animation-duration: 18s;
  animation-direction: reverse;
}
.dm-media-ring.ring-three {
  inset: 35%;
  border-color: rgba(0,169,216,.34);
  animation-duration: 13s;
}
.dm-media-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  color: #0D47A1;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(144,202,249,.58);
  box-shadow: 0 16px 45px rgba(13,71,161,.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 800;
  font-size: 22px;
  animation: dmFloat 5.5s ease-in-out infinite;
}
.dm-media-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid rgba(144,202,249,.18);
}
.icon-instagram { left: 13%; top: 15%; animation-delay: -.8s; }
.icon-facebook  { left: 61%; top: 7%; animation-delay: -2.2s; }
.icon-youtube   { right: 1%; top: 42%; animation-delay: -1.3s; }
.icon-linkedin  { left: 53%; bottom: 8%; animation-delay: -3.1s; }
.icon-tiktok    { left: 8%; bottom: 18%; animation-delay: -2.6s; }
.icon-google    { right: 20%; bottom: 29%; animation-delay: -.4s; }
.icon-search    { left: 38%; top: 40%; width: 48px; height: 48px; font-size: 28px; animation-delay: -1.8s; }
.icon-ads       { right: 30%; top: 21%; width: 46px; height: 46px; font-size: 20px; animation-delay: -3.7s; }
.dm-media-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 420px;
  height: 420px;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,242,253,.72) 0%, rgba(227,242,253,.18) 45%, transparent 72%);
  pointer-events: none;
}
@keyframes dmFloat {
  0%, 100% { transform: translate3d(0,0,0) rotate(-2deg); }
  50% { transform: translate3d(0,-12px,0) rotate(2deg); }
}
@keyframes dmOrbitSpin {
  to { transform: rotate(360deg); }
}
@media (max-width: 900px) {
  .dm-media-orbit {
    width: 390px;
    height: 390px;
    right: -8%;
    opacity: .72;
  }
  .dm-media-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }
}
@media (max-width: 760px) {
  .dm-media-hero {
    min-height: 480px;
  }
  .dm-media-orbit {
    width: 330px;
    height: 330px;
    right: -13%;
    top: 68%;
    opacity: .48;
  }
  .dm-media-content {
    z-index: 5;
  }
  .dm-media-hero::after {
    width: 300px;
    height: 300px;
    right: -5%;
    top: 68%;
  }
  .dm-media-icon {
    width: 44px;
    height: 44px;
    font-size: 17px;
    border-radius: 13px;
  }
  .icon-search, .icon-ads {
    width: 38px;
    height: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dm-media-icon,
  .dm-media-ring {
    animation: none !important;
  }
}

/* Event & Exhibition image — subtle slow zoom */
.service-showcase-card.event-exhibition-card .service-showcase-media img {
  transform: scale(1);
  animation: eventExhibitionZoom 7s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes eventExhibitionZoom {
  from { transform: scale(1); }
  to { transform: scale(1.045); }
}
@media (prefers-reduced-motion: reduce) {
  .service-showcase-card.event-exhibition-card .service-showcase-media img {
    animation: none;
  }
}

/* Home story image — subtle slow zoom */
.story-image > img {
  animation: storyImageZoom 8s ease-in-out infinite alternate;
  transform: scale(1);
  will-change: transform;
}
@keyframes storyImageZoom {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}
@media (prefers-reduced-motion: reduce) {
  .story-image > img { animation: none; }
}
