:root {
  --bg: #f6f2e9;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --ink: #101828;
  --muted: #526070;
  --line: rgba(16, 24, 40, 0.12);
  --brand: #c4622d;
  --brand-dark: #7c3614;
  --accent: #18414d;
  --accent-soft: #dbe8ea;
  --dark: #101828;
  --dark-soft: #182434;
  --success: #2f855a;
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(196, 98, 45, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(24, 65, 77, 0.16), transparent 30%),
    linear-gradient(180deg, #faf7f1 0%, var(--bg) 48%, #efe8db 100%);
  color: var(--ink);
}

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

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

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

.site-shell {
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 241, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(250, 247, 241, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__badge {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand) 0%, #e19a51 100%);
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand__text strong,
.section-heading h2,
.hero h1,
.service-card h3,
.feature-panel h3,
.timeline__item h3,
.career-card h3,
.case-card h3,
.faq-item button,
.contact-copy h2,
.footer h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
}

.brand__text strong {
  font-size: 1.2rem;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.96rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  color: var(--muted);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero__grid,
.about-grid,
.fulfilment-grid,
.career-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.hero__content,
.hero__panel,
.service-card,
.feature-panel,
.fulfilment-card,
.timeline__item,
.career-card,
.case-card,
.contact-panel,
.map-frame,
.contact-cards article {
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.hero__content {
  padding-right: 1rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-dark);
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  max-width: 18ch;
}

.hero__lead,
.section-heading p,
.about-copy p,
.career-copy p,
.contact-copy p,
.faq-item__content p,
.service-card p,
.case-card p,
.timeline__item p,
.feature-panel li,
.check-list li {
  color: var(--muted);
  line-height: 1.7;
}

.hero__lead {
  font-size: 1.08rem;
  max-width: 62ch;
  margin: 1.2rem 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.4rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--brand) 0%, #df9551 100%);
  color: #fff;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.button--dark {
  background: var(--dark);
  color: #fff;
}

.button--full {
  width: 100%;
}

.hero__meta {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__meta li {
  padding: 0.95rem 1rem 0.95rem 3rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-md);
  position: relative;
  backdrop-filter: blur(10px);
}

.hero__meta li::before,
.check-list li::before {
  content: "";
  position: absolute;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #efb06e);
}

.hero__meta li::before {
  left: 1rem;
  top: 1.1rem;
}

.hero__panel {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(16, 24, 40, 0.98) 0%, rgba(24, 65, 77, 0.96) 58%, rgba(124, 54, 20, 0.92) 100%);
  color: #fff;
}

.hero-card {
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card p,
.hero-card span {
  color: rgba(255, 255, 255, 0.74);
}

.hero-card strong {
  display: block;
  font-size: 1.6rem;
  margin: 0.45rem 0 0.6rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.stat-card {
  padding: 1.3rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.stat-card span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.trust-strip {
  padding: 0 0 2rem;
}

.trust-strip__inner {
  padding: 1.1rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  backdrop-filter: blur(12px);
}

.trust-strip p {
  margin: 0;
  font-weight: 700;
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-strip li {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.section {
  padding: 5.5rem 0;
}

.section--light {
  background: rgba(255, 255, 255, 0.36);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.section--dark {
  background:
    radial-gradient(circle at top left, rgba(196, 98, 45, 0.16), transparent 24%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: #fff;
}

.section--dark .eyebrow,
.section--dark .about-copy p,
.section--dark .feature-panel li {
  color: rgba(255, 255, 255, 0.76);
}

.section--accent {
  background:
    linear-gradient(180deg, rgba(24, 65, 77, 0.06) 0%, rgba(24, 65, 77, 0.16) 100%),
    #e7ece6;
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.95;
}

.section-heading p {
  margin: 1rem 0 0;
  max-width: 62ch;
}

.services-grid,
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card,
.case-card,
.feature-panel,
.fulfilment-card,
.career-card,
.timeline__item,
.contact-panel,
.map-frame {
  background: rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  backdrop-filter: blur(14px);
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-card h3,
.feature-panel h3,
.career-card h3,
.case-card h3,
.timeline__item h3 {
  margin: 0 0 0.55rem;
  font-size: 1.8rem;
  line-height: 1;
}

.case-card__label {
  margin: 0 0 0.7rem;
  color: var(--brand-dark);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.section--dark .feature-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-panel ul,
.check-list,
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-panel li,
.check-list li,
.footer li {
  position: relative;
  padding-left: 1.6rem;
}

.feature-panel li + li,
.check-list li + li,
.footer li + li {
  margin-top: 0.85rem;
}

.feature-panel li::before,
.footer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand);
}

.check-list li {
  padding-left: 2rem;
}

.check-list li::before {
  left: 0;
  top: 0.6rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.timeline__item span {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, #e1aa58 100%);
  color: #fff;
  font-weight: 800;
}

.career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.career-tags span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 24, 40, 0.08);
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 1.15rem 1.2rem;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 1rem;
  font-size: 1.3rem;
}

.faq-item.is-open button::after {
  content: "−";
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  padding: 0 1.2rem;
}

.faq-item.is-open .faq-item__content {
  max-height: 14rem;
  padding-bottom: 1.2rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-cards article {
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(12px);
}

.contact-cards span {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.contact-cards a,
.contact-cards p {
  margin: 0;
  font-weight: 800;
}

.contact-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(196, 98, 45, 0.25);
  border-color: rgba(196, 98, 45, 0.5);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.form-note.is-pending {
  color: var(--ink);
}

.form-note.is-success {
  color: var(--success);
}

.form-note.is-error {
  color: #b42318;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.map-section {
  padding: 0;
  overflow: hidden;
}

.map-section__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  flex: 1;
}

.footer {
  background: var(--dark);
  color: #fff;
  padding: 2.5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.brand--footer .brand__text small,
.footer li,
.footer__bottom p,
.footer__bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.footer h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

.reveal--delay {
  transition-delay: 90ms;
}

.reveal--delay-2 {
  transition-delay: 180ms;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    min-width: 220px;
    padding: 0.8rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .hero__grid,
  .about-grid,
  .fulfilment-grid,
  .career-grid,
  .contact-grid,
  .faq-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .cases-grid,
  .timeline,
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip__inner,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    max-width: none;
  }

  .services-grid,
  .cases-grid,
  .timeline,
  .hero-stats,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .topbar__inner {
    min-height: 74px;
  }

  .brand__text small {
    display: none;
  }

  .trust-strip__inner {
    border-radius: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

.button {
  position: relative;
}

.button--primary {
  overflow: hidden;
}

.button--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 600ms ease;
  pointer-events: none;
}

.button--primary:hover::before {
  transform: translateX(120%);
}

.service-card,
.case-card {
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card:hover,
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 36px 80px rgba(16, 24, 40, 0.2);
}

.section--contact {
  background: linear-gradient(180deg, var(--accent-soft) 0%, rgba(255, 255, 255, 0.55) 100%);
  border-top: 1px solid rgba(24, 65, 77, 0.1);
  border-bottom: 1px solid rgba(24, 65, 77, 0.1);
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand) 0%, #e1aa58 100%);
  z-index: 50;
  transition: width 80ms linear;
  pointer-events: none;
}

.scroll-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 40;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: var(--dark);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 240ms ease, background 180ms ease;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.3);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--brand);
  transform: translateY(-3px);
}

.nav a.is-active {
  color: var(--brand);
}

.nav a.is-active::after {
  transform: scaleX(1);
}

.news-card__date {
  display: inline-block;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.fulfilment-card,
.career-card {
  padding: 2rem;
}

.contact-panel {
  padding: 2rem;
}

.fulfilment-card > .button,
.career-card > .button {
  display: block;
  margin-top: 1.75rem;
  text-align: center;
}

.hero-card p {
  margin: 0 0 0.3rem;
}

.footer__legal {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.6;
}

.footer__bottom {
  align-items: flex-start;
}

.footer__bottom p {
  margin: 0;
}

.contact-cards article p a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: rgba(196, 98, 45, 0.4);
  text-underline-offset: 3px;
}

/* ── Hero visual redesign ────────────────── */

.hero__content {
  border: none;
  box-shadow: none;
}

.hero__grid {
  align-items: stretch;
  gap: 2.5rem;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(16, 24, 40, 0.98) 0%, rgba(24, 65, 77, 0.96) 58%, rgba(124, 54, 20, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-shield-svg {
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(196, 98, 45, 0.35));
}

.hero__visual .hero-stats {
  width: 100%;
  margin-top: 0;
}

.hero__visual .stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero__visual .stat-card strong {
  color: #fff;
}

.hero__visual .stat-card span {
  color: rgba(255, 255, 255, 0.7);
}

.hero__meta li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
  font-size: 0.96rem;
}

.hero__meta li::before {
  content: "✓";
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  color: var(--brand);
  font-weight: 900;
  font-size: 0.9rem;
  left: 0;
  top: 0.5rem;
}

@media (max-width: 980px) {
  .hero-shield-svg {
    max-width: 180px;
  }

  .hero__visual {
    padding: 1.5rem;
  }
}

/* ── Full-viewport scroll snapping ─────────── */

html {
  scroll-snap-type: y mandatory;
}

.hero,
.section,
.map-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (max-width: 720px) {
  html {
    scroll-snap-type: none;
  }

  .hero,
  .section,
  .map-section {
    min-height: auto;
  }

  .footer {
    scroll-snap-align: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
  }
}
