/* ==========================================================================
   IT Kopaj — design system
   Fonts: Rethink Sans (body), Plus Jakarta Sans (headings) — self-hosted
   ========================================================================== */

@font-face {
  font-family: "Rethink Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/rethink-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Rethink Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/rethink-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* -------------------------------- Tokens -------------------------------- */
:root {
  --font-body: "Rethink Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --color-primary: #1f7cec;
  --color-primary-dark: #145bbf;
  --color-primary-light: #eaf3ff;
  --color-accent: #e77c16;
  --color-accent-dark: #c2660f;
  --color-accent-light: #fef1e2;

  --color-ink: #0a284b;
  --color-ink-2: #0d3c74;
  --color-body: #33455c;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --color-surface: #f7f9fc;
  --color-surface-2: #ffffff;

  --shadow-sm: 0 1px 2px rgba(10, 40, 75, 0.06), 0 1px 1px rgba(10, 40, 75, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(10, 40, 75, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(10, 40, 75, 0.35);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 20px 50px -12px rgba(31, 124, 236, 0.45);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1180px;
  --space-section: clamp(3.5rem, 3rem + 2.5vw, 7rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------- Reset --------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-body);
  background: var(--color-surface-2);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--color-ink);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 2rem + 3vw, 4.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.9rem, 1.6rem + 1.6vw, 2.75rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

.lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--color-body);
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* -------------------------------- Layout --------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 1rem + 2vw, 2.5rem);
}

.section {
  padding-block: var(--space-section);
}

.section--tight {
  padding-block: clamp(2.5rem, 2rem + 2vw, 4.5rem);
}

.section--surface {
  background: var(--color-surface);
}

.section--ink {
  background: radial-gradient(120% 140% at 15% 0%, #123a66 0%, var(--color-ink) 55%, #071c33 100%);
  color: #cfe0f5;
}

.section--ink h2,
.section--ink h3 {
  color: #fff;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 1.6rem + 1.5vw, 3.25rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.4em 1em;
  border-radius: var(--radius-pill);
  margin-bottom: 1.1em;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.section--ink .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #bcd8ff;
}

/* -------------------------------- Buttons --------------------------------- */
.btn {
  --btn-fg: #fff;
  --btn-bg: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.9em 1.7em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  color: var(--btn-fg);
  background: var(--btn-bg);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--color-primary-dark);
}

.btn:active {
  transform: translateY(0);
}

.btn--accent {
  --btn-bg: var(--color-accent);
}
.btn--accent:hover {
  background: var(--color-accent-dark);
}

.btn--ghost {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-fg: #fff;
  box-shadow: none;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--color-primary);
  box-shadow: none;
  border: 1.5px solid var(--color-border);
}
.btn--outline:hover {
  --btn-fg: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* -------------------------------- Header --------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 28, 51, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.brand img {
  height: 30px;
  width: auto;
}

.brand__name {
  display: none;
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.nav__list a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  padding: 0.3em 0;
  transition: color 0.2s var(--ease);
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: right 0.25s var(--ease);
}

.nav__list a:hover,
.nav__list a[aria-current="page"] {
  color: #fff;
}

.nav__list a:hover::after,
.nav__list a[aria-current="page"]::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions .btn {
  padding: 0.7em 1.4em;
  font-size: 0.9rem;
}

.call-link {
  display: none;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
  white-space: nowrap;
}

.call-link svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.lang-switch {
  display: none;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  padding: 3px;
  flex-shrink: 0;
}

.lang-switch a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  padding: 0.4em 0.65em;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.62);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-switch a:hover {
  color: #fff;
}

.lang-switch a[aria-current="true"] {
  background: #fff;
  color: var(--color-ink);
}

.mobile-nav__lang {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.mobile-nav__lang a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5em 1.1em;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.72);
}

.mobile-nav__lang a[aria-current="true"] {
  background: #fff;
  color: var(--color-ink);
  border-color: #fff;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.menu-toggle .icon-close {
  display: none;
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: linear-gradient(160deg, #0e2f56, #071b33 80%);
  display: flex;
  flex-direction: column;
  padding: 110px 1.75rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.mobile-nav__list a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  padding: 0.65em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mobile-nav__contact a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 960px) {
  .nav {
    display: block;
  }
  .brand__name {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
  }
  .call-link {
    display: inline-flex;
  }
  .lang-switch {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

/* -------------------------------- Hero --------------------------------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--color-ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 15% 45%;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 20, 38, 0.94) 15%, rgba(8, 27, 51, 0.82) 45%, rgba(10, 40, 75, 0.55) 100%);
}

.hero__blob {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: -160px;
  background: radial-gradient(circle, rgba(231, 124, 22, 0.55), transparent 70%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(5rem, 4rem + 5vw, 8.5rem) clamp(4rem, 3rem + 4vw, 6.5rem);
  max-width: 760px;
}

.hero__content .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd9b0;
}

.hero__content .eyebrow::before {
  background: var(--color-accent);
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.25em;
}

.hero__tagline {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.6rem);
  font-weight: 600;
  color: #ffd9b0;
  margin-bottom: 0.5em;
}

.hero__sub {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
  font-weight: 600;
  font-family: var(--font-head);
  color: #fff;
  margin-bottom: 0.6em;
  line-height: 1.3;
}

.hero__desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.trust-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 18, 34, 0.55);
  backdrop-filter: blur(6px);
}

.trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  padding-block: 1.5rem;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: #eaf1fb;
}

.trust-strip__item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

@media (min-width: 720px) {
  .trust-strip__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 2rem;
  }
}

/* Page banner (about/contact top) */
.page-hero {
  position: relative;
  color: #fff;
  background: var(--color-ink);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 42, 0.65), var(--color-ink) 92%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.5rem, 3rem + 3vw, 6rem) clamp(2.5rem, 2rem + 2vw, 4rem);
  max-width: 680px;
}

.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #bcd8ff;
}

.page-hero h1 {
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

/* -------------------------------- Cards --------------------------------- */
.grid {
  display: grid;
  gap: 1.75rem;
}

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

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

@media (min-width: 720px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.icon-badge svg {
  width: 28px;
  height: 28px;
}

.icon-badge--accent {
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65em;
  font-size: 0.98rem;
  color: var(--color-body);
}

.service-card__list svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  margin-top: 0.2em;
  flex-shrink: 0;
}

.service-card--dig svg.service-card__tick {
  color: var(--color-accent-dark);
}

.feature-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin-bottom: 0.3em;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--color-muted);
  font-size: 0.96rem;
  margin: 0;
}

/* -------------------------------- About/value split --------------------- */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .split {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .split--reverse {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .split--reverse .split__media {
    order: 2;
  }
}

.split__media {
  position: relative;
}

.split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.split__media::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 130px;
  height: 130px;
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.9;
}

.split__badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 230px;
}

.split__badge svg {
  width: 34px;
  height: 34px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.split__badge strong {
  display: block;
  font-family: var(--font-head);
  color: var(--color-ink);
  font-size: 0.95rem;
  line-height: 1.3;
}

.split__badge span {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.quote-block {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-ink);
  margin: 1.5rem 0;
}

.principle-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.principle {
  display: flex;
  gap: 1.1rem;
}

.principle__num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.principle h3 {
  margin-bottom: 0.2em;
}

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

/* -------------------------------- CTA band ------------------------------ */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--color-primary-dark), var(--color-ink) 70%);
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-inline: clamp(1.25rem, 1rem + 2vw, 2.5rem);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.2em;
  max-width: 480px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 480px;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(231, 124, 22, 0.35), transparent 70%);
  right: -120px;
  bottom: -220px;
}

/* -------------------------------- Contact -------------------------------- */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.info-card svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2em;
}

.info-card p,
.info-card a {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.96rem;
}

.info-card a:hover {
  color: var(--color-primary);
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: all 0.25s var(--ease);
}

.social-row a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
}

.social-row svg {
  width: 19px;
  height: 19px;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16/10;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form */
.form-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.5rem + 1.5vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}

.form-row {
  margin-bottom: 1.35rem;
}

.form-row--split {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 620px) {
  .form-row--split {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-ink);
  margin-bottom: 0.5em;
}

.required {
  color: var(--color-accent-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.85em 1em;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--color-primary-light);
}

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

.char-count {
  display: block;
  text-align: right;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.4em;
}

.char-count.is-limit {
  color: var(--color-accent-dark);
}

/* honeypot - hidden from sighted users and screen readers, still tabbable-safe for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* File dropzone */
.dropzone {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
  background: var(--color-surface);
}

.dropzone:hover,
.dropzone.is-dragover {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.dropzone svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  margin: 0 auto 0.75rem;
}

.dropzone__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.2em;
}

.dropzone__hint {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.file-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.6em 0.9em;
  font-size: 0.88rem;
}

.file-chip__thumb {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  object-fit: cover;
  background: var(--color-border);
  flex-shrink: 0;
}

.file-chip__name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-ink);
}

.file-chip__size {
  color: var(--color-muted);
  flex-shrink: 0;
}

.file-chip__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-muted);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.file-chip__remove:hover {
  background: #fee2e2;
  color: #dc2626;
}

.form-note {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-top: 0.6rem;
}

.form-alert {
  display: none;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  margin-bottom: 1.35rem;
}

.form-alert.is-visible {
  display: flex;
}

.form-alert svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.form-alert--success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.form-alert--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.btn .spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
  display: none;
}

.btn.is-loading .spinner {
  display: inline-block;
}

.btn.is-loading .btn__label {
  opacity: 0.85;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* -------------------------------- Footer --------------------------------- */
.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.72);
  padding-block: 4rem 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand .brand__name {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.94rem;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* -------------------------------- Reveal-on-scroll ------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-group].is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
[data-reveal-group].is-visible > *:nth-child(2) {
  transition-delay: 0.15s;
}
[data-reveal-group].is-visible > *:nth-child(3) {
  transition-delay: 0.25s;
}
[data-reveal-group].is-visible > *:nth-child(4) {
  transition-delay: 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-group] > * {
    opacity: 1;
    transform: none;
  }
}

/* -------------------------------- Utilities ------------------------------ */
.mt-lg {
  margin-top: 2rem;
}

.mb-xs {
  margin-bottom: 0.3em;
}

.mb-md {
  margin-bottom: 1.75rem;
}

.is-hidden {
  display: none;
}

.form-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.3em;
}

.principle-list--narrow {
  max-width: 760px;
  margin-inline: auto;
}

/* -------------------------------- Skip link ------------------------------ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: var(--color-ink);
  padding: 0.75em 1.25em;
  border-radius: 0 0 8px 0;
  z-index: 200;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
}
