/* =========================================================
   LUKÁŠ NAVRÁTIL — IT PARTNER
   Čisté HTML, CSS a JavaScript
   ========================================================= */

:root {
  --bg: #071019;
  --bg-soft: #0b1621;
  --panel: #0e1b27;
  --panel-soft: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.105);
  --border-strong: rgba(255, 255, 255, 0.2);
  --text: #f4f8fb;
  --text-soft: #a9bac8;
  --text-muted: #718493;
  --primary: #17b89a;
  --primary-light: #51e0c4;
  --blue: #5d8fff;
  --warning: #e8b55f;
  --danger: #ff7474;
  --success: #47d7a2;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 45px rgba(0, 0, 0, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 78px;
  --transition: 220ms cubic-bezier(.2, .8, .2, 1);
}

html[data-theme="light"] {
  --bg: #f4f7f8;
  --bg-soft: #edf2f3;
  --panel: #ffffff;
  --panel-soft: rgba(7, 16, 25, 0.04);
  --panel-strong: rgba(7, 16, 25, 0.07);
  --border: rgba(7, 16, 25, 0.11);
  --border-strong: rgba(7, 16, 25, 0.2);
  --text: #0a1520;
  --text-soft: #4e6170;
  --text-muted: #788895;
  --shadow: 0 30px 80px rgba(34, 56, 69, 0.13);
  --shadow-soft: 0 14px 40px rgba(34, 56, 69, 0.09);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(23, 184, 154, .11), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(93, 143, 255, .09), transparent 28%),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: rgba(23, 184, 154, .48);
}

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

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

button {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6vw, 5.25rem);
  font-weight: 780;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  font-weight: 750;
}

h3 {
  font-size: 1.28rem;
}

p {
  color: var(--text-soft);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-muted {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .015);
}

html[data-theme="light"] .section-muted {
  background: rgba(7, 16, 25, .018);
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .14;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 86%);
}

.cursor-light {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(23, 184, 154, .07);
  filter: blur(95px);
  transform: translate(-50%, -50%);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 11px 16px;
  border-radius: 10px;
  color: #fff;
  background: #10283a;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Shared */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--primary-light);
  font-size: .76rem;
  font-weight: 780;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 60px;
}

.section-header p {
  max-width: 520px;
  margin: 0;
  font-size: 1.02rem;
}

.lead {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 47px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 720;
  cursor: pointer;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

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

.button:focus-visible,
.theme-toggle:focus-visible,
.menu-toggle:focus-visible,
.faq-item button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(23, 184, 154, .35);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  color: #03110e;
  background: linear-gradient(135deg, #4ce0c1, #17b89a);
  box-shadow: 0 12px 30px rgba(23, 184, 154, .22);
}

.button-primary:hover {
  box-shadow: 0 16px 38px rgba(23, 184, 154, .33);
}

.button-secondary {
  color: var(--text);
  border-color: var(--border);
  background: var(--panel-soft);
}

.button-secondary:hover {
  border-color: var(--border-strong);
  background: var(--panel-strong);
}

.button-large {
  min-height: 54px;
  padding-inline: 25px;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(71, 215, 162, .12), 0 0 20px rgba(71, 215, 162, .44);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    height var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.site-header.scrolled {
  height: 68px;
  border-color: var(--border);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  color: #041410;
  background: linear-gradient(135deg, #4fe0c2, #17a98e);
  box-shadow: 0 10px 28px rgba(23, 184, 154, .2);
  font-size: .82rem;
  font-weight: 900;
}

.brand-text {
  display: grid;
  line-height: 1.04;
}

.brand-text strong {
  font-size: .95rem;
  letter-spacing: -.02em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: .66rem;
  font-weight: 730;
  letter-spacing: .13em;
  text-transform: uppercase;
}

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

.desktop-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: .88rem;
  font-weight: 640;
  transition: color var(--transition);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--primary);
  transition: right var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-button {
  min-height: 42px;
  border-radius: 10px;
  font-size: .86rem;
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 11px;
  color: var(--text-soft);
  background: var(--panel-soft);
  cursor: pointer;
  transition: all var(--transition);
}

.theme-toggle:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--panel-strong);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

html[data-theme="dark"] .moon-icon,
html[data-theme="light"] .sun-icon {
  display: none;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 72px) 0 60px;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, .9fr);
  align-items: center;
  gap: 75px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-soft);
  background: var(--panel-soft);
  font-size: .8rem;
  font-weight: 650;
}

.hero-overline {
  margin-bottom: 18px;
  color: var(--primary-light);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #49dabe, #66a2ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  max-width: 690px;
  margin-bottom: 31px;
  font-size: clamp(1.03rem, 1.65vw, 1.17rem);
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px;
  max-width: 680px;
  margin-top: 43px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}

.hero-facts div {
  display: grid;
  gap: 4px;
}

.hero-facts strong {
  font-size: .92rem;
}

.hero-facts span {
  color: var(--text-muted);
  font-size: .74rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
}

.network-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 25px;
  background:
    radial-gradient(circle at 50% 40%, rgba(23, 184, 154, .08), transparent 34%),
    color-mix(in srgb, var(--panel) 93%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 61px;
  padding: 0 21px;
  border-bottom: 1px solid var(--border);
}

.panel-top > span {
  font-size: .83rem;
  font-weight: 730;
}

.panel-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .69rem;
}

.panel-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 14px rgba(71, 215, 162, .7);
}

.network-map {
  position: relative;
  min-height: 410px;
}

.center-node,
.network-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
}

.center-node {
  left: 50%;
  top: 50%;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(23, 184, 154, .45);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(23, 184, 154, .24), rgba(23, 184, 154, .06));
  box-shadow:
    0 0 0 14px rgba(23, 184, 154, .04),
    0 0 40px rgba(23, 184, 154, .12);
  transform: translate(-50%, -50%);
}

.center-node span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: -12px;
  border-radius: 13px;
  color: #041410;
  background: linear-gradient(135deg, #4fe0c2, #17a98e);
  font-size: .8rem;
  font-weight: 900;
}

.center-node strong {
  font-size: .76rem;
}

.network-node {
  width: 126px;
  min-height: 98px;
  padding: 13px 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel-soft);
  box-shadow: var(--shadow-soft);
}

.node-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-bottom: 7px;
  border-radius: 9px;
  color: var(--primary-light);
  background: rgba(23, 184, 154, .1);
}

.node-icon svg {
  width: 17px;
  height: 17px;
}

.network-node strong {
  font-size: .69rem;
}

.network-node small {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: .58rem;
}

.node-router { left: 7%; top: 13%; }
.node-cloud { right: 7%; top: 13%; }
.node-pc { left: 4%; bottom: 10%; }
.node-nas { right: 4%; bottom: 10%; }
.node-security { left: 50%; top: 7%; transform: translateX(-50%); }

.connection {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 184, 154, .45), transparent);
  transform-origin: left center;
}

.connection::after {
  content: "";
  position: absolute;
  right: 17%;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 10px rgba(81, 224, 196, .8);
  animation: signal 2.8s linear infinite;
}

.connection-one {
  left: 25%;
  top: 37%;
  width: 27%;
  transform: rotate(25deg);
}

.connection-two {
  left: 50%;
  top: 37%;
  width: 27%;
  transform: rotate(-25deg);
}

.connection-three {
  left: 24%;
  top: 63%;
  width: 29%;
  transform: rotate(-25deg);
}

.connection-four {
  left: 49%;
  top: 63%;
  width: 29%;
  transform: rotate(25deg);
}

@keyframes signal {
  0% { transform: translateX(-85px); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(12px); opacity: 0; }
}

.panel-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.panel-bottom div {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border-right: 1px solid var(--border);
}

.panel-bottom div:last-child {
  border-right: 0;
}

.panel-bottom small {
  color: var(--text-muted);
  font-size: .62rem;
}

.panel-bottom strong {
  font-size: .75rem;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid var(--border-strong);
  border-radius: 15px;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(17px);
}

.floating-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--primary-light);
}

.floating-note span {
  display: grid;
}

.floating-note strong {
  font-size: .75rem;
}

.floating-note small {
  color: var(--text-muted);
  font-size: .61rem;
}

.floating-note-one {
  left: -42px;
  bottom: 56px;
}

.floating-note-two {
  right: -36px;
  top: 75px;
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 74px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}

.trust-bar > span {
  flex: 0 0 auto;
  color: var(--text-muted);
  font-size: .7rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trust-bar > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.trust-bar strong {
  color: color-mix(in srgb, var(--text) 70%, transparent);
  font-size: .87rem;
}

.trust-bar i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.service-card {
  min-height: 305px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--panel-soft);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  background: var(--panel-strong);
  box-shadow: var(--shadow-soft);
}

.service-card-primary {
  grid-column: span 2;
  background:
    radial-gradient(circle at 90% 10%, rgba(23, 184, 154, .15), transparent 30%),
    radial-gradient(circle at 7% 100%, rgba(93, 143, 255, .12), transparent 35%),
    var(--panel-soft);
}

.service-card-web {
  border-style: dashed;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.service-number {
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .67rem;
  letter-spacing: .11em;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(23, 184, 154, .22);
  border-radius: 13px;
  color: var(--primary-light);
  background: rgba(23, 184, 154, .09);
}

.service-icon svg {
  width: 21px;
  height: 21px;
}

.service-card h3 {
  margin-bottom: 13px;
}

.service-card p {
  margin-bottom: 0;
  font-size: .9rem;
}

.service-card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: .76rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.service-tag {
  display: inline-flex;
  margin-top: 24px;
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: .63rem;
  font-weight: 680;
}

/* Approach */
.approach-layout {
  display: grid;
  grid-template-columns: 1fr .82fr;
  align-items: center;
  gap: 88px;
}

.approach-copy h2 {
  margin-bottom: 25px;
}

.approach-copy > p {
  max-width: 690px;
}

.approach-points {
  display: grid;
  gap: 0;
  margin-top: 39px;
  border-top: 1px solid var(--border);
}

.approach-points > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 19px;
  padding: 21px 0;
  border-bottom: 1px solid var(--border);
}

.approach-points > div > span {
  color: var(--primary-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .7rem;
  letter-spacing: .1em;
}

.approach-points strong {
  font-size: .92rem;
}

.approach-points p {
  margin: 5px 0 0;
  font-size: .8rem;
}

.approach-card {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.health-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 25px;
  border-bottom: 1px solid var(--border);
}

.health-header div {
  display: grid;
  gap: 2px;
}

.health-header small {
  color: var(--text-muted);
  font-size: .63rem;
}

.health-header strong {
  font-size: .88rem;
}

.health-header > span {
  padding: 6px 9px;
  border: 1px solid rgba(71, 215, 162, .22);
  border-radius: 999px;
  color: var(--success);
  background: rgba(71, 215, 162, .07);
  font-size: .62rem;
  font-weight: 720;
}

.health-score {
  display: grid;
  grid-template-columns: 116px 1fr;
  align-items: center;
  gap: 24px;
  padding: 32px 25px;
}

.score-ring {
  display: grid;
  place-items: center;
  align-content: center;
  width: 116px;
  height: 116px;
  border: 9px solid rgba(23, 184, 154, .13);
  border-top-color: var(--primary);
  border-right-color: var(--primary-light);
  border-radius: 50%;
  transform: rotate(17deg);
}

.score-ring span,
.score-ring small {
  transform: rotate(-17deg);
}

.score-ring span {
  font-size: 2rem;
  font-weight: 780;
  line-height: 1;
}

.score-ring small {
  color: var(--text-muted);
  font-size: .65rem;
}

.health-score > div:last-child strong {
  font-size: 1rem;
}

.health-score p {
  margin: 6px 0 0;
  font-size: .76rem;
}

.health-items {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.health-items > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 25px;
  border-bottom: 1px solid var(--border);
}

.health-items > div:last-child {
  border-bottom: 0;
}

.health-items span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: .73rem;
}

.health-items strong {
  font-size: .68rem;
}

.health-items i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.health-items i.good {
  background: var(--success);
  box-shadow: 0 0 10px rgba(71, 215, 162, .5);
}

.health-items i.warning {
  background: var(--warning);
  box-shadow: 0 0 10px rgba(232, 181, 95, .45);
}

.health-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 25px;
}

.health-note svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--text-muted);
}

.health-note p {
  margin: 0;
  font-size: .7rem;
}

/* Skills */
.skills-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.skill-group {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--panel-soft);
}

.skill-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.skill-heading span {
  color: var(--primary-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .67rem;
}

.skill-heading h3 {
  margin: 0;
  font-size: 1.05rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tags span {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text-soft);
  background: var(--panel-soft);
  font-size: .72rem;
  font-weight: 620;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 90px;
}

.about-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 75% 18%, rgba(93, 143, 255, .17), transparent 27%),
    radial-gradient(circle at 20% 90%, rgba(23, 184, 154, .22), transparent 32%),
    var(--panel);
  box-shadow: var(--shadow);
}

.about-card-grid {
  position: absolute;
  inset: 0;
  opacity: .19;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 39px 39px;
}

.about-monogram {
  position: relative;
  z-index: 2;
  color: transparent;
  background: linear-gradient(145deg, #f7fffd, #45d9bb 55%, #6b9cff);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(6rem, 14vw, 10rem);
  font-weight: 900;
  letter-spacing: -.13em;
  transform: translateX(-6%);
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .22));
}

.about-status {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-soft);
  background: color-mix(in srgb, var(--panel) 87%, transparent);
  backdrop-filter: blur(14px);
  font-size: .7rem;
  font-weight: 680;
}

.about-copy h2 {
  margin-bottom: 25px;
}

.about-copy > p:not(.lead) {
  max-width: 680px;
}

.about-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0;
}

.about-benefits > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--panel-soft);
}

.about-benefits svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--primary-light);
}

.about-benefits span {
  display: grid;
  gap: 4px;
}

.about-benefits strong {
  font-size: .75rem;
}

.about-benefits small {
  color: var(--text-muted);
  font-size: .64rem;
  line-height: 1.45;
}

/* FAQ */
.faq-section {
  border-top: 1px solid var(--border);
}

.faq-layout {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 85px;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 45px);
}

.faq-intro h2 {
  margin-bottom: 22px;
}

.faq-intro p {
  max-width: 420px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  width: 100%;
  gap: 20px;
  padding: 25px 0;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.faq-item button span {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--text-soft);
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms cubic-bezier(.2, .8, .2, 1);
}

.faq-answer p {
  overflow: hidden;
  max-width: 690px;
  margin: 0;
  padding-right: 45px;
  font-size: .9rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 26px;
}

/* Contact */
.contact-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 7% 55%, rgba(23, 184, 154, .12), transparent 30%),
    radial-gradient(circle at 94% 20%, rgba(93, 143, 255, .08), transparent 26%);
}

.contact-layout {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  align-items: start;
  gap: 80px;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.contact-copy h2 {
  margin-bottom: 23px;
}

.contact-copy > p {
  max-width: 520px;
  font-size: 1rem;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 35px;
}

.contact-links > a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 13px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.contact-links > a:hover {
  transform: translateX(4px);
  border-color: var(--border);
  background: var(--panel-soft);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--primary-light);
  background: var(--panel-soft);
}

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

.contact-links a > span:last-child {
  display: grid;
  min-width: 0;
}

.contact-links small {
  color: var(--text-muted);
  font-size: .66rem;
}

.contact-links strong {
  overflow-wrap: anywhere;
  font-size: .86rem;
}

.contact-form {
  display: grid;
  gap: 19px;
  padding: 35px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--panel) 90%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.form-title span {
  display: block;
  font-size: 1.36rem;
  font-weight: 760;
  letter-spacing: -.03em;
}

.form-title p {
  margin: 4px 0 0;
  font-size: .79rem;
}

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

.contact-form label:not(.consent) {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: .73rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  background: var(--panel-soft);
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 128px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: .75;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 21px,
    calc(100% - 12px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-form select option {
  color: #0a1520;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(23, 184, 154, .58);
  background: var(--panel-strong);
  box-shadow: 0 0 0 4px rgba(23, 184, 154, .08);
  outline: 0;
}

.contact-form .invalid {
  border-color: rgba(255, 116, 116, .72);
}

.field-error {
  min-height: 0;
  color: var(--danger);
  font-size: .65rem;
  font-weight: 620;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text-muted);
  font-size: .69rem;
  cursor: pointer;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--primary);
}

.consent-error {
  margin-top: -16px;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-submit.loading {
  pointer-events: none;
  opacity: .7;
}

.form-note {
  margin: -6px 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: .66rem;
}

.form-status {
  min-height: 0;
  text-align: center;
  color: var(--success);
  font-size: .72rem;
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 65px 0 25px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, .07);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, .75fr);
  gap: 55px;
  padding-bottom: 54px;
}

.footer-brand p {
  max-width: 340px;
  margin: 21px 0 0;
  font-size: .82rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column strong {
  margin-bottom: 6px;
  font-size: .73rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--text-muted);
  font-size: .75rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 23px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .65rem;
}

.noscript-message {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1000;
  padding: 13px;
  border-radius: 10px;
  color: #fff;
  background: #9f3434;
  text-align: center;
}

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
}

.animations-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(.2, .8, .2, 1),
    transform 700ms cubic-bezier(.2, .8, .2, 1);
}

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

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav {
    gap: 19px;
    margin-right: 20px;
  }

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

  .hero-content {
    max-width: 820px;
  }

  .hero-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

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

  .service-card-primary {
    grid-column: span 2;
  }

  .approach-layout,
  .about-layout,
  .contact-layout {
    gap: 55px;
  }

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

@media (max-width: 870px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav,
  .nav-button {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--panel-soft);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 17px;
    height: 1.5px;
    border-radius: 3px;
    background: var(--text);
    transition: transform var(--transition), top var(--transition);
  }

  .menu-toggle span:first-child { top: 16px; }
  .menu-toggle span:last-child { top: 23px; }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 20px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 20px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 18px;
    border-bottom: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg) 95%, transparent);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-130%);
    transition: transform 330ms cubic-bezier(.2, .8, .2, 1), opacity var(--transition);
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a:not(.button) {
    padding: 11px 8px;
    border-bottom: 1px solid var(--border);
    color: var(--text-soft);
    font-weight: 650;
  }

  .mobile-menu .button {
    margin-top: 9px;
  }

  .section {
    padding: 88px 0;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 46px;
  }

  .approach-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .approach-layout,
  .about-layout {
    gap: 65px;
  }

  .approach-card,
  .about-card {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .faq-intro,
  .contact-copy {
    position: static;
  }

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

  .footer-main > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section,
  .contact-section {
    padding: 75px 0;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.05rem);
  }

  .brand-text {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 53px);
  }

  .hero-buttons {
    display: grid;
  }

  .hero-buttons .button {
    width: 100%;
  }

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

  .network-map {
    min-height: 365px;
    transform: scale(.9);
    margin: -18px;
  }

  .floating-note {
    display: none;
  }

  .trust-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
  }

  .trust-bar > div {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 15px;
  }

  .services-grid,
  .skills-layout {
    grid-template-columns: 1fr;
  }

  .service-card-primary {
    grid-column: auto;
  }

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

  .health-score {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-card {
    min-height: 410px;
  }

  .faq-layout {
    gap: 40px;
  }

  .faq-answer p {
    padding-right: 3px;
  }

  .contact-form {
    padding: 25px 18px;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

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

  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .network-map {
    min-height: 330px;
    transform: scale(.78);
    margin: -42px -65px;
  }

  .panel-bottom {
    grid-template-columns: 1fr;
  }

  .panel-bottom div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .panel-bottom div:last-child {
    border-bottom: 0;
  }

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

  .footer-brand,
  .footer-main > div:last-child {
    grid-column: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-light {
    display: none;
  }
}


/* Language switch */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 42px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 11px;
  color: var(--text-muted);
  background: var(--panel-soft);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  transition: border-color var(--transition), background var(--transition);
}

.language-switch:hover {
  border-color: var(--border-strong);
  background: var(--panel-strong);
}

.language-switch span {
  display: grid;
  place-items: center;
  min-width: 29px;
  height: 32px;
  padding-inline: 7px;
  border-radius: 8px;
}

.language-switch .language-current {
  color: #03110e;
  background: linear-gradient(135deg, #4ce0c1, #17b89a);
}

.mobile-language {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 8px 0 3px;
  padding: 10px 8px;
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 750;
}

.mobile-language .active {
  padding: 5px 9px;
  border-radius: 8px;
  color: #03110e;
  background: linear-gradient(135deg, #4ce0c1, #17b89a);
}

.mobile-language a {
  padding: 5px 9px !important;
  border: 0 !important;
}

/* Featured New Zealand project */
.project-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 9% 14%, rgba(23, 184, 154, .08), transparent 27%),
    radial-gradient(circle at 91% 82%, rgba(93, 143, 255, .07), transparent 29%),
    var(--bg-soft);
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
  align-items: center;
  gap: 56px;
  padding: 32px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--panel) 91%, transparent);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.project-preview {
  position: relative;
  min-width: 0;
}

.project-browser {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 19px;
  background: #f4f2e9;
  box-shadow: 0 24px 60px rgba(0,0,0,.26);
  transform: rotate(-1.5deg);
  transition: transform 650ms cubic-bezier(.2,.8,.2,1);
}

.featured-project:hover .project-browser {
  transform: rotate(0deg) translateY(-3px);
}

.project-browser-bar {
  display: grid;
  grid-template-columns: 9px 9px 9px 1fr;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 13px;
  background: #e5e2d9;
}

.project-browser-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.project-browser-bar > span:nth-child(1) { background: #e77969; }
.project-browser-bar > span:nth-child(2) { background: #e8b85f; }
.project-browser-bar > span:nth-child(3) { background: #73bc83; }

.project-address {
  justify-self: center;
  width: min(78%, 320px);
  padding: 5px 12px;
  border-radius: 6px;
  color: #76736b;
  background: rgba(255,255,255,.7);
  text-align: center;
  font-size: .58rem;
}

.orchard-preview {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  color: #eff5ea;
  background:
    linear-gradient(rgba(38,83,49,.08), rgba(38,83,49,.12)),
    linear-gradient(145deg, #517657, #31583d);
}

.orchard-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 23px 27px;
}

.orchard-nav strong {
  font-size: .72rem;
  letter-spacing: .13em;
}

.orchard-nav > span {
  margin-right: auto;
  color: rgba(255,255,255,.65);
  font-size: .48rem;
  letter-spacing: .12em;
}

.orchard-nav div {
  display: flex;
  gap: 10px;
}

.orchard-nav i {
  width: 23px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,.33);
}

.orchard-copy {
  position: relative;
  z-index: 3;
  max-width: 72%;
  padding: 44px 30px 70px;
}

.orchard-copy small {
  color: #d2e8c4;
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.orchard-copy h3 {
  max-width: 470px;
  margin: 13px 0 18px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.orchard-copy p {
  width: 76%;
  height: 5px;
  margin: 0 0 7px;
  border-radius: 5px;
  background: rgba(255,255,255,.36);
}

.orchard-copy p:nth-of-type(2) {
  width: 52%;
}

.orchard-copy b {
  display: inline-flex;
  margin-top: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  font-size: .59rem;
}

.orchard-landscape,
.orchard-landscape span {
  position: absolute;
}

.orchard-landscape {
  inset: 0;
  z-index: 1;
}

.orchard-landscape .sun {
  right: 68px;
  top: 67px;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background: rgba(237,232,174,.32);
  box-shadow: 0 0 50px rgba(237,232,174,.17);
}

.hill {
  left: -12%;
  bottom: -48%;
  width: 85%;
  height: 76%;
  border-radius: 50% 50% 0 0;
  background: #294e34;
}

.hill-two {
  left: 36%;
  bottom: -42%;
  width: 86%;
  background: #315c3b;
}

.hill-three {
  left: 67%;
  bottom: -52%;
  background: #25462f;
}

.tree {
  bottom: 37px;
  width: 8px;
  height: 52px;
  border-radius: 5px;
  background: #253d29;
}

.tree::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -20px;
  width: 42px;
  height: 34px;
  border-radius: 50%;
  background: #527d4c;
  transform: translateX(-50%);
}

.tree-one { right: 102px; }
.tree-two { right: 52px; bottom: 31px; transform: scale(.78); }
.tree-three { right: 154px; bottom: 27px; transform: scale(.65); }

.project-country {
  position: absolute;
  left: -24px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: color-mix(in srgb, var(--panel) 91%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.nz-mark {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  color: #03110e;
  background: linear-gradient(135deg, #4ce0c1, #17b89a);
  font-size: .7rem;
  font-weight: 900;
}

.project-country > div {
  display: grid;
}

.project-country strong {
  font-size: .72rem;
}

.project-country small {
  color: var(--text-muted);
  font-size: .59rem;
}

.project-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(23,184,154,.22);
  border-radius: 999px;
  color: var(--primary-light);
  background: rgba(23,184,154,.07);
  font-size: .64rem;
  font-weight: 760;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.project-details h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.project-details > p {
  margin-bottom: 27px;
  font-size: .95rem;
}

.project-results {
  display: grid;
  gap: 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
}

.project-results > div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.project-results strong {
  font-size: .75rem;
}

.project-results span {
  color: var(--text-muted);
  font-size: .69rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}

.project-tags span {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text-soft);
  background: var(--panel-soft);
  font-size: .66rem;
  font-weight: 650;
}

@media (max-width: 1080px) {
  .featured-project {
    grid-template-columns: 1fr;
  }

  .project-preview {
    width: min(100%, 750px);
    margin-inline: auto;
  }
}

@media (max-width: 870px) {
  .language-switch {
    display: none;
  }
}

@media (max-width: 680px) {
  .featured-project {
    gap: 48px;
    padding: 18px;
  }

  .orchard-preview {
    min-height: 315px;
  }

  .orchard-copy {
    max-width: 82%;
    padding: 36px 22px 65px;
  }

  .project-country {
    left: 9px;
    bottom: -29px;
  }

  .project-details {
    padding-top: 13px;
  }

  .project-results > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}


/* Embedded "Jak pracuji / How I work" subsection inside Services */
.services-approach {
  margin-top: 92px;
  padding-top: 86px;
  border-top: 1px solid var(--border);
}

.services-approach .approach-layout {
  width: 100%;
}

.services-approach.section {
  padding: 0;
}

@media (max-width: 870px) {
  .services-approach {
    margin-top: 72px;
    padding-top: 70px;
  }
}

@media (max-width: 680px) {
  .services-approach {
    margin-top: 58px;
    padding-top: 58px;
  }
}


/* Production additions: legal links, honeypot and optional analytics banner */
.inline-legal-link {
  color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inline-legal-link:hover {
  color: var(--text);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 110;
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 30px), 780px);
  padding: 17px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 17px;
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.cookie-banner.show {
  display: grid;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 3px;
  font-size: .82rem;
}

.cookie-banner p {
  margin: 0;
  font-size: .7rem;
}

.cookie-banner p a {
  color: var(--text);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions .button {
  min-height: 40px;
  padding-inline: 16px;
  font-size: .7rem;
}

.legal-page {
  min-height: 100vh;
  padding: 110px 0 70px;
}

.legal-shell {
  width: min(calc(100% - 30px), 850px);
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.legal-shell h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
}

.legal-shell h2 {
  margin: 34px 0 12px;
  font-size: 1.35rem;
}

.legal-shell p,
.legal-shell li {
  color: var(--text-soft);
  font-size: .92rem;
}

.legal-shell a {
  color: var(--primary-light);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--text-soft);
  font-weight: 700;
}

.legal-meta {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--panel-soft);
}

.legal-warning {
  margin-top: 30px;
  padding: 15px;
  border: 1px solid rgba(232, 181, 95, .24);
  border-radius: 13px;
  color: #d2b57d !important;
  background: rgba(232, 181, 95, .07);
}

.error-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 30px;
  text-align: center;
}

.error-page strong {
  display: block;
  color: var(--primary-light);
  font-size: clamp(5rem, 15vw, 10rem);
  line-height: 1;
}

@media (max-width: 700px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    bottom: 12px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .legal-shell {
    padding: 26px 20px;
  }
}
