:root {
  --bg: #fffdf8;
  --bg-accent: #fff4e9;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #1f2432;
  --muted: #5f6679;
  --brand: #ff4e2f;
  --brand-soft: #ff9b54;
  --line: rgba(34, 36, 44, 0.11);
  --line-soft: rgba(34, 36, 44, 0.07);
  --shadow: 0 22px 46px rgba(255, 105, 55, 0.16);
  --radius-l: 32px;
  --radius-m: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 125, 61, 0.16), transparent 36%),
    radial-gradient(circle at 90% 6%, rgba(255, 210, 120, 0.3), transparent 30%),
    radial-gradient(circle at 84% 92%, rgba(255, 90, 62, 0.11), transparent 34%),
    linear-gradient(165deg, #fffefb 0%, #fff6ed 54%, #fffcf7 100%);
  color: var(--text);
  font-family: Sora, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
}

.bg-composition {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.bg-cell {
  position: absolute;
  margin: 0;
  border-radius: 26px;
  border: 1px solid rgba(183, 114, 72, 0.16);
  overflow: hidden;
  opacity: 0.26;
}

.bg-cell img {
  filter: saturate(0.84) contrast(1.04);
}

.bg-cell-a {
  width: min(22vw, 290px);
  aspect-ratio: 3 / 4;
  left: -2.5vw;
  top: 16vh;
}

.bg-cell-b {
  width: min(20vw, 240px);
  aspect-ratio: 4 / 5;
  right: 4vw;
  top: 20vh;
}

.bg-cell-c {
  width: min(17vw, 220px);
  aspect-ratio: 1 / 1;
  left: 8vw;
  bottom: 10vh;
}

.bg-cell-d {
  width: min(20vw, 250px);
  aspect-ratio: 4 / 5;
  right: -3vw;
  bottom: 8vh;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Syne, Sora, sans-serif;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: #10131f;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

a {
  color: inherit;
}

.wrapper {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.section {
  padding-block: 6rem;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image: radial-gradient(#ffffff 0.5px, transparent 0.5px);
  background-size: 5px 5px;
  z-index: -3;
}

.orbs {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(78px);
  opacity: 0.48;
}

.orb-one {
  width: 17rem;
  height: 17rem;
  top: 1%;
  left: -4%;
  background: #ff9470;
  animation: drift 12s ease-in-out infinite;
}

.orb-two {
  width: 22rem;
  height: 22rem;
  top: 42%;
  right: -9%;
  background: #ffd08c;
  animation: drift 17s ease-in-out infinite reverse;
}

.orb-three {
  width: 12rem;
  height: 12rem;
  bottom: 3%;
  left: 42%;
  background: #ffb575;
  animation: drift 14s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -16px);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(255, 250, 243, 0.84);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  display: block;
  object-fit: contain;
}

.brand-logo-desktop {
  width: 170px;
  height: 56px;
}

.brand-logo-mobile {
  display: none;
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #273042;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  transition: background 0.24s ease, color 0.24s ease;
}

.nav-links a:hover {
  background: #ffe6d3;
  color: #a6311a;
}

.nav-links a.active {
  background: linear-gradient(120deg, rgba(255, 131, 79, 0.26), rgba(255, 196, 143, 0.38));
  color: #8f311b;
}

.nav-links a.nav-cta {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-soft) 100%);
  color: #fff;
  border: 1px solid rgba(165, 67, 38, 0.2);
  box-shadow: 0 12px 24px rgba(255, 91, 47, 0.22);
}

.nav-links a.nav-cta:hover {
  background: linear-gradient(120deg, #f44727 0%, #ff8f47 100%);
  color: #fff;
  transform: translateY(-1px);
}

.nav-links a.nav-cta.active {
  background: linear-gradient(120deg, #e34122 0%, #ff7f3d 100%);
  color: #fff;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  color: #1f2432;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 247, 239, 0.95);
  border-color: rgba(176, 110, 72, 0.42);
}

.menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 143, 87, 0.28);
}

.menu-toggle .bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #8f311b;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.8rem;
  align-items: center;
  padding-block: 4.5rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: #bc452a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 5rem);
  margin-bottom: 1.35rem;
}

.hero-copy h1 span {
  color: var(--brand);
  display: block;
}

.hero-text {
  max-width: 64ch;
  margin-bottom: 2rem;
  font-size: 1.03rem;
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-soft) 100%);
  color: #fff;
  box-shadow: 0 10px 35px rgba(255, 91, 47, 0.28);
}

.btn-ghost {
  border-color: #e6b189;
  color: #873a27;
  background: rgba(255, 255, 255, 0.68);
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-kpis article {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(255, 246, 236, 0.86));
  border-radius: 16px;
  padding: 0.95rem;
  box-shadow: 0 10px 20px rgba(232, 150, 112, 0.13);
}

.hero-kpis strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.94rem;
  color: #20273a;
}

.hero-kpis span {
  color: #5d667f;
  font-size: 0.85rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.hero-logo-watermark {
  position: absolute;
  inset: 2.2rem 0.6rem auto 0.6rem;
  opacity: 0.12;
  pointer-events: none;
}

.hero-logo-watermark img {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  display: block;
  filter: saturate(0.7);
}

.logo-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 238, 223, 0.82));
  border-radius: var(--radius-l);
  border: 1px solid rgba(202, 123, 86, 0.23);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 2vw, 2rem);
  transform-style: preserve-3d;
}

.logo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-card {
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

.highlight-card {
  position: absolute;
  bottom: 0.8rem;
  right: -0.4rem;
  width: min(320px, 74vw);
  border-radius: 18px;
  border: 1px solid rgba(240, 134, 80, 0.4);
  background: linear-gradient(145deg, rgba(255, 126, 75, 0.22), rgba(255, 255, 255, 0.84));
  padding: 1.2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(230, 112, 70, 0.14);
}

.highlight-card p {
  color: #9c3e23;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.highlight-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
  color: #151924;
}

.highlight-card span {
  color: #464f64;
  font-size: 0.9rem;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 4rem);
  margin-bottom: 1rem;
}

.page-hero-art {
  min-height: 360px;
  border-radius: var(--radius-l);
  border: 1px solid rgba(192, 120, 80, 0.24);
  box-shadow: 0 18px 34px rgba(226, 152, 101, 0.14);
}

.image-mask {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.image-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 108, 52, 0.5);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.image-mask img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section-title {
  margin-bottom: 2.2rem;
  max-width: 760px;
}

.section-title h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.route-section {
  padding-top: 2rem;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.route-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border-radius: var(--radius-m);
  border: 1px solid rgba(176, 110, 72, 0.24);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(255, 242, 227, 0.88));
  padding: 1.2rem;
  box-shadow: 0 16px 26px rgba(235, 159, 108, 0.11);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 141, 90, 0.18), transparent 45%);
  pointer-events: none;
}

.route-card::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  right: -18px;
  bottom: -22px;
  background: radial-gradient(circle, rgba(255, 138, 80, 0.32), rgba(255, 138, 80, 0));
  pointer-events: none;
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px rgba(235, 159, 108, 0.2);
  border-color: rgba(176, 110, 72, 0.4);
}

.route-card h3 {
  position: relative;
  margin: 0.35rem 0 0.5rem;
  font-size: 1.35rem;
  z-index: 1;
}

.route-card p {
  position: relative;
  z-index: 1;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cards-grid-featured .service-card {
  min-height: 320px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
  border: 1px solid rgba(176, 110, 72, 0.26);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(255, 242, 227, 0.84));
  padding: 1.35rem;
  min-height: 260px;
  box-shadow: 0 16px 26px rgba(248, 172, 120, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 1.05rem;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 105, 52, 0.9), rgba(255, 171, 103, 0.7));
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 132, 74, 0.12), transparent 48%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 36px rgba(244, 161, 105, 0.18);
  border-color: rgba(176, 110, 72, 0.42);
}

.service-media {
  height: 145px;
  border-radius: 13px;
  margin-bottom: 1rem;
  border: 1px solid rgba(167, 109, 75, 0.22);
}

.service-card h3 {
  margin-bottom: 0.9rem;
  font-size: 1.35rem;
}

.card-icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(176, 108, 71, 0.24);
  display: inline-grid;
  place-items: center;
  color: #b64b2b;
  background: rgba(255, 255, 255, 0.68);
  margin-bottom: 0.8rem;
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 45ch;
}

.productivity {
  border-top: 1px solid rgba(175, 115, 74, 0.18);
  border-bottom: 1px solid rgba(175, 115, 74, 0.18);
  background: linear-gradient(120deg, rgba(255, 186, 120, 0.2), rgba(255, 255, 255, 0.65));
}

.productivity-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.productivity-grid h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.1rem);
  margin-bottom: 1rem;
}

.productivity-list {
  margin: 0;
  padding: 1.2rem;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 28px rgba(244, 157, 108, 0.14);
}

.productivity-list li {
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(179, 109, 69, 0.24);
  color: #364056;
}

.productivity-list li:last-child {
  border-bottom: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.product-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.95), rgba(255, 242, 227, 0.89));
  display: flex;
  align-items: stretch;
  box-shadow: 0 16px 26px rgba(235, 159, 108, 0.11);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(128deg, rgba(255, 139, 84, 0.13), transparent 52%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 38px rgba(235, 159, 108, 0.2);
  border-color: rgba(176, 110, 72, 0.38);
}

.product-thumb {
  border-bottom: 1px solid rgba(175, 124, 92, 0.18);
}

.product-thumb img {
  width: 100%;
  display: block;
}

.arborex-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-card.alt .product-body {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 247, 239, 0.92));
}

.product-body {
  padding: 1.2rem;
  width: 100%;
}

.product-logo {
  width: min(350px, 100%);
  border-radius: 12px;
}

.product-logo-wrap {
  margin-bottom: 0.7rem;
  border-radius: 12px;
}

.product-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.product-card a,
.founder a {
  position: relative;
  z-index: 1;
  color: #bb3f21;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  margin-top: 1rem;
}

.product-card.alt {
  position: relative;
  align-content: stretch;
  min-height: 100%;
}

.arborex-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: Syne, sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: rgba(190, 100, 58, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 1;
}

.about-single {
  grid-template-columns: 1fr;
}

.about-single .about-copy {
  max-width: 76ch;
}

.population {
  padding-top: 1.6rem;
}

.population-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 1rem;
}

.population-item {
  margin: 0;
  min-height: 320px;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  box-shadow: 0 16px 28px rgba(226, 152, 101, 0.12);
}

.population-item-b {
  min-height: 380px;
}

.population-item-c {
  min-height: 350px;
}

.design-ribbon {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.7fr;
  gap: 1rem;
  padding-top: 0;
}

.ribbon-item {
  margin: 0;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  box-shadow: 0 16px 28px rgba(226, 152, 101, 0.12);
}

.ribbon-item-a,
.ribbon-item-c {
  min-height: 260px;
}

.ribbon-item-b {
  min-height: 340px;
}

.ribbon-item-d {
  min-height: 220px;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-strip article {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
  border: 1px solid rgba(176, 110, 72, 0.24);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(255, 242, 227, 0.89));
  padding: 1.2rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.process-strip article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 145, 96, 0.1), transparent 55%);
  pointer-events: none;
}

.process-strip article:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(232, 150, 98, 0.17);
}

.process-strip span {
  font-family: Syne, Sora, sans-serif;
  font-size: 2rem;
  color: rgba(189, 78, 41, 0.35);
}

.process-strip h3 {
  margin: 0.5rem 0;
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.about-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.about-copy p + p {
  margin-top: 1rem;
}

.founder {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 225, 0.9));
  box-shadow: 0 16px 30px rgba(226, 152, 101, 0.12);
}

.leader-mosaic {
  position: relative;
  aspect-ratio: 4 / 3;
  background: rgba(197, 130, 91, 0.34);
  overflow: hidden;
}

.leader-image {
  position: absolute;
  inset: 0;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.mosaic-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(197, 130, 91, 0.34);
}

.mosaic-cell {
  background: transparent;
}

.text-tile {
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
  color: #9a4629;
  background: rgba(255, 248, 240, 0.96);
  text-align: center;
  padding: 0.4rem;
}

.founder div {
  padding: 1.1rem;
}

.founder h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.site-footer {
  border-top: 1px solid rgba(176, 120, 84, 0.2);
  background: linear-gradient(180deg, rgba(255, 246, 235, 0.96), rgba(255, 239, 220, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.site-footer.section {
  padding-block: 2.6rem 1.15rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 1.4rem;
  align-items: start;
}

.footer-mark {
  width: 150px;
  height: auto;
}

.footer-grid > div:first-child,
.footer-grid > div:last-child {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-grid > div:first-child p {
  color: #7c4b3a;
  font-size: 0.94rem;
}

.footer-grid > div:last-child > p {
  color: #6e3f2f;
  max-width: 62ch;
}

.footer-actions {
  margin-top: 0.25rem;
}

.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(176, 120, 84, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.footer-bottom p {
  font-size: 0.84rem;
  color: #7c4b3a;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-nav a {
  text-decoration: none;
  color: #8d4028;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ba4a2a;
}

.legal-head p {
  max-width: 78ch;
}

.legal-date {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: #7a4a38;
}

.legal-wrap {
  display: grid;
  gap: 0.9rem;
  padding-top: 0;
}

.legal-card {
  border: 1px solid rgba(176, 110, 72, 0.24);
  border-radius: var(--radius-m);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(255, 242, 227, 0.9));
  box-shadow: 0 12px 24px rgba(226, 152, 101, 0.1);
  padding: 1.2rem;
}

.legal-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.9), rgba(255, 241, 225, 0.88));
  box-shadow: 0 16px 30px rgba(226, 152, 101, 0.12);
}

.contact-panel.section {
  padding-block: 0;
}

.contact-left,
.contact-right {
  padding: 1.4rem;
}

.contact-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(182, 108, 67, 0.26);
  padding: 0.55rem 0.9rem;
  color: #8f3720;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 247, 238, 0.92);
}

.chip-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.quote-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.93), rgba(255, 241, 225, 0.88));
  box-shadow: 0 16px 30px rgba(226, 152, 101, 0.12);
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}

.quote-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.quote-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #7b4330;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(176, 110, 72, 0.26);
  border-radius: 12px;
  padding: 0.72rem 0.82rem;
  background: rgba(255, 255, 255, 0.88);
  color: #1f2432;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
  min-height: 128px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: rgba(176, 110, 72, 0.46);
  box-shadow: 0 0 0 3px rgba(255, 143, 87, 0.2);
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form button {
  justify-self: start;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-top: 2.7rem;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: unset;
  }

  .hero-logo-watermark {
    position: relative;
    inset: auto;
    margin-bottom: 1rem;
    opacity: 0.1;
  }

  .cards-grid,
  .products-grid,
  .population-grid,
  .route-grid,
  .design-ribbon,
  .process-strip,
  .page-hero,
  .about,
  .productivity-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bg-cell {
    opacity: 0.18;
  }

  .bg-cell-a,
  .bg-cell-b,
  .bg-cell-c,
  .bg-cell-d {
    width: min(32vw, 180px);
  }

  .highlight-card {
    position: static;
    margin-top: 1rem;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand-logo-desktop {
    display: none;
  }

  .brand-logo-mobile {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(173, 119, 81, 0.19);
    display: none;
    flex-direction: column;
    background: rgba(255, 250, 243, 0.98);
  }

  .nav-links a.nav-cta {
    display: block;
    text-align: left;
    margin-top: 0.2rem;
    box-shadow: 0 10px 20px rgba(255, 91, 47, 0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 4rem;
  }

  .site-footer.section {
    padding-block: 2.2rem 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .service-card {
    min-height: unset;
  }

  .founder img {
    height: 290px;
  }
}
