:root {
  --ink: #10231d;
  --deep: #0b261f;
  --deep-2: #10382d;
  --green: #a8d629;
  --green-soft: #d9ef8c;
  --cream: #f5f3e9;
  --paper: #fcfbf6;
  --white: #ffffff;
  --muted: #66736e;
  --line: rgba(16, 35, 29, 0.14);
  --shadow: 0 26px 70px rgba(8, 30, 24, 0.16);
  --radius: 24px;
  --container: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(84px, 10vw, 142px) 0; }
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 14px;
  background: var(--white); color: var(--deep); transform: translateY(-140%); border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; z-index: 100; top: 14px; left: 0; right: 0;
  transition: transform .3s ease;
}
.nav-shell {
  width: min(1240px, calc(100vw - 28px)); margin: 0 auto; min-height: 66px; padding: 9px 11px 9px 18px;
  display: flex; align-items: center; gap: 24px; color: var(--white);
  background: rgba(8, 28, 23, .82); border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px; box-shadow: 0 15px 40px rgba(0,0,0,.14); backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-logo { width: 44px; height: 44px; padding: 2px; object-fit: contain; border-radius: 10px; background: var(--white); }
.brand-name { display: grid; line-height: 1; text-transform: uppercase; letter-spacing: .06em; }
.brand-name strong { font-size: 13px; }
.brand-name em { margin-top: 4px; font-size: 9px; font-style: normal; letter-spacing: .22em; color: var(--green-soft); }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.5vw, 34px); margin-left: auto; }
.site-nav a { position: relative; font-size: 14px; font-weight: 700; color: rgba(255,255,255,.82); }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--green); transition: right .25s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.lang-switcher { display: flex; padding: 4px; gap: 2px; border-radius: 12px; background: rgba(255,255,255,.08); }
.lang-switcher button { border: 0; background: transparent; color: rgba(255,255,255,.62); padding: 7px 8px; border-radius: 8px; font-size: 12px; font-weight: 800; cursor: pointer; }
.lang-switcher button[aria-pressed="true"] { background: var(--green); color: var(--deep); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--white); align-items: center; gap: 7px; cursor: pointer; margin-left: auto; }
.menu-toggle svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.hero { min-height: 770px; height: min(92vh, 920px); position: relative; overflow: hidden; background: var(--deep); color: var(--white); }
.hero-photo, .hero-shade { position: absolute; inset: 0; }
.hero-photo { background: url("assets/ntob-logistics-hero.png") center center / cover no-repeat; transform: scale(1.01); }
.hero-shade { background: linear-gradient(90deg, rgba(4,20,16,.96) 0%, rgba(4,20,16,.83) 35%, rgba(4,20,16,.28) 65%, rgba(4,20,16,.18) 100%), linear-gradient(0deg, rgba(4,20,16,.5), transparent 45%); }
.hero-grid { position: relative; z-index: 2; height: 100%; display: grid; grid-template-columns: 1.1fr .78fr; gap: clamp(44px, 8vw, 100px); align-items: center; padding-top: 54px; }
.hero-copy { max-width: 680px; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 10px; color: var(--green-soft); font-size: 12px; line-height: 1.2; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.dark { color: #426057; }
.eyebrow.light { color: var(--green-soft); }
.eyebrow > span:first-child:not(.pulse) { min-width: 28px; color: var(--green); }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(168,214,41,.18); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.045em; line-height: .98; }
h1 { margin-bottom: 28px; font-size: clamp(52px, 6.2vw, 88px); max-width: 850px; }
h1 span { color: var(--green); }
h2 { margin-bottom: 28px; font-size: clamp(46px, 5.3vw, 72px); }
.hero-lead { max-width: 640px; margin-bottom: 36px; color: rgba(255,255,255,.79); font-size: clamp(18px, 1.6vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 0 20px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-size: 14px; font-weight: 800; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: var(--deep); }
.button-primary:hover { background: #bce64d; }
.button-ghost { border: 1px solid rgba(255,255,255,.26); color: var(--white); background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.button-dark { background: var(--deep); color: var(--white); }
.button-dark:hover { background: var(--deep-2); }
.route-card { align-self: end; margin-bottom: 100px; padding: 20px; background: rgba(9,35,28,.76); border: 1px solid rgba(255,255,255,.17); border-radius: 22px; backdrop-filter: blur(16px); box-shadow: var(--shadow); }
.route-card-head { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(168,214,41,.15); }
.route-map { height: 190px; position: relative; margin: 6px 0 4px; }
.route-map svg { width: 100%; height: 100%; overflow: visible; }
.route-path { fill: none; stroke: var(--green); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 5 7; }
.route-path-shadow { stroke: rgba(255,255,255,.08); stroke-width: 16; stroke-dasharray: none; }
.route-point { fill: var(--deep); stroke: var(--green); stroke-width: 3; }
.route-point.start, .route-point.end { fill: var(--green); stroke: rgba(168,214,41,.24); stroke-width: 8; }
.route-name { position: absolute; font-size: 12px; font-weight: 800; color: rgba(255,255,255,.88); }
.route-name.sicilia { left: 2%; bottom: 12%; }
.route-name.verona { left: 54%; top: 45%; }
.route-name.europa { right: 2%; top: 2%; }
.route-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 16px; }
.route-meta div { display: flex; flex-direction: column; }
.route-meta strong { color: var(--green); font-family: Georgia, serif; font-size: 27px; line-height: 1; }
.route-meta span { margin-top: 5px; color: rgba(255,255,255,.62); font-size: 11px; }
.hero-strip { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; border-top: 1px solid rgba(255,255,255,.15); background: rgba(4,20,16,.52); backdrop-filter: blur(14px); }
.strip-inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.strip-inner i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }

.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(52px, 8vw, 118px); }
.section-kicker h2 { max-width: 520px; }
.intro-copy { padding-top: 42px; }
.intro-copy p { color: var(--muted); font-size: 17px; }
.intro-copy .large-copy { color: var(--ink); font-size: clamp(23px, 2.3vw, 31px); line-height: 1.38; letter-spacing: -.025em; }
.fact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--line); }
.fact-row div { display: flex; flex-direction: column; gap: 7px; }
.fact-row strong { font-family: Georgia, serif; font-size: clamp(25px, 2.5vw, 36px); font-weight: 500; color: var(--deep); }
.fact-row span { color: var(--muted); font-size: 12px; font-weight: 750; }
.team-story { grid-column: 1 / -1; margin: 76px 0 0; padding: 0; display: grid; grid-template-columns: 1.65fr .75fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.team-photo-frame { position: relative; overflow: hidden; min-height: 430px; border-radius: var(--radius); box-shadow: var(--shadow); background: #e9d19b; }
.team-photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,25,20,.34), transparent 36%); pointer-events: none; }
.team-photo-frame img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; object-position: center 55%; }
.team-photo-label { position: absolute; z-index: 2; left: 24px; bottom: 22px; padding: 9px 12px; border-radius: 9px; color: var(--white); background: rgba(6,25,20,.78); backdrop-filter: blur(10px); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.team-story figcaption { margin: 0; }
.team-story figcaption h3 { margin: 0 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(35px, 4vw, 54px); font-weight: 500; line-height: 1.02; letter-spacing: -.04em; }
.team-story figcaption > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 16px; }

.services { position: relative; overflow: hidden; background: var(--paper); }
.services::before { content: ""; position: absolute; width: 520px; height: 520px; right: -280px; top: 60px; border: 1px solid rgba(168,214,41,.4); border-radius: 50%; }
.services-heading { display: grid; grid-template-columns: 1.1fr .9fr; column-gap: 80px; margin-bottom: 40px; }
.services-heading .eyebrow { grid-column: 1 / -1; }
.services-heading h2 { margin-bottom: 0; }
.services-heading > p:last-child { align-self: end; max-width: 430px; color: var(--muted); font-size: 17px; }
.service-wheel { position: relative; min-height: 780px; margin-top: 42px; }
.service-wheel::before, .service-wheel::after { content: ""; position: absolute; left: 50%; top: 50%; border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.service-wheel::before { width: 515px; height: 515px; border: 1px solid rgba(16,35,29,.14); }
.service-wheel::after { width: 680px; height: 680px; border: 1px dashed rgba(16,35,29,.08); }
.wheel-core { position: absolute; z-index: 2; left: 50%; top: 50%; width: 240px; height: 240px; transform: translate(-50%, -50%); border-radius: 50%; background: var(--deep); color: var(--white); display: grid; place-content: center; text-align: center; box-shadow: 0 30px 80px rgba(10,37,30,.22); }
.wheel-logo { width: 74px; height: 70px; margin: 0 auto 4px; padding: 2px; object-fit: contain; border-radius: 12px; background: var(--white); }
.wheel-core strong { margin-top: 10px; font-family: Georgia, serif; font-size: 27px; line-height: 1.12; font-weight: 500; }
.service-node { position: absolute; z-index: 3; width: 285px; min-height: 136px; padding: 20px; display: flex; gap: 14px; background: var(--white); border: 1px solid rgba(16,35,29,.1); border-radius: 18px; box-shadow: 0 16px 44px rgba(15,39,31,.09); }
.node-number { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--green); color: var(--deep); font-size: 11px; font-weight: 900; }
.service-node h3 { margin-bottom: 8px; font-size: 17px; line-height: 1.2; }
.service-node p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.node-1 { left: 0; top: 88px; }
.node-2 { right: 0; top: 88px; }
.node-3 { left: 0; top: 322px; }
.node-4 { right: 0; top: 322px; }
.node-5 { left: 170px; bottom: 28px; }
.node-6 { right: 170px; bottom: 28px; }

.transport { background: var(--deep); color: var(--white); }
.transport-shell { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(54px, 8vw, 110px); align-items: center; }
.transport-copy h2 { color: var(--white); }
.transport-copy > p:not(.eyebrow) { max-width: 530px; color: rgba(255,255,255,.67); font-size: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; padding-bottom: 6px; border-bottom: 1px solid rgba(168,214,41,.6); color: var(--green); font-size: 14px; font-weight: 850; }
.transport-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.transport-grid article { min-height: 220px; padding: 26px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); border-radius: 18px; transition: background .25s ease, transform .25s ease; }
.transport-grid article:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.transport-icon { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 42px; border-radius: 50%; background: var(--green); color: var(--deep); font-size: 20px; font-weight: 900; }
.transport-grid h3 { margin-bottom: 8px; font-size: 19px; }
.transport-grid p { color: rgba(255,255,255,.58); font-size: 13px; }

.method { background: var(--cream); }
.method-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; }
.method-heading h2 { margin-bottom: 0; }
.method-heading > p { color: var(--muted); font-size: 17px; max-width: 430px; }
.process-list { list-style: none; padding: 0; margin: 70px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-list li { position: relative; padding: 32px 26px 10px 0; }
.process-list li::before { content: ""; position: absolute; width: 11px; height: 11px; top: -6px; left: 0; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px var(--cream); }
.process-list li:not(:last-child)::after { content: "→"; position: absolute; right: 22px; top: 30px; color: #9ca9a4; }
.process-list li > span { color: #7b8b84; font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.process-list h3 { margin: 25px 0 8px; font-size: 19px; }
.process-list p { color: var(--muted); font-size: 14px; }

.territory { padding-top: 0; background: var(--cream); }
.territory-shell { position: relative; overflow: hidden; min-height: 380px; padding: clamp(42px, 6vw, 72px); display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: end; color: var(--white); background: linear-gradient(135deg, #164c3d, #0b261f 72%); border-radius: var(--radius); }
.territory-shell > div:not(.territory-mark), .territory-shell > p { position: relative; z-index: 2; }
.territory-shell h2 { margin-bottom: 0; max-width: 720px; font-size: clamp(41px, 4.7vw, 66px); }
.territory-shell > p { margin: 0; color: rgba(255,255,255,.65); font-size: 16px; }
.territory-mark { position: absolute; z-index: 1; right: -30px; top: -150px; color: rgba(168,214,41,.09); font-family: Georgia, serif; font-size: 560px; line-height: 1; }

.contact { background: var(--paper); }
.contact-shell { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(56px, 9vw, 130px); align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 560px; color: var(--muted); font-size: 18px; }
.contact-copy .button { margin-top: 20px; }
.contact-card { padding: 10px 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 20px 60px rgba(16,35,29,.08); }
.contact-item { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item span { color: var(--muted); font-size: 12px; font-weight: 750; }
.contact-item strong { font-size: 14px; font-weight: 800; }
a.contact-item:hover strong { color: #4e7110; }

.site-footer { padding: 42px 0 26px; background: #061914; color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand-footer { justify-self: start; }
.footer-top p { margin: 0; color: rgba(255,255,255,.55); font-family: Georgia, serif; font-style: italic; }
.social-links { justify-self: end; display: flex; gap: 20px; }
.social-links a { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 750; }
.social-links a:hover { color: var(--green); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; color: rgba(255,255,255,.4); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }

@media (max-width: 980px) {
  :root { --container: min(100% - 36px, 760px); }
  .site-nav { display: none; position: absolute; top: 74px; left: 14px; right: 14px; padding: 18px; flex-direction: column; align-items: stretch; background: rgba(6,25,20,.98); border: 1px solid rgba(255,255,255,.13); border-radius: 16px; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 9px 5px; font-size: 15px; }
  .menu-toggle { display: flex; }
  .hero { height: auto; min-height: 870px; }
  .hero-grid { min-height: 870px; grid-template-columns: 1fr; align-content: center; padding: 150px 0 130px; }
  .route-card { width: min(440px, 100%); align-self: auto; margin: 0; }
  .intro-grid, .transport-shell, .contact-shell { grid-template-columns: 1fr; }
  .intro-copy { padding-top: 0; }
  .team-story { grid-template-columns: 1fr; gap: 34px; }
  .services-heading { grid-template-columns: 1fr; gap: 24px; }
  .services-heading > p:last-child { align-self: auto; }
  .service-wheel { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-wheel::before, .service-wheel::after, .wheel-core { display: none; }
  .service-node { position: static; width: auto; min-height: 150px; }
  .method-heading { grid-template-columns: 1fr; gap: 24px; }
  .process-list { grid-template-columns: 1fr 1fr; row-gap: 20px; border-top: 0; }
  .process-list li { border-top: 1px solid var(--line); }
  .territory-shell { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --container: calc(100vw - 28px); --radius: 18px; }
  .section { padding: 78px 0; }
  .nav-shell { width: calc(100vw - 18px); min-height: 60px; padding-left: 12px; gap: 10px; }
  .brand-name { display: none; }
  .menu-toggle span { display: none; }
  .lang-switcher button { padding-inline: 7px; }
  .hero { min-height: 860px; }
  .hero-photo { background-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,20,16,.96), rgba(4,20,16,.67)), linear-gradient(0deg, rgba(4,20,16,.66), transparent); }
  .hero-grid { min-height: 860px; padding-top: 130px; gap: 44px; }
  h1 { font-size: clamp(45px, 14vw, 62px); }
  h2 { font-size: clamp(40px, 12vw, 54px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .route-card { display: none; }
  .hero-strip { overflow: hidden; }
  .strip-inner { width: max-content; min-height: 58px; animation: marquee 18s linear infinite; }
  .strip-inner span { white-space: nowrap; }
  .intro-grid { gap: 18px; }
  .fact-row { grid-template-columns: 1fr; gap: 18px; }
  .fact-row div { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
  .service-wheel, .transport-grid, .process-list { grid-template-columns: 1fr; }
  .service-node { min-height: 0; }
  .transport-grid article { min-height: 185px; }
  .team-story { margin-top: 52px; }
  .team-photo-frame, .team-photo-frame img { min-height: 300px; }
  .transport-icon { margin-bottom: 26px; }
  .process-list { margin-top: 48px; }
  .process-list li:not(:last-child)::after { display: none; }
  .territory { padding-bottom: 0; }
  .territory-shell { width: 100%; border-radius: 0; padding: 64px 24px; }
  .contact-item { grid-template-columns: 1fr; gap: 5px; }
  .footer-top { grid-template-columns: 1fr; text-align: left; }
  .footer-top p, .social-links { justify-self: start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@keyframes marquee { to { transform: translateX(-30%); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
